/* =========================================================================
   WYPE — Melbourne home & commercial cleaning · "Calm & clean" minimal
   Palette: soft sky blue + white + pale haze + navy ink
   Type: Bricolage Grotesque (display) · Hanken Grotesk (body)
   ========================================================================= */

:root {
  /* Colour — lightened, airy */
  --white:    #FFFFFF;
  --mist:     #F5FAFE;   /* near-white pale-blue surface */
  --sky-bg:   #E7F3FB;   /* pale sky band */
  --line:     #EAF0F5;   /* border on white */
  --line-2:   #D9E8F3;   /* border on tinted */
  --sky:      #74CFEE;   /* soft brand accent (decorative/fills) */
  --sky-hi:   #8CD9F2;   /* lighter */
  --blue:     #0C6E98;   /* accessible blue for text/links/icons — AA on white and pale footer */
  --navy:     #15293A;   /* ink: headings + body */
  --slate:    #55636F;   /* secondary text (AA on white) */
  --footer:   #EFF6FC;   /* light footer surface */

  /* Type */
  --display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --body:    "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;

  --s1: clamp(0.86rem, 0.83rem + 0.15vw, 0.94rem);
  --s0: clamp(1rem, 0.97rem + 0.2vw, 1.12rem);
  --h4: 1.15rem;
  --h3: clamp(1.3rem, 1.15rem + 0.6vw, 1.6rem);
  --h2: clamp(1.9rem, 1.5rem + 1.7vw, 2.8rem);
  --h1: clamp(2.4rem, 1.9rem + 2.4vw, 4rem);

  --pad: clamp(1.15rem, 5vw, 2rem);
  --sec: clamp(4.5rem, 10vw, 9rem);   /* more breathing room */
  --maxw: 1440px;
  --r: 24px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 24px 55px -34px rgba(21,41,58,.42);
  --shadow-sm: 0 10px 26px -18px rgba(21,41,58,.3);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 86px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--body);
  font-size: var(--s0);
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3 { font-family: var(--display); font-weight: 550; line-height: 1.06; letter-spacing: -0.015em; color: var(--navy); text-wrap: balance; }
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

.wrap { width: min(var(--maxw), 100% - (var(--pad) * 2)); margin-inline: auto; }
.section { padding-block: var(--sec); }

.eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--body); font-weight: 600; font-size: var(--s1); letter-spacing: .01em; color: var(--blue); }
.eyebrow::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: var(--sky-bg); background-image: radial-gradient(circle at 50% 50%, var(--sky) 0 4px, transparent 5px); }

.lede { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); color: var(--slate); line-height: 1.6; max-width: 46ch; }

/* Quiet links (the site's only call-to-action treatment) */
.textlink { font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: .4rem;
  background: linear-gradient(currentColor, currentColor) left 100% / 0% 1.5px no-repeat; transition: background-size .25s var(--ease); }
.textlink:hover, .textlink:focus-visible { background-size: 100% 1.5px; }
.textlink svg { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.textlink:hover svg, .textlink:focus-visible svg { transform: translateX(4px); }

/* Slim ghost button — calm, not a loud pill. Shared by the hero CTA + form submit
   so the primary "book" action looks and behaves consistently everywhere. */
.btn, .submit { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; align-self: start;
  min-height: 50px; padding: .8rem 1.6rem; border-radius: 100px; font-family: var(--body); font-weight: 600; font-size: 1rem;
  color: var(--navy); background: transparent; box-shadow: inset 0 0 0 1.5px var(--navy); cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), transform .18s var(--ease); }
.btn:hover, .submit:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn svg, .submit svg { width: 1.05em; height: 1.05em; }
.btn:hover svg { transform: translateX(3px); transition: transform .2s var(--ease); }
/* Squeegee shine — a single light sweep on hover, echoing the hero's brand glare */
.btn, .submit { position: relative; overflow: hidden; isolation: isolate; }
.btn::before, .submit::before { content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 42%; pointer-events: none; opacity: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent); transform: skewX(-18deg); }
.btn:hover::before, .submit:hover::before { animation: btnShine .7s var(--ease); }
@keyframes btnShine { 0% { left: -60%; opacity: 0; } 15% { opacity: 1; } 100% { left: 130%; opacity: 0; } }

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--white) 82%, transparent); backdrop-filter: saturate(150%) blur(12px); border-bottom: 1px solid transparent; transition: border-color .3s; }
.nav.is-scrolled { border-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .85rem; transition: padding-block .3s var(--ease); }
.nav.is-scrolled .nav__inner { padding-block: .55rem; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { display: block; width: auto; }
.nav .brand__logo { height: 38px; transition: height .3s var(--ease); }
.nav.is-scrolled .brand__logo { height: 33px; }
@media (max-width: 720px) { .nav .brand__logo { height: 32px; } }
.nav__links { display: flex; align-items: center; gap: clamp(1.3rem, 2.6vw, 2.4rem); }
.nav__links a { font-weight: 500; color: var(--slate); transition: color .18s; }
.nav__links a:hover { color: var(--navy); }
.nav__links a.nav__cta { color: var(--blue); font-weight: 600; }
.nav__right { display: flex; align-items: center; gap: .8rem; }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; position: relative; transition: .25s; }
.nav__toggle span::before { position: absolute; top: -7px; } .nav__toggle span::after { position: absolute; top: 7px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero { position: relative; padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(2rem, 4vw, 3rem); overflow: hidden; }
/* soft ambient sky light behind the hero — static, adds depth without motion */
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 42% at 82% 6%, rgba(116,207,238,.30), transparent 70%),
    radial-gradient(40% 38% at 4% 68%, rgba(231,243,251,.55), transparent 72%); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(1.5rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin: 1.2rem 0 1.4rem; }
