:root {
  --navy-950: #061731;
  --navy-900: #071f4a;
  --navy-800: #0d326b;
  --blue-600: #2764d8;
  --blue-100: #e8f0ff;
  --green-800: #0b493b;
  --green-700: #0d5a46;
  --green-500: #1c8a68;
  --green-100: #e4f3ed;
  --yellow-400: #f4c95d;
  --cream: #fbfaf5;
  --warm-white: #fffdf8;
  --surface: #f3f1e9;
  --ink: #172338;
  --muted: #5d6979;
  --border: #d7dcd7;
  --white: #ffffff;
  --danger: #a12b3e;
  --shadow-sm: 0 10px 30px rgba(6, 23, 49, .08);
  --shadow-lg: 0 28px 80px rgba(6, 23, 49, .18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --max: 1240px;
  --header-height: 82px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--warm-white);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, figure { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 4px;
}
::selection { background: var(--blue-100); color: var(--navy-950); }

.container { width: min(var(--max), calc(100% - 64px)); margin-inline: auto; }
.section { padding: clamp(84px, 9vw, 132px) 0; }
.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 {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
  transition: transform .2s;
}
.skip-link:focus { transform: none; }

.eyebrow {
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow-light { color: #bde6d8; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .96;
}
h2 {
  margin-bottom: 24px;
  color: var(--navy-950);
  font-size: clamp(2.55rem, 5vw, 5.3rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.01;
}
h2 span { color: var(--green-700); }
h3 {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
}
.section-intro, .section-lead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 54px;
  margin-bottom: clamp(42px, 6vw, 70px);
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > :first-child { flex: 1; }
.section-heading > .section-intro { margin-bottom: 6px; }

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .22s var(--ease), background-color .22s, border-color .22s, color .22s, box-shadow .22s;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary { background: var(--navy-900); color: var(--white); box-shadow: 0 10px 26px rgba(7, 31, 74, .2); }
.button-primary:hover { background: var(--blue-600); box-shadow: 0 14px 34px rgba(39, 100, 216, .24); }
.button-secondary { border-color: rgba(7, 31, 74, .28); background: transparent; color: var(--navy-950); }
.button-secondary:hover { border-color: var(--navy-900); background: var(--white); }
.button-light { background: var(--white); color: var(--navy-950); box-shadow: var(--shadow-sm); }
.button-light:hover { background: var(--green-100); }
.button-on-dark.button-primary { background: var(--white); color: var(--navy-950); }
.button-on-dark.button-primary:hover { background: var(--yellow-400); }
.button-on-dark.button-secondary { border-color: rgba(255, 255, 255, .66); color: var(--white); }
.button-on-dark.button-secondary:hover { border-color: var(--white); background: rgba(255, 255, 255, .12); }
.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  font-size: .92rem;
  font-weight: 800;
}
.text-link span { transition: transform .2s var(--ease); }
.text-link:hover span { transform: translateX(4px); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(180deg, rgba(4, 18, 40, .78), rgba(4, 18, 40, .08));
  transition: background .28s, box-shadow .28s, color .28s, border-color .28s;
}
.site-header.scrolled, .site-header.menu-open {
  color: var(--navy-950);
  border-color: rgba(7, 31, 74, .1);
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 8px 30px rgba(6, 23, 49, .08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: .96rem; font-weight: 800; letter-spacing: -.03em; line-height: .82; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 3vw, 42px); margin-left: auto; }
.desktop-nav a { position: relative; padding: 12px 0; font-size: .88rem; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; right: 100%; bottom: 6px; left: 0; height: 2px; background: currentColor; transition: right .22s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta { min-height: 46px; padding: 10px 19px; font-size: .84rem; box-shadow: none; }
.site-header:not(.scrolled):not(.menu-open) .header-cta { background: var(--white); color: var(--navy-950); }
.menu-toggle, .mobile-menu { display: none; }

/* Opening video */
.intro-scroll-shell { position: relative; height: 380svh; background: var(--navy-950); }
.intro-stage { position: sticky; top: 0; height: 100svh; min-height: 560px; overflow: hidden; isolation: isolate; background: var(--navy-950); }
.intro-media { position: absolute; z-index: 1; inset: 0; }
.intro-media video { width: 100%; height: 100%; object-fit: cover; background: #c5c3be; }
.intro-scrim { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(6, 23, 49, .12) 0 24%, rgba(6, 23, 49, .66) 100%); transition: opacity .3s; }
.video-status {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(6, 23, 49, .74);
  color: var(--white);
  font-size: .76rem;
  font-weight: 700;
  transition: opacity .25s;
}
.intro-media.is-ready .video-status { opacity: 0; }
.intro-media.has-video-error .video-status { opacity: 1; background: rgba(161, 43, 62, .92); }
.intro-choice {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(640px, calc(100% - 40px));
  transform: translate(-50%, -50%);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius-lg);
  background: rgba(6, 23, 49, .64);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: opacity .35s, visibility .35s, transform .35s var(--ease);
}
.intro-choice.is-hidden { opacity: 0; visibility: hidden; transform: translate(-50%, -46%); pointer-events: none; }
.intro-kicker { margin-bottom: 12px; color: #bde6d8; font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.intro-choice h2 { margin-bottom: 26px; color: var(--white); font-size: clamp(2.25rem, 5vw, 4.4rem); }
.intro-choice > p:last-child { margin: 18px 0 0; color: rgba(255, 255, 255, .72); font-size: .86rem; }
.intro-actions { justify-content: center; }
.intro-progress {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .25s;
}
.intro-progress.is-visible { opacity: 1; }
.intro-progress-track { flex: 1; height: 4px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, .25); }
.intro-progress-track span { display: block; width: 100%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green-500), #66aaff); transform: scaleX(0); transform-origin: left; }
.intro-complete {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, 18px);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s var(--ease);
}
.intro-complete span { font-size: 1.05rem; font-weight: 800; }
.intro-complete.is-visible { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }

/* Main hero */
.main-hero { position: relative; min-height: max(680px, 92svh); overflow: hidden; isolation: isolate; background: var(--navy-950); color: var(--white); }
.main-hero-image { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 64% 56%; }
.main-hero-overlay { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(4, 18, 40, .96) 0, rgba(4, 18, 40, .84) 35%, rgba(4, 18, 40, .24) 68%, rgba(4, 18, 40, .04) 100%); }
.main-hero-inner { min-height: max(680px, 92svh); display: flex; align-items: center; padding-top: calc(var(--header-height) + 34px); padding-bottom: 42px; }
.main-hero-copy { width: min(670px, 58vw); }
.main-hero h1 { color: var(--white); font-size: clamp(3.4rem, 6vw, 6.2rem); }
.hero-gradient {
  display: inline-block;
  color: #7ed5ac;
  background: linear-gradient(105deg, #65cf9e 8%, #65bfc2 50%, #7ca8ff 96%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead { max-width: 610px; margin-bottom: 10px; font-size: clamp(1.08rem, 1.5vw, 1.3rem); font-weight: 600; }
.hero-support { max-width: 600px; margin-bottom: 22px; color: rgba(255, 255, 255, .72); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(24px, 4vh, 38px); }
.hero-proof span { padding: 7px 12px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 999px; background: rgba(255, 255, 255, .08); font-size: .8rem; font-weight: 700; }

/* Trust */
.trust-strip { padding: 28px 0; border-bottom: 1px solid var(--border); background: var(--cream); }
.trust-layout { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.trust-layout > p { max-width: 410px; margin: 0; color: var(--muted); font-size: .84rem; font-weight: 700; }
.client-logos { display: flex; align-items: center; justify-content: flex-end; gap: clamp(22px, 4vw, 56px); }
.client-logos img { width: auto; max-width: 112px; height: 42px; object-fit: contain; filter: saturate(.2); opacity: .78; }

/* Services */
.services-section { background: var(--warm-white); }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card { min-width: 0; min-height: 490px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(13, 90, 70, .34); box-shadow: 0 20px 48px rgba(6, 23, 49, .12); }
.service-media { position: relative; min-height: 170px; overflow: hidden; border-bottom: 1px solid rgba(255, 255, 255, .2); background: linear-gradient(145deg, var(--navy-800), var(--navy-950)); }
.service-media::before, .service-media::after { content: ""; position: absolute; border-radius: 50%; filter: blur(1px); }
.service-media::before { width: 180px; height: 180px; top: -86px; right: -44px; background: rgba(101, 207, 158, .52); }
.service-media::after { width: 120px; height: 120px; bottom: -70px; left: -20px; background: rgba(124, 168, 255, .5); }
.service-media span { position: absolute; z-index: 1; right: 20px; bottom: 14px; color: rgba(255, 255, 255, .82); font-size: 3.3rem; font-weight: 800; letter-spacing: -.08em; line-height: 1; }
.service-card-private .service-media { background: linear-gradient(145deg, #0d5a46, #063a30); }
.service-card-schools .service-media { background: linear-gradient(145deg, #2b6fba, #173e82); }
.service-card-community .service-media { background: linear-gradient(145deg, #385b45, #112c24); }
.service-card-body { flex: 1; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; }
.card-kicker { margin-bottom: 10px; color: var(--green-700); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-card-body > p:not(.card-kicker) { margin-bottom: 26px; color: var(--muted); font-size: .94rem; }
.service-card-body .text-link { margin-top: auto; }

/* Process */
.process-section { position: relative; overflow: hidden; background: var(--navy-950); color: var(--white); }
.process-section::before { content: ""; position: absolute; width: 520px; height: 520px; right: -220px; top: -260px; border: 100px solid rgba(28, 138, 104, .12); border-radius: 50%; }
.process-heading { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 64px; }
.process-heading h2 { margin-bottom: 0; color: var(--white); }
.process-heading > p { margin-bottom: 8px; color: rgba(255, 255, 255, .68); font-size: 1.08rem; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 0; list-style: none; border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--radius-md); overflow: hidden; background: rgba(255, 255, 255, .16); }
.process-grid li { min-height: 310px; padding: 34px 28px; background: var(--navy-950); }
.process-grid li > span { display: block; margin-bottom: 52px; color: var(--yellow-400); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.process-grid h3 { color: var(--white); font-size: clamp(1.4rem, 2.1vw, 2rem); }
.process-grid p { margin-bottom: 0; color: rgba(255, 255, 255, .66); font-size: clamp(.96rem, 1.2vw, 1.05rem); line-height: 1.7; }

/* Booking */
.booking-section { background: linear-gradient(180deg, var(--surface), var(--warm-white)); }
.booking-heading .section-intro { padding: 20px 22px; border-left: 3px solid var(--yellow-400); background: rgba(255, 255, 255, .66); }
.booking-flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 26px; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.booking-flow > div { position: relative; min-height: 126px; padding: 22px 20px 20px 66px; border-right: 1px solid var(--border); }
.booking-flow > div:last-child { border-right: 0; }
.booking-flow span { position: absolute; top: 23px; left: 22px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--green-100); color: var(--green-700); font-size: .75rem; font-weight: 800; }
.booking-flow strong { display: block; margin-bottom: 5px; color: var(--navy-950); }
.booking-flow p { margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.5; }
.booking-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 24px; align-items: stretch; }
.calendar-card, .request-card { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.calendar-card { padding: clamp(24px, 4vw, 38px); }
.request-card { padding: clamp(26px, 4vw, 44px); }
.calendar-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.calendar-head h3, .request-card h3 { font-size: clamp(1.6rem, 2.5vw, 2.15rem); }
.calendar-controls { display: flex; gap: 8px; }
.calendar-controls button { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: var(--white); color: var(--navy-950); font-weight: 800; cursor: pointer; }
.calendar-controls button:hover:not(:disabled) { border-color: var(--green-700); background: var(--green-100); }
.calendar-controls button:disabled { opacity: .38; cursor: not-allowed; }
.calendar-copy { margin-bottom: 24px; color: var(--muted); font-size: .86rem; }
.calendar-month { margin-bottom: 14px; color: var(--navy-950); font-size: 1rem; font-weight: 800; }
.calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 5px; }
.calendar-weekdays { margin-bottom: 6px; color: var(--muted); font-size: .66rem; font-weight: 800; text-align: center; text-transform: uppercase; }
.calendar-day { position: relative; min-width: 0; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid transparent; border-radius: 10px; background: var(--cream); color: var(--navy-950); font-size: .78rem; font-weight: 700; cursor: pointer; }
.calendar-day:not(:disabled):hover { border-color: var(--green-700); background: var(--green-100); }
.calendar-day.is-selected { border-color: var(--navy-900); background: var(--navy-900); color: var(--white); }
.calendar-day.is-pending { border: 2px dashed var(--blue-600); background: var(--blue-100); color: var(--navy-900); }
.calendar-day:disabled { color: #9299a4; text-decoration: line-through; cursor: not-allowed; opacity: .66; }
.calendar-empty { aspect-ratio: 1; }
.calendar-legend { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; margin-top: 20px; color: var(--muted); font-size: .69rem; }
.calendar-legend span { display: flex; align-items: center; gap: 7px; }
.calendar-legend i { width: 14px; height: 14px; border-radius: 4px; background: var(--cream); }
.calendar-legend .legend-selected { background: var(--navy-900); }
.calendar-legend .legend-unavailable { opacity: .55; background: linear-gradient(135deg, var(--cream) 45%, #9299a4 47%, #9299a4 53%, var(--cream) 55%); }
.calendar-legend .legend-pending { border: 2px dashed var(--blue-600); background: var(--blue-100); }
.calendar-status { min-height: 22px; margin: 18px 0 0; color: var(--green-700); font-size: .78rem; font-weight: 700; }
.request-card > p:not(.card-kicker):not(.request-note):not(.form-error) { margin-bottom: 26px; color: var(--muted); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-wide { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: var(--navy-950); font-size: .8rem; font-weight: 800; }
.field input, .field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #bdc5cc;
  border-radius: 11px;
  padding: 11px 13px;
  background: var(--white);
  color: var(--ink);
  font-size: .92rem;
}
.field input:focus, .field select:focus { border-color: var(--green-700); outline: 3px solid rgba(28, 138, 104, .18); outline-offset: 0; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--danger); }
.field-help, .field-error { display: block; margin-top: 5px; font-size: .7rem; line-height: 1.4; }
.field-help { color: var(--muted); }
.field-error { min-height: 0; color: var(--danger); font-weight: 700; }
.estimate-summary { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2px 18px; margin: 24px 0 16px; padding: 18px; border-radius: var(--radius-sm); background: var(--green-100); }
.estimate-summary span { color: var(--green-800); font-size: .78rem; font-weight: 700; }
.estimate-summary strong { grid-row: span 2; color: var(--navy-950); font-size: 1.85rem; letter-spacing: -.04em; }
.estimate-summary small { color: var(--muted); }
.request-note { padding: 15px 17px; border-left: 3px solid var(--blue-600); background: var(--blue-100); color: var(--navy-900); font-size: .78rem; }
.form-error { min-height: 24px; margin: 8px 0; color: var(--danger); font-size: .8rem; font-weight: 800; }
.full-button { width: 100%; border: 0; }

/* Corporate */
.corporate-feature { background: var(--warm-white); }
.corporate-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(56px, 8vw, 110px); align-items: center; }
.corporate-media { position: relative; margin: 0; }
.corporate-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 52% center; border-radius: 150px 24px 24px 24px; }
.corporate-media figcaption, .about-image figcaption { position: absolute; right: -22px; bottom: 30px; max-width: 260px; padding: 15px 20px; border-radius: 14px; background: var(--yellow-400); color: var(--navy-950); box-shadow: var(--shadow-sm); font-size: .78rem; font-weight: 800; transform: rotate(-2deg); }
.corporate-copy h2 { font-size: clamp(2.7rem, 4.6vw, 5.1rem); }
.feature-list { display: grid; gap: 10px; margin: 28px 0 34px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 28px; color: var(--ink); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-700); font-weight: 800; }

/* Gallery */
.gallery-section { background: var(--surface); }
.gallery-grid { display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: repeat(2, minmax(260px, 330px)); gap: 18px; }
.gallery-grid figure { position: relative; height: 100%; margin: 0; overflow: hidden; border-radius: var(--radius-md); background: var(--navy-950); }
.gallery-wide { grid-row: 1 / 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption { position: absolute; right: 16px; bottom: 16px; left: 16px; padding: 12px 15px; border-radius: 11px; background: rgba(6, 23, 49, .78); color: var(--white); font-size: .76rem; font-weight: 700; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }

/* About */
.about-section { background: var(--warm-white); }
.about-layout { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(56px, 9vw, 120px); }
.about-image { position: relative; margin: 0; }
.about-image img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 34%; border-radius: 24px 150px 24px 24px; box-shadow: var(--shadow-lg); }
.about-image figcaption { right: auto; left: -20px; transform: rotate(2deg); }
.about-copy > p:not(.eyebrow) { max-width: 610px; color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.16rem); }

/* Reviews */
.reviews-section { background: var(--navy-950); color: var(--white); }
.reviews-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 54px; }
.reviews-heading h2 { margin-bottom: 0; color: var(--white); }
.reviews-heading > p { margin-bottom: 8px; color: rgba(255, 255, 255, .68); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.review-card { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(26px, 3vw, 38px); border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius-md); background: rgba(255, 255, 255, .06); }
.review-card::before { content: "G"; width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 40px; border-radius: 50%; background: var(--white); color: #4285f4; font-weight: 800; }
.review-card > p { color: var(--white); font-size: clamp(1.15rem, 1.8vw, 1.5rem); font-weight: 700; line-height: 1.45; }
.review-card footer { display: flex; flex-direction: column; }
.review-card footer strong { font-size: .84rem; }
.review-card footer span { color: rgba(255, 255, 255, .6); font-size: .72rem; }
.reviews-cta { display: flex; align-items: center; gap: 18px; margin-top: 30px; }
.reviews-cta > span { color: rgba(255, 255, 255, .55); font-size: .72rem; }

/* FAQ */
.faq-section { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 9vw, 120px); }
.faq-intro { position: sticky; top: calc(var(--header-height) + 30px); align-self: start; }
.faq-intro h2 { font-size: clamp(2.7rem, 4.5vw, 4.8rem); }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.faq-intro a { color: var(--green-700); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list details:first-child { border-top: 1px solid var(--border); }
.faq-list summary { position: relative; padding: 24px 54px 24px 0; list-style: none; color: var(--navy-950); font-size: 1.04rem; font-weight: 800; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 17px; right: 4px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--green-100); color: var(--green-700); font-size: 1.35rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 650px; margin: 0; padding: 0 50px 24px 0; color: var(--muted); }

/* Final CTA and footer */
.final-cta { position: relative; overflow: hidden; padding: clamp(86px, 10vw, 140px) 0; background: linear-gradient(105deg, rgba(7, 31, 74, .98), rgba(7, 31, 74, .76)), url("assets/images/paint-texture-green-navy.jpg") center / cover; color: var(--white); }
.final-cta-inner { position: relative; max-width: 840px; margin-inline: auto; text-align: center; }
.final-cta h2 { margin-bottom: 22px; color: var(--white); }
.final-cta-inner > p:not(.eyebrow) { max-width: 660px; margin: 0 auto 34px; color: rgba(255, 255, 255, .74); font-size: 1.06rem; }
.final-cta .button-row { justify-content: center; }
.site-footer { padding: 72px 0 28px; background: var(--navy-950); color: #c8d2df; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 54px; }
.brand-light { color: var(--white); }
.footer-brand > p { max-width: 360px; margin-top: 24px; color: #aeb9c8; }
.footer-grid h3 { margin-bottom: 16px; color: var(--white); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div > a { display: block; min-height: 36px; color: #c8d2df; font-size: .86rem; }
.footer-grid > div > a:hover { color: var(--white); }
.socials { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; }
.socials a { color: var(--white); font-size: .8rem; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .14); color: #8f9cae; font-size: .74rem; }
.mobile-sticky-cta { display: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --header-height: 76px; }
  .container { width: min(var(--max), calc(100% - 48px)); }
  .desktop-nav { gap: 24px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 450px; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid li:nth-child(2) { border-right: 0; }
  .booking-layout { grid-template-columns: 1fr 1fr; }
  .footer-grid { gap: 30px; }
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { width: 48px; height: 48px; display: grid; place-content: center; gap: 5px; margin-left: auto; padding: 10px; border: 0; background: transparent; color: currentColor; cursor: pointer; }
  .menu-toggle span { width: 25px; height: 2px; border-radius: 999px; background: currentColor; transition: transform .2s, opacity .2s; }
  .site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: var(--header-height); right: 0; left: 0; display: grid; padding: 10px 24px 24px; border-top: 1px solid var(--border); background: var(--warm-white); box-shadow: 0 20px 40px rgba(6, 23, 49, .14); color: var(--navy-950); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu > a:not(.button) { min-height: 52px; display: flex; align-items: center; border-bottom: 1px solid var(--border); font-weight: 700; }
  .mobile-menu .button { margin-top: 14px; }
  .intro-scroll-shell { height: 300svh; }
  .main-hero-copy { width: min(620px, 74vw); }
  .trust-layout { align-items: flex-start; flex-direction: column; gap: 22px; }
  .client-logos { width: 100%; justify-content: space-between; }
  .section-heading, .process-heading, .reviews-heading { grid-template-columns: 1fr; display: grid; align-items: start; gap: 26px; }
  .section-heading > .section-intro, .process-heading > p, .reviews-heading > p { max-width: 680px; }
  .booking-layout, .corporate-layout, .about-layout, .faq-layout { grid-template-columns: 1fr; }
  .booking-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-flow > div:nth-child(2) { border-right: 0; }
  .booking-flow > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .corporate-media { max-width: 680px; margin-inline: auto; }
  .about-image { width: min(620px, 100%); margin-inline: auto; }
  .about-copy { max-width: 760px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 220px; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: calc(100% - 36px); }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(3rem, 14vw, 5rem); }
  h2 { font-size: clamp(2.45rem, 11vw, 4rem); }
  .intro-stage { min-height: 520px; }
  .intro-choice { padding: 28px 20px; border-radius: 26px; }
  .intro-actions { display: grid; }
  .intro-actions .button { width: 100%; }
  .intro-progress { right: 18px; bottom: 18px; left: 18px; }
  .intro-progress > span:first-child { display: none; }
  .main-hero, .main-hero-inner { min-height: max(660px, 90svh); }
  .main-hero-image { object-position: 66% center; }
  .main-hero-overlay { background: linear-gradient(180deg, rgba(4, 18, 40, .45), rgba(4, 18, 40, .94) 68%); }
  .main-hero-inner { align-items: end; padding-bottom: 56px; }
  .main-hero-copy { width: 100%; }
  .hero-proof { margin-bottom: 32px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .client-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 34px; }
  .client-logos img { margin: auto; }
  .service-grid, .process-grid, .booking-flow, .booking-layout, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 430px; }
  .service-media { min-height: 145px; }
  .process-heading { margin-bottom: 40px; }
  .process-grid li { min-height: 0; padding: 28px 24px; }
  .process-grid li > span { margin-bottom: 24px; }
  .booking-flow > div { min-height: 100px; border-right: 0; border-bottom: 1px solid var(--border); }
  .booking-flow > div:last-child { border-bottom: 0; }
  .field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .calendar-legend { grid-template-columns: 1fr; }
  .corporate-media img { aspect-ratio: 4 / 4.5; border-radius: 90px 20px 20px 20px; }
  .corporate-media figcaption { right: 10px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 270px); }
  .gallery-wide { grid-row: auto; }
  .about-image img { border-radius: 20px 90px 20px 20px; }
  .about-image figcaption { left: 10px; }
  .reviews-cta { align-items: flex-start; flex-direction: column; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  body { padding-bottom: 72px; }
  .container { width: calc(100% - 30px); }
  .section { padding: 68px 0; }
  .brand img { width: 46px; height: 46px; }
  .brand { font-size: .88rem; }
  .intro-scroll-shell { height: 240svh; }
  .intro-choice h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .intro-choice > p:last-child { display: none; }
  .intro-complete { bottom: 36px; white-space: nowrap; }
  .main-hero, .main-hero-inner { min-height: max(650px, 88svh); }
  .main-hero-inner { padding-bottom: 34px; }
  .main-hero .eyebrow { margin-bottom: 12px; }
  .main-hero h1 { margin-bottom: 16px; }
  .hero-lead { font-size: 1rem; }
  .hero-support { margin-bottom: 16px; font-size: .88rem; }
  .hero-proof { flex-wrap: nowrap; gap: 4px; margin-bottom: 20px; }
  .hero-proof span { padding: 5px 7px; white-space: nowrap; font-size: .58rem; }
  .button { min-height: 50px; padding-inline: 18px; }
  .calendar-card { padding: 22px 9px; }
  .request-card { padding: 22px 16px; }
  .calendar-day { border-radius: 8px; font-size: .72rem; }
  .calendar-weekdays, .calendar-grid { gap: 3px; }
  .estimate-summary { grid-template-columns: 1fr; }
  .estimate-summary strong { grid-row: auto; }
  .review-card { min-height: 210px; }
  .faq-list summary { padding-right: 48px; }
  .faq-list details p { padding-right: 12px; }
  .mobile-sticky-cta { position: fixed; z-index: 90; right: 12px; bottom: 10px; left: 12px; min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; background: var(--navy-900); color: var(--white); box-shadow: 0 12px 32px rgba(6, 23, 49, .3); font-weight: 800; opacity: 0; transform: translateY(80px); pointer-events: none; transition: opacity .25s, transform .25s var(--ease); }
  .mobile-sticky-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
}

@media (max-width: 375px) {
  .container { width: calc(100% - 24px); }
  h1 { font-size: 2.85rem; }
  h2 { font-size: 2.35rem; }
  .intro-choice { width: calc(100% - 24px); }
  .service-card-body { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .intro-scroll-shell { height: auto; }
  .intro-stage { position: relative; height: max(620px, 100svh); }
  .intro-media video { object-fit: cover; }
  .intro-progress, .intro-complete { display: none; }
  .reveal { opacity: 1; transform: none; }
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-gradient { color: #79c9b0; background: none; -webkit-text-fill-color: currentColor; }
}
