/* ==========================================================================
   Bayside Physio - Landing page styles (static HTML version)
   Design tokens ported 1:1 from web/src/app/globals.css
   ========================================================================== */

:root {
  /* Brand core */
  --color-brand-cyan: #00d8ff;
  --color-brand-ink: #262130;
  --color-brand-grey: #dcdcdc;
  --color-brand-white: #ffffff;

  /* Cyan scale */
  --color-cyan-50: #e6faff;
  --color-cyan-100: #ccf6ff;
  --color-cyan-200: #99edff;
  --color-cyan-300: #66e4ff;
  --color-cyan-400: #33dbff;
  --color-cyan-500: #00d8ff;
  --color-cyan-600: #00adcc;
  --color-cyan-700: #008299; /* accessible cyan for text/links on white */
  --color-cyan-800: #005766;
  --color-cyan-900: #002b33;

  /* Ink / neutral scale */
  --color-ink-50: #f7f7f8;
  --color-ink-100: #efeef1;
  --color-ink-200: #dcdcdc;
  --color-ink-300: #c4c3cb;
  --color-ink-400: #9b99a6;
  --color-ink-500: #6f6d7d;
  --color-ink-600: #4e4c5c;
  --color-ink-700: #38354a;
  --color-ink-800: #2e2a3c;
  --color-ink-900: #262130;
  --color-ink-950: #1a1620;

  /* Seasonal accent */
  --color-amber-400: #f7b955;
  --color-amber-500: #f4a030;
  --color-amber-600: #d9851a;

  /* Semantic feedback */
  --color-success: #1aa66b;
  --color-success-soft: #e3f6ee;
  --color-warning: #d9851a;
  --color-warning-soft: #fdf1e0;
  --color-danger: #e23b3b;
  --color-danger-soft: #fbe7e7;
  --color-info: #008299;
  --color-info-soft: #e6faff;

  /* Semantic surface roles */
  --color-background: #ffffff;
  --color-foreground: #262130;
  --color-muted: #f7f7f8;
  --color-muted-foreground: #6f6d7d;
  --color-card: #ffffff;
  --color-card-foreground: #262130;
  --color-border: #e6e5e9;
  --color-input: #c4c3cb;
  --color-ring: #00d8ff;
  --color-primary: #00d8ff;
  --color-primary-foreground: #262130;
  --color-accent: #f7f7f8;
  --color-accent-foreground: #262130;

  /* Typography */
  --font-sans: "Poppins", ui-sans-serif, system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-xs-lh: 1.1rem;
  --text-sm: 0.875rem;
  --text-sm-lh: 1.35rem;
  --text-base: 1rem;
  --text-base-lh: 1.6rem;
  --text-lg: 1.125rem;
  --text-lg-lh: 1.75rem;
  --text-xl: 1.375rem;
  --text-xl-lh: 1.85rem;
  --text-2xl: 1.75rem;
  --text-2xl-lh: 2.15rem;
  --text-3xl: 2.25rem;
  --text-3xl-lh: 2.55rem;
  --text-4xl: 3rem;
  --text-4xl-lh: 3.2rem;
  --text-5xl: 3.75rem;
  --text-5xl-lh: 3.9rem;
  --text-6xl: 4.75rem;
  --text-6xl-lh: 4.9rem;

  /* Radius */
  --radius-xs: 0.25rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgb(38 33 48 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(38 33 48 / 0.08), 0 1px 2px -1px rgb(38 33 48 / 0.08);
  --shadow-md: 0 4px 12px -2px rgb(38 33 48 / 0.10), 0 2px 6px -2px rgb(38 33 48 / 0.06);
  --shadow-lg: 0 12px 28px -6px rgb(38 33 48 / 0.14), 0 4px 10px -4px rgb(38 33 48 / 0.08);
  --shadow-cyan: 0 10px 30px -8px rgb(0 216 255 / 0.45);

  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--text-base);
  line-height: var(--text-base-lh);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: inherit;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: var(--color-cyan-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
  font-size: var(--text-base);
}

::selection {
  background-color: var(--color-brand-cyan);
  color: var(--color-brand-ink);
}

:focus-visible {
  outline: 2px solid var(--color-ring);
  outline-offset: 2px;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  margin-inline: auto;
  width: 100%;
  max-width: 80rem;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 3.5rem;
}

.section-inner {
  max-width: 80rem;
  margin-inline: auto;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-cyan-700);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-size: var(--text-2xl);
  line-height: var(--text-2xl-lh);
  margin-bottom: 0.75rem;
}

.section-lede {
  color: var(--color-muted-foreground);
  font-size: var(--text-lg);
  line-height: var(--text-lg-lh);
}

.bg-muted {
  background-color: var(--color-muted);
}

.bg-bay {
  background-image:
    radial-gradient(120% 120% at 80% -10%, rgb(0 216 255 / 0.22), transparent 55%),
    linear-gradient(180deg, var(--color-ink-900), var(--color-ink-950));
  color: var(--color-brand-white);
}

.bg-bay .muted-on-dark {
  color: var(--color-ink-300);
}