.hero h1 .hi { position: relative; white-space: nowrap; }
.hero h1 .hi::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .26em; border-radius: 4px; background: linear-gradient(90deg, var(--sky), var(--sky-hi)); opacity: .6; z-index: -1; transform: scaleX(0); transform-origin: left; animation: uline .85s var(--ease) .5s both; }
@keyframes uline { to { transform: scaleX(1); } }
.hero__cta { margin-top: 1.9rem; }
.hero__note { margin-top: 1.6rem; font-size: var(--s1); color: var(--slate); }
.hero__note b { color: var(--navy); font-weight: 600; }

/* oversized brush watermark behind the hero (static, not animated) */
.hero__watermark { position: absolute; z-index: 0; top: 8%; left: -6%; width: min(58%, 620px); opacity: .07; pointer-events: none; user-select: none; }

/* Drifting soap bubbles — a slow, low-opacity ambient layer behind the hero
   content (never over it). Thematic for a cleaning brand; kept faint so it
   adds life without pulling focus. Fully removed under reduced-motion below. */
.hero__bubbles { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__bubbles span { position: absolute; bottom: -12%; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(255,255,255,.98), rgba(150,222,245,.75) 42%, rgba(80,185,224,.55) 72%, rgba(80,185,224,.15) 84%, transparent 88%);
  box-shadow: inset 0 3px 8px rgba(255,255,255,.85), inset 0 -4px 8px rgba(12,110,152,.25), 0 8px 20px rgba(12,110,152,.22);
  opacity: 0; animation: bubbleRise var(--dur, 14s) linear var(--delay, 0s) infinite; }
/* kept to the left / centre so they read against the open background, not behind the hero photo panel */
.hero__bubbles span:nth-child(1) { left: 8%;  width: 34px; height: 34px; --dur: 9s;  --delay: 0s; }
.hero__bubbles span:nth-child(2) { left: 22%; width: 20px; height: 20px; --dur: 8s;  --delay: .6s; }
.hero__bubbles span:nth-child(3) { left: 36%; width: 46px; height: 46px; --dur: 11s; --delay: .3s; }
.hero__bubbles span:nth-child(4) { left: 48%; width: 24px; height: 24px; --dur: 9s;  --delay: 1.2s; }
.hero__bubbles span:nth-child(5) { left: 15%; width: 28px; height: 28px; --dur: 10s; --delay: 1.8s; }
.hero__bubbles span:nth-child(6) { left: 30%; width: 16px; height: 16px; --dur: 7s;  --delay: .4s; }
@keyframes bubbleRise {
  0%   { transform: translateY(30px) translateX(0) scale(.8); opacity: 0; }
  10%  { opacity: .85; }
  85%  { opacity: .6; }
  100% { transform: translateY(-78vh) translateX(14px) scale(1.12); opacity: 0; }
}

.hero__media { position: relative; perspective: 1300px; }
.hero__frame { position: relative; border-radius: 32px; overflow: hidden; aspect-ratio: 5 / 5.2; box-shadow: var(--shadow); background: var(--mist); }
/* floating badge chips over the hero photo (reference-style) */
.hero__chip { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .85rem; border-radius: 100px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  color: var(--navy); font-family: var(--body); font-weight: 600; font-size: .82rem; line-height: 1;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255,255,255,.6); white-space: nowrap; }
.hero__chip svg { width: 1.05em; height: 1.05em; color: var(--blue); flex: none; }
.hero__chip--tl { top: 1rem; left: 1rem; }
.hero__chip--br { bottom: 1rem; right: 1rem; }
@media (max-width: 420px) { .hero__chip { font-size: .74rem; padding: .42rem .7rem; } }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }

