/* ==========================================================================
   jBay Scooter Rentals
   One stylesheet. No framework, no build step.

   Everything you'd want to change lives in the :root block below — brand
   colours, corner rounding, spacing rhythm. Change it there and the whole
   site follows.
   ========================================================================== */

:root {
  /* --- brand ------------------------------------------------------------ */
  --deep:        #0e2c39;   /* deepest ocean: hero, footer                  */
  --ocean:       #1f495d;   /* brand blue-teal (matches the booking app)    */
  --ocean-mid:   #2c6379;
  --ocean-light: #4a8fa8;
  --sunset:      #ef6c33;   /* vivid brand accent — graphics only, no text  */
  --sunset-dark: #d2571f;
  --action:      #c44f15;   /* anything with white text on it (AA 4.7:1)    */
  --action-dark: #a8430f;
  --sunset-ink:  #b3500f;   /* accent colour for small text on light (5.2:1)*/
  --whatsapp:    #25d366;

  /* --- neutrals --------------------------------------------------------- */
  --sand:        #faf6ef;
  --sand-deep:   #f0e7d7;
  --ink:         #13242c;
  --ink-soft:    #4c5f69;
  --white:       #ffffff;
  --line:        rgba(19, 36, 44, .10);
  --line-strong: rgba(19, 36, 44, .18);

  /* --- depth: layered, soft, never muddy -------------------------------- */
  --shadow-sm: 0 1px 2px rgba(14,44,57,.05), 0 2px 8px rgba(14,44,57,.05);
  --shadow-md: 0 2px 4px rgba(14,44,57,.04), 0 12px 28px rgba(14,44,57,.08);
  --shadow-lg: 0 4px 8px rgba(14,44,57,.04), 0 28px 60px rgba(14,44,57,.14);

  /* --- shape & rhythm --------------------------------------------------- */
  --radius:    22px;
  --radius-sm: 14px;
  --wrap:      1180px;
  --gap:       clamp(16px, 2.2vw, 24px);
  --section:   clamp(64px, 9vw, 124px);

  /* --- type ------------------------------------------------------------- */
  --font-display: "Bricolage Grotesque", "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
body, p, h1, h2, h3, h4, li, td, th { overflow-wrap: break-word; }
a { color: var(--ocean); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.85rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -.015em; }
p  { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }

::selection { background: var(--sunset); color: #fff; }
:focus-visible { outline: 3px solid var(--sunset); outline-offset: 3px; border-radius: 6px; }

/* ---------- layout ---------- */
.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }
@media (min-width: 560px) { .wrap { width: min(100% - 48px, var(--wrap)); } }
[id] { scroll-margin-top: 92px; }

.section { padding: var(--section) 0; position: relative; }
.section--sand  { background: var(--sand); }
.section--ocean {
  background: linear-gradient(160deg, var(--ocean) 0%, var(--deep) 100%);
  color: #dbe9ef;
}
.section--ocean h2, .section--ocean h3 { color: var(--white); }
.center { text-align: center; }

/* one consistent measure for readable text */
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); max-width: 62ch; }
.center .lead { margin-inline: auto; }
.section--ocean .lead { color: #b9d3de; }

/* section intro: kicker, heading, standfirst */
.intro { max-width: 720px; margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .76rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sunset-ink); margin-bottom: 1em;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--sunset); border-radius: 2px;
}
.center .eyebrow, .intro .eyebrow { justify-content: center; }
.section--ocean .eyebrow { color: #ffb489; }
.section--ocean .eyebrow::before { background: #ffb489; }

.skip {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap; background: var(--white);
  padding: 12px 18px; z-index: 200; top: 0; left: 0;
}
.skip:focus {
  width: auto; height: auto; clip-path: none; top: 12px; left: 12px;
  box-shadow: var(--shadow-md); border-radius: 10px;
}

/* ---------- wave divider: the signature motif ---------- */
.wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; pointer-events: none; z-index: 3; }
.wave svg { display: block; width: 100%; height: clamp(38px, 5.5vw, 78px); }
.wave--white svg { fill: var(--white); }
.wave--sand  svg { fill: var(--sand); }
.wave--deep  svg { fill: var(--deep); }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: .55em; padding: .9em 1.7em; border-radius: 999px; font-weight: 700; font-size: 1rem;
  font-family: var(--font-body); text-decoration: none; border: 2px solid transparent;
  cursor: pointer; line-height: 1.2; text-align: center;
  transition: transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--action); color: #fff; box-shadow: 0 6px 18px rgba(196,79,21,.30); }
