
:root {
  /* kit: linear_inspired_dark_dna */
  /* kit: airbnb_host_lifestyle_dna */

  /* Surface Material Depth Hierarchy */
  --surface:         #ffffff;
  --surface-2:       #f7f7f7;
  --surface-3:       #222222;

  /* Ink Typographic Hierarchy */
  --ink:             #222222;
  --ink-2:           #484848;
  --ink-muted:       #717171;
  --ink-inverse:     #ffffff;

  /* Structural Dividers */
  --muted:           #dddddd;
  --muted-2:         #ebebeb;

  /* Dynamic Accent (Airbnb Coral) */
  --accent:          #E00B41;
  --accent-hover:    #FF385C;
  --accent-ink:      #ffffff;

  /* Motion */
  --ease-editorial:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-plush:     cubic-bezier(0.2, 0, 0, 1);
  --dur-base:        0.35s;
  --dur-fast:        0.15s;

  /* Spatial */
  --measure:         68ch;
  --gap-xs:          0.5rem;
  --gap-sm:          1rem;
  --gap-md:          2rem;
  --gap-lg:          clamp(3.5rem, 6vw, 6rem);
  --gap-xl:          clamp(5rem, 10vw, 10rem);

  /* Radius (kit) */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-pill: 9999px;

  /* Effects (kit) */
  --shadow-block: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-cta:   0 6px 16px rgba(0,0,0,0.12);

  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* In-page jump targets sit just before their section; this keeps the
   sticky 80px nav from covering the heading they scroll to. */
.anchor-offset { display: block; scroll-margin-top: 96px; }

body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink-2);
  font-size: clamp(1rem, 0.5vw + 0.85rem, 1.125rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 700;
}

a { color: var(--ink); text-decoration: none; transition: color var(--dur-fast) var(--ease-plush); }
a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 4rem);
  padding-right: clamp(1rem, 5vw, 4rem);
}

.layout-block {
  padding-top: var(--gap-lg);
  padding-bottom: var(--gap-lg);
  position: relative;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  display: inline-block;
  margin-bottom: var(--gap-sm);
}

.section-title {
  font-size: clamp(1.8rem, 4vw + 0.5rem, 3.2rem);
  letter-spacing: -0.03em;
  max-width: 22ch;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1vw + 0.6rem, 1.25rem);
  color: var(--ink-2);
  max-width: 60ch;
  margin-top: var(--gap-sm);
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--dur-fast) var(--ease-plush);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--accent-hover); color: var(--accent-ink); transform: translateY(-1px); }
.btn-secondary { background: var(--surface); color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--surface-2); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--surface-2); color: var(--ink); border-radius: var(--r-pill); }

/* ───────── NAV ───────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--muted);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 80px;
  gap: var(--gap-md);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.nav-brand-mark {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  color: var(--accent-ink);
  font-weight: 800;
  font-size: 16px;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: var(--gap-md);
  list-style: none;
}
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-2); }
.nav-cta { display: flex; align-items: center; gap: var(--gap-sm); }
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

@media (max-width: 880px) {
  /* With the links hidden, the grid drops to brand | toggle so the
     hamburger stays pinned to the right instead of collapsing inward. */
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .nav-cta { justify-self: end; }
  .nav-toggle { display: flex; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--surface);
    padding: var(--gap-md);
    gap: var(--gap-sm);
    border-bottom: 1px solid var(--muted);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav.open .nav-links a { padding: 0.6rem 0; font-size: 17px; }
}

