/* ===== CAB Zakynthos — shared design tokens ===== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Hanken+Grotesk:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root{
  /* surfaces */
  --bg:        #0b0a09;
  --bg-2:      #121110;
  --bg-3:      #191614;
  --bg-card:   #16130f;
  --bg-elev:   #1d1814;

  /* brand */
  --gold:      #c9a24f;
  --gold-soft: #dcc18a;
  --gold-deep: #a47e34;
  --tan:       #b6a079;   /* muted body copy */
  --cream:     #f5f0e7;   /* headings */
  --white:     #ffffff;

  /* lines & glows */
  --line:      rgba(201,162,79,.20);
  --line-soft: rgba(255,255,255,.07);
  --glow:      rgba(201,162,79,.14);

  /* shadows for depth */
  --shadow-sm: 0 2px 10px rgba(0,0,0,.4);
  --shadow-md: 0 14px 40px rgba(0,0,0,.55);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.6);
  --shadow-gold: 0 20px 60px rgba(164,126,52,.20);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;

  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--cream);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
::selection{ background:var(--gold); color:#000; }

/* shared helpers */
.eyebrow{
  font-family:var(--font-body);
  font-weight:600;
  font-size:.78rem;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--gold);
}
.italic{ font-style:italic; color:var(--gold-soft); font-weight:500; }
.gold{ color:var(--gold); }

/* image-slot baseline so empty placeholders look intentional */
image-slot{
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(201,162,79,.10), transparent 60%),
    linear-gradient(180deg,#201b15,#100d0b);
  border:1px solid var(--line);
  color:var(--tan);
  font-family:var(--font-body);
  font-size:.8rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}

/* scroll-reveal */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; }
.reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; }
.reveal.d4{ transition-delay:.32s; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* WhatsApp floating btn */
.wa-fab{
  position:fixed; right:22px; bottom:22px; z-index:90;
  width:58px; height:58px; border-radius:50%;
  display:grid; place-items:center;
  background:#25d366; color:#fff;
  box-shadow:0 12px 30px rgba(37,211,102,.4);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-fab:hover{ transform:translateY(-4px) scale(1.06); box-shadow:0 18px 40px rgba(37,211,102,.55); }
.wa-fab svg{ width:30px; height:30px; }

/* ============ VARIATION C — Editorial / Cinematic ============ */
/* charcoal palette scoped to Layout C only */
body{
  --bg:        #26272b;
  --bg-2:      #2c2d32;
  --bg-3:      #313238;
  --bg-card:   #2b2c31;
  --bg-elev:   #353640;
  background:#26272b;
}
.shell{ max-width:1240px; margin:0 auto; padding:0 40px; }

/* ---- HEADER (centered, stacked) ---- */
.hdr{ position:sticky; top:0; z-index:80; backdrop-filter:blur(14px); background:linear-gradient(180deg,rgba(38,39,43,.94),rgba(38,39,43,.5)); border-bottom:1px solid var(--line-soft); }
.hdr-in{ max-width:1240px; margin:0 auto; padding:16px 40px; display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:20px; }
.hdr-nav{ display:flex; align-items:center; gap:26px; }
.hdr-nav.right{ justify-content:flex-end; }
.hdr-nav a{ font-size:.9rem; font-weight:500; color:var(--tan); transition:color .3s var(--ease); }
.hdr-nav a:hover{ color:var(--gold); }
.hdr-nav a.btn-gold, .hdr-nav a.btn-gold:hover{ color:#0a0700; }

/* hamburger + mobile menu (hidden on desktop) */
.hdr-burger{ display:none; flex-direction:column; align-items:center; justify-content:center; gap:5px; width:44px; height:44px; padding:0; background:none; border:none; cursor:pointer; }
.hdr-burger span{ width:24px; height:2px; border-radius:2px; background:var(--cream); transition:transform .3s var(--ease), opacity .25s var(--ease); }
.hdr-burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2){ opacity:0; }
.hdr-burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.hdr-menu{ display:none; }
.logo{ display:flex; flex-direction:column; align-items:center; line-height:1; }
.logo-mark{ display:flex; align-items:center; gap:1px; font-family:var(--font-display); font-weight:700; font-size:1.7rem; color:var(--cream); }
.logo-pin{ width:21px; height:28px; }
.logo-sub{ font-size:.56rem; letter-spacing:.46em; color:var(--gold); margin-top:4px; }
.logo-img{ height:56px; width:auto; display:block; }
.foot .logo-img{ height:104px; }
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:9px; font-weight:600; font-size:.88rem; line-height:1; padding:11px 20px; border-radius:999px; cursor:pointer; border:none; transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease); }
.btn-gold{ background:linear-gradient(135deg,var(--gold-soft),var(--gold)); color:#0a0700; }
.btn-gold:hover{ transform:translateY(-3px); box-shadow:var(--shadow-gold); }
.btn-ghost{ background:transparent; color:var(--cream); border:1px solid var(--line); }
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold); }
.wa-ico{ width:16px; height:16px; }