/* Hero photo is intentionally static — no pointer tilt, no specular glare
   (removed by request). The panel just sits with its resting shadow. */

/* Squeegee wipe reveal — plays on load (guaranteed, no observer dependency) */
.wipe { animation: wipeIn .85s var(--ease) .3s both; }
@keyframes wipeIn { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
.wipe::after { content: ""; position: absolute; top: 0; bottom: 0; width: 34px; left: 0; opacity: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent); animation: squeegee .85s var(--ease) .3s both; }
@keyframes squeegee { 0% { left: 0; opacity: 0; } 12% { opacity: .9; } 100% { left: 100%; opacity: 0; } }

/* Initial 3D entrance — the hero panel settles into place as the page opens
   (JS-gated so it only runs when we can also clear it; disabled for reduced-motion) */
.js .hero__media { animation: heroSettle 1.1s var(--ease) .12s both; }
@keyframes heroSettle {
  from { opacity: 0; transform: perspective(1200px) rotateX(15deg) translateY(28px) scale(.965); }
  to   { opacity: 1; transform: perspective(1200px) rotateX(0deg) translateY(0) scale(1); }
}

/* Section head */
.head { max-width: 40ch; margin-bottom: clamp(2.4rem, 4.5vw, 3.5rem); }
.head h2 { margin-top: .7rem; }
.head--center { max-width: 44ch; margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }

/* Services */
.services { background: var(--mist); }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.1rem, 2.2vw, 1.6rem); }

/* Alternating image + text feature rows (reference-style). Each row flips the
   image to the opposite side; a floating chip labels it, and the brand squeegee
   wipes across the photo on hover. */
.features { display: flex; flex-direction: column; gap: clamp(2.6rem, 6vw, 5.5rem); margin-top: clamp(2rem, 4vw, 3.2rem); }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4.5rem); align-items: center; }
.feature:nth-child(even) .feature__media { order: 2; }
.feature__media { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow); background: var(--mist); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; display: block; -webkit-user-drag: none; }
.feature__chip { position: absolute; top: 1rem; left: 1rem; z-index: 2; display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .85rem; border-radius: 100px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  color: var(--navy); font-family: var(--body); font-weight: 600; font-size: .8rem; line-height: 1;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255,255,255,.6); white-space: nowrap; }
/* squeegee sweep across the photo on hover */
.feature__media::after { content: ""; position: absolute; top: -10%; bottom: -10%; left: -70%; width: 60%; z-index: 1; opacity: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 28%, rgba(255,255,255,.4) 44%, rgba(255,255,255,.95) 50%, rgba(255,255,255,.4) 56%, transparent 72%);
  transform: skewX(-14deg); }
@media (hover: hover) { .feature:hover .feature__media::after { animation: cardSqueegee 1.1s var(--ease); } }
.feature__text .eyebrow { margin-bottom: .3rem; }
.feature__text h3 { font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.3rem); letter-spacing: -0.01em; line-height: 1.1; margin: .3rem 0 .7rem; }
.feature__text p { color: var(--slate); max-width: 46ch; margin-bottom: 1.1rem; }
.card { --card-pad: clamp(1.6rem, 2.6vw, 2.1rem); position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: var(--card-pad); transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease), opacity .55s var(--ease); display: flex; flex-direction: column; gap: .7rem; cursor: pointer; touch-action: manipulation; }
/* hover: a calm lift only — no cursor-following glow (removed by request) */
@media (hover: hover) {
  .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--sky); }
}
/* whole card is one tap target: the "Book this" link stretches to cover the card
   (single keyboard-focusable link per card; big, thumb-friendly hit area on mobile) */
.card .textlink::after { content: ""; position: absolute; inset: 0; z-index: 3; border-radius: inherit; }
/* Squeegee wipe — a light sweep crosses each card once as it reveals into view,
   echoing the hero's brand swipe. Pointer-events off so it never blocks the tap. */
.card::after { content: ""; position: absolute; top: -10%; bottom: -10%; left: -70%; width: 60%; z-index: 4; opacity: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 28%, rgba(116,207,238,.55) 43%, rgba(255,255,255,.98) 50%, rgba(116,207,238,.55) 57%, transparent 72%);
  box-shadow: 0 0 22px 4px rgba(255,255,255,.5); transform: skewX(-14deg); }
/* squeegee only wipes on hover (no scroll-reveal trigger, by request) */
@media (hover: hover) { .js .card:hover::after { animation: cardSqueegee 1.2s var(--ease); } }
@keyframes cardSqueegee { 0% { left: -70%; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: 130%; opacity: 0; } }
/* image fills the whole card as a faint background; text sits on top at full contrast.
   Hover treatment is deliberately restrained to just two things: the 3D tilt + this
   spotlight — the image stays calm (no zoom/brighten sweep). */