.btn--primary:hover { background: var(--action-dark); box-shadow: 0 10px 26px rgba(196,79,21,.40); }
.btn--ocean { background: var(--ocean); color: #fff; box-shadow: 0 6px 18px rgba(31,73,93,.22); }
.btn--ocean:hover { background: var(--deep); box-shadow: 0 10px 26px rgba(31,73,93,.30); }
.btn--ghost { border-color: var(--line-strong); color: var(--ocean); background: transparent; }
.btn--ghost:hover { border-color: var(--ocean); background: rgba(31,73,93,.05); }
.section--ocean .btn--ghost, .cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.section--ocean .btn--ghost:hover, .cta-band .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--wa { background: var(--whatsapp); color: #05301a; box-shadow: 0 6px 18px rgba(37,211,102,.28); }
.btn--wa:hover { background: #1cc25b; }
.btn--sm { padding: .62em 1.2em; font-size: .93rem; }

@media (pointer: coarse) {
  .btn { min-height: 48px; }
  .btn--sm { min-height: 44px; }
  .nav a { min-height: 44px; display: flex; align-items: center; }
}

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(14,44,57,.07);
  background: rgba(255,255,255,.93);
}
.header__inner { display: flex; align-items: center; gap: 18px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ocean); }
.brand__mark { width: 40px; height: 40px; flex: none; transition: transform .3s cubic-bezier(.2,.8,.3,1); }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.05); }
.brand__name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.08rem;
  letter-spacing: -.03em; line-height: 1.05;
}
.brand__name span {
  display: block; font-family: var(--font-body); font-size: .63rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative; text-decoration: none; color: var(--ink); font-weight: 600;
  padding: .5em .9em; border-radius: 999px; font-size: .97rem; transition: color .2s ease;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 50%; bottom: .18em; height: 2px; width: 0;
  background: var(--sunset); border-radius: 2px;
  transform: translateX(-50%); transition: width .25s cubic-bezier(.2,.8,.3,1);
}
.nav a:not(.btn):hover::after { width: calc(100% - 1.8em); }
.nav a[aria-current="page"] { color: var(--ocean); }
.nav a[aria-current="page"]::after { width: calc(100% - 1.8em); }
.header .btn { margin-left: 10px; }

