/* =====================================================================
   Shaka Shelbys Tours — Design System (Premium Editorial)
   Hand-built static stylesheet. No build step required.
   Fonts: Playfair Display (headings) + Inter (body/UI)
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette — Cape Town ocean + safari sunset */
  --ink:        #15242e;   /* primary text / headings */
  --ink-soft:   #51616b;   /* muted text */
  --ocean:      #0c5a77;   /* primary brand */
  --ocean-deep: #07394d;   /* darker brand */
  --sky:        #1ba0c8;   /* bright accent */
  --sunset:     #b8860b;   /* CTA / accent — gold */
  --sunset-deep:#97690a;   /* CTA hover — deeper gold */
  --gold:       #c79a3f;   /* stars / premium detail */
  --gold-bright:#e9c877;   /* gold hover state on dark */
  --night:      #050403;   /* header / logo background black */
  --sand:       #f5efe5;   /* warm section bg */
  --mist:       #f3f7f9;   /* cool section bg */
  --paper:      #ffffff;
  --line:       #e3eaee;   /* borders */
  --line-soft:  #eef3f5;

  /* Typography */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale (8pt rhythm) */
  --sp-1: .5rem; --sp-2: 1rem; --sp-3: 1.5rem; --sp-4: 2rem;
  --sp-5: 3rem;  --sp-6: 4rem; --sp-7: 6rem;   --sp-8: 8rem;

  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(16,42,58,.06), 0 2px 8px rgba(16,42,58,.05);
  --shadow-md: 0 6px 18px rgba(16,42,58,.10), 0 2px 6px rgba(16,42,58,.06);
  --shadow-lg: 0 18px 48px rgba(16,42,58,.16);

  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p  { color: var(--ink-soft); }
.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--sand { background: var(--sand); }
.section--mist { background: var(--mist); }
.section--ink  { background: var(--ocean-deep); color: #eaf3f6; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sunset);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sunset); display: inline-block; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: .9rem; font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  border: 1.5px solid transparent; transition: transform .18s var(--ease), background .2s, color .2s, box-shadow .2s, border-color .2s;
  min-height: 48px; white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--sunset); color: #fff; box-shadow: 0 8px 20px rgba(184,134,11,.30); }
.btn-primary:hover { background: var(--sunset-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ocean); color: var(--ocean); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--ink); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--ocean); }
.link-arrow svg { transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
/* Top utility bar — phone/email above the sticky header (scrolls away) */
.topbar { background: var(--night); border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.82); font-size: .85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar__contact { display: flex; align-items: center; gap: 1.75rem; }
.topbar a { display: inline-flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.82); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; flex: none; color: var(--sunset); }
.topbar__meta { color: rgba(255,255,255,.55); }
@media (max-width: 720px) { .topbar__meta { display: none; } }
@media (max-width: 460px) { .topbar__email span { display: none; } .topbar__contact { gap: 1.25rem; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--night);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: rgba(199,154,63,.3); box-shadow: 0 6px 18px rgba(0,0,0,.35); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 112px; transition: min-height .3s var(--ease); }
.site-header.scrolled .nav { min-height: 80px; }
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand-logo { display: block; height: 100px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .brand-logo { height: 70px; }
.brand-logo--sm { height: 52px; }
.brand-logo--lg { height: 80px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name__main { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.75rem; color: var(--gold); white-space: nowrap; letter-spacing: .04em; }
.brand-name__sub { font-size: .9rem; font-weight: 600; letter-spacing: .58em; text-transform: uppercase; color: var(--gold-bright); margin-top: .25rem; }
.brand-name--sm .brand-name__main { font-size: 1.25rem; }
.brand-name--sm .brand-name__sub { font-size: .7rem; letter-spacing: .44em; }
@media (max-width: 420px) {
  .site-header .brand-name__main { font-size: 1.3rem; }
  .site-header .brand-name__sub { font-size: .7rem; letter-spacing: .38em; }
}
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-weight: 500; font-size: .96rem; color: var(--gold); position: relative; padding-block: .4rem; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold-bright); transition: width .25s var(--ease); }
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: .9rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(199,154,63,.45); border-radius: 12px; background: transparent; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--gold); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 820px); display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,40,55,.35) 0%, rgba(7,40,55,.30) 35%, rgba(7,40,55,.72) 100%); }
/* Background video layer (sits above the poster image, below the overlay).
   Positive z-index within the .hero__media stacking context puts it over the img. */