.card__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.card__img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .12; }
/* keep the content above the image + spotlight layers */
.card > h3, .card > p { position: relative; z-index: 2; }
/* textlink stays position:static (flex item + z-index still stacks above the image/spotlight)
   so its stretched ::after can size to the whole card, not just the link */
.card > .textlink { z-index: 2; }
.card h3 { font-size: var(--h3); }
.card p { color: var(--slate); }
.card .textlink { margin-top: .35rem; }
.card { min-height: clamp(210px, 22vw, 260px); }

/* Steps — connected timeline: one hairline, dots stepping through the blue palette */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3.5vw, 3rem); padding-top: 2.4rem; }
.js .steps.reveal { opacity: 1; transform: none; }   /* show the block; only the line + dots animate */
.steps__line { position: absolute; z-index: 0; top: calc(2.4rem + 8px); left: 16.667%; right: 16.667%; height: 1.5px; background: var(--line-2);
  transform: scaleX(1); transform-origin: left; }
/* SCROLL-SCRUBBED timeline: --p (0..1) is driven live by scroll position (see JS),
   so the line draws in on the way down and retracts on the way back up, and each
   dot's inline opacity/scale is set per-scroll — a graphic that tracks how far
   down the page you are, both directions. */
.js .steps__line { transform: scaleX(var(--p, 0)); transition: transform .12s linear; }
.step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; }
.step__dot { width: 16px; height: 16px; border-radius: 50%; margin-bottom: .9rem; box-shadow: 0 0 0 5px var(--white);
  transition: opacity .15s var(--ease), transform .15s var(--ease); }