@media (min-width: 768px) {
  .section {
    padding-block: 5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-block: 6.5rem;
  }
}

/* ==========================================================================
   Skip link
   ========================================================================== */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--color-brand-white);
  color: var(--color-brand-ink);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: top 0.2s var(--ease-out-soft);
  font-weight: 500;
}

.skip-link:focus {
  top: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: var(--text-base);
  border: 1px solid transparent;
  transition: transform 0.15s var(--ease-out-soft), box-shadow 0.2s var(--ease-out-soft), background-color 0.2s var(--ease-out-soft);
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-brand-cyan);
  color: var(--color-brand-ink);
}

.btn-primary:hover {
  box-shadow: var(--shadow-cyan);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-brand-ink);
  border-color: var(--color-ink-200);
}

.btn-secondary:hover {
  background-color: var(--color-ink-50);
}

.btn-on-dark {
  color: var(--color-brand-white);
  border-color: rgb(255 255 255 / 0.3);
}

.btn-on-dark:hover {
  background-color: rgb(255 255 255 / 0.08);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--color-brand-ink);
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--color-brand-cyan);
}

.brand-word-physio {
  font-weight: 300;
  color: var(--color-cyan-700);
}

.primary-nav {
  display: none;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.primary-nav a {
  color: var(--color-foreground);
  font-size: var(--text-sm);
  font-weight: 500;
}

.primary-nav a:hover {
  color: var(--color-cyan-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--color-ink-200);
  border-radius: var(--radius-md);
  color: var(--color-brand-ink);
}

.nav-toggle-icon {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  display: none;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-brand-white);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav ul {
  padding: 0.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0.25rem;
  color: var(--color-foreground);
  font-weight: 500;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-nav .btn {
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .primary-nav {
    display: block;
  }

  .header-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 4rem 3.5rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-wave {
  position: absolute;
  top: -10%;
  right: -18%;
  width: 480px;
  height: 480px;
  opacity: 0.16;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-cyan-500);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: var(--text-4xl);
  line-height: var(--text-4xl-lh);
  color: var(--color-brand-white);
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  color: var(--color-brand-cyan);
}

.hero-copy {
  font-size: var(--text-lg);
  line-height: var(--text-lg-lh);
  color: var(--color-ink-300);
  max-width: 38rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--color-ink-200);
  font-weight: 400;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-brand-cyan);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .hero {
    padding-block: 6rem 5rem;
  }

  .hero h1 {
    font-size: var(--text-5xl);
    line-height: var(--text-5xl-lh);
  }
}

@media (min-width: 1024px) {
  .trust-strip {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  gap: 2.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.25rem 1rem;
  background: var(--color-brand-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stat-number {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-cyan-700);
  display: block;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-muted-foreground);
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
  }
}

/* ==========================================================================
   Photo slots
   ========================================================================== */
.photo-slot {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-cyan-100), var(--color-ink-100));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.photo-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgb(0 216 255 / 0.25), transparent 60%);
}

.photo-slot-label {
  position: relative;
  z-index: 1;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-ink-600);
  text-align: center;
  padding: 1rem;
  max-width: 16rem;
}

.photo-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Cards grid (services)
   ========================================================================== */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--color-brand-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s var(--ease-out-soft), transform 0.2s var(--ease-out-soft);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-cyan-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-cyan-700);
}

.service-card h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--color-muted-foreground);
  font-size: var(--text-sm);
  line-height: var(--text-sm-lh);
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid.services {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   How it works
   ========================================================================== */
.steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 3.5rem;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: var(--color-brand-ink);
  color: var(--color-brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-sm);
}

.step h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.375rem;
}

.step p {
  color: var(--color-muted-foreground);
  font-size: var(--text-sm);
  line-height: var(--text-sm-lh);
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.team-card {
  background: var(--color-brand-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.team-avatar {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-ink-900), var(--color-ink-700));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.team-initials {
  position: relative;
  z-index: 1;
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--color-brand-white);
}

.team-body {
  padding: 1.5rem;
}

.team-body h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.125rem;
}

.team-role {
  color: var(--color-cyan-700);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.team-interest {
  font-size: var(--text-sm);
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

.team-bio {
  font-size: var(--text-sm);
  color: var(--color-muted-foreground);
  line-height: var(--text-sm-lh);
}

.team-credential {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: var(--text-xs);
  color: var(--color-muted-foreground);
  background: var(--color-muted);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Investment
   ========================================================================== */
.investment-layout {
  display: grid;
  gap: 2rem;
}

.funding-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

.funding-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--text-sm);
  padding: 0.875rem;
  background: var(--color-muted);
  border-radius: var(--radius-md);
}

.funding-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 1px;
}

.price-list {
  background: var(--color-brand-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 0.875rem;
  border-bottom: 1px solid var(--color-border);
  gap: 1rem;
}

.price-row:last-of-type {
  border-bottom: none;
}

.price-row-name {
  font-weight: 500;
  font-size: var(--text-base);
}

.price-row-meta {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-muted-foreground);
  font-weight: 300;
}

