/*  Steamly — global stylesheet
    ──────────────────────────────────────────────────────────────
    Single file on purpose: static hosting, no build step, 1 request
    (no @import waterfall, no extra render-blocking links).

    Cascade layers, low → high priority:
      tokens      — design tokens (:root custom properties)
      base        — reset + element defaults
      layout      — page scaffolding: container, section, generic grids
      components  — UI building blocks (header, hero, cards, …)
      motion      — transitions, scroll/hover animations (progressive enhancement)
      a11y        — reduced-motion & accessibility overrides

    Table of contents (search the @layer / section markers):
      @layer tokens
      @layer base
      @layer layout
      @layer components
        · Header / nav / footer
        · Typography (eyebrow, display, headline, lede)
        · Hero
        · Buttons
        · Cards / swatches
        · Subpage header + tagline
        · Statement + numbered services
        · Detailed services
        · Value / stats
        · Pricing plans
        · Testimonial
        · Final CTA
        · Contact + booking
        · FAQ accordion
        · Legal / prose
        · Image placeholder
        · Responsive overrides
      @layer motion
        · Hover states
        · Scroll reveal
        · Header on scroll
        · Hamburger toggle + mobile nav
      @layer a11y
    ────────────────────────────────────────────────────────────── */

@font-face {
  font-family: "Google Sans";
  src: url("/assets/fonts/google-sans.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

@font-face {
  font-family: "Google Sans";
  src: url("/assets/fonts/google-sans-italic.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 400 800;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibm-plex-sans-bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@layer tokens, base, layout, components, motion, a11y;

/* ===================================================================
   TOKENS
   =================================================================== */
@layer tokens {
  :root {
    color-scheme: light;

    --color-orange: #fc7e38;
    --color-cream: #fff9e3;
    --color-sky: #c8e6f0;
    --color-denim: #4f75ab;
    --color-blue: #4f75ab;
    --color-navy: #12127c;
    --color-ink: #2f3033;
    --color-muted: #61605f;
    --color-steel: #dddcd9;
    --color-surface: #fffdf2;

    --brand-primary: var(--color-denim);
    --brand-secondary: var(--color-navy);
    --surface: var(--color-cream);
    --surface-raised: var(--color-surface);
    --accent-orange: var(--color-orange);
    --accent-navy: var(--color-navy);
    --text-primary: var(--color-ink);
    --text-muted: var(--color-muted);
    --border-muted: var(--color-steel);

    --font-display: "IBM Plex Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    --font-body: "Google Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --space-2xs: 0.5rem;
    --space-xs: 0.75rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    --container: min(100% - 2rem, 76rem);
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.75rem;
    --border: 1px solid color-mix(in srgb, var(--brand-primary), transparent 76%);
    --shadow-soft: 0 1.5rem 4rem color-mix(in srgb, var(--brand-primary), transparent 80%);
  }
}

/* ===================================================================
   BASE — reset + element defaults
   =================================================================== */
@layer base {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html,
  body {
    min-height: 100%;
  }

  html {
    font-family: var(--font-body);
    background: var(--surface);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  body {
    margin: 0;
    background:
      radial-gradient(circle at 14% 8%, color-mix(in srgb, var(--accent-orange), transparent 76%), transparent 22rem),
      radial-gradient(circle at 86% 12%, color-mix(in srgb, var(--color-sky), transparent 45%), transparent 24rem),
      linear-gradient(135deg, var(--surface), var(--surface-raised) 48%, var(--color-steel));
    font-size: clamp(1rem, 0.96rem + 0.19vw, 1.125rem);
    line-height: 1.55;
  }

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

  a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.22em;
  }

  :focus-visible {
    outline: 0.14rem solid var(--color-blue);
    outline-offset: 0.18rem;
  }

  ::selection {
    background: var(--accent-orange);
    color: var(--text-primary);
  }

  .page {
    min-height: 100vh;
  }

  .skip-link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 0.7rem 1.1rem;
    border-radius: 0 0 var(--radius-sm) 0;
    background: var(--color-blue);
    color: var(--surface);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-120%);
  }

  .skip-link:focus-visible {
    transform: translateY(0);
  }
}

/* ===================================================================
   LAYOUT — containers, sections, generic grids
   =================================================================== */
@layer layout {
  .container {
    width: var(--container);
    margin-inline: auto;
  }

  .section {
    padding-block: var(--space-xl);
  }

  .grid-60-40 {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(18rem, 2fr);
    gap: var(--space-xl);
    align-items: end;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-sm);
  }
}

/* ===================================================================
   COMPONENTS
   =================================================================== */
@layer components {
  /* --- Header / nav / footer --- */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 9;
    border-bottom: var(--border);
    background: color-mix(in srgb, var(--surface), transparent 8%);
    backdrop-filter: blur(0.6rem);
  }

  .site-header__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-xs);
    align-items: center;
    justify-content: flex-start;
    padding-block: 0.8rem;
  }

  .brand {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
    flex: 0 0 auto;
    color: var(--brand-primary);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-decoration: none;
  }

  .brand::after {
    content: none;
  }

  .brand__logo,
  .site-footer__brand-logo {
    display: block;
    width: auto;
    max-width: 8.8rem;
    height: auto;
    max-height: 2.15rem;
  }

  .site-nav__list {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(0.75rem, 1.6vw, 1.35rem);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-nav {
    margin-left: auto;
  }

  .site-nav a {
    color: var(--brand-primary);
    font-size: clamp(0.68rem, 0.82vw, 0.82rem);
    font-weight: 800;
    letter-spacing: 0.035em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .site-nav a:hover {
    text-decoration: underline;
  }

  .site-nav a[aria-current="page"] {
    color: var(--brand-primary);
    text-decoration: underline;
    text-decoration-color: var(--accent-orange);
    text-decoration-thickness: 0.16em;
    text-underline-offset: 0.32em;
  }

  .lang-switch {
    display: flex;
    gap: var(--space-2xs);
    align-items: center;
    margin-left: clamp(0.75rem, 1.6vw, 1.5rem);
  }

  .lang-switch a {
    display: inline-flex;
    min-width: 2.15rem;
    min-height: 2.15rem;
    align-items: center;
    justify-content: center;
    border: var(--border);
    border-radius: 999rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
  }

  .lang-switch a[aria-current="true"] {
    background: var(--color-blue);
    color: var(--surface);
    border-color: transparent;
  }

  .site-footer {
    margin-top: var(--space-2xl);
    border-top: var(--border);
    background: color-mix(in srgb, var(--color-blue), transparent 92%);
    padding-block: var(--space-xl);
  }

  .site-footer__inner {
    display: grid;
    gap: var(--space-md);
  }

  .site-footer__brand {
    display: inline-flex;
    align-items: center;
    margin: 0;
    color: var(--brand-primary);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.04em;
  }

  .site-footer__brand-logo {
    max-width: 8.5rem;
    max-height: 2.05rem;
  }

  .site-footer__legal ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs) var(--space-md);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-footer__legal a,
  .link-button {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 600;
  }

  .link-button {
    padding: 0;
    border: 0;
    background: none;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 0.22em;
    cursor: pointer;
  }

  .site-footer__copy {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
  }

  /* --- Typography --- */
  .eyebrow {
    margin: 0 0 var(--space-xs);
    color: var(--color-blue);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
  }

  .display,
  .headline,
  .card h3 {
    margin: 0;
    color: var(--color-blue);
    font-family: var(--font-display);
    font-weight: 950;
  }

  .display {
    max-width: 10.5ch;
    font-size: clamp(3.4rem, 7.2vw, 6.4rem);
    letter-spacing: -0.065em;
    line-height: 0.92;
  }

  .headline {
    max-width: 15ch;
    font-size: clamp(2.2rem, 5.4vw, 5.1rem);
    letter-spacing: -0.055em;
    line-height: 0.94;
  }

  .lede,
  .card p {
    margin: 0;
    color: var(--text-muted);
  }

  .lede {
    max-width: 42rem;
    font-size: clamp(1.08rem, 1rem + 0.4vw, 1.35rem);
    line-height: 1.45;
  }

  /* --- Hero --- */
  .hero {
    display: grid;
    min-height: 100vh;
    padding-block: 0;
  }

  .hero > .container {
    width: 100%;
    max-width: none;
  }

  .hero__panel {
    position: relative;
    align-self: stretch;
    min-height: calc(100svh - 4.75rem);
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(90deg, color-mix(in srgb, var(--brand-primary), transparent 30%) 0%, color-mix(in srgb, var(--brand-primary), transparent 62%) 38%, transparent 72%),
      image-set(
        url("/assets/images/steamly-hero-2400.webp") type("image/webp"),
        url("/assets/images/steamly-hero-1600.jpg") type("image/jpeg")
      );
    background-position: center;
    background-size: cover;
    box-shadow: none;
  }

  .hero__panel::before {
    content: none;
  }

  .hero__panel::after {
    content: none;
  }

  .hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(100% - 2rem, 46rem);
    min-height: 100%;
    align-content: center;
    gap: var(--space-md);
    margin-inline: 0;
    padding-block: clamp(5rem, 12vh, 8rem) clamp(3rem, 8vh, 5rem);
    padding-inline-start: clamp(2rem, 9vw, 7rem);
  }

  .hero__copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 34rem;
    align-items: start;
  }

  .hero .display {
    color: var(--surface);
  }

  .hero .lede {
    color: color-mix(in srgb, var(--surface), white 8%);
    font-weight: 700;
  }

  /* --- Buttons --- */
  .button-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
  }

  .button {
    display: inline-flex;
    min-height: 3rem;
    padding: 0.85rem 1.1rem;
    border: 0;
    border-radius: 999rem;
    background: var(--accent-orange);
    color: var(--text-primary);
    font: inherit;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
  }

  .button--accent {
    background: var(--brand-primary);
    color: var(--surface);
  }

  /* --- Cards / swatches --- */
  .card,
  .swatch {
    border: var(--border);
  }

  .card {
    position: relative;
    min-height: 18rem;
    padding: var(--space-md);
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--surface-raised);
  }

  .card::before {
    display: block;
    width: 3rem;
    height: 0.5rem;
    margin-bottom: var(--space-lg);
    border-radius: 999rem;
    background: var(--accent, var(--color-blue));
    content: "";
  }

  .card h3 {
    max-width: 11ch;
    margin-bottom: var(--space-sm);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.07em;
    line-height: 0.86;
  }

  .swatches {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--space-2xs);
  }

  .swatch {
    min-height: 7rem;
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    background: var(--swatch);
    color: var(--swatch-text, var(--text-primary));
    font-size: 0.8rem;
    font-weight: 800;
  }

  /* --- Subpage header + tagline --- */
  .page-hero {
    padding-block: var(--space-lg) var(--space-md);
  }

  .page-hero .lede {
    margin-top: var(--space-sm);
  }

  .page-hero + .section {
    padding-top: var(--space-sm);
  }

  .hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: var(--space-sm) 0 0;
    color: var(--surface);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
  }

  .hero__tagline::before {
    width: 1.6rem;
    height: 0.18rem;
    border-radius: 999rem;
    background: var(--surface);
    content: "";
  }

  /* --- Statement + numbered services --- */
  .statement {
    max-width: 28ch;
    margin: 0;
    color: var(--color-blue);
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 1.1rem + 2.6vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.04;
  }

  .services-list {
    display: grid;
    margin: var(--space-xl) 0 0;
    padding: 0;
    list-style: none;
    border-top: var(--border);
  }

  .services-list li {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: var(--space-md);
    align-items: baseline;
    padding-block: var(--space-md);
    border-bottom: var(--border);
  }

  .services-list .service__num {
    color: var(--accent-orange);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
  }

  .services-list h3 {
    margin: 0;
    color: var(--color-blue);
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 1rem + 1.6vw, 2.4rem);
    font-weight: 850;
    letter-spacing: -0.04em;
    line-height: 1.05;
  }

  /* --- Detailed services --- */
  .service-blocks {
    margin-top: var(--space-xl);
    border-top: var(--border);
  }

  .service-block {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: var(--space-md) var(--space-xl);
    padding-block: var(--space-lg);
    border-bottom: var(--border);
  }

  .service-block__head {
    display: flex;
    gap: var(--space-sm);
    align-items: baseline;
  }

  .service-block__num {
    color: var(--accent-orange);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
  }

  .service-block h2 {
    margin: 0;
    color: var(--color-blue);
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 1.1rem + 2vw, 2.8rem);
    font-weight: 850;
    letter-spacing: -0.04em;
    line-height: 1.02;
  }

  .service-block__body {
    display: grid;
    gap: var(--space-md);
  }

  .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2xs);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .tag-list li {
    padding: 0.4rem 0.8rem;
    border: var(--border);
    border-radius: 999rem;
    background: var(--surface-raised);
    font-size: 0.85rem;
    font-weight: 700;
  }

  /* --- Value / stats --- */
  .value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-xl);
  }

  .value-card {
    display: grid;
    gap: var(--space-sm);
    min-height: 13rem;
    padding: var(--space-md);
    border: var(--border);
    border-radius: var(--radius-md);
    background: var(--surface-raised);
  }

  .value-card__num {
    color: var(--color-blue);
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 1.4rem + 3vw, 3.6rem);
    font-weight: 950;
    letter-spacing: -0.05em;
    line-height: 0.9;
  }

  .value-card__label {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
    font-weight: 600;
  }

  .value-card--accent {
    background: var(--color-blue);
  }

  .value-card--accent .value-card__num {
    color: var(--surface);
  }

  .value-card--accent .value-card__label {
    color: color-mix(in srgb, var(--surface), transparent 18%);
  }

  /* --- Pricing plans --- */
  .plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    align-items: stretch;
  }

  .plan-card {
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    gap: var(--space-xs);
    padding: var(--space-md);
    border: var(--border);
    border-radius: var(--radius-md);
    background: var(--surface-raised);
  }

  .plan-card__badge {
    justify-self: start;
    padding: 0.3rem 0.7rem;
    border-radius: 999rem;
    background: var(--accent-orange);
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .plan-card__name {
    margin: 0;
    color: var(--color-blue);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
  }

  .plan-card__price {
    color: var(--color-blue);
    font-family: var(--font-display);
    font-size: clamp(2rem, 1.45rem + 1.6vw, 2.65rem);
    font-weight: 950;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .plan-card__desc {
    margin: 0;
    color: var(--text-muted);
  }

  .plan-features {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .plan-features li {
    display: grid;
    grid-template-columns: 1.2rem 1fr;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .plan-features li::before {
    color: var(--accent-orange);
    font-weight: 900;
    content: "\2713";
  }

  .plan-card .button {
    justify-content: center;
    width: 100%;
  }

  .plan-card--featured {
    background: var(--color-blue);
    color: var(--surface);
    border-color: transparent;
  }

  .plan-card--featured .plan-card__name,
  .plan-card--featured .plan-card__price {
    color: var(--surface);
  }

  .plan-card--featured .plan-card__desc {
    color: color-mix(in srgb, var(--surface), transparent 22%);
  }

  .plan-card--featured .button {
    background: var(--accent-orange);
    color: var(--text-primary);
  }

  .price-note {
    margin-top: var(--space-md);
    color: var(--text-muted);
    font-size: 0.85rem;
  }

  /* --- Testimonial --- */
  .testimonial__card {
    position: relative;
    margin-top: var(--space-md);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: var(--radius-lg);
    background: var(--color-blue);
    color: var(--surface);
  }

  .testimonial__card::before {
    position: absolute;
    top: -1px;
    left: clamp(2rem, 8vw, 6rem);
    width: min(40vw, 18rem);
    height: 2rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    background: var(--accent-orange);
    content: "";
  }

  .testimonial__quote {
    max-width: 30ch;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 1rem + 2.2vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }

  .testimonial__author {
    margin-top: var(--space-lg);
    font-weight: 700;
  }

  .testimonial__author span {
    display: block;
    color: color-mix(in srgb, var(--surface), transparent 30%);
    font-weight: 600;
  }

  /* --- Final CTA --- */
  .cta__panel {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
    padding: clamp(2.5rem, 6vw, 5rem);
    border: var(--border);
    border-radius: var(--radius-lg);
    background:
      linear-gradient(135deg, color-mix(in srgb, var(--color-sky), transparent 40%), transparent 55%),
      var(--surface-raised);
    box-shadow: var(--shadow-soft);
  }

  /* --- Contact + booking --- */
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-xl);
  }

  .contact-item {
    display: grid;
    gap: var(--space-2xs);
    padding: var(--space-md);
    border: var(--border);
    border-radius: var(--radius-md);
    background: var(--surface-raised);
  }

  .contact-item__label {
    margin: 0;
    color: var(--color-blue);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .contact-item__value {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1rem + 1vw, 1.7rem);
    font-weight: 850;
    letter-spacing: -0.03em;
    text-decoration: none;
  }

  a.contact-item__value:hover {
    text-decoration: underline;
  }

  .booking-embed {
    display: grid;
    place-items: center;
    gap: var(--space-xs);
    min-height: 18rem;
    margin-top: var(--space-md);
    padding: var(--space-xl) var(--space-md);
    border: 1px dashed color-mix(in srgb, var(--color-blue), transparent 55%);
    border-radius: var(--radius-md);
    background:
      repeating-linear-gradient(135deg, transparent 0 1.4rem, color-mix(in srgb, var(--brand-primary), transparent 92%) 1.4rem 2.8rem),
      var(--surface-raised);
    text-align: center;
  }

  .booking-embed__badge {
    padding: 0.3rem 0.8rem;
    border-radius: 999rem;
    background: var(--accent-orange);
    color: var(--text-primary);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .booking-embed p {
    max-width: 40ch;
    margin: 0;
    color: var(--text-muted);
  }

  /* --- FAQ accordion --- */
  .faq-list {
    margin-top: var(--space-xl);
  }

  .faq-item {
    border: var(--border);
    border-radius: var(--radius-md);
    background: var(--surface-raised);
  }

  .faq-item + .faq-item {
    margin-top: var(--space-2xs);
  }

  .faq-item summary {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    color: var(--color-blue);
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1rem + 0.8vw, 1.6rem);
    font-weight: 850;
    letter-spacing: -0.02em;
    line-height: 1.15;
    cursor: pointer;
    list-style: none;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary::after {
    flex: 0 0 auto;
    color: var(--accent-orange);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    content: "+";
  }

  .faq-item[open] summary::after {
    content: "\2212";
  }

  .faq-item__answer {
    max-width: 65ch;
    margin: 0;
    padding: 0 var(--space-md) var(--space-md);
    color: var(--text-muted);
  }

  /* --- Legal / prose --- */
  .legal-meta {
    margin-top: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
  }

  .legal-note {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border: 1px dashed color-mix(in srgb, var(--accent-orange), transparent 40%);
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--accent-orange), transparent 90%);
    color: var(--text-primary);
    font-size: 0.92rem;
  }

  .prose {
    max-width: 68ch;
    margin-top: var(--space-lg);
  }

  .prose h2 {
    margin: var(--space-xl) 0 var(--space-sm);
    color: var(--color-blue);
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
    font-weight: 850;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }

  .prose h2:first-child {
    margin-top: 0;
  }

  .prose p,
  .prose li {
    color: var(--text-primary);
  }

  .prose ul {
    margin: 0;
    padding-left: 1.2rem;
  }

  .prose li {
    margin-block: 0.3rem;
  }

  .prose a {
    color: var(--color-blue);
    font-weight: 600;
  }

  /* --- Image placeholder --- */
  .media {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    border: 1px dashed color-mix(in srgb, var(--color-blue), transparent 60%);
    border-radius: var(--radius-md);
    background:
      repeating-linear-gradient(135deg, transparent 0 1.4rem, color-mix(in srgb, var(--brand-primary), transparent 90%) 1.4rem 2.8rem),
      var(--surface-raised);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* --- Responsive overrides --- */
  @media (max-width: 52rem) {
    .grid-60-40,
    .card-grid {
      grid-template-columns: 1fr;
    }

    .hero {
      min-height: auto;
    }

    .brand__logo {
      max-width: 8.5rem;
      max-height: 2.05rem;
    }

    .hero__panel {
      min-height: 40rem;
    }

    .display,
    .headline {
      letter-spacing: -0.055em;
    }

    .swatches,
    .value-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-list li {
      grid-template-columns: 2.5rem 1fr;
      gap: var(--space-sm);
    }

    .service-block {
      grid-template-columns: 1fr;
      gap: var(--space-sm);
    }

    .plan-grid {
      grid-template-columns: 1fr;
    }

    .contact-grid {
      grid-template-columns: 1fr;
    }
  }

  /* --- Booking iframe (injected after consent) --- */
  .booking-embed__frame {
    width: 100%;
    min-height: 40rem;
    border: 0;
    border-radius: var(--radius-md);
  }

  /* --- Cookie consent banner --- */
  .consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 60;
    display: none;
    padding: var(--space-sm) 0;
    background: var(--surface);
    border-top: var(--border);
    box-shadow: 0 -0.5rem 2rem color-mix(in srgb, var(--color-blue), transparent 85%);
  }

  .consent.is-open {
    display: block;
  }

  .consent__inner {
    display: grid;
    gap: var(--space-sm);
  }

  @media (min-width: 60rem) {
    .consent__inner {
      grid-template-columns: 1.2fr 1.5fr auto;
      align-items: center;
    }
  }

  .consent__title {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
  }

  .consent__body {
    max-width: 46ch;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
  }

  .consent__body a {
    color: var(--color-blue);
  }

  .consent__options {
    display: grid;
    gap: 0.5rem;
  }

  .consent__opt {
    display: flex;
    gap: 0.6rem;
    align-items: start;
    cursor: pointer;
  }

  .consent__opt input {
    margin-top: 0.2rem;
  }

  .consent__opt-text {
    display: grid;
  }

  .consent__opt-name {
    font-weight: 800;
    font-size: 0.9rem;
  }

  .consent__desc {
    color: var(--text-muted);
    font-size: 0.8rem;
  }

  .consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .consent__actions .button {
    flex: 1 1 auto;
    justify-content: center;
  }

  .button--ghost {
    background: transparent;
    color: var(--text-primary);
    border: var(--border);
  }
}