.js .step__dot { opacity: 0; transform: scale(.4); }   /* JS scrub sets opacity/transform inline per scroll */
.steps .step:nth-of-type(1) .step__dot { background: var(--blue); }
.steps .step:nth-of-type(2) .step__dot { background: #3FA1C8; }   /* mid blue between --blue and --sky */
.steps .step:nth-of-type(3) .step__dot { background: var(--sky); }
.step h3 { font-size: var(--h4); font-family: var(--body); font-weight: 700; letter-spacing: 0; }
.step p { color: var(--slate); font-size: var(--s0); max-width: 32ch; }

/* Book / contact */
.cta { position: relative; overflow: hidden; background: var(--sky-bg); padding-block: clamp(1.8rem, 3.5vw, 2.8rem); }
.cta > .wrap { position: relative; z-index: 1; }
/* quiet, static depth behind the booking form: a fine dot grid that fades out
   toward the edges + two soft ambient sky glows in opposite corners. No motion. */
.cta::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(21,41,58,.055) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(115% 95% at 50% 0%, #000 42%, transparent 80%);
          mask-image: radial-gradient(115% 95% at 50% 0%, #000 42%, transparent 80%); }
.cta::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(42% 55% at 90% 8%, rgba(116,207,238,.38), transparent 72%),
    radial-gradient(40% 50% at 6% 96%, rgba(140,217,242,.30), transparent 74%); }
.cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.cta__contact { margin-top: 1.6rem; display: grid; gap: .8rem; }
.cta__contact a { display: inline-flex; align-items: center; gap: .6rem; font-weight: 500; color: var(--navy); }
.cta__contact a:hover { color: var(--blue); }
.cta__contact svg { width: 20px; height: 20px; color: var(--blue); flex: none; }

.form { position: relative; background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r); padding: clamp(1.5rem, 3vw, 2.2rem); display: grid; gap: 1.05rem; box-shadow: var(--shadow-sm); }
/* book section: static form — no cursor tilt or sky glow (removed by request) */
.form > * { position: relative; z-index: 1; }
.field { display: grid; gap: .4rem; }
.field label { font-size: var(--s1); font-weight: 600; color: var(--navy); }
.field label .req { color: var(--blue); }
.field input, .field select { font: inherit; font-size: 1rem; color: var(--navy); background: var(--white); border: 1.5px solid var(--line-2); border-radius: 12px; padding: .75rem .9rem; min-height: 50px; width: 100%; transition: border-color .18s, box-shadow .18s; }
.field input::placeholder { color: #9aa8b3; }
.field input:focus, .field select:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(116,207,238,.35); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2355636F' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__note { font-size: .82rem; color: var(--slate); }
.form__ok { display: none; align-items: center; gap: .7rem; padding: .9rem; border-radius: 12px; background: var(--sky-bg); color: var(--navy); font-weight: 600; }
.form.is-sent .form__ok { display: flex; }
/* Success checkmark — ring + tick draw themselves in when the enquiry sends */
.form__check { flex: none; width: 30px; height: 30px; }
.form__check circle { fill: none; stroke: var(--blue); stroke-width: 3; opacity: .4; stroke-dasharray: 151; stroke-dashoffset: 151; }
.form__check path { fill: none; stroke: var(--blue); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; }
.form.is-sent .form__check circle { animation: checkRing .5s var(--ease) both; }
.form.is-sent .form__check path { animation: checkDraw .45s var(--ease) .22s forwards; }
@keyframes checkRing { to { stroke-dashoffset: 0; } }
@keyframes checkDraw { to { stroke-dashoffset: 0; } }
.form__err { display: none; padding: .9rem; border-radius: 12px; background: #FDECEC; color: #A0201B; font-weight: 500; font-size: .95rem; }
.form__err a { font-weight: 700; text-decoration: underline; }
.form.is-error .form__err { display: block; }

/* Simplified booking bar — one compact card, a single row of fields + one button.
   Reuses the .field input/select styles; keeps the same #quoteForm wiring. */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Skip link — lets keyboard users jump straight past the nav */
.skip-link { position: absolute; left: 50%; top: 0; z-index: 1000; transform: translate(-50%, -120%);
  background: var(--navy); color: var(--white); font-weight: 600; padding: .7rem 1.2rem; border-radius: 0 0 10px 10px;
  transition: transform .18s var(--ease); }
.skip-link:focus { transform: translate(-50%, 0); outline: 2px solid var(--sky); outline-offset: 2px; }

/* Touch devices: inline links get a proper 44px tap area */
@media (pointer: coarse) {
  .textlink { min-height: 44px; }
  .nav__links a { min-height: 44px; display: inline-flex; align-items: center; }
  .footer ul a { display: inline-flex; align-items: center; min-height: 44px; }
}
.bookbar { max-width: 900px; margin-inline: auto; }
.bookbar__head { text-align: center; margin-bottom: clamp(1rem, 2.5vw, 1.6rem); }
.bookbar__head h2 { margin-top: .5rem; }
.form--bar { grid-template-columns: 1fr 1fr 1fr auto; gap: .7rem; align-items: center; }
.form--bar .field { gap: 0; }
.form--bar .submit { align-self: stretch; white-space: nowrap; }
.form--bar > .form__ok, .form--bar > .form__err { grid-column: 1 / -1; margin: 0; }
@media (max-width: 720px) {
  .form--bar { grid-template-columns: 1fr; }
  .form--bar .submit { min-height: 52px; }
}

/* Footer — light & airy */
.footer { background: var(--footer); color: var(--slate); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__top { display: flex; flex-wrap: wrap; gap: 1.8rem 3rem; justify-content: space-between; }
.footer .brand__logo { height: 34px; }
.footer__blurb { margin-top: 1rem; max-width: 30ch; font-size: .95rem; color: var(--slate); }
.footer__links { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.footer h3 { font-family: var(--body); font-size: .76rem; line-height: 1.2; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: .9rem; font-weight: 700; }
.footer ul { list-style: none; display: grid; gap: .55rem; }
.footer a { color: var(--slate); }
.footer a:hover { color: var(--navy); }
/* WhatsApp click-to-chat — tidy floating button, bottom-right on all screens */
.wa-fab { position: fixed; z-index: 900;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: calc(clamp(1rem, 3vw, 1.6rem) + env(safe-area-inset-bottom, 0px));
  width: 58px; height: 58px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.55), 0 6px 14px rgba(20,30,40,.2);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.wa-fab svg { width: 32px; height: 32px; position: relative; z-index: 1; }
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(37,211,102,.6), 0 8px 18px rgba(20,30,40,.24); }
.wa-fab:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
/* label appears on hover (pointer devices only) */
.wa-fab__label { position: absolute; right: calc(100% + 12px); white-space: nowrap;
  background: var(--navy); color: #fff; font-family: var(--body); font-weight: 600; font-size: .85rem;
  padding: .5rem .85rem; border-radius: 100px; box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateX(6px); pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease); }
@media (hover: hover) { .wa-fab:hover .wa-fab__label, .wa-fab:focus-visible .wa-fab__label { opacity: 1; transform: translateX(0); } }
@media (hover: none) { .wa-fab__label { display: none; } }
/* gentle attention pulse */
.wa-fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.45);
  animation: waPulse 2.8s var(--ease) infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); } 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (prefers-reduced-motion: reduce) { .wa-fab::after { animation: none; } }

.footer__bottom { margin-top: clamp(2.2rem, 4.5vw, 3.2rem); padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .82rem; color: var(--slate); }