/* ───────── HERO ───────── */
.hero { padding-top: var(--gap-md); padding-bottom: var(--gap-lg); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--gap-md);
  align-items: stretch;
}
.hero-copy { padding: var(--gap-md) 0; display: flex; flex-direction: column; justify-content: center; }
.hero-headline {
  font-size: clamp(2.5rem, 6vw + 1rem, 5rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-weight: 800;
  color: var(--ink);
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
  display: inline-block;
}
.hero-sub {
  font-size: clamp(1.05rem, 1vw + 0.7rem, 1.3rem);
  color: var(--ink-2);
  margin-top: var(--gap-md);
  max-width: 50ch;
  text-align: left;
}
.hero-ctas {
  display: flex; gap: var(--gap-sm); flex-wrap: wrap;
  margin-top: var(--gap-md);
}
.hero-microtrust {
  display: flex; gap: var(--gap-md); flex-wrap: wrap;
  margin-top: var(--gap-md);
  align-items: center;
  font-size: 14px;
  color: var(--ink-muted);
}
.hero-microtrust strong { color: var(--ink); font-weight: 700; }
.hero-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 480px;
  background: var(--surface-2);
}
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media-card {
  position: absolute;
  left: var(--gap-sm); bottom: var(--gap-sm);
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--gap-sm) var(--gap-md);
  box-shadow: var(--shadow-cta);
  display: flex; align-items: center; gap: var(--gap-sm);
  max-width: 320px;
}
.hero-media-card .stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.hero-media-card .meta { font-size: 13px; color: var(--ink-2); }
.hero-media-card .meta strong { color: var(--ink); font-weight: 700; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 380px; }
}

/* ───────── HERO · FULL-SCREEN VIDEO VARIANT ───────── */
.hero--video {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 82vh, 780px);
  padding-top: clamp(2.5rem, 7vh, 6rem);
  padding-bottom: clamp(2.5rem, 7vh, 6rem);
  overflow: hidden;
  /* Dark gradient field — the video is feathered into this so its edges
     blend into a similar colour rather than sitting on a hard rectangle. */
  background:
    radial-gradient(60% 80% at 80% 45%, rgba(224,11,65,0.16), transparent 60%),
    radial-gradient(70% 90% at 72% 40%, rgba(43,57,86,0.55), transparent 72%),
    linear-gradient(120deg, #0b0e15 0%, #121829 52%, #0b0e15 100%);
}
.hero--video .container { position: relative; z-index: 2; width: 100%; }
/* Two-column top row (title | video, vertically centred to each other),
   with a full-width lower row (description, CTAs, microtrust) underneath. */