/* ---- HERO (full-bleed cover background) ---- */
.hero{ position:relative; min-height:92vh; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; }
.hero-bg{ position:absolute !important; inset:0; width:100%; height:100%; border:none !important; border-radius:0 !important; z-index:0; }
/* slider */
.hero-slider{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.hslide{ position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 1.6s var(--ease); will-change:opacity; }
.hslide.active{ opacity:1; }
.hero-scrim{ position:absolute; inset:0; z-index:1; pointer-events:none; background:linear-gradient(180deg, rgba(11,10,9,.86) 0%, rgba(11,10,9,.6) 42%, rgba(11,10,9,.9) 100%); }
.hero-scrim::after{ content:""; position:absolute; inset:0; box-shadow: inset 0 220px 200px -60px rgba(11,10,9,.95), inset 0 -160px 140px -50px rgba(11,10,9,.95), inset 0 0 240px 70px rgba(0,0,0,.55); }
.hero-content{ position:relative; z-index:2; pointer-events:none; padding:96px 40px; width:100%; }
.hero-content .badge, .hero-content .acts, .hero-content .acts .btn{ pointer-events:auto; }
.hero h1, .hero p.lead{ text-shadow:0 2px 28px rgba(0,0,0,.7); }
.hero .badge{ display:inline-flex; align-items:center; gap:11px; font-size:.74rem; font-weight:700; letter-spacing:.3em; text-transform:uppercase; color:var(--gold-soft); border:none; border-radius:0; padding:0 0 10px; background:none; backdrop-filter:none; box-shadow:none; position:relative; }
.hero .badge::after{ content:""; position:absolute; left:0; bottom:0; width:46px; height:2px; border-radius:2px; background:linear-gradient(90deg,var(--gold),rgba(201,162,79,0)); }
.hero .badge .dot{ width:7px; height:7px; border-radius:50%; background:var(--gold); animation:pulse 2.4s infinite; }
@keyframes pulse{ 0%{box-shadow:0 0 0 0 rgba(201,162,79,.5);} 70%{box-shadow:0 0 0 10px rgba(201,162,79,0);} 100%{box-shadow:0 0 0 0 rgba(201,162,79,0);} }
.hero h1{ font-family:var(--font-display); font-weight:700; font-size:clamp(2.8rem,6.4vw,5.6rem); line-height:.98; letter-spacing:-.025em; color:var(--cream); margin:26px auto 0; max-width:14ch; }
.hero h1 .italic{ font-style:italic; color:var(--gold-soft); font-weight:500; }
.hero p.lead{ color:var(--tan); font-size:1.14rem; line-height:1.6; max-width:34rem; margin:24px auto 0; }
.hero .acts{ display:flex; gap:14px; justify-content:center; margin:30px 0 56px; flex-wrap:wrap; }
.hero .acts .btn{ font-size:.95rem; padding:15px 26px; }

/* ---- STAT STRIP (inline, no boxes) ---- */
.strip{ display:flex; align-items:center; justify-content:space-between; gap:20px; padding:38px 0; border-bottom:1px solid var(--line-soft); }
.strip .st{ flex:1; text-align:center; position:relative; }
.strip .st + .st::before{ content:""; position:absolute; left:0; top:50%; transform:translateY(-50%); width:1px; height:54px; background:var(--line-soft); }
.strip .st b{ font-family:var(--font-display); font-weight:700; font-size:clamp(2rem,3.4vw,2.9rem); color:var(--gold); line-height:1; display:block; }
.strip .st span{ font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color:var(--tan); margin-top:10px; display:block; }

/* ---- SECTION ---- */
.sec{ padding:104px 0; }
.sec.line{ border-top:1px solid var(--line-soft); }
.lead-ix{ display:inline-flex; align-items:center; gap:12px; margin-top:16px; font-family:var(--font-body); font-weight:600; font-size:.72rem; letter-spacing:.24em; text-transform:uppercase; color:var(--gold); }
.lead-ix::before{ content:""; width:32px; height:2px; border-radius:2px; background:linear-gradient(90deg,var(--gold),rgba(201,162,79,.25)); }
.split{ display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; align-items:start; }
.split h2{ font-family:var(--font-display); font-weight:700; font-size:clamp(2rem,3.4vw,3.1rem); line-height:1.04; letter-spacing:-.02em; color:var(--cream); margin:16px 0 0; }
.split h2 .italic{ font-style:italic; color:var(--gold-soft); font-weight:500; }
.split .body p{ color:var(--tan); line-height:1.75; font-size:1.05rem; margin:0 0 18px; }

/* ---- FLEET (alternating full-width rows — from Layout B) ---- */
.fhead{ margin-bottom:40px; }
.fhead h2{ font-family:var(--font-display); font-weight:700; font-size:clamp(2rem,3.4vw,3.1rem); line-height:1.04; letter-spacing:-.02em; color:var(--cream); margin:14px 0 0; }
.fhead h2 .italic{ font-style:italic; color:var(--gold-soft); font-weight:500; }
.fhead .lede{ color:var(--tan); line-height:1.6; max-width:34rem; margin:16px 0 0; font-size:1.02rem; }
.fleet{ display:flex; flex-direction:column; gap:22px; }
.frow{ display:grid; grid-template-columns:1.3fr 1fr; gap:0; border:1px solid var(--line-soft); border-radius:var(--r-xl); overflow:hidden; background:var(--bg-card); transition:transform .5s var(--ease), box-shadow .5s var(--ease); }
.frow:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.frow.rev{ grid-template-columns:1fr 1.3fr; }
.frow.rev .finfo{ order:-1; }
.frow image-slot{ width:100%; height:100%; min-height:280px; }
.finfo{ padding:38px 40px; display:flex; flex-direction:column; justify-content:center; }
.finfo .vtag{ font-size:.72rem; letter-spacing:.24em; text-transform:uppercase; color:var(--gold); }
.finfo h3{ font-family:var(--font-display); font-weight:700; font-size:1.9rem; color:var(--cream); margin:8px 0 22px; }
.finfo .fm{ display:flex; gap:46px; border-top:1px solid var(--line-soft); padding-top:20px; }
.finfo .fm span{ font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color:var(--tan); }
.finfo .fm b{ display:block; font-family:var(--font-display); font-size:1.4rem; color:var(--cream); margin-top:6px; }
.finfo .famen{ list-style:none; display:flex; flex-wrap:wrap; gap:9px; margin:20px 0 0; padding:0; }
.finfo .famen li{ font-size:.68rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase; color:var(--tan); border:1px solid var(--line-soft); border-radius:999px; padding:7px 13px; display:inline-flex; align-items:center; gap:7px; }
.finfo .famen li::before{ content:""; width:5px; height:5px; border-radius:50%; background:var(--gold); }

/* ---- WHY (ghost numerals, lines) ---- */
.why-head{ text-align:center; margin-bottom:56px; }
.why-head h2{ font-family:var(--font-display); font-weight:700; font-size:clamp(2rem,3.4vw,3.1rem); line-height:1.04; color:var(--cream); margin:14px 0 0; }
.why-head h2 .italic{ font-style:italic; color:var(--gold-soft); font-weight:500; }
.why-head p{ color:var(--tan); max-width:36rem; margin:16px auto 0; line-height:1.6; }
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; }
.wcell{ position:relative; padding:46px 34px; border-top:1px solid var(--line-soft); }
.wcell:nth-child(3n+2){ border-left:1px solid var(--line-soft); border-right:1px solid var(--line-soft); }
.wcell h4{ font-family:var(--font-display); font-weight:700; font-size:clamp(1.5rem,2.3vw,1.95rem); line-height:1.1; letter-spacing:-.01em; color:var(--cream); margin:0 0 16px; }
.wcell h4::before{ content:""; display:block; width:36px; height:3px; border-radius:3px; margin-bottom:18px; background:linear-gradient(90deg,var(--gold),rgba(201,162,79,.2)); transition:width .4s var(--ease); }
.wcell:hover h4::before{ width:56px; }
.wcell p{ color:var(--tan); line-height:1.65; margin:0; font-size:.98rem; }