/* Reveal (softened) — only hidden once JS is active, so content never gets stuck */
.reveal { transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(14px); }
.reveal.in { opacity: 1; transform: none; }
/* cards keep their own snappy transition so hover doesn't inherit the slow reveal timing */
.card.reveal { transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease), opacity .55s var(--ease); }

/* 3D pointer tilt — JS sets an inline transform toward the cursor; these rules
   own the smooth return-to-flat and the snappier follow while actively tilting */
[data-tilt] { transform-style: preserve-3d; }
.hero__frame[data-tilt] { transition: transform .5s var(--ease), box-shadow .5s var(--ease); will-change: transform; }
[data-tilt].is-tilting { transition: transform .08s linear; will-change: transform; }
/* steps pivot around the dot (top-centre) so it stays anchored on the timeline */
.step[data-tilt] { transform-origin: 50% 0; transition: transform .5s var(--ease); }

/* 3D scroll entrance — opt-in via .reveal--3d / .reveal--3d-sm. Runs as a one-shot
   keyframe on .in, so it never touches the hover transition and the base
   .reveal.in (opacity:1 / transform:none) stays the resting state — nothing can get
   stuck hidden. The global reduced-motion rule collapses these to an instant jump. */
@keyframes rise3d   { from { opacity: 0; transform: perspective(1100px) rotateX(14deg) translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes rise3dSm { from { opacity: 0; transform: perspective(1200px) rotateX(8deg)  translateY(16px); } to { opacity: 1; transform: none; } }
.js .reveal--3d.in    { animation: rise3d .7s var(--ease) both; }
.js .reveal--3d-sm.in { animation: rise3dSm .65s var(--ease) both; }
.js .form.reveal--3d-sm.in { animation-delay: .1s; }   /* form eases in just after the copy */
/* how-it-works: each step rises in 3D, staggered, pivoting at its timeline dot */
/* each step's opacity is scrubbed with the timeline — text fades in as you scroll
   down to it and fades back out on the way up (set inline by the scroll handler);
   this is just the hidden starting point. */
.js .steps .step { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
  .wipe { animation: none; clip-path: none; }
  .js .hero__media { animation: none; opacity: 1; transform: none; }
  .hero h1 .hi::after { transform: none; opacity: .6; }
  .wipe::after, .card::before, .card::after { display: none; }
  [data-tilt] { transform: none !important; }
  .js .steps__line { transform: none; }
  .js .steps .step { opacity: 1; }
  .js .step__dot { opacity: 1; transform: none; }
  .hero__watermark, .hero__frame { transform: none !important; }
  .hero__frame::before { display: none; }
  .hero__bubbles { display: none; }
  .form::before { display: none; }
}

/* Responsive */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin-top: .5rem; }
  .hero__watermark { width: min(72%, 460px); opacity: .06; }
  .cta__grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; gap: 1.2rem; }
  .feature:nth-child(even) .feature__media { order: 0; }   /* image always on top when stacked */
  /* vertical timeline: line runs down the left gutter, dots on it, text to the right */
  .steps { grid-template-columns: 1fr; gap: 0; padding-top: 0; }
  .steps__line { top: 12px; bottom: 12px; left: 8px; right: auto; width: 1.5px; height: auto; transform: scaleY(1); transform-origin: top; }
  .js .steps__line { transform: scaleY(var(--p, 0)); }
  .step { align-items: flex-start; text-align: left; padding: 0 0 2rem 2.3rem; }
  .step:last-child { padding-bottom: 0; }
  .step__dot { position: absolute; left: 0; top: 3px; margin: 0; box-shadow: 0 0 0 4px var(--white); }
  .step p { max-width: none; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.is-open .nav__links { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--white); border-bottom: 1px solid var(--line); padding: .4rem var(--pad) 1.2rem; }
  .nav.is-open .nav__links a { padding: .95rem 0; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
  .form__row { grid-template-columns: 1fr; }
}

/* ===================================================================
   ADDITIONS — point of difference · reviews marquee · About / Who we are
   Same tokens, same restraint.
   =================================================================== */

/* Point of difference — a short, personal note. Left-aligned like something
   written by hand, not a centred marketing banner. */