.burger {
  display: none; margin-left: auto; background: none; border: 0; padding: 10px;
  cursor: pointer; color: var(--ocean); border-radius: 10px;
}
.burger svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; display: none;
    background: var(--white); flex-direction: column; align-items: stretch; gap: 2px;
    padding: 12px 20px 24px; border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(14,44,57,.12);
    max-height: calc(100dvh - 76px); overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .85em .7em; border-radius: 12px; font-size: 1.05rem; }
  .nav a:not(.btn)::after { display: none; }
  .nav a[aria-current="page"] { background: var(--sand); }
  .header .btn { margin: 12px 0 0; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--deep); color: #fff; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 8% 40%, rgba(14,44,57,.96) 0%, rgba(14,44,57,.80) 40%, rgba(14,44,57,.30) 75%),
    linear-gradient(180deg, rgba(14,44,57,.55) 0%, rgba(14,44,57,.10) 45%, rgba(14,44,57,.70) 100%);
}
/* a whisper of warmth, so it never reads as flat navy */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; mix-blend-mode: soft-light;
  background: radial-gradient(70% 60% at 85% 15%, rgba(239,108,51,.55), transparent 70%);
}
.hero__inner {
  position: relative; z-index: 2; max-width: 660px;
  padding: clamp(84px, 13vw, 168px) 0 clamp(96px, 13vw, 180px);
}
/* the badge above the headline already provides the top spacing */
@media (max-width: 1079px) { .hero__inner { padding-top: clamp(22px, 4vw, 34px); } }
.hero h1 { color: #fff; margin-bottom: .3em; }
.hero h1 em { font-style: normal; color: #ffc6a3; }
.hero p { color: #d3e4eb; font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 54ch; }
.hero .eyebrow { color: #ffc6a3; }
.hero .eyebrow::before { background: #ffc6a3; }
.hero .btn-row { margin-top: 28px; }

.pricepill {
  display: inline-flex; flex-wrap: wrap; gap: .4em 1.5em; align-items: center;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  padding: .85em 1.4em; border-radius: 18px; margin-top: 10px; font-size: .96rem;
  color: #e3eff4;
}
.pricepill b { font-family: var(--font-display); font-size: 1.2rem; color: #fff; letter-spacing: -.02em; }

/* --- animated brand logo ---------------------------------------------------
   The logo animation was rendered on a cream card. Inverting it and blending
   with "screen" drops that card out completely: the dark line art comes back
   as light, the cream turns near-black and screen makes near-black vanish —
   so the mark floats on the photograph with no box around it.             */
/* Small screens: a modest badge sitting above the headline, on the same
   left edge as the text (centred once the hero itself centres).
   The animation is a square card and an MP4 carries no transparency, so the
   card is cropped to a disc — the artwork is circular anyway, which keeps
   every colour true. The blue waves stay blue. */
.hero__logo {
  position: relative; z-index: 2;
  width: clamp(96px, 24vw, 132px);
  margin: clamp(40px, 9vw, 64px) 0 0;
  aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.22), 0 14px 34px rgba(8,26,34,.40);
}
@media (max-width: 760px) { .hero__logo { margin-inline: auto; } }

/* Desktop: full size, beside the headline, halfway between the window edge
   and the content column. */
@media (min-width: 1080px) {
  .hero__logo {
    position: absolute; top: 50%; margin: 0;
    right: max(24px, calc((clamp(20px, 4vw, 72px) + max(0px, (100vw - var(--wrap)) / 2)) / 2));
    width: clamp(250px, 27vw, 420px); transform: translateY(-50%);
    box-shadow: 0 0 0 1px rgba(255,255,255,.22), 0 26px 60px rgba(8,26,34,.45);
  }
}
.hero__logo video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);   /* nudge the badge out to the edge of the disc */
}
}

/* ---------- cards ---------- */
.grid { display: grid; gap: var(--gap); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
@media (min-width: 760px) { .grid--pairs { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 32px); box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--sand-deep), var(--sand));
  color: var(--ocean); margin-bottom: 18px; border: 1px solid var(--line);
}
.card__icon svg { width: 26px; height: 26px; }
.card img.card__photo {
  width: 100%; border-radius: var(--radius-sm); aspect-ratio: 5 / 4; object-fit: contain;
  margin-bottom: 18px; background: #fff;
}
.card h3 .model { font-family: var(--font-body); font-weight: 500; font-size: .92rem; color: var(--ink-soft); }

/* ---------- steps ---------- */
.steps {
  counter-reset: step; display: grid; gap: var(--gap); list-style: none; padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.steps li {
  counter-increment: step; position: relative; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px 26px;
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(145deg, var(--action), var(--action-dark));
  color: #fff; margin-bottom: 16px; box-shadow: 0 6px 16px rgba(196,79,21,.28);
}
.steps strong { display: block; margin-bottom: .25em; font-size: 1.08rem; font-family: var(--font-display); letter-spacing: -.015em; }

/* ---------- scooters ---------- */
.scooter {
  display: grid; gap: clamp(24px, 3.5vw, 44px); align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  padding: clamp(20px, 2.6vw, 36px);
  background: var(--white); border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px); box-shadow: var(--shadow-sm);
  margin-bottom: var(--gap);
  transition: box-shadow .35s ease, border-color .35s ease;
}
.scooter:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.scooter:nth-child(even) .scooter__gallery { order: 2; }
.scooter__gallery { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }

/* Each photo sits in a frame that trims the wide white margins the product
   shots carry, so the scooter fills more of the frame. The scooter itself is
   never cropped — only the empty space around it. */
.shot {
  width: 100%; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--radius-sm); background: #fff;
}
.shot img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s cubic-bezier(.2,.8,.3,1); }
.shot:first-child { grid-column: 1 / -1; aspect-ratio: 5 / 4; }
.shot:first-child img { transform: scale(1.22); }
.scooter:hover .shot:first-child img { transform: scale(1.26); }
.shot:nth-child(2):last-child { grid-column: 1 / -1; aspect-ratio: 5 / 4; }
/* per-scooter tuning: some photos are framed tighter and need less zoom */
#rosie .shot:first-child img { transform: none; }
#rosie .scooter:hover .shot:first-child img,
.scooter:hover #rosie .shot:first-child img { transform: none; }