/* ---- DISCOVER (editorial asymmetric) ---- */
.disc-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; margin-bottom:40px; flex-wrap:wrap; }
.disc-head h2{ font-family:var(--font-display); font-weight:700; font-size:clamp(2rem,3.4vw,3.1rem); line-height:1.04; color:var(--cream); margin:14px 0 0; }
.disc-head h2 .italic{ font-style:italic; color:var(--gold-soft); font-weight:500; }
.disc-head .sub{ color:var(--tan); font-size:.95rem; }
.disc-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; grid-template-rows:auto auto; gap:18px; }
.dc{ border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--line-soft); background:var(--bg-card); position:relative; transition:transform .5s var(--ease), box-shadow .5s var(--ease); }
.dc:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
.dc.feature{ grid-row:span 2; }
.dc.feature image-slot{ height:100%; min-height:440px; }
.dc image-slot{ width:100%; height:210px; }
.dc .db{ padding:20px 24px 24px; }
.dc.feature .db{ position:absolute; inset:auto 0 0 0; background:linear-gradient(0deg,rgba(8,7,6,.92),transparent); padding:30px 30px 28px; }
.dc .dt{ font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); }
.dc h4{ font-family:var(--font-display); font-weight:600; font-size:1.2rem; color:var(--cream); margin:7px 0 9px; }
.dc.feature h4{ font-size:1.7rem; }
.dc p{ color:var(--tan); line-height:1.6; font-size:.88rem; margin:0; }
.dc.feature p{ max-width:30rem; }