.diff { background: var(--sky-bg); border-radius: clamp(32px, 6vw, 72px) clamp(32px, 6vw, 72px) 0 0; margin-top: clamp(1rem, 3vw, 2.5rem); }
/* soft italic accent word inside headings (reference-style) */
.ital { font-style: italic; font-weight: 500; color: var(--blue); }
.diff__grid { display: grid; grid-template-columns: minmax(0, 40ch) 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.diff__inner { max-width: none; }
.diff h2 { margin: 1rem 0 1.4rem; }
.diff__body { color: var(--navy); font-family: var(--display); font-weight: 500; letter-spacing: -0.01em;
  font-size: clamp(1.25rem, 1rem + 0.9vw, 1.7rem); line-height: 1.4; }
.diff__body + .diff__body { margin-top: 1rem; }
/* small hint pointing at the before/after slider */
.diff__note { margin-top: 1.2rem; color: var(--slate); font-size: var(--s1); font-weight: 500; }
.diff__sign { margin-top: 1.8rem; color: var(--slate); font-size: var(--s1); font-weight: 600; letter-spacing: .01em; }

/* Before / after slider — drag (or arrow-key) to wipe between the dulled "before"
   and the full-colour "after". The before layer is the same photo with a grime
   filter; swap its src for a real before photo when you have one. */
.ba { --pos: 50%; position: relative; aspect-ratio: 3 / 4; width: min(440px, 100%); justify-self: center; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
  background: var(--mist); cursor: ew-resize; touch-action: none; user-select: none; -webkit-user-select: none; }
.ba:focus-within { outline: 2px solid var(--blue); outline-offset: 3px; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none; -webkit-user-drag: none; user-select: none; -webkit-user-select: none; }
.ba__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__img--dull { filter: grayscale(.5) brightness(.72) contrast(1.06) sepia(.12); }
.ba__tag { position: absolute; top: .8rem; padding: .3rem .75rem; border-radius: 100px; font-family: var(--body);
  font-weight: 600; font-size: .75rem; letter-spacing: .04em; text-transform: uppercase; color: var(--white);
  background: rgba(21,41,58,.6); backdrop-filter: blur(4px); pointer-events: none; }
.ba__tag--before { left: .8rem; }
.ba__tag--after { right: .8rem; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; z-index: 3;
  background: var(--white); box-shadow: 0 0 0 1px rgba(21,41,58,.12); pointer-events: none; }
.ba__handle svg { position: absolute; top: 50%; left: 50%; width: 20px; height: 20px; transform: translate(-50%, -50%);
  color: var(--navy); background: var(--white); border-radius: 50%; padding: 8px; box-sizing: content-box;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line-2); }
.ba__range { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }

/* Trust strip — a slim honest credibility band under the hero (reference-style).
   Qualitative, no invented numbers: pricing, speed, cover, guarantee. */
.trust { background: var(--white); padding-block: clamp(1rem, 2.4vw, 1.5rem); border-bottom: 1px solid var(--line); }
/* trust points sitting directly on the booking section's background (no white band) */
.trust__row--onbg { margin-top: clamp(1.2rem, 3vw, 1.9rem); }
.trust__row--onbg .trust__item { font-size: .82rem; }
.trust__row--onbg .trust__item svg { width: 1.05em; height: 1.05em; }

/* compact repeat of the trust points further down the page */
.trust--sm { background: var(--mist); padding-block: clamp(.65rem, 1.6vw, .95rem); border-top: 1px solid var(--line); border-bottom: none; }
.trust--sm .trust__item { font-size: .78rem; gap: .4rem; }
.trust--sm .trust__item svg { width: 1em; height: 1em; }
.trust__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(.7rem, 3vw, 2.2rem); }
.trust__item { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: var(--s1); color: var(--navy); }
.trust__item svg { width: 1.2em; height: 1.2em; color: var(--blue); flex: none; }
.trust__item + .trust__item { position: relative; }
.trust__item + .trust__item::before { content: ""; position: absolute; left: calc(clamp(.7rem, 3vw, 2.2rem) / -2); top: 50%; width: 1px; height: 1.1em; transform: translateY(-50%); background: var(--line-2); }
@media (max-width: 620px) { .trust__item + .trust__item::before { display: none; } }

/* Reviews — a compact Google-style word-of-mouth strip: a small rating header,
   then a narrow, slow marquee of boxed cards with initial-circle avatars,
   suburbs and relative dates so it reads like a real widget, not filler. */