.hero__video { position: absolute; inset: 0; z-index: 1; overflow: hidden; opacity: 0; transition: opacity 1s var(--ease); pointer-events: none; }
.hero.video-ready .hero__video { opacity: 1; }
.hero__video iframe { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh; border: 0; pointer-events: none; }
.hero__inner { padding-block: clamp(4rem, 10vw, 7rem); max-width: 680px; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero .lead { color: rgba(255,255,255,.92); margin-top: 1.25rem; font-size: clamp(1.05rem, 1.7vw, 1.3rem); max-width: 30em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__trust { display: flex; align-items: center; gap: .75rem; margin-top: 2.25rem; font-size: .95rem; color: rgba(255,255,255,.9); }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1.25rem .5rem; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(1.9rem, 3.2vw, 2.7rem); color: var(--ocean); line-height: 1; }
.stat span { display: block; margin-top: .5rem; font-size: .9rem; color: var(--ink-soft); font-weight: 500; }

/* ---------- Card grid (experiences) ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card__tag { font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sunset); margin-bottom: .55rem; }
.card__body h3 { margin-bottom: .5rem; }
.card__body p { font-size: .96rem; flex: 1; }
.card__foot { margin-top: 1.1rem; display: flex; align-items: center; justify-content: space-between; }
.card__price { font-weight: 600; color: var(--ink); }
.card__price b { font-family: var(--font-head); font-size: 1.2rem; color: var(--ocean); }
.stretched::after { content: ""; position: absolute; inset: 0; } /* full-card click target */

/* immersive image card with overlay caption */
.tile { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(7,40,55,.82) 100%); }
.tile:hover img { transform: scale(1.06); }
.tile__cap { position: relative; z-index: 1; padding: 1.5rem; }
.tile__cap h3 { color: #fff; }
.tile__cap p { color: rgba(255,255,255,.88); font-size: .95rem; margin-top: .35rem; }
.tile.big { grid-row: span 2; min-height: 100%; }

/* ---------- Features / value props ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature { padding: 1.75rem 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature__icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--ocean), var(--sky)); display: grid; place-items: center; margin-bottom: 1.1rem; }
.feature__icon svg { width: 26px; height: 26px; stroke: #fff; }
.feature h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.feature p { font-size: .96rem; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__badge { position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 1rem 1.25rem; display: flex; align-items: center; gap: .85rem; }
.split__badge b { font-family: var(--font-head); font-size: 1.7rem; color: var(--ocean); }
.split__badge span { font-size: .85rem; color: var(--ink-soft); }
.ticks { margin-top: 1.5rem; display: grid; gap: .85rem; }
.ticks li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink); font-weight: 500; }
.ticks svg { width: 22px; height: 22px; flex: none; margin-top: 2px; color: var(--sunset); }

/* ---------- Detail pages ---------- */
.detail { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.prose { max-width: 70ch; }
.prose > p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.1rem; }
.prose > p:first-child { font-size: 1.15rem; color: var(--ink); }
.prose h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 2.4vw, 1.85rem); color: var(--ink); margin: 2.25rem 0 .85rem; }
.prose .ticks { margin-top: 1rem; }
.detail__aside { position: sticky; top: 96px; display: grid; gap: 1.25rem; }
.incl-card { background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.5rem; }
.incl-card h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 1rem; }
.incl-list { list-style: none; display: grid; gap: .65rem; }
.incl-list li { display: flex; gap: .65rem; align-items: flex-start; color: var(--ink); font-size: .96rem; line-height: 1.45; }
.incl-list svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.incl-list.incl svg { color: #1a8a5a; }
.incl-list.excl svg { color: var(--ink-soft); }
.incl-card--cta { background: linear-gradient(160deg, var(--ocean), var(--ocean-deep)); border: none; color: #fff; }
.incl-card--cta h3 { color: #fff; }
.incl-card--cta p { color: rgba(255,255,255,.85); font-size: .95rem; margin-bottom: 1.25rem; }
.incl-card--cta .btn { display: flex; margin-bottom: .6rem; }
.incl-card--cta .btn-ghost { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); color: #fff; }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.quote .stars { margin-bottom: 1rem; }
.quote p { color: var(--ink); font-size: 1.02rem; flex: 1; }
.quote__who { display: flex; align-items: center; gap: .85rem; margin-top: 1.4rem; }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--ocean), var(--sunset)); color: #fff; display: grid; place-items: center; font-weight: 600; font-family: var(--font-head); }
.quote__who b { display: block; font-size: .95rem; }
.quote__who span { font-size: .85rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(2.5rem, 6vw, 4.5rem); color: #fff; text-align: center; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(7,57,77,.92), rgba(191,77,14,.78)); }
.cta-band h2 { color: #fff; max-width: 16em; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 38em; margin: 1rem auto 2rem; font-size: 1.1rem; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: #cfcfcf; padding-top: clamp(3rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand span { color: #b0b0b0; }
.site-footer p { color: #b3b3b3; font-size: .95rem; }
.footer-col h4 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; }
.footer-col a { display: block; padding: .35rem 0; color: #c2c2c2; font-size: .95rem; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.contact-line { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .8rem; font-size: .95rem; }
.contact-line svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--sunset); }
.socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; transition: background .2s, border-color .2s; }
.socials a:hover { background: var(--sunset); border-color: var(--sunset); }
.socials svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .88rem; color: #9a9a9a; }
.footer-bottom nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Forms ---------- */
.contact-form label { display: block; font-weight: 600; font-size: .92rem; color: var(--ink); }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: .45rem; padding: .8rem .9rem; font: inherit; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s; min-height: 48px;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(12,90,119,.12); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9aa9b3; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr !important; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile nav panel ---------- */
.mobile-panel { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4, .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .detail { grid-template-columns: 1fr; }
  .detail__aside { position: static; }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; max-width: 480px; }
  .stats { grid-template-columns: repeat(2, 1fr); }

  /* mobile menu */
  .mobile-panel { display: block; position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    background: var(--night); z-index: 200; transform: translateX(100%); transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg); padding: 1.5rem; overflow-y: auto; }
  .mobile-panel.open { transform: none; }
  .mobile-panel a { display: block; padding: .9rem .25rem; font-size: 1.1rem; font-weight: 500; color: var(--gold); border-bottom: 1px solid rgba(255,255,255,.08); }
  .mobile-panel a:hover { color: var(--gold-bright); }
  .mobile-panel .btn-primary { display: flex; margin-top: 1.25rem; color: #fff; }
  .mobile-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
  .mobile-close { width: 44px; height: 44px; border: 1px solid rgba(199,154,63,.45); border-radius: 12px; background: transparent; color: var(--gold); display: grid; place-items: center; }
  .scrim { position: fixed; inset: 0; background: rgba(7,40,55,.45); z-index: 150; opacity: 0; visibility: hidden; transition: opacity .3s; }
  .scrim.open { opacity: 1; visibility: visible; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .features { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 8px 0; z-index: 300; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px;
  border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.3); transition: transform .2s var(--ease), box-shadow .2s; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 26px rgba(0,0,0,.35); color: #fff; }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }
@media (max-width: 560px) { .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; } }

/* ---------- Slideshow ---------- */
.slideshow { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--ocean-deep); }
.slideshow__track { position: relative; aspect-ratio: 16 / 9; }
.slideshow__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s var(--ease); }
.slideshow__slide.is-active { opacity: 1; }
.slideshow__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slideshow__cap { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 2.6rem 1.4rem 2.4rem; color: #fff; font-size: .98rem; font-weight: 500; line-height: 1.4; background: linear-gradient(to top, rgba(7,57,77,.88), rgba(7,57,77,.25) 60%, transparent); }
.slideshow__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255,255,255,.85); color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-md); transition: background .2s var(--ease), transform .2s var(--ease); z-index: 3; }
.slideshow__nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.slideshow__nav:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
.slideshow__nav--prev { left: 16px; }
.slideshow__nav--next { right: 16px; }
.slideshow__nav svg { width: 22px; height: 22px; }
.slideshow__dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; gap: .5rem; justify-content: center; z-index: 3; }
.slideshow__dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,.5); cursor: pointer; padding: 0; transition: background .2s var(--ease), transform .2s var(--ease); }
.slideshow__dot.is-active { background: #fff; transform: scale(1.3); }
.slideshow__dot:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }
@media (max-width: 640px) {
  .slideshow__track { aspect-ratio: 4 / 3; }
  .slideshow__nav { width: 40px; height: 40px; }
  .slideshow__cap { font-size: .9rem; padding: 2.2rem 1.1rem 2.2rem; }
}
.split--slides { align-items: center; }
.split--slides .split__media img { aspect-ratio: auto; border-radius: 0; box-shadow: none; }
@media (max-width: 860px) { .split--slides { grid-template-columns: 1fr; } }