/* ---- FAQ (narrow centered) ---- */
.faq-wrap{ max-width:760px; margin:0 auto; text-align:center; }
.faq-wrap h2{ font-family:var(--font-display); font-weight:700; font-size:clamp(2rem,3.4vw,3.1rem); line-height:1.04; color:var(--cream); margin:14px 0 0; }
.faq-wrap h2 .italic{ font-style:italic; color:var(--gold-soft); font-weight:500; }
.faq-wrap > p{ color:var(--tan); margin:16px auto 40px; line-height:1.6; max-width:34rem; }
.faq{ display:flex; flex-direction:column; gap:12px; text-align:left; }
.fitem{ border:1px solid var(--line-soft); border-radius:var(--r-md); overflow:hidden; background:var(--bg-card); transition:border-color .35s var(--ease); }
.fitem.open{ border-color:var(--line); }
.fq{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:18px; padding:22px 26px; background:none; border:none; cursor:pointer; text-align:left; color:var(--cream); font-family:var(--font-body); font-weight:600; font-size:1.05rem; }
.fq .ico{ flex-shrink:0; width:26px; height:26px; display:grid; place-items:center; border-radius:50%; border:1px solid var(--line); color:var(--gold); transition:transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease); }
.fitem.open .fq .ico{ transform:rotate(45deg); background:var(--gold); color:#1a1206; }
.fa{ max-height:0; overflow:hidden; transition:max-height .45s var(--ease); }
.fa p{ padding:0 26px 24px; margin:0; color:var(--tan); line-height:1.7; }

/* ---- CTA (full-bleed centered) ---- */
.cta{ position:relative; overflow:hidden; text-align:center; padding:96px 40px; border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); background:radial-gradient(120% 130% at 50% 0%, rgba(201,162,79,.12), transparent 55%); }
.cta h2{ font-family:var(--font-display); font-weight:700; font-size:clamp(2.2rem,4vw,3.6rem); line-height:1.04; color:var(--cream); margin:14px auto 0; max-width:18ch; }
.cta h2 .italic{ font-style:italic; color:var(--gold-soft); font-weight:500; }
.cta p{ color:var(--tan); max-width:34rem; margin:18px auto 30px; line-height:1.6; }
.cta .btn{ font-size:1rem; padding:16px 30px; }

