/* ============================================================
   AL AABDI TRAVEL — brand stylesheet
   Palette keyed to the logo: champagne gold + deep petrol-teal
   on warm ivory. Mobile-first.
   ============================================================ */

:root{
  --bg:        #FBF8F1;  /* warm ivory page bg */
  --surface:   #FFFFFF;  /* cards, nav, forms */
  --surface-2: #F4EEE1;  /* tinted ivory blocks */
  --text:      #122B2C;  /* near-black petrol-teal body */
  --muted:     #5C6A6A;  /* secondary text */
  --primary:   #0F4549;  /* deep petrol-teal */
  --primary-d: #0A3034;  /* darker teal */
  --secondary: #2E7A78;  /* lighter teal accent */
  --accent:    #C99A38;  /* champagne gold */
  --accent-d:  #B0832A;  /* gold hover */
  --accent-soft:#EFE2C4; /* pale gold wash */
  --border:    #E8DECC;  /* warm hairline */
  --border-d:  #D8CBB0;
  --focus:     #C99A38;
  --shadow-sm: 0 1px 2px rgba(18,43,44,.05), 0 2px 8px rgba(18,43,44,.05);
  --shadow-md: 0 10px 30px -12px rgba(18,43,44,.22);
  --shadow-lg: 0 28px 64px -24px rgba(10,48,52,.40);
  --maxw: 1200px;
  --r:   16px;
  --r-sm: 10px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  font-family:var(--font-sans);
  color:var(--text);
  background:var(--bg);
  font-size:17px;
  line-height:1.65;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }

:focus-visible{ outline:3px solid var(--focus); outline-offset:2px; border-radius:4px; }