.hero--video .hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.hero-headcol { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; justify-content: center; }
.hero--video .hero-video-wrap { grid-column: 2; grid-row: 1; }
.hero-lower {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: clamp(1.25rem, 3vh, 2.25rem);
}
.hero-lower .hero-sub { margin-top: 0; max-width: none; }
.hero--video .hero-copy { padding: 0; }
.hero--video .hero-headline { color: #ffffff; }
.hero--video .hero-sub { color: rgba(255,255,255,0.9); }
.hero--video .hero-microtrust { color: rgba(255,255,255,0.82); }
.hero--video .hero-microtrust strong { color: #ffffff; }
.hero--video .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.hero--video .btn-secondary:hover { background: rgba(255,255,255,0.18); color: #ffffff; }

/* Video held on the right, capped at its native width (848px) so it is
   never upscaled — that upscaling was the source of the pixelation. */
.hero-video-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-bg-video {
  width: 100%;
  max-width: 540px;
  height: auto;
  aspect-ratio: 848 / 478;
  object-fit: cover;
  border-radius: var(--r-xl);
  /* Feather all four edges into the dark background. */
  -webkit-mask-image: radial-gradient(125% 125% at 50% 50%, #000 60%, transparent 100%);
          mask-image: radial-gradient(125% 125% at 50% 50%, #000 60%, transparent 100%);
}

@media (max-width: 900px) {
  .hero--video { min-height: auto; }
  .hero--video .hero-grid { grid-template-columns: 1fr; }
  /* Stack in DOM order: title → video → description/CTAs */
  .hero-headcol,
  .hero--video .hero-video-wrap,
  .hero-lower { grid-column: 1; grid-row: auto; }
  .hero-lower { margin-top: var(--gap-md); }
  .hero-video-wrap { margin-top: var(--gap-md); }
  .hero-bg-video { max-width: 440px; }
}

/* ───────── TRUST BAR ───────── */
.trust {
  background: var(--surface-3);
  color: var(--ink-inverse);
  padding-top: var(--gap-md);
  padding-bottom: var(--gap-md);
}
.trust-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap-md);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 180px;
}
.trust-stat {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw + 0.5rem, 3.2rem);
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.trust-label {
  margin-top: 0.4rem;
  color: #d9d9d9;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
}
.trust-divider {
  width: 1px; align-self: stretch; background: rgba(255,255,255,0.18);
}
@media (max-width: 760px) { .trust-divider { display: none; } }

/* ───────── SERVICES (asymmetric bento) ───────── */
.services-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap-md);
  align-items: end;
  margin-bottom: var(--gap-lg);
}
@media (max-width: 800px) { .services-head { grid-template-columns: 1fr; } }

.services-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap-md);
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--muted);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-plush), box-shadow var(--dur-base) var(--ease-plush);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-cta); }
.service-card.feature { grid-row: span 2; }
/* Class D card spans the full width of the top-right two columns */
.service-card--wide { grid-column: 2 / 4; }
.service-media {
  background: var(--surface-2);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card.feature .service-media { aspect-ratio: 4 / 5; }
.service-card--wide .service-media { aspect-ratio: 21 / 9; }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: var(--gap-md); display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.service-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 12px; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-tag::before {
  content: ''; width: 10px; height: 10px; background: var(--accent); border-radius: 2px;
}
.service-title { font-size: 1.35rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.service-card.feature .service-title { font-size: 1.7rem; }
.service-desc { font-size: 0.98rem; color: var(--ink-2); text-align: left; }
.service-meta {
  margin-top: auto;
  padding-top: var(--gap-sm);
  border-top: 1px solid var(--muted-2);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-muted);
}
.service-meta strong { color: var(--ink); font-weight: 700; }

.service-card.text-only {
  background: var(--surface-2);
  padding: var(--gap-md);
  gap: var(--gap-sm);
}
.service-card.text-only .service-body { padding: 0; }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.feature { grid-row: auto; grid-column: span 2; }
  .service-card.feature .service-media { aspect-ratio: 16/9; }
  .service-card--wide { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.feature { grid-column: auto; }
  .service-card--wide { grid-column: auto; }
  .service-card--wide .service-media { aspect-ratio: 16/9; }
}

/* ───────── TESTIMONIALS ───────── */
.testimonials { background: var(--surface-2); }
.testimonials-head { margin-bottom: var(--gap-lg); max-width: 50ch; }
.review-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--gap-md);
}
.review-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--gap-md);
  display: flex; flex-direction: column;
  gap: var(--gap-sm);
  box-shadow: var(--shadow-block);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-plush), box-shadow var(--dur-base) var(--ease-plush);
}
a.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-cta); }
.review-card .stars { color: var(--accent); letter-spacing: 3px; font-size: 16px; }
.review-quote {
  font-size: 1.05rem; line-height: 1.55;
  color: var(--ink); font-weight: 500;
  text-align: left;
}
.review-card.featured .review-quote { font-size: 1.2rem; }
.review-author {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: auto; padding-top: var(--gap-sm);
  border-top: 1px solid var(--muted-2);
}
.review-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.review-author .name { font-weight: 700; color: var(--ink); font-size: 14px; }
.review-author .role { font-size: 12px; color: var(--ink-muted); }

@media (max-width: 960px) {
  .review-grid { grid-template-columns: 1fr 1fr; }
  .review-card.featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-card.featured { grid-column: auto; }
}