/* ---- FOOTER (centered) ---- */
.foot{ padding:70px 0 40px; text-align:center; }
.foot .logo{ margin:0 auto; }
.foot .logo-mark{ font-size:2.1rem; }
.foot .logo-pin{ width:26px; height:34px; }
.foot .logo-sub{ font-size:.66rem; letter-spacing:.55em; }
.foot .fnav{ display:flex; flex-wrap:wrap; justify-content:center; gap:28px; margin:34px 0; }
.foot .fnav a{ color:var(--tan); font-size:.95rem; transition:color .3s var(--ease); }
.foot .fnav a:hover{ color:var(--gold); }
.foot .fbottom{ padding-top:24px; border-top:1px solid var(--line-soft); display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; color:var(--tan); font-size:.85rem; }
.foot .fcredit{ display:inline-flex; align-items:center; gap:10px; margin:26px auto 0; padding:8px 4px; color:var(--tan); font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; opacity:.75; transition:opacity .3s var(--ease); }
.foot .fcredit:hover{ opacity:1; }
.foot .fcredit img{ height:22px; width:auto; display:block; }

@media (max-width:900px){
  .shell{ padding:0 22px; }
  .hdr-in{ display:flex; align-items:center; justify-content:center; position:relative; padding:14px 22px; }
  .hdr-nav{ display:none; }
  .hdr-burger{ display:flex; position:absolute; right:16px; top:50%; transform:translateY(-50%); }
  .hdr-menu{ display:flex; flex-direction:column; position:fixed; top:0; left:0; right:0; z-index:79;
    padding:86px 24px 30px; background:rgba(38,39,43,.98); backdrop-filter:blur(16px);
    border-bottom:1px solid var(--line-soft); box-shadow:0 24px 50px rgba(0,0,0,.5);
    transform:translateY(-105%); transition:transform .42s var(--ease); }
  .hdr-menu.open{ transform:translateY(0); }
  .hdr-menu a{ color:var(--cream); font-size:1.1rem; font-weight:500; padding:15px 2px; border-bottom:1px solid var(--line-soft); }
  .hdr-menu a:active{ color:var(--gold); }
  .hdr-menu .btn{ margin-top:18px; justify-content:center; font-size:1rem; padding:14px 22px; }
  .hdr-menu .btn{ border-bottom:none; }
  .sec{ padding:68px 0; }
  .split{ grid-template-columns:1fr; gap:28px; }
  .why-grid{ grid-template-columns:1fr; }
  .frow, .frow.rev{ grid-template-columns:1fr; }
  .frow.rev .finfo{ order:1; }
  .frow image-slot{ min-height:240px; }
  .finfo{ padding:30px 28px; }
  .wcell{ padding:34px 26px; }
  .wcell:nth-child(3n+2){ border-left:none; border-right:none; }
  .disc-grid{ grid-template-columns:1fr; }
  .dc.feature{ grid-row:auto; }
  .dc.feature image-slot{ min-height:280px; height:280px; }
  .cta{ padding:72px 22px; }
  .foot{ padding:56px 0 32px; }
  .foot .fbottom{ justify-content:center; text-align:center; }
  .strip{ flex-wrap:wrap; }
  .strip .st{ flex:0 0 45%; }
  .strip .st + .st::before{ display:none; }
}

@media (max-width:560px){
  .hero{ min-height:84vh; }
  .hero-content{ padding:78px 22px; }
  .hero .acts{ margin-bottom:40px; }
  .hero .acts .btn{ width:100%; justify-content:center; }
  .sec{ padding:54px 0; }
  .finfo .fm{ gap:30px; }
  .finfo h3{ font-size:1.6rem; }
  .famen li{ font-size:.64rem; padding:6px 11px; }
  .foot .logo-img{ height:80px; }
  .foot .fnav{ gap:14px 20px; }
}