.scooter__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
.scooter__model {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ocean-mid); margin-bottom: 1em;
}
.badges { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 20px; }
.badges li {
  background: var(--sand); border: 1px solid var(--line); border-radius: 999px;
  padding: .38em .95em; font-size: .84rem; font-weight: 600; color: var(--ocean);
}
.rates { width: 100%; border-collapse: collapse; margin: 0 0 22px; font-size: .96rem; }
.rates th, .rates td { text-align: left; padding: .6em .2em; border-bottom: 1px solid var(--line); }
.rates th { font-weight: 500; color: var(--ink-soft); }
.rates td { text-align: right; font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.rates tr:first-child td { color: var(--sunset-ink); }
.rates tr:last-child th, .rates tr:last-child td { border-bottom: 0; }

@media (max-width: 900px) {
  .scooter { grid-template-columns: 1fr; }
  .scooter:nth-child(even) .scooter__gallery { order: 0; }
}

/* ---------- extras ---------- */
.extra { display: grid; grid-template-columns: 190px minmax(0,1fr); gap: 28px; align-items: center; }
.extra img { border-radius: var(--radius-sm); aspect-ratio: 1; object-fit: contain; width: 100%; background: #fff; }
@media (max-width: 640px) { .extra { grid-template-columns: 1fr; } .extra img { max-width: 220px; } }

/* ---------- photo strip ---------- */
.strip { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); }
.strip img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm);
  background: var(--sand-deep); transition: transform .5s cubic-bezier(.2,.8,.3,1), filter .4s ease;
}
.strip img:hover { transform: scale(1.03); filter: saturate(1.08); }

/* ---------- partners ---------- */
.partner {
  display: grid; grid-template-columns: 150px minmax(0,1fr); gap: 26px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 28px); box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.partner:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
/* works for square logos and wide wordmarks alike — never cropped */
.partner__logo {
  width: 150px; height: 120px; border-radius: var(--radius-sm); object-fit: contain;
  background: #fff; padding: 10px; border: 1px solid var(--line);
}
.partner__logo--text {
  display: grid; place-items: center; text-align: center; font-family: var(--font-display);
  font-weight: 800; color: var(--ocean); font-size: 1rem; line-height: 1.15; padding: 12px;
  background: var(--sand);
}
.partner h3 { margin-bottom: .2em; }
.partner .meta {
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sunset-ink); font-weight: 700; margin-bottom: .5em;
}
.partner p { margin-bottom: 1em; }
@media (max-width: 640px) {
  /* stack the card; text stays left-aligned but the logo reads better centred */
  .partner { grid-template-columns: 1fr; justify-items: start; }
  .partner__logo { justify-self: center; }
}