/* ───────── FAQ ───────── */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--gap-lg);
  align-items: start;
}
.faq-aside .badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--surface-2);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
  color: var(--ink-2);
  margin-bottom: var(--gap-sm);
}
.faq-aside h2 { letter-spacing: -0.03em; }
.faq-aside p { margin-top: var(--gap-sm); color: var(--ink-2); text-align: left; max-width: 38ch; }
.faq-aside .helper {
  margin-top: var(--gap-md);
  padding: var(--gap-md);
  background: var(--surface-2);
  border-radius: var(--r-lg);
  font-size: 14px;
  text-align: left;
}
.faq-aside .helper strong { display: block; color: var(--ink); margin-bottom: 0.25rem; font-size: 15px; }

.accordion { display: flex; flex-direction: column; }
.accordion-item { border-bottom: 1px solid var(--muted); }
.accordion-item:first-child { border-top: 1px solid var(--muted); }
.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: var(--gap-md) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1vw + 0.7rem, 1.25rem);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--gap-sm);
  letter-spacing: -0.01em;
}
.accordion-header .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
  color: var(--ink);
  transition: transform var(--dur-fast) var(--ease-plush), background var(--dur-fast);
  flex-shrink: 0;
}
.accordion-item.open .accordion-header .icon {
  background: var(--accent);
  color: var(--accent-ink);
  transform: rotate(45deg);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease-plush);
}
.accordion-panel-inner {
  padding-bottom: var(--gap-md);
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.65;
  text-align: left;
  max-width: 60ch;
}

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ───────── TEAM ───────── */
.team { background: var(--surface-2); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(260px, 30vw, 360px), 1fr));
  gap: var(--gap-md);
  margin-top: var(--gap-lg);
}
.team-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-block);
  display: flex; flex-direction: column;
}
.team-photo {
  aspect-ratio: 8/5;
  max-height: 210px;
  background: var(--muted-2);
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Monogram avatars — J (Jass), P (Pal), T (Team) */
.team-monogram { display: grid; place-items: center; }
.team-monogram span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.04em;
}
.team-monogram--jass { background: linear-gradient(150deg, #E00B41 0%, #a8082f 100%); }
.team-monogram--pal  { background: linear-gradient(150deg, #243154 0%, #131b30 100%); }
.team-monogram--team { background: linear-gradient(150deg, #515a67 0%, #2b3038 100%); }
.team-body { padding: var(--gap-md); text-align: left; }
.team-name { font-size: 1.3rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.team-role { color: var(--accent); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }
.team-bio { margin-top: 0.75rem; font-size: 0.95rem; color: var(--ink-2); text-align: left; }

/* ───────── CTA BANNER ───────── */
.cta-banner {
  background:
    radial-gradient(60% 80% at 20% 30%, rgba(255,56,92,0.18), transparent 70%),
    radial-gradient(50% 70% at 90% 80%, rgba(255,56,92,0.10), transparent 70%),
    var(--surface-3);
  color: var(--ink-inverse);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 6vw, 5rem);
  margin: var(--gap-lg) 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--gap-md);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.05) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.05) 100%);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner-title {
  font-size: clamp(1.8rem, 4vw + 0.5rem, 3rem);
  letter-spacing: -0.03em;
  color: #ffffff;
}
.cta-banner-sub {
  margin-top: var(--gap-sm);
  color: rgba(255,255,255,0.78);
  max-width: 50ch;
  text-align: left;
}
.cta-banner-actions {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  gap: var(--gap-sm);
  align-items: flex-start;
}
.cta-banner .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.cta-banner .btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }
.cta-banner-callout {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: left;
}
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; } }

/* ───────── LEAD CAPTURE ───────── */
.lead-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--gap-lg);
  align-items: start;
}
.lead-copy h2 { letter-spacing: -0.03em; }
.lead-copy p { color: var(--ink-2); margin-top: var(--gap-sm); text-align: left; max-width: 38ch; }
.lead-bullets { list-style: none; margin-top: var(--gap-md); display: flex; flex-direction: column; gap: 0.75rem; }
.lead-bullets li {
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.98rem;
  color: var(--ink-2);
  text-align: left;
}
.lead-bullets li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 2px;
}