.price-row-fee {
  font-weight: 600;
  font-size: var(--text-lg);
  white-space: nowrap;
}

.price-note {
  margin-top: 1.25rem;
  font-size: var(--text-xs);
  color: var(--color-muted-foreground);
  line-height: var(--text-sm-lh);
}

@media (min-width: 640px) {
  .funding-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .investment-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* ==========================================================================
   Community
   ========================================================================== */
.community-block {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.community-photo {
  aspect-ratio: 1 / 1;
  min-height: 260px;
}

@media (min-width: 1024px) {
  .community-block {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-brand-white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--color-foreground);
  min-height: 44px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out-soft);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.125rem;
  color: var(--color-muted-foreground);
  font-size: var(--text-sm);
  line-height: var(--text-sm-lh);
}

.faq-answer[hidden] {
  display: none;
}

/* ==========================================================================
   Enquiry form
   ========================================================================== */
.enquiry-layout {
  display: grid;
  gap: 2.5rem;
}

.enquiry-form {
  background: var(--color-brand-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row-split {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form-required {
  color: var(--color-danger);
}

.form-input,
.form-textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--color-input);
  border-radius: var(--radius-md);
  background: var(--color-brand-white);
  color: var(--color-foreground);
  font-weight: 300;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-brand-cyan);
}

.form-input[aria-invalid="true"],
.form-textarea[aria-invalid="true"] {
  border-color: var(--color-danger);
}

.form-error {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-danger);
  font-size: var(--text-xs);
  margin-top: 0.375rem;
}

.form-error svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.form-error:empty {
  display: none;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.form-fieldset legend {
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 0.5rem;
  padding: 0;
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  min-height: 44px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 0.5rem;
}

.form-checkbox-row input {
  margin-top: 0.25rem;
}

.form-checkbox-row label {
  font-size: var(--text-sm);
  color: var(--color-muted-foreground);
  line-height: var(--text-sm-lh);
}

.form-status {
  margin-top: 1rem;
}

.form-success {
  display: none;
  background: var(--color-success-soft);
  border: 1px solid var(--color-success);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.form-success.is-visible {
  display: block;
}

.form-success svg {
  width: 32px;
  height: 32px;
  color: var(--color-success);
  margin: 0 auto 0.75rem;
}

.form-success h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.375rem;
}

.form-success p {
  font-size: var(--text-sm);
  color: var(--color-muted-foreground);
}

.enquiry-form.is-submitted .form-fields,
.enquiry-form.is-submitted .form-submit-row {
  display: none;
}

.enquiry-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.aside-card {
  background: var(--color-muted);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.aside-card h3 {
  font-size: var(--text-base);
  margin-bottom: 0.5rem;
}

.aside-card p,
.aside-card a {
  font-size: var(--text-sm);
  color: var(--color-muted-foreground);
  line-height: var(--text-sm-lh);
}

.aside-card a {
  color: var(--color-cyan-700);
}

@media (min-width: 640px) {
  .form-row-split {
    grid-template-columns: 1fr 1fr;
  }

  .checkbox-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .enquiry-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding-block: 3rem 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  color: var(--color-brand-white);
  margin-bottom: 0.75rem;
}

.footer-brand .brand-mark {
  color: var(--color-brand-white);
}

.footer-col h4 {
  color: var(--color-brand-white);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.875rem;
}

.footer-col p,
.footer-col a,
.footer-col li {
  color: var(--color-ink-300);
  font-size: var(--text-sm);
  line-height: 1.9;
}

.footer-col a:hover {
  color: var(--color-brand-cyan);
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-ink-500);
}

.footer-legal-link {
  background: none;
  border: none;
  color: var(--color-ink-300);
  font-size: var(--text-xs);
  text-decoration: underline;
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

/* ==========================================================================
   Privacy modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgb(38 33 48 / 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1000;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-dialog {
  background: var(--color-brand-white);
  border-radius: var(--radius-xl);
  max-width: 42rem;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.modal-dialog h2 {
  font-size: var(--text-xl);
  margin-bottom: 1rem;
}

.modal-dialog h3 {
  font-size: var(--text-base);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-dialog p,
.modal-dialog li {
  font-size: var(--text-sm);
  color: var(--color-muted-foreground);
  line-height: var(--text-sm-lh);
  margin-bottom: 0.5rem;
}

.modal-close {
  float: right;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   GSAP scroll-storytelling hooks
   Animation state (opacity/transform) is set and driven entirely by
   script.js via GSAP + ScrollTrigger. These rules only cover the
   no-JS fallback (content stays visible) and are intentionally minimal.
   ========================================================================== */
.gs-fade,
.gs-stagger > * {
  will-change: opacity, transform;
}

.hero-word {
  display: inline-block;
}

.js-ready .hero-eyebrow,
.js-ready .hero-copy,
.js-ready .hero-actions,
.js-ready .trust-strip,
.js-ready .hero-word {
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .service-card,
  .faq-icon,
  .skip-link {
    transition: none !important;
  }
}

/* ==========================================================================
   Visually hidden utility
   ========================================================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