.reviews { background: var(--mist); padding-block: clamp(.6rem, 1.5vw, 1rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reviews__head { display: flex; align-items: center; justify-content: center; gap: .45rem; flex-wrap: wrap; margin-bottom: clamp(.5rem, 1.2vw, .8rem); }
.reviews__g { width: 20px; height: 20px; flex: none; }
.reviews__score { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.reviews__head .reviews__stars { color: #C07F00; letter-spacing: 1px; font-size: .85rem; line-height: 1; }
.reviews__count { color: var(--slate); font-size: var(--s1); }
.marquee { position: relative; overflow: hidden; max-width: 1060px; margin-inline: auto;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 1rem; width: max-content; align-items: stretch; animation: marquee 52s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review { flex: 0 0 clamp(212px, 64vw, 244px); display: flex; flex-direction: column; gap: .34rem;
  padding: .6rem .8rem .68rem; background: var(--white); border: 1px solid var(--line); border-radius: 11px; box-shadow: var(--shadow-sm); }
.review__top { display: flex; align-items: center; gap: .5rem; }
.review__avatar { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--c, var(--blue)); color: #fff; font-weight: 700; font-size: .75rem; letter-spacing: .01em; }
.review__id { min-width: 0; display: flex; flex-direction: column; line-height: 1.25; }
.review__name { font-weight: 600; font-size: .8rem; color: var(--navy); }
.review__meta { color: var(--slate); font-size: .75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review__g { width: 14px; height: 14px; flex: none; margin-left: auto; }
.review__stars { color: #C07F00; letter-spacing: 1px; font-size: .75rem; line-height: 1; }
.review blockquote { margin: 0; color: var(--navy); font-size: .8rem; line-height: 1.45; }
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-mask: none; mask: none; }
  .marquee__track { animation: none; }
}

/* ---- Sub-page shells (About / Who we are) ---- */
.pagehero { background: var(--white); position: relative; overflow: hidden; padding-top: clamp(3rem, 7vw, 5.5rem); }
.pagehero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(46% 44% at 84% 4%, rgba(116,207,238,.26), transparent 70%); }
.pagehero .wrap { position: relative; z-index: 1; }
.pagehero h1 { margin: 1rem 0 1.2rem; max-width: 15ch; }
.pagehero .lede { max-width: 56ch; }

.prose { max-width: 60ch; }
.prose p { color: var(--slate); margin-bottom: 1.1rem; line-height: 1.75; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); font-weight: 600; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--flip .split__media { order: -1; }
.ph { border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 5; background: var(--sky-bg); box-shadow: var(--shadow-sm); }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph--wide { aspect-ratio: 16 / 11; }

/* values row (numbered — it IS a short ordered set of promises) */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.4vw, 1.8rem); margin-top: clamp(2rem, 4vw, 3rem); }
.value { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.4rem, 2.4vw, 1.9rem); }
.value__n { font-family: var(--display); color: var(--sky); font-size: 1.5rem; font-weight: 600; display: block; margin-bottom: .5rem; }
.value h3 { font-size: var(--h4); font-family: var(--body); font-weight: 700; margin-bottom: .45rem; letter-spacing: 0; }
.value p { color: var(--slate); font-size: .98rem; line-height: 1.6; }

/* team grid */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.6vw, 2rem); margin-top: clamp(2rem, 4vw, 3rem); }
.member__ph { border-radius: var(--r); overflow: hidden; aspect-ratio: 1 / 1; background: var(--sky-bg); display: grid; place-items: center; }
.member__ph img { width: 100%; height: 100%; object-fit: cover; }
.member__init { font-family: var(--display); font-weight: 600; font-size: 2.6rem; color: var(--blue); }
.member h3 { font-size: var(--h4); font-family: var(--body); font-weight: 700; margin: .9rem 0 .1rem; letter-spacing: 0; }
.member__role { color: var(--blue); font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.member p { color: var(--slate); font-size: .95rem; line-height: 1.6; margin-top: .55rem; }

/* FAQ — native <details> so it works with keyboard + screen readers, no JS */
.faq { background: var(--mist); }
.faq__list { max-width: 760px; margin-inline: auto; display: grid; gap: .7rem; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.faq__item[open] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 44px; padding: 1.05rem 1.2rem; font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  letter-spacing: -0.01em; color: var(--navy); transition: color .18s var(--ease); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { content: ""; }
.faq__item summary:hover { color: var(--blue); }
.faq__item summary:focus-visible { outline: 2px solid var(--blue); outline-offset: -3px; border-radius: 14px; }
.faq__item summary svg { width: 20px; height: 20px; flex: none; color: var(--blue); transition: transform .22s var(--ease); }
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__a { padding: 0 1.2rem 1.15rem; color: var(--slate); line-height: 1.65; }
.faq__a p { max-width: 62ch; }
/* small quote button closing out the FAQ, so the page still ends on a booking prompt */
.faq__cta { margin-top: clamp(1.4rem, 3vw, 2rem); display: flex; justify-content: center; }
.btn--sm { min-height: 44px; padding: .6rem 1.25rem; font-size: .95rem; }

/* page CTA band — used by about.html */
.pagecta { background: var(--sky-bg); text-align: center; padding-block: clamp(3rem, 6vw, 4.5rem); }
.pagecta h2 { margin-bottom: 1.4rem; }
.pagecta .btn { margin-inline: auto; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .values, .team { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: 1fr; }
}

/* current-page nav link */
.nav__links a[aria-current="page"] { color: var(--navy); font-weight: 600; }