/* ===================================================================
   MOTION — transitions & scroll/hover animations (progressive enhancement)
   =================================================================== */
@layer motion {
  /* --- Hero intro (plays on load; <h1> stays static to protect LCP) --- */
  @keyframes intro-rise {
    from {
      opacity: 0;
      transform: translateY(1rem);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  .js .hero__tagline {
    animation: intro-rise 0.55s ease both 0.05s;
  }

  .js .hero .hero__copy .lede {
    animation: intro-rise 0.55s ease both 0.18s;
  }

  .js .hero .hero__copy .button-row {
    animation: intro-rise 0.55s ease both 0.3s;
  }

  .js .page-hero .eyebrow {
    animation: intro-rise 0.55s ease both 0.05s;
  }

  .js .page-hero .lede {
    animation: intro-rise 0.55s ease both 0.2s;
  }

  /* --- Hover states --- */
  .button {
    transition: transform 0.15s ease, filter 0.15s ease;
  }

  .button:hover {
    transform: translateY(-0.12rem);
    filter: brightness(1.05);
  }

  .card,
  .value-card,
  .plan-card,
  .contact-item,
  .service-block,
  .faq-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .card:hover,
  .value-card:hover,
  .plan-card:hover,
  .contact-item:hover {
    transform: translateY(-0.2rem);
    box-shadow: var(--shadow-soft);
  }

  /* --- Animated arrows: CTA buttons + footer links --- */
  .button::after {
    content: "\2192";
    margin-left: 0.5rem;
    transition: transform 0.15s ease;
  }

  .button:hover::after,
  .button:focus-visible::after {
    transform: translateX(0.22rem);
  }

  /* No trailing arrow on consent buttons — keep the banner clean */
  .consent .button::after {
    content: none;
  }

  .site-footer__legal a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }

  .site-footer__legal a::after {
    content: "\2192";
    opacity: 0;
    transform: translateX(-0.25rem);
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .site-footer__legal a:hover::after,
  .site-footer__legal a:focus-visible::after {
    opacity: 1;
    transform: none;
  }

  /* --- Scroll reveal (only when JS active and motion allowed) --- */
  .js .reveal {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
  }

  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .js .reveal--grow {
    transform: translateY(1.25rem) scale(0.96);
  }

  /* --- Statement scrub (words light up with scroll) --- */
  .js .statement--scrub .word {
    opacity: 0.2;
    transition: opacity 0.25s ease;
  }

  .js .statement--scrub .word.is-lit {
    opacity: 1;
  }

  /* --- Header on scroll --- */
  .site-header {
    transition: transform 0.3s ease, box-shadow 0.25s ease,
      background-color 0.25s ease, opacity 0.3s ease;
  }

  .site-header.is-scrolled {
    background: color-mix(in srgb, var(--surface), transparent 2%);
    backdrop-filter: blur(0.9rem);
    box-shadow: 0 0.5rem 1.5rem color-mix(in srgb, var(--color-blue), transparent 88%);
  }

  .site-header.is-hidden {
    transform: translateY(-100%);
  }

  /* Hide the sticky header once the footer is on screen */
  .site-header.is-footer-visible {
    opacity: 0;
    pointer-events: none;
  }

  /* --- Hamburger toggle (injected by JS) --- */
  .nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0;
    border: var(--border);
    border-radius: 0.7rem;
    background: var(--surface-raised);
    cursor: pointer;
  }

  .nav-toggle__bar {
    display: block;
    width: 1.25rem;
    height: 0.16rem;
    border-radius: 2px;
    background: var(--brand-primary);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle__bar + .nav-toggle__bar {
    margin-top: 0.28rem;
  }

  .site-header.nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(0.44rem) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-0.44rem) rotate(-45deg);
  }

  @media (max-width: 52rem) {
    .nav-toggle {
      display: inline-flex;
      margin-left: auto;
    }

    .js .site-nav,
    .js .lang-switch {
      display: none;
    }

    /* Full-screen overlay menu: the header itself expands to cover the viewport */
    .js .site-header.nav-open {
      position: fixed;
      inset: 0;
      z-index: 50;
      height: 100dvh;
      background: var(--surface);
      overflow-y: auto;
    }

    .js .site-header.nav-open .site-header__inner {
      position: relative;
      flex-direction: column;
      flex-wrap: nowrap;
      align-items: flex-start;
      gap: var(--space-lg);
      min-height: 100dvh;
      padding-bottom: var(--space-2xl);
    }

    .js .site-header.nav-open .nav-toggle {
      position: absolute;
      top: var(--space-sm);
      right: 0;
    }

    .js .site-header.nav-open .site-nav,
    .js .site-header.nav-open .lang-switch {
      display: flex;
    }

    .js .site-header.nav-open .site-nav {
      margin-top: var(--space-xl);
    }

    .js .site-header.nav-open .site-nav__list {
      flex-direction: column;
      gap: var(--space-md);
    }

    .js .site-header.nav-open .site-nav a {
      font-family: var(--font-display);
      font-size: clamp(2rem, 9vw, 3rem);
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .js .site-header.nav-open .lang-switch {
      margin-top: auto;
    }
  }

  /* Lock background scroll while the overlay menu is open */
  .nav-locked {
    overflow: hidden;
  }
}

/* ===================================================================
   A11Y — reduced-motion & accessibility overrides
   =================================================================== */
@layer a11y {
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      animation-delay: 0s !important;
      animation-iteration-count: 1 !important;
    }

    .js .reveal {
      opacity: 1;
      transform: none;
    }
  }
}