.lead-form {
  background: var(--surface);
  border: 1px solid var(--muted);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-block);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap-sm);
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  height: 48px;
  padding: 0 var(--gap-sm);
  border: 1px solid var(--muted);
  background: var(--surface);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease-plush);
}
.form-field textarea { height: 100px; padding: var(--gap-sm); resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  border-width: 1px;
}
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: var(--gap-sm); margin-top: var(--gap-md); flex-wrap: wrap; }
.form-fineprint { font-size: 12px; color: var(--ink-muted); text-align: left; max-width: 38ch; }
.form-success {
  display: none;
  background: #f0faf0;
  border: 1px solid #c8e6c9;
  color: #1b5e20;
  padding: var(--gap-sm);
  border-radius: var(--r-md);
  margin-top: var(--gap-sm);
  font-size: 14px;
}
.form-success.show { display: block; }

@media (max-width: 880px) { .lead-grid { grid-template-columns: 1fr; } }

/* ───────── CONTACT / MAP ───────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gap-md);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--muted);
  background: var(--surface);
}
.contact-info { padding: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex-direction: column; gap: var(--gap-md); }
.contact-info h2 { font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem); letter-spacing: -0.02em; }
.contact-block { text-align: left; }
.contact-block .lbl {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 600; margin-bottom: 0.4rem;
}
.contact-block .val { font-size: 15px; color: var(--ink); line-height: 1.5; }
.contact-block a { color: var(--ink); }
.contact-block a:hover { color: var(--accent); }
.contact-hours {
  font-size: 13px; color: var(--ink-2); line-height: 1.85;
}
.contact-languages { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.contact-languages span {
  font-size: 11px; font-weight: 600;
  padding: 0.25rem 0.55rem;
  background: var(--surface-2);
  border-radius: var(--r-pill);
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-map { min-height: 460px; background: var(--surface-2); }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 460px; }

/* dual-location maps — School & Office + Training Yard */
.contact-map--dual {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--muted);
}
.contact-map--dual .map-item {
  position: relative;
  display: flex;
  min-height: 230px;
  background: var(--surface-2);
}
.contact-map--dual .map-item iframe { min-height: 230px; }
.contact-map--dual .map-cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  background: rgba(17,19,23,0.82);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.7rem;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* ───────── FOOTER ───────── */
.footer {
  background: var(--surface-3);
  color: var(--ink-inverse);
  padding-top: var(--gap-lg);
  padding-bottom: var(--gap-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--gap-md);
  padding-bottom: var(--gap-md);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--gap-sm); }
.footer-brand .nav-brand { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.7); max-width: 36ch; font-size: 14px; text-align: left; }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: var(--gap-sm); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--gap-md);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap; gap: var(--gap-sm);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: #fff; }
.footer-social { display: flex; gap: var(--gap-sm); }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: #fff;
  transition: background var(--dur-fast);
}
.footer-social a:hover { background: var(--accent); color: #fff; }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ───────── COOKIE BANNER ───────── */
.cookie {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 560px;
  background: var(--surface-3);
  color: var(--ink-inverse);
  border-radius: var(--r-lg);
  padding: var(--gap-md);
  display: none;
  z-index: 2000;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  font-size: 14px;
}
.cookie.show { display: flex; flex-direction: column; gap: var(--gap-sm); }
.cookie p { color: rgba(255,255,255,0.85); text-align: left; }
.cookie a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie .btn-primary { height: 40px; padding: 0 16px; }
.cookie .btn-secondary { height: 40px; padding: 0 16px; background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.cookie .btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ───────── REVEAL ───────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease-editorial), transform 0.6s var(--ease-editorial); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* honeypot field — bots fill it; CSS hides it */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