/* ---------- perks list ---------- */
.perks { list-style: none; padding: 0; display: grid; gap: 15px; }
.perks li { display: flex; gap: 13px; align-items: flex-start; }
.perks svg {
  width: 24px; height: 24px; flex: none; margin-top: 2px; color: #fff; padding: 4px;
  background: var(--sunset); border-radius: 50%;
}

/* ---------- panel ---------- */
.panel {
  background: var(--white); border-radius: var(--radius); padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.section--ocean .panel {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16);
  box-shadow: none; color: #dbe9ef; backdrop-filter: blur(6px);
}
.section--ocean .panel .badges li { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.20); color: #eaf3f7; }

/* ---------- split ---------- */
.split {
  display: grid; gap: clamp(30px, 5vw, 64px); align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
/* Lifestyle photos keep their own proportions — capped in height so a
   portrait shot can't run away with the section, and never cropped. */
.split img, .split video {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: auto; max-width: 100%; max-height: clamp(300px, 44vw, 540px);
  margin-inline: auto;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--action) 0%, var(--action-dark) 100%);
  color: #fff; overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #fff; opacity: .95; }
.cta-band .btn--primary { background: #fff; color: var(--sunset-ink); box-shadow: 0 8px 22px rgba(0,0,0,.14); }
.cta-band .btn--primary:hover { background: #fff3ea; }

/* ---------- footer ---------- */
.footer {
  background: var(--deep); color: #a9c6d2; padding: clamp(52px, 7vw, 80px) 0 30px;
  font-size: .96rem; position: relative;
}
.footer a { color: #e2eff4; text-decoration: none; transition: color .2s ease; }
.footer a:hover { color: var(--sunset); }
.footer__grid { display: grid; gap: 34px; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); }
.footer h4 {
  color: #fff; font-family: var(--font-body); font-size: .74rem; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 1.2em; font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6em; }
.footer__bottom {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .86rem;
  color: #8fb0be;
}

/* ---------- floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp);
  display: grid; place-items: center; color: #05301a;
  box-shadow: 0 10px 28px rgba(37,211,102,.40);
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(37,211,102,.5); }
.wa-float svg { width: 31px; height: 31px; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.2,.8,.3,1), transform .7s cubic-bezier(.2,.8,.3,1);
  transition-delay: var(--d, 0ms);
}

/* ==========================================================================
   responsive refinements
   ========================================================================== */

/* Phones: the hero is a short, punchy block, so centring it reads as composed.
   Body copy stays left-aligned — centred paragraphs make the eye hunt for the
   start of every line. */
@media (max-width: 760px) {
  .hero__inner { text-align: center; max-width: none; }
  .hero p { margin-inline: auto; }
  .hero .btn-row, .hero .pricepill { justify-content: center; }
  .hero .eyebrow { justify-content: center; }
  .strip { grid-template-columns: 1fr 1fr; gap: 10px; }
  .lead { font-size: 1.05rem; }
  .split { gap: 28px; }
}

@media (max-width: 400px) {
  body { font-size: 16px; }
  .btn { width: 100%; padding: .85em 1.2em; }
  .btn-row { gap: 10px; }
  .brand__name { font-size: .98rem; }
  .brand__name span { font-size: .56rem; letter-spacing: .13em; }
  .brand__mark { width: 36px; height: 36px; }
  .pricepill { width: 100%; justify-content: center; }
}

/* phone held sideways */
@media (max-height: 520px) and (orientation: landscape) {
  .hero__inner { padding: 52px 0 60px; }
  .section { padding: 52px 0; }
}

/* ---------- motion preference ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .btn:hover, .card:hover, .partner:hover, .wa-float:hover, .strip img:hover { transform: none; }
  .reveal { opacity: 1; transform: none; }
  /* the looping logo is paused in site.js for these visitors */
}

@media print {
  .header, .wa-float, .cta-band, .wave { display: none; }
  .reveal { opacity: 1; transform: none; }
}