/* ---------- layout helpers ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:20px; }
.section{ padding-block:64px; }
@media(min-width:860px){ .section{ padding-block:104px; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12.5px; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:var(--accent-d); margin:0 0 18px;
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--accent); display:inline-block; }
.eyebrow.center{ justify-content:center; }
.eyebrow.on-dark{ color:var(--accent); }

h1,h2,h3{ font-family:var(--font-serif); font-weight:600; line-height:1.08; margin:0; letter-spacing:-.005em; }
h2.display{ font-size:clamp(2rem, 5.4vw, 3.3rem); }
.lede{ font-size:clamp(1.05rem,1.6vw,1.2rem); color:var(--muted); max-width:60ch; margin:18px 0 0; }
.center{ text-align:center; }
.center .lede{ margin-inline:auto; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-weight:600; font-size:15.5px; letter-spacing:.01em;
  padding:14px 26px; border-radius:999px; border:1.5px solid transparent;
  min-height:48px; transition:transform .25s var(--ease), background .25s, box-shadow .25s, border-color .25s, color .25s;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; }
.btn-gold{ background:var(--accent); color:#1c1305; box-shadow:0 6px 18px -8px rgba(201,154,56,.7); }
.btn-gold:hover{ background:var(--accent-d); transform:translateY(-2px); box-shadow:0 12px 26px -10px rgba(201,154,56,.8); }
.btn-teal{ background:var(--primary); color:#fff; }
.btn-teal:hover{ background:var(--primary-d); transform:translateY(-2px); }
.btn-outline{ background:transparent; color:var(--primary); border-color:var(--border-d); }
.btn-outline:hover{ border-color:var(--primary); background:var(--surface); transform:translateY(-2px); }
.btn-ghost-light{ background:rgba(255,255,255,.08); color:#fff; border-color:rgba(255,255,255,.45); }
.btn-ghost-light:hover{ background:rgba(255,255,255,.16); border-color:#fff; transform:translateY(-2px); }
.btn-wa{ background:#1FA855; color:#fff; }
.btn-wa:hover{ background:#178a45; transform:translateY(-2px); }
.btn-block{ width:100%; }

.link-arrow{
  display:inline-flex; align-items:center; gap:7px; font-weight:600; color:var(--secondary);
  font-size:15px; transition:gap .25s var(--ease), color .25s;
}
.link-arrow svg{ width:16px; height:16px; }
.link-arrow:hover{ gap:12px; color:var(--primary); }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:sticky; top:0; z-index:60;
  background:rgba(251,248,241,.82); backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid transparent; transition:border-color .3s, box-shadow .3s, background .3s;
}
.nav.scrolled{ border-color:var(--border); box-shadow:0 1px 0 rgba(232,222,204,.7), 0 8px 24px -20px rgba(18,43,44,.5); }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; height:104px; }
@media(min-width:860px){ .nav-inner{ height:120px; } }
.brand{ display:flex; align-items:center; gap:0; }
.brand img{ height:96px; width:auto; }
@media(min-width:860px){ .brand img{ height:112px; } }
.nav-links{ display:none; }
@media(min-width:980px){
  .nav-links{ display:flex; align-items:center; gap:30px; }
  .nav-links a{ font-size:15px; font-weight:500; color:var(--text); position:relative; padding:6px 0; transition:color .2s; }
  .nav-links a::after{ content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background:var(--accent); transition:width .28s var(--ease); }
  .nav-links a:hover{ color:var(--primary); }
  .nav-links a:hover::after{ width:100%; }
}
.nav-cta{ display:none; }
@media(min-width:980px){ .nav-cta{ display:inline-flex; } }
.nav-burger{
  display:inline-flex; align-items:center; justify-content:center;
  width:46px; height:46px; border-radius:12px; border:1px solid var(--border-d);
  background:var(--surface); color:var(--primary);
}
.nav-burger svg{ width:24px; height:24px; }
@media(min-width:980px){ .nav-burger{ display:none; } }

/* mobile drawer */
.drawer-backdrop{
  position:fixed; inset:0; background:rgba(10,48,52,.45); backdrop-filter:blur(2px);
  opacity:0; visibility:hidden; transition:opacity .3s, visibility .3s; z-index:90;
}
.drawer-backdrop.open{ opacity:1; visibility:visible; }
.drawer{
  position:fixed; top:0; right:0; height:100%; width:min(86vw,360px);
  background:var(--bg); z-index:95; transform:translateX(100%);
  transition:transform .36s var(--ease); display:flex; flex-direction:column;
  box-shadow:var(--shadow-lg); padding:18px 22px 28px;
}
.drawer.open{ transform:translateX(0); }
.drawer-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.drawer-head img{ height:84px; }
.drawer-close{ width:44px; height:44px; border-radius:12px; border:1px solid var(--border-d); background:var(--surface); color:var(--primary); display:grid; place-items:center; }
.drawer-close svg{ width:22px; height:22px; }
.drawer nav{ display:flex; flex-direction:column; margin-top:8px; }
.drawer nav a{ font-size:19px; font-weight:500; padding:15px 4px; border-bottom:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; }
.drawer nav a svg{ width:18px; height:18px; color:var(--accent); }
.drawer-actions{ margin-top:auto; display:flex; flex-direction:column; gap:12px; padding-top:22px; }
.drawer-contact{ margin-top:16px; font-size:14px; color:var(--muted); }
.drawer-contact a{ color:var(--primary); font-weight:600; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; color:#EAF3F1; overflow:hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(201,154,56,.22), transparent 55%),
    radial-gradient(90% 80% at -5% 110%, rgba(46,122,120,.35), transparent 60%),
    linear-gradient(160deg, #114a4e 0%, #0d3b3f 55%, #0a3034 100%);
}
.hero::before{
  /* faint horizon/contour lines */
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background:
    repeating-linear-gradient(115deg, transparent 0 38px, rgba(255,255,255,.025) 38px 39px);
  mask-image:linear-gradient(180deg, transparent, #000 30%, #000 80%, transparent);
}
.hero-inner{ position:relative; display:grid; gap:44px; padding-block:58px 64px; }
@media(min-width:980px){
  .hero-inner{ grid-template-columns:1.05fr .95fr; align-items:center; padding-block:84px 96px; gap:56px; }
}
.hero-eyebrow{ color:var(--accent); }
.hero h1{
  font-size:clamp(2.6rem, 6.6vw, 4.6rem); color:#fff; font-weight:600;
  letter-spacing:-.01em; text-wrap:balance;
}
.hero h1 em{ font-style:italic; color:var(--accent); }
.hero p.sub{ font-size:clamp(1.08rem,1.7vw,1.3rem); color:#CBDDDA; max-width:54ch; margin:22px 0 0; line-height:1.6; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.hero-trust{ display:flex; flex-wrap:wrap; gap:10px 26px; margin-top:34px; padding-top:26px; border-top:1px solid rgba(255,255,255,.14); }
.hero-trust .item{ display:flex; align-items:center; gap:9px; font-size:14px; color:#BFD3D0; }
.hero-trust .item svg{ width:18px; height:18px; color:var(--accent); flex:none; }

/* hero photo collage */
.hero-collage{ position:relative; display:none; }
@media(min-width:980px){ .hero-collage{ display:block; min-height:480px; } }
.hero-collage figure{
  position:absolute; margin:0; border-radius:18px; overflow:hidden;
  box-shadow:var(--shadow-lg); border:5px solid rgba(255,255,255,.92);
}
.hero-collage img{ width:100%; height:100%; object-fit:cover; }
.hc-main{ width:62%; height:330px; top:20px; left:0; z-index:2; }
.hc-tr{ width:46%; height:200px; top:0; right:0; z-index:3; }
.hc-br{ width:50%; height:210px; bottom:0; right:6%; z-index:4; }
.hero-collage .stamp{
  position:absolute; bottom:24px; left:-14px; z-index:6;
  background:var(--accent); color:#1c1305; border-radius:14px;
  padding:14px 18px; box-shadow:var(--shadow-md); max-width:200px;
}
.hero-collage .stamp b{ display:block; font-family:var(--font-serif); font-size:1.5rem; line-height:1; }
.hero-collage .stamp span{ font-size:12.5px; font-weight:600; letter-spacing:.04em; }
/* mobile single image */
.hero-photo-m{ display:block; border-radius:16px; overflow:hidden; border:4px solid rgba(255,255,255,.9); box-shadow:var(--shadow-lg); position:relative; }
.hero-photo-m img{ width:100%; height:230px; object-fit:cover; }
@media(min-width:980px){ .hero-photo-m{ display:none; } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust{ background:var(--primary-d); color:#cfe0dd; }
.trust .wrap{ display:grid; grid-template-columns:1fr; gap:2px; }
.trust-row{ display:flex; flex-direction:column; gap:18px; padding-block:30px; }
@media(min-width:760px){ .trust-row{ flex-direction:row; align-items:center; justify-content:space-between; gap:14px; } }
.trust-item{ display:flex; align-items:center; gap:13px; }
.trust-item svg{ width:26px; height:26px; color:var(--accent); flex:none; }
.trust-item b{ color:#fff; font-weight:600; font-size:15.5px; display:block; }
.trust-item span{ font-size:13px; color:#9fbab7; }
.trust-sep{ display:none; width:1px; align-self:stretch; background:rgba(255,255,255,.12); }
@media(min-width:760px){ .trust-sep{ display:block; } }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid{ display:grid; grid-template-columns:1fr; gap:18px; margin-top:46px; }
@media(min-width:620px){ .svc-grid{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:980px){ .svc-grid{ grid-template-columns:repeat(3,1fr); } }
.svc-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r);
  padding:30px 26px 26px; box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease), box-shadow .3s, border-color .3s;
  position:relative; overflow:hidden;
}
.svc-card::after{ content:""; position:absolute; left:0; top:0; height:3px; width:0; background:var(--accent); transition:width .35s var(--ease); }
.svc-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:var(--border-d); }
.svc-card:hover::after{ width:100%; }
.svc-ic{
  width:54px; height:54px; border-radius:14px; display:grid; place-items:center;
  background:linear-gradient(150deg, var(--accent-soft), #f8efd9); color:var(--accent-d);
  border:1px solid #e7d4a6; margin-bottom:20px;
}
.svc-ic svg{ width:26px; height:26px; }
.svc-card h3{ font-size:1.5rem; margin-bottom:7px; }
.svc-card p{ margin:0 0 18px; font-size:15px; color:var(--muted); line-height:1.6; }
.svc-tags{ display:flex; flex-wrap:wrap; gap:6px; margin:0 0 20px; }
.svc-tags span{ font-size:12px; font-weight:600; color:var(--secondary); background:#eef5f4; border:1px solid #dcebe9; padding:4px 10px; border-radius:999px; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.dest-grid{ display:grid; grid-template-columns:1fr; gap:20px; margin-top:46px; }
@media(min-width:720px){ .dest-grid{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:980px){ .dest-grid{ grid-template-columns:repeat(3,1fr); } }
.dest-card{
  position:relative; border-radius:var(--r); overflow:hidden; min-height:300px;
  display:flex; align-items:flex-end; box-shadow:var(--shadow-sm);
  border:1px solid var(--border); isolation:isolate;
}
.dest-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; transition:transform .7s var(--ease); }
.dest-card::after{ content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(to top, rgba(8,38,40,.92) 0%, rgba(8,38,40,.45) 42%, rgba(8,38,40,.08) 72%); }
.dest-card:hover img{ transform:scale(1.07); }
.dest-body{ padding:24px 22px; color:#fff; width:100%; }
.dest-body .region{ font-size:11.5px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--accent); }
.dest-body h3{ color:#fff; font-size:1.7rem; margin:5px 0 6px; }
.dest-body p{ margin:0; font-size:14px; color:#cfe0dd; line-height:1.55; }
.dest-note{ margin-top:30px; text-align:center; font-size:14px; color:var(--muted); }

/* chips for more destinations */
.dest-chips{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:22px; }
.dest-chips span{ font-size:14px; font-weight:500; color:var(--primary); background:var(--surface); border:1px solid var(--border); padding:9px 16px; border-radius:999px; box-shadow:var(--shadow-sm); }
.dest-chips span svg{ width:15px; height:15px; color:var(--accent); vertical-align:-2px; margin-right:5px; }

/* ============================================================
   SPLIT (outbound / inbound)
   ============================================================ */
.split{ display:grid; grid-template-columns:1fr; gap:20px; margin-top:46px; }
@media(min-width:820px){ .split{ grid-template-columns:1fr 1fr; } }
.split-card{
  border-radius:var(--r); padding:38px 32px; position:relative; overflow:hidden;
  border:1px solid var(--border);
}
.split-card.out{ background:linear-gradient(155deg, #0f4549, #0a3034); color:#dfeceb; }
.split-card.in{ background:var(--surface); color:var(--text); }
.split-tag{ display:inline-flex; align-items:center; gap:9px; font-size:12px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; margin-bottom:16px; }
.split-card.out .split-tag{ color:var(--accent); }
.split-card.in .split-tag{ color:var(--accent-d); }
.split-tag svg{ width:18px; height:18px; }
.split-card h3{ font-size:1.9rem; margin-bottom:12px; }
.split-card.out h3{ color:#fff; }
.split-card p{ font-size:15.5px; line-height:1.65; margin:0 0 20px; }
.split-card.out p{ color:#bcd2cf; }
.split-card.in p{ color:var(--muted); }
.split-list{ list-style:none; margin:0 0 4px; padding:0; display:flex; flex-direction:column; gap:11px; }
.split-list li{ display:flex; align-items:flex-start; gap:11px; font-size:15px; }
.split-list svg{ width:19px; height:19px; flex:none; margin-top:2px; }
.split-card.out .split-list svg{ color:var(--accent); }
.split-card.in .split-list svg{ color:var(--secondary); }

/* ============================================================
   CORPORATE / MICE band
   ============================================================ */
.corp{ position:relative; background:linear-gradient(155deg,#103e42,#0a3034); color:#dfeceb; overflow:hidden; }
.corp::before{ content:""; position:absolute; inset:0; opacity:.5; background:radial-gradient(70% 120% at 100% 0%, rgba(201,154,56,.18), transparent 55%); }
.corp-inner{ position:relative; display:grid; gap:34px; align-items:center; }
@media(min-width:920px){ .corp-inner{ grid-template-columns:1.1fr .9fr; gap:52px; } }
.corp h2{ color:#fff; }
.corp .lede{ color:#bcd2cf; }
.corp-stats{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.corp-stat{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius:14px; padding:22px 20px; }
.corp-stat svg{ width:26px; height:26px; color:var(--accent); margin-bottom:12px; }
.corp-stat b{ display:block; font-family:var(--font-serif); font-size:1.4rem; color:#fff; line-height:1.2; }
.corp-stat span{ font-size:13.5px; color:#a9c4c1; }
.corp-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:30px; }

/* ============================================================
   HERITAGE / WHY
   ============================================================ */
.why-grid{ display:grid; grid-template-columns:1fr; gap:18px; margin-top:46px; }
@media(min-width:640px){ .why-grid{ grid-template-columns:1fr 1fr; } }
@media(min-width:980px){ .why-grid{ grid-template-columns:repeat(4,1fr); } }
.why-card{ padding:28px 24px; border-radius:var(--r); background:var(--surface); border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.why-card .num{ font-family:var(--font-serif); font-size:1.1rem; color:var(--accent-d); font-weight:600; }
.why-card svg{ width:30px; height:30px; color:var(--secondary); margin-bottom:16px; }
.why-card h3{ font-size:1.35rem; margin-bottom:8px; }
.why-card p{ margin:0; font-size:14.5px; color:var(--muted); line-height:1.6; }

/* ============================================================
   ENQUIRY + CONTACT
   ============================================================ */
.contact{ background:var(--surface-2); }
.contact-grid{ display:grid; grid-template-columns:1fr; gap:30px; margin-top:46px; }
@media(min-width:920px){ .contact-grid{ grid-template-columns:1.05fr .95fr; gap:48px; align-items:start; } }

.form-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--r); padding:30px 26px; box-shadow:var(--shadow-md); }
@media(min-width:600px){ .form-card{ padding:38px 36px; } }
.form-card h3{ font-size:1.8rem; margin-bottom:6px; }
.form-card .small{ font-size:14px; color:var(--muted); margin:0 0 24px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13px; font-weight:600; letter-spacing:.02em; color:var(--text); margin-bottom:7px; }
.field label .req{ color:var(--accent-d); }
.field input, .field select, .field textarea{
  width:100%; font-family:inherit; font-size:16px; color:var(--text);
  background:var(--bg); border:1.5px solid var(--border-d); border-radius:var(--r-sm);
  padding:13px 14px; transition:border-color .2s, box-shadow .2s, background .2s;
}
.field textarea{ resize:vertical; min-height:110px; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--secondary); background:#fff; box-shadow:0 0 0 4px rgba(46,122,120,.12);
}
.field input.invalid, .field select.invalid, .field textarea.invalid{ border-color:#b4453a; box-shadow:0 0 0 4px rgba(180,69,58,.1); }
.field .err{ display:none; color:#b4453a; font-size:12.5px; margin-top:6px; font-weight:600; }
.field.show-err .err{ display:block; }
.field-row{ display:grid; grid-template-columns:1fr; gap:0; }
@media(min-width:520px){ .field-row{ grid-template-columns:1fr 1fr; gap:18px; } }
.form-actions{ margin-top:8px; }
.form-actions .or{ text-align:center; font-size:13px; color:var(--muted); margin:14px 0; position:relative; }
.form-note{ font-size:12.5px; color:var(--muted); margin-top:16px; line-height:1.55; }
.form-success{ display:none; text-align:center; padding:24px 8px; }
.form-success.show{ display:block; }
.form-success .ok-ic{ width:64px; height:64px; border-radius:50%; background:#e7f3ec; color:#1FA855; display:grid; place-items:center; margin:0 auto 18px; }
.form-success .ok-ic svg{ width:34px; height:34px; }
.form-success h3{ margin-bottom:8px; }
.form-success p{ color:var(--muted); font-size:15px; max-width:42ch; margin:0 auto 22px; }

/* contact info column */
.contact-info{ display:flex; flex-direction:column; gap:14px; }
.info-row{ display:flex; gap:16px; align-items:flex-start; background:var(--surface); border:1px solid var(--border); border-radius:var(--r); padding:20px 22px; box-shadow:var(--shadow-sm); }
.info-row .ic{ width:46px; height:46px; border-radius:12px; background:var(--accent-soft); color:var(--accent-d); display:grid; place-items:center; flex:none; }
.info-row .ic svg{ width:22px; height:22px; }
.info-row .label{ font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-bottom:3px; }
.info-row .val{ font-size:16px; font-weight:600; color:var(--text); }
.info-row .val a{ color:var(--primary); }
.info-row .sub{ font-size:13.5px; color:var(--muted); margin-top:2px; }

.map-ph{
  margin-top:4px; border-radius:var(--r); border:1.5px dashed var(--border-d);
  background:
    repeating-linear-gradient(45deg, rgba(15,69,73,.03) 0 12px, transparent 12px 24px),
    var(--surface);
  min-height:170px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; text-align:center; padding:24px;
}
.map-ph svg{ width:30px; height:30px; color:var(--secondary); }
.map-ph b{ font-size:15px; color:var(--text); }
.map-ph span{ font-size:12.5px; color:var(--muted); font-family:ui-monospace,"SF Mono",Menlo,monospace; letter-spacing:.02em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--primary-d); color:#aec6c3; padding-block:56px 0; }
.footer-top{ display:grid; grid-template-columns:1fr; gap:34px; padding-bottom:42px; }
@media(min-width:760px){ .footer-top{ grid-template-columns:1.6fr 1fr 1fr; gap:40px; } }
@media(min-width:980px){ .footer-top{ grid-template-columns:1.8fr 1fr 1fr 1.1fr; } }
.footer-logo-plaque{ background:#fff; border-radius:14px; padding:14px 18px; display:inline-flex; box-shadow:var(--shadow-md); margin-bottom:20px; }
.footer-logo-plaque img{ height:104px; width:auto; }
.footer-brand p{ font-size:14.5px; line-height:1.65; max-width:38ch; margin:0 0 20px; color:#9fbab7; }
.footer-social{ display:flex; gap:12px; }
.footer-social a{ width:42px; height:42px; border-radius:11px; border:1px solid rgba(255,255,255,.16); display:grid; place-items:center; color:#cfe0dd; transition:background .2s, border-color .2s, transform .2s, color .2s; }
.footer-social a:hover{ background:var(--accent); color:#1c1305; border-color:var(--accent); transform:translateY(-2px); }
.footer-social a svg{ width:19px; height:19px; }
.footer-col h4{ font-family:var(--font-sans); font-size:12.5px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--accent); margin:0 0 18px; }
.footer-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.footer-col a, .footer-col li{ font-size:14.5px; color:#bcd2cf; transition:color .2s; }
.footer-col a:hover{ color:#fff; }
.footer-col .muted{ color:#84a09d; font-size:13px; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); padding-block:22px; display:flex; flex-direction:column; gap:8px; align-items:center; text-align:center; }
@media(min-width:680px){ .footer-bottom{ flex-direction:row; justify-content:space-between; text-align:left; } }
.footer-bottom p{ margin:0; font-size:12.5px; color:#84a09d; line-height:1.6; }
.footer-bottom .legal{ max-width:none; }

/* ============================================================
   MOBILE ACTION BAR + WA FAB
   ============================================================ */
.mbar{
  position:fixed; bottom:0; left:0; right:0; z-index:70;
  display:grid; grid-template-columns:1fr 1fr 1fr;
  background:rgba(251,248,241,.94); backdrop-filter:blur(12px);
  border-top:1px solid var(--border); box-shadow:0 -8px 24px -16px rgba(18,43,44,.4);
  padding:8px 8px calc(8px + env(safe-area-inset-bottom));
}
.mbar a{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; padding:8px 4px; border-radius:12px; font-size:11.5px; font-weight:600; min-height:52px; }
.mbar a svg{ width:21px; height:21px; }
.mbar .m-call{ color:var(--primary); }
.mbar .m-wa{ color:#178a45; }
.mbar .m-quote{ background:var(--accent); color:#1c1305; }
@media(min-width:980px){ .mbar{ display:none; } }
body{ padding-bottom:0; }
@media(max-width:979px){ body{ padding-bottom:72px; } }

.wa-fab{
  position:fixed; right:24px; bottom:28px; z-index:65; display:none;
  width:60px; height:60px; border-radius:50%; background:#1FA855; color:#fff;
  align-items:center; justify-content:center; box-shadow:0 12px 30px -8px rgba(31,168,85,.6);
  transition:transform .25s var(--ease), box-shadow .25s;
}
.wa-fab svg{ width:30px; height:30px; }
.wa-fab:hover{ transform:scale(1.08) translateY(-2px); }
@media(min-width:980px){ .wa-fab{ display:flex; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; }
.reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; }
}
