/* =============================================================
   Devlins Scaffolding — main.css
   Phase 4: Nav + Hero + Services + About + Process
   Mobile-first (320 → 1440). @layer: base, tokens, components, utilities.
   ============================================================= */

@layer base, tokens, components, utilities;

/* ─────────────────────────────────────────────────────────────
   LAYER: base — reset + root
   ───────────────────────────────────────────────────────────── */
@layer base {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    /* Lenis handles smooth scroll in JS; native scroll-behavior:smooth fights it. */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body {
    font-family: var(--font-body);
    font-size: var(--step-0);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--charcoal);
    overflow-x: hidden;
  }

  img,
  video {
    display: block;
    max-width: 100%;
    height: auto;
  }

  ul[role="list"],
  ol[role="list"] {
    list-style: none;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  button {
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
  }

  /* Reduced motion: disable all transitions/animations globally */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
}

/* ─────────────────────────────────────────────────────────────
   LAYER: tokens — design system
   ───────────────────────────────────────────────────────────── */
@layer tokens {
  :root {
    /* ── Palette ── */
    --navy: #1a2750;
    --orange: #e87d3b;
    --cream: #f5efe6;
    --charcoal: #1a1a1a;
    --asphalt: #2b2f36;

    /* Derived */
    --navy-dark: #121d3a;
    --orange-dark: #c4622a;
    --cream-dark: #e8dfd3;
    --white: #ffffff;

    /* ── Typography ── */
    --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-body: "Manrope", system-ui, sans-serif;
    --font-editorial: "Fraunces", Georgia, serif;

    /* Fluid type scale (clamp: min 320px → max 1440px) */
    --step--1: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --step-0: clamp(0.9375rem, 0.875rem + 0.3125vw, 1rem);
    --step-1: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --step-2: clamp(1.35rem, 1.15rem + 1vw, 1.875rem);
    --step-3: clamp(1.62rem, 1.3rem + 1.6vw, 2.5rem);
    --step-4: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    --step-5: clamp(2.5rem, 1.75rem + 3.75vw, 5rem);

    /* ── Spacing ── */
    --space-xs: 0.5rem;
    --space-s: 0.75rem;
    --space-m: 1rem;
    --space-l: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 9rem;

    /* ── Border radius ── */
    --radius-s: 4px;
    --radius-m: 8px;
    --radius-l: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* ── Transitions ── */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --dur-fast: 200ms;
    --dur-med: 400ms;
    --dur-slow: 600ms;

    /* ── Shadows ── */
    --shadow-card: 0 4px 24px rgba(26, 26, 26, 0.18);
    --shadow-nav: 0 2px 20px rgba(26, 39, 80, 0.22);

    /* ── Layout ── */
    --container-max: 1280px;
    --container-pad: clamp(1rem, 5vw, 3rem);
    --nav-height: 72px;
  }
}

/* ─────────────────────────────────────────────────────────────
   LAYER: components — sections
   ───────────────────────────────────────────────────────────── */
@layer components {
  /* ── Skip link (sr-only until focused) ── */
  .skip-link {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    background: var(--orange);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 600;
    padding: var(--space-s) var(--space-l);
    border-radius: var(--radius-m);
    z-index: 9999;
    text-decoration: none;
  }

  .skip-link:focus {
    left: var(--space-m);
    top: var(--space-m);
    width: auto;
    height: auto;
    clip: auto;
    overflow: visible;
  }

  /* ── Container ── */
  .container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
  }

  /* ──────────────────────────────────────
     NAV
  ────────────────────────────────────── */

  /* Header base — transparent over hero */
  .site-header {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 900;
    height: var(--nav-height);
    background: transparent;
    transform: translateZ(
      0
    ); /* force own compositor layer — avoids repaint on scroll */
    transition:
      background var(--dur-med) var(--ease-in-out),
      box-shadow var(--dur-med) var(--ease-in-out);
  }

  /* Scrolled state applied via JS (.scrolled class) */
  .site-header.scrolled {
    background: rgba(26, 39, 80, 0.96);
    box-shadow: var(--shadow-nav);
  }

  /* Opt-in blur only on desktop where GPU can afford it; mobile keeps flat bg */
  @media (min-width: 1024px) {
    .site-header.scrolled {
      background: rgba(26, 39, 80, 0.86);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-l);
    height: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
  }

  /* Logo */
  .nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  /* Mobile-first: 110px wide per V2 feedback item 6 */
  .nav-logo img {
    width: 110px;
    height: auto;
    max-height: 44px;
    object-fit: contain;
  }

  @media (min-width: 1024px) {
    .nav-logo img {
      width: 140px;
      max-height: 52px;
    }
  }

  /* Desktop links — hidden below 1024px */
  .nav-links {
    display: none;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
  }

  @media (min-width: 1024px) {
    .nav-links {
      display: flex;
    }
  }

  .nav-links a {
    font-family: var(--font-body);
    font-size: var(--step--1);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    position: relative;
    padding-block-end: 2px;
    transition: color var(--dur-fast) var(--ease-in-out);
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    inset-block-end: -2px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-med) var(--ease-out-expo);
  }

  .nav-links a:hover::after,
  .nav-links a:focus-visible::after {
    transform: scaleX(1);
  }

  .nav-links a:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
    border-radius: var(--radius-s);
  }

  /* Desktop CTA pill — hidden below 1024px */
  .nav-cta {
    display: none;
    align-items: center;
    gap: var(--space-xs);
    background: var(--orange);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: var(--step--1);
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.55rem var(--space-l);
    border-radius: var(--radius-full);
    text-decoration: none;
    white-space: nowrap;
    transition:
      background var(--dur-fast) var(--ease-in-out),
      transform var(--dur-fast) var(--ease-in-out);
  }

  @media (min-width: 1024px) {
    .nav-cta {
      display: flex;
    }
  }

  .nav-cta:hover {
    background: var(--orange-dark);
  }

  .nav-cta:focus-visible {
    outline: 2px solid var(--cream);
    outline-offset: 3px;
  }

  /* Hamburger button — visible below 1024px */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 6px;
    border-radius: var(--radius-s);
    transition: background var(--dur-fast);
  }

  @media (min-width: 1024px) {
    .nav-hamburger {
      display: none;
    }
  }

  .nav-hamburger:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
  }

  .hamburger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream);
    border-radius: var(--radius-full);
    transition:
      transform var(--dur-med) var(--ease-out-expo),
      opacity var(--dur-fast);
  }

  /* Hamburger → X animation */
  .nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile menu drawer */
  .mobile-menu {
    position: fixed;
    inset-block-start: var(--nav-height);
    inset-inline: 0;
    background: var(--navy);
    padding: var(--space-xl) var(--container-pad) var(--space-2xl);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      transform var(--dur-med) var(--ease-out-expo),
      opacity var(--dur-med) var(--ease-in-out),
      visibility var(--dur-med);
    z-index: 850;
  }

  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
    list-style: none;
    margin-block-end: var(--space-xl);
  }

  .mobile-links a {
    display: block;
    font-family: var(--font-display);
    font-size: var(--step-2);
    font-weight: 700;
    color: var(--cream);
    text-decoration: none;
    border-block-end: 1px solid rgba(245, 239, 230, 0.12);
    padding-block-end: var(--space-l);
    transition: color var(--dur-fast);
  }

  .mobile-links a:hover,
  .mobile-links a:focus-visible {
    color: var(--orange);
  }

  .mobile-links a:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
  }

  .mobile-menu-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
  }

  .mobile-cta-wa,
  .mobile-cta-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-m) var(--space-l);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: var(--step-0);
    text-decoration: none;
    transition: background var(--dur-fast);
  }

  .mobile-cta-wa {
    background: var(--orange);
    color: var(--charcoal);
  }

  .mobile-cta-wa:hover {
    background: var(--orange-dark);
  }

  .mobile-cta-tel {
    border: 2px solid rgba(245, 239, 230, 0.4);
    color: var(--cream);
  }

  .mobile-cta-tel:hover {
    border-color: var(--cream);
  }

  .mobile-cta-wa:focus-visible,
  .mobile-cta-tel:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
  }

  /* ──────────────────────────────────────
     HERO
  ────────────────────────────────────── */

  .hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-block-end: clamp(var(--space-2xl), 8vh, var(--space-4xl));
  }

  /* Media layer — video + fallback img */
  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  /* If video not yet generated, the <img> fallback is shown */
  .hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  /* Gradient overlay: Navy → Charcoal per brief */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(26, 42, 80, 0.25) 0%,
      rgba(26, 26, 26, 0.55) 100%
    );
  }

  /* Copy container */
  .hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
    width: 100%;
  }

  /* H1 — Plus Jakarta Sans display */
  .hero-h1 {
    font-family: var(--font-display);
    font-size: var(--step-5);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.02em;
    max-width: 14ch;
    margin-block-end: var(--space-l);
    /* Initial state set via gsap.set() in main.js — NOT CSS opacity/transform */
  }

  /* Word-split container — each .word wraps in overflow:hidden clip */
  .hero-h1 .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
  }

  /* Fraunces italic for editorial accent */
  .hero-accent {
    font-family: var(--font-editorial);
    font-style: italic;
    font-weight: 300;
    color: var(--orange);
    font-size: 1.05em;
  }

  .hero-sub {
    font-family: var(--font-body);
    font-size: var(--step-1);
    font-weight: 400;
    color: rgba(245, 239, 230, 0.88);
    max-width: 46ch;
    line-height: 1.55;
    margin-block-end: var(--space-xl);
  }

  /* CTA group */
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-m);
    align-items: center;
  }

  /* Shared button base */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: var(--step-0);
    padding: 0.875rem var(--space-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition:
      background var(--dur-fast) var(--ease-in-out),
      color var(--dur-fast) var(--ease-in-out),
      transform var(--dur-fast) var(--ease-in-out);
    white-space: nowrap;
  }

  .btn:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
  }

  .btn:hover {
    /* No transform at base state — hover only, per universal scroll perf rule */
  }

  .btn--primary {
    background: var(--orange);
    color: var(--charcoal);
  }

  .btn--primary:hover {
    background: var(--orange-dark);
  }

  .btn--secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(245, 239, 230, 0.55);
  }

  .btn--secondary:hover {
    background: rgba(245, 239, 230, 0.1);
    border-color: var(--cream);
  }

  /* Scroll indicator */
  .hero-scroll {
    position: absolute;
    inset-block-end: var(--space-xl);
    inset-inline-end: var(--container-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    z-index: 10;
  }

  .hero-scroll-line {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(245, 239, 230, 0.6)
    );
  }

  .hero-scroll-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.55);
    writing-mode: vertical-rl;
  }

  @media (prefers-reduced-motion: no-preference) {
    .hero-scroll-line {
      animation: scrollLinePulse 2s ease-in-out infinite;
    }

    @keyframes scrollLinePulse {
      0%,
      100% {
        opacity: 0.4;
      }
      50% {
        opacity: 1;
      }
    }
  }

  /* ──────────────────────────────────────
     SECTION SHARED STYLES
     V2: Dramatic typography contrast —
     tiny orange label → huge bold title → Fraunces italic word → breathable body
  ────────────────────────────────────── */

  .section-header {
    text-align: center;
    margin-block-end: var(--space-2xl);
  }

  /* Section label: tiny uppercase orange — the "whisper before the shout" */
  .section-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-block-end: var(--space-m);
  }

  /* Section title: huge display weight — dramatic contrast with label */
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: none; /* sentence case, not all-caps */
    margin-block-end: var(--space-m);
  }

  /* Fraunces italic accent — elegant editorial break inside titles */
  .section-title em,
  .section-title .accent {
    font-family: var(--font-editorial);
    font-style: italic;
    font-weight: 400;
  }

  .section-title--light {
    color: var(--cream);
  }

  /* Body lead copy: Manrope, generous line-height, muted charcoal */
  .section-sub {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.3rem);
    color: rgba(26, 26, 26, 0.72);
    max-width: 52ch;
    margin-inline: auto;
    line-height: 1.55;
  }

  .section-sub--light {
    color: rgba(245, 239, 230, 0.72);
  }

  /* ──────────────────────────────────────
     SERVICES BENTO GRID
  ────────────────────────────────────── */

  .services {
    background: var(--cream);
    padding-block: var(--space-3xl);
  }

  /* 1-col mobile → 2-col mid → 3-col desktop */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-m);
  }

  @media (min-width: 600px) {
    .services-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

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

  /* Featured tile (Encapsulation) spans 2 columns on mid+ */
  @media (min-width: 600px) {
    .service-tile--featured {
      grid-column: span 2;
    }
  }

  @media (min-width: 1024px) {
    .service-tile--featured {
      grid-column: span 1;
    }
  }

  /* Individual tile — V2: border is the hover decoration (FRAME-NOT-FIELD rule) */
  .service-tile {
    position: relative;
    border-radius: var(--radius-l);
    overflow: hidden;
    /* aspect-ratio keeps card proportion — object-fit fills */
    aspect-ratio: 4 / 3;
    cursor: default;
    /* Border accent transition — replaces radial glow (frame-not-field) */
    border: 1px solid transparent;
    transition: border-color 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  @media (min-width: 1024px) {
    .service-tile {
      aspect-ratio: 3 / 4;
    }
  }

  /* Hover: orange border frame — contained, no bleed */
  .service-tile:hover,
  .service-tile:focus-within {
    border-color: var(--orange);
  }

  /* Media layer — overflow hidden on tile clips img zoom to card bounds */
  .tile-media {
    position: absolute;
    inset: 0;
  }

  .tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Hover scale only — no base transform (universal scroll perf rule) */
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Image zoom on hover — scale(1.04) contained by overflow:hidden on .service-tile */
  .service-tile:hover .tile-media img,
  .service-tile:focus-within .tile-media img {
    transform: scale(1.04);
  }

  /* Gradient overlay — bottom 30-35% only so image top stays fully visible.
     V1 covered 55% which made the image feel dark. V2 pulls back to 35%. */
  .tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 65%,
      rgba(26, 39, 80, 0.85) 100%
    );
    /* Pointer-events none so hover still hits the tile */
    pointer-events: none;
    z-index: 1;
  }

  /* Content — stacked over overlay */
  .tile-content {
    position: absolute;
    inset-block-end: 0;
    inset-inline: 0;
    padding: var(--space-l);
    z-index: 10;
  }

  .tile-title {
    font-family: var(--font-display);
    font-size: var(--step-2);
    font-weight: 700;
    /* Cream per V2 feedback — NOT pure white (#fff was jarring) */
    color: var(--cream);
    line-height: 1.2;
    margin-block-end: var(--space-xs);
    /* Navy-tinted shadow for legibility on image */
    text-shadow: 0 2px 12px rgba(26, 39, 80, 0.95);
  }

  .tile-desc {
    font-family: var(--font-body);
    font-size: var(--step--1);
    /* Cream at 78% opacity per V2 spec */
    color: rgba(245, 239, 230, 0.78);
    line-height: 1.5;
    text-shadow: 0 1px 6px rgba(26, 39, 80, 0.9);
    /* Hidden by default; revealed on hover via opacity + lift transition */
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .service-tile:hover .tile-desc,
  .service-tile:focus-within .tile-desc {
    opacity: 1;
    transform: translateY(0);
  }

  /* Mobile touch: always show description — hover-only pattern excluded */
  @media (hover: none), (max-width: 768px) {
    .tile-desc {
      opacity: 0.92;
      transform: translateY(0);
    }
  }

  /* ── Chip primitive (scaffolding L8) ── */
  .chip {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    margin-block-end: var(--space-s);
    text-shadow: none;
  }

  .chip--orange {
    color: var(--orange);
    border-color: var(--orange);
    background: rgba(232, 125, 59, 0.12);
  }

  .chip--navy {
    color: var(--cream);
    border-color: rgba(245, 239, 230, 0.5);
    background: rgba(26, 39, 80, 0.6);
  }

  .chip--cream {
    color: var(--cream);
    border-color: rgba(245, 239, 230, 0.7);
    background: rgba(26, 26, 26, 0.5);
  }

  /* ──────────────────────────────────────
     ABOUT CASIE
  ────────────────────────────────────── */

  .about {
    background: var(--charcoal);
    padding-block: var(--space-3xl);
  }

  .about-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  @media (min-width: 768px) {
    .about-inner {
      grid-template-columns: 1fr 1fr;
      gap: var(--space-3xl);
    }
  }

  /* Photo side */
  .about-media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
  }

  @media (min-width: 768px) {
    .about-media {
      aspect-ratio: 3 / 4;
    }
  }

  .about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Decorative orange accent bar — bottom-left corner */
  .about-accent-bar {
    position: absolute;
    inset-block-end: 0;
    inset-inline-start: 0;
    width: 4px;
    height: 40%;
    background: var(--orange);
    border-radius: var(--radius-s);
  }

  /* Text side */
  .about-text {
    color: var(--cream);
  }

  /* about-eyebrow aligned with section-label scale for dramatic contrast */
  .about-eyebrow {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-block-end: var(--space-m);
  }

  /* about-title aligned with section-title dramatic scale */
  .about-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    color: var(--cream);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-block-end: var(--space-xl);
  }

  .about-title em {
    font-family: var(--font-editorial);
    font-style: italic;
    font-weight: 400;
  }

  .about-text p {
    font-family: var(--font-body);
    font-size: var(--step-0);
    color: rgba(245, 239, 230, 0.78);
    line-height: 1.75;
    margin-block-end: var(--space-l);
  }

  .about-text p:last-of-type {
    margin-block-end: var(--space-xl);
  }

  /* Stat pills */
  .about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-m);
    list-style: none;
  }

  .stat-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: var(--step--1);
    font-weight: 700;
    color: var(--cream);
    background: rgba(245, 239, 230, 0.08);
    border: 1px solid rgba(245, 239, 230, 0.2);
    padding: var(--space-s) var(--space-l);
    border-radius: var(--radius-full);
  }

  .stat-pill svg {
    color: var(--orange);
    flex-shrink: 0;
  }

  /* ──────────────────────────────────────
     PROCESS TIMELINE
  ────────────────────────────────────── */

  .process {
    background: var(--navy);
    padding-block-start: var(--space-3xl);
  }

  .process .section-header {
    padding-block-end: var(--space-2xl);
  }

  /* P0-4 fix: overflow:hidden removed — clips ScrollTrigger horizontal pin on desktop.
     Phase 3 v2 rules at line ~2860 are authoritative. Old V1 rule deleted. */
  .process-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-block-end: var(--space-3xl);
    max-width: 920px;
    margin-inline: auto;
  }

  /* Individual step */
  .process-step {
    flex-shrink: 0;
    border-block-end: 1px solid rgba(245, 239, 230, 0.1);
  }

  .process-step:last-child {
    border-block-end: none;
  }

  .process-step-inner {
    padding: var(--space-2xl) var(--container-pad);
  }

  @media (min-width: 1024px) {
    .process-step-inner {
      padding: var(--space-3xl) var(--space-xl);
    }
  }

  /* Step number — large decorative behind content */
  .process-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    color: rgba(245, 239, 230, 0.07);
    line-height: 1;
    margin-block-end: var(--space-m);
    letter-spacing: -0.04em;
    user-select: none;
  }

  /* Icon */
  .process-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 125, 59, 0.12);
    border: 1px solid rgba(232, 125, 59, 0.35);
    border-radius: var(--radius-m);
    color: var(--orange);
    margin-block-end: var(--space-l);
  }

  .process-step-title {
    font-family: var(--font-display);
    font-size: var(--step-2);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-block-end: var(--space-m);
  }

  .process-step-desc {
    font-family: var(--font-body);
    font-size: var(--step-0);
    color: rgba(245, 239, 230, 0.65);
    line-height: 1.7;
  }

  /* ──────────────────────────────────────
     FLOATING WhatsApp CTA
  ────────────────────────────────────── */

  .wa-float {
    position: fixed;
    inset-block-end: var(--space-xl);
    inset-inline-end: var(--space-l);
    z-index: 800;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: #25d366;
    /* Dark icon on brand green — 10.5:1 AAA contrast (per core a11y lesson) */
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition:
      background var(--dur-fast),
      transform var(--dur-fast) var(--ease-out-expo),
      box-shadow var(--dur-fast);
  }

  .wa-float:hover {
    background: #20b95a;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
    transform: scale(1.08);
  }

  .wa-float:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
  }
}

/* ─────────────────────────────────────────────────────────────
   LAYER: utilities
   ───────────────────────────────────────────────────────────── */
@layer utilities {
  /* Screen-reader only — reusable throughout */
  .sr-only {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  /* Visually hidden but accessible on focus */
  .sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    clip: auto;
    overflow: visible;
  }
}

/* =============================================================
   PHASE 5 — GALLERY BENTO
   ============================================================= */

.gallery-section {
  padding: 5rem 1.25rem 4rem;
  background: var(--cream);
}

.gallery-container {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-intro {
  color: var(--charcoal);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 48ch;
}

/* Mobile: single column stack */
.gallery-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

/* Tablet: 4-column grid */
@media (min-width: 640px) {
  .gallery-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-cell--xl {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-cell--l {
    grid-column: span 2;
  }
}

/* Desktop: 6-column grid */
@media (min-width: 1024px) {
  .gallery-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 240px;
  }
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: var(--asphalt);
  border: none;
  padding: 0;
  display: block;
  /* Mobile: enforce a reasonable height when single-col */
  min-height: 220px;
}

@media (min-width: 640px) {
  .gallery-cell {
    min-height: 0;
  }
}

.gallery-cell picture,
.gallery-cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* NO idle transform — hover only (scroll-perf lesson) */
  transition: transform 0.4s ease;
}

/* Hover only — no idle transform (universal scroll-perf rule) */
@media (hover: hover) {
  .gallery-cell:hover img {
    transform: scale(1.04);
  }
}

.gallery-cell-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 39, 80, 0.5);
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-cell:hover .gallery-cell-overlay,
.gallery-cell:focus-visible .gallery-cell-overlay {
  opacity: 1;
}

.gallery-cell:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* =============================================================
   LIGHTBOX — native <dialog>
   ============================================================= */

.lightbox {
  border: none;
  border-radius: 8px;
  background: var(--navy);
  color: var(--cream);
  max-width: min(92vw, 1100px);
  width: 100%;
  padding: 0;
  margin: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  gap: 1rem;
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lightbox-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lightbox-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--cream);
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--orange);
  outline: none;
}

.lightbox-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  max-height: 70vh;
  overflow: hidden;
  border-radius: 4px;
  background: var(--asphalt);
}

.lightbox-picture {
  display: contents;
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.lightbox-prev,
.lightbox-next {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
  flex-shrink: 0;
}

.lightbox-prev:hover,
.lightbox-prev:focus-visible,
.lightbox-next:hover,
.lightbox-next:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--navy);
  outline: none;
}

.lightbox-counter {
  font-size: 0.85rem;
  color: rgba(243, 237, 223, 0.6);
  min-width: 4rem;
  text-align: center;
}

/* =============================================================
   PARALLAX CHAPTERS
   ============================================================= */

.parallax-chapter {
  position: relative;
  height: clamp(280px, 45vw, 520px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-chapter-img-wrap {
  position: absolute;
  inset: -12% 0;
  will-change: transform;
  transform: translateZ(0); /* promote to own compositor layer */
}

.parallax-chapter-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.parallax-chapter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 39, 80, 0.72) 0%,
    rgba(26, 39, 80, 0.45) 60%,
    rgba(26, 39, 80, 0.25) 100%
  );
  display: flex;
  align-items: center;
  padding: 2rem 1.25rem;
}

.parallax-chapter-content {
  max-width: 680px;
  margin: 0 auto;
}

.parallax-chapter-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 0.5rem;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.parallax-chapter-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(243, 237, 223, 0.85);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */

.testimonials-section {
  padding: 5rem 1.25rem;
  background: var(--navy);
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-section .section-label {
  color: var(--orange);
}

.testimonials-section .section-title {
  color: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s ease;
}

.testimonial-card--real:hover {
  border-color: var(--orange);
}

.testimonial-card--placeholder {
  opacity: 0.5;
  border-style: dashed;
}

.testimonial-quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--orange);
  font-family: Georgia, serif;
  display: block;
}

.testimonial-body {
  margin: 0;
  flex: 1;
}

.testimonial-body p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(243, 237, 223, 0.85);
  line-height: 1.65;
  margin: 0;
}

.testimonial-attribution {
  margin-top: auto;
}

.testimonial-attribution cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* =============================================================
   CONTACT SECTION
   ============================================================= */

.contact-section {
  padding: 5rem 1.25rem 4rem;
  background: var(--cream);
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}

.contact-subhead {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  max-width: 52ch;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

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

.form-optional {
  font-weight: 400;
  color: var(--charcoal);
  font-size: 0.8rem;
}

.form-input,
.form-textarea {
  border: 1.5px solid rgba(26, 39, 80, 0.2);
  border-radius: 5px;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: #fff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 26, 0.15);
}

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

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.btn-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
  letter-spacing: 0.02em;
}

.btn-form-submit:hover {
  background: #c94d0f;
}

.btn-form-submit:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

.form-or-whatsapp {
  font-size: 0.875rem;
  color: var(--charcoal);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.form-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #1a7a45;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s ease;
}

.form-wa-link:hover {
  color: #145e33;
}

.form-wa-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* Contact details card */
.contact-details-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  color: var(--cream);
}

.contact-details-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 1.5rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0 0 1.75rem;
}

.contact-detail-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.contact-detail-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  white-space: nowrap;
  padding-top: 0.1rem;
}

.contact-detail-value {
  font-size: 0.9rem;
  color: rgba(243, 237, 223, 0.85);
  line-height: 1.5;
}

.btn-wa-contact,
.btn-wa-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #0a0a0a;
  /* AAA 10.5:1 contrast — WA lesson */
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  transition: background 0.25s ease;
  width: 100%;
  justify-content: center;
}

.btn-wa-contact:hover,
.btn-wa-footer:hover {
  background: #1fba58;
}

.btn-wa-contact:focus-visible,
.btn-wa-footer:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

/* =============================================================
   AREAS SECTION — V2: card grid replacing pills
   V2 feedback item 12: postcode (Fraunces italic huge) + name + chip
   ============================================================= */

.areas-section {
  padding: 5rem 1.25rem 4rem;
  background: var(--asphalt);
}

.areas-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Override section-label/title colours for dark asphalt background */
.areas-section .section-label {
  color: var(--orange);
}

.areas-section .section-title {
  color: var(--cream);
}

.areas-section .section-sub {
  color: rgba(245, 239, 230, 0.72);
  margin-block-end: var(--space-2xl);
}

/* Keep the SVG map — it adds visual interest above the cards */
.areas-map-wrap {
  margin: 0 auto var(--space-2xl);
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
}

.areas-map {
  width: 100%;
  height: auto;
  display: block;
}

/* Card grid: mobile 2-col, tablet 3-col, desktop 4-col */
.areas-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-block-end: var(--space-xl);
}

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

@media (min-width: 1024px) {
  .areas-card-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/* Area card — cream bg, frame-not-field hover (border + 2px lift only) */
.area-card {
  background: var(--cream);
  border: 1px solid rgba(26, 39, 80, 0.12);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
  color: inherit;
  /* Hover: border-color + translateY(-2px) — no bleed, no glow (frame-not-field) */
  transition:
    border-color 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.area-card:hover,
.area-card:focus-visible {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(26, 39, 80, 0.15);
}

.area-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* Postcode: Fraunces italic large — editorial "number" treatment */
.area-card__postcode {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
}

/* Neighbourhood name */
.area-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

/* Type chip — tiny uppercase label */
.area-card__chip {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 39, 80, 0.6);
  margin-block-start: 0.25rem;
}

/* Areas grid — V2: replaces pills. auto-fit collapses gracefully to 2-col mobile */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin-inline: auto;
  margin-block-end: var(--space-xl);
}

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

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

/* Featured card (N19 Archway — home base) — 2px orange border + enlarged postcode */
.area-card--featured {
  border-color: var(--orange);
  border-width: 2px;
}

.area-card--featured .area-card__postcode {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--orange);
}

.areas-footnote {
  font-size: 0.875rem;
  color: rgba(243, 237, 223, 0.6);
  font-style: italic;
  text-align: center;
}

/* =============================================================
   PRIVACY SECTION
   ============================================================= */

.privacy-section {
  padding: 4rem 1.25rem;
  background: var(--cream);
  border-top: 1px solid rgba(26, 39, 80, 0.1);
}

.privacy-container {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-container h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1.25rem;
}

.privacy-container p {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* =============================================================
   FOOTER
   ============================================================= */

.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 4rem 1.25rem 2rem;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cream);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.footer-logo-accent {
  color: var(--orange);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(243, 237, 223, 0.65);
  margin: 0 0 0.75rem;
  font-style: italic;
}

.footer-ch {
  font-size: 0.75rem;
  color: rgba(
    243,
    237,
    223,
    0.78
  ); /* P1-2: was 0.4 (~2.4:1 fail) → 0.78 (~4.8:1 AA pass) */
  margin: 0;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin: 0 0 1rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links-list a {
  color: rgba(243, 237, 223, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--orange);
}

.footer-links-list a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-contact-item {
  font-size: 0.875rem;
  color: rgba(243, 237, 223, 0.75);
  margin: 0 0 0.5rem;
}

.btn-wa-footer {
  margin-top: 0.75rem;
  width: auto;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(243, 237, 223, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--orange);
}

.footer-social-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(243, 237, 223, 0.78); /* P1-2: was 0.4 → 0.78 (~4.8:1 AA pass) */
  margin: 0;
}

.footer-tweb {
  font-size: 0.75rem;
  color: rgba(243, 237, 223, 0.78); /* P1-2: was 0.4 → 0.78 (~4.8:1 AA pass) */
  margin: 0;
}

.footer-tweb a {
  color: rgba(243, 237, 223, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-tweb a:hover {
  color: var(--orange);
}

.footer-tweb a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

/* =============================================================
   COOKIE BANNER — UK PECR compliant
   ============================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--navy);
  border-top: 2px solid var(--orange);
  padding: 1rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner:not([hidden]) {
  display: block;
}

/* Slide-up state set via JS */
.cookie-banner.is-visible {
  transform: translateY(0);
}

/* Push mobile bar up above cookie when both showing */
@media (max-width: 767px) {
  .cookie-banner {
    bottom: 0;
  }
  body.has-mobile-bar .cookie-banner {
    bottom: 56px;
  }
}

.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(243, 237, 223, 0.85);
  margin: 0;
  min-width: 220px;
}

.cookie-privacy-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.cookie-privacy-link:hover {
  color: #c94d0f;
}

.cookie-privacy-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-decline {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.55rem 1.2rem;
  cursor: pointer;
  border: 1.5px solid;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  min-height: 44px;
}

/* Equal visual weight — PECR reject-all parity */
.btn-cookie-accept {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
}

.btn-cookie-accept:hover {
  background: #c94d0f;
  border-color: #c94d0f;
}

.btn-cookie-decline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-cookie-decline:hover {
  border-color: var(--cream);
}

.btn-cookie-accept:focus-visible,
.btn-cookie-decline:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* =============================================================
   STICKY MOBILE BOTTOM BAR — max-width: 767px only
   ============================================================= */

.mobile-cta-bar {
  display: none;
  /* Hidden on tablet/desktop */
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    height: 56px;
  }

  /* Push page content so last sections aren't hidden behind bar */
  body {
    padding-bottom: 56px;
  }
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-height: 48px;
  transition: background 0.2s ease;
}

.mobile-cta-btn span {
  text-transform: uppercase;
  line-height: 1;
}

/* WhatsApp button — AAA contrast: #0a0a0a on #25d366 */
.mobile-cta-btn--wa {
  background: #25d366;
  color: #0a0a0a;
}

.mobile-cta-btn--wa:hover,
.mobile-cta-btn--wa:focus-visible {
  background: #1fba58;
  color: #0a0a0a;
}

/* Call button */
.mobile-cta-btn--call {
  background: var(--navy);
  color: var(--cream);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-btn--call:hover,
.mobile-cta-btn--call:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

/* Get Quote button */
.mobile-cta-btn--quote {
  background: var(--orange);
  color: var(--navy);
}

.mobile-cta-btn--quote:hover,
.mobile-cta-btn--quote:focus-visible {
  background: #c94d0f;
}

.mobile-cta-btn:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: -3px;
  border-radius: 0;
}

/* =============================================================
   FORM ERROR STATES — injected by JS on invalid submit
   ============================================================= */

.form-input--error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.form-error {
  display: block;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.25rem;
  font-weight: 600;
}

/* =============================================================
   PHASE 2 — Animation + Life Layer
   1. Button shimmer + arrow system
   2. Marquee chip strips
   3. Stats count-up (HTML data attrs + JS)
   4. Reveal variants (clip / scale / slide-x)
   ============================================================= */

/* ── 1. BUTTON SYSTEM — shimmer + arrow translate (frame-not-field) ──
   Shimmer contained by overflow:hidden — never bleeds past button edge.
   Box-shadow lift ≤ 30px blur. No radial-gradient at cursor position.
   ── */

/* Upgrade base .btn with richer transition */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    background 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Shimmer pseudo-element — CONTAINED by overflow:hidden */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .btn:hover::before,
  .btn:focus-visible::before {
    transform: translateX(120%);
  }
}

/* Arrow element — inline-block so translateX works */
.btn-arrow {
  display: inline-block;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .btn:hover .btn-arrow,
  .btn:focus-visible .btn-arrow {
    transform: translateX(5px);
  }
}

/* Primary button — orange → navy on hover, lift */
.btn--primary {
  background: var(--orange);
  color: var(--charcoal);
  border: 1px solid transparent;
}

@media (prefers-reduced-motion: no-preference) {
  .btn--primary:hover,
  .btn--primary:focus-visible {
    background: var(--navy);
    color: var(--cream);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 28px rgba(232, 125, 59, 0.28);
  }

  .btn--primary:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 80ms;
  }
}

/* Secondary / ghost button — cream border → orange fill */
.btn--secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 239, 230, 0.55);
}

@media (prefers-reduced-motion: no-preference) {
  .btn--secondary:hover,
  .btn--secondary:focus-visible {
    background: rgba(245, 239, 230, 0.12);
    border-color: var(--cream);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .btn--secondary:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 80ms;
  }
}

/* Form submit + WA contact + footer WA — same shimmer, no lift on cookie btns */
.btn-form-submit,
.btn-wa-contact,
.btn-wa-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-form-submit::before,
.btn-wa-contact::before,
.btn-wa-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-form-submit:hover::before,
  .btn-form-submit:focus-visible::before,
  .btn-wa-contact:hover::before,
  .btn-wa-contact:focus-visible::before,
  .btn-wa-footer:hover::before,
  .btn-wa-footer:focus-visible::before {
    transform: translateX(120%);
  }

  .btn-form-submit:hover,
  .btn-form-submit:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(232, 125, 59, 0.22);
  }

  .btn-wa-contact:hover,
  .btn-wa-contact:focus-visible,
  .btn-wa-footer:hover,
  .btn-wa-footer:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(26, 39, 80, 0.28);
  }
}

/* Nav CTA — shimmer only, no overflow change (already no overflow issue) */
.nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .nav-cta:hover::before,
  .nav-cta:focus-visible::before {
    transform: translateX(120%);
  }

  .nav-cta:hover,
  .nav-cta:focus-visible {
    background: var(--orange-dark);
    transform: translateY(-1px);
  }
}

/* ── 2. MARQUEE CHIP STRIPS ──
   Contained band between sections. Fade masks ≤ 80px (frame-not-field rule).
   ── */

.marquee-strip {
  background: linear-gradient(
    90deg,
    var(--navy) 0%,
    #14213d 50%,
    var(--navy) 100%
  );
  border-top: 1px solid rgba(232, 125, 59, 0.2);
  border-bottom: 1px solid rgba(232, 125, 59, 0.2);
  overflow: hidden;
  position: relative;
  padding-block: 0.9rem;
  /* No margin — flush against adjacent sections */
}

/* Edge fade masks — 80px max per frame-not-field rule */
.marquee-strip::before,
.marquee-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  white-space: nowrap;
}

@media (prefers-reduced-motion: no-preference) {
  .marquee-track {
    animation: marquee-scroll 44s linear infinite;
    will-change: transform;
  }

  .marquee-strip:hover .marquee-track,
  .marquee-strip:focus-within .marquee-track {
    animation-play-state: paused;
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-track--reverse {
  animation-direction: reverse;
}

/* Reduced motion: wrap chips into centred row instead of animating */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-inline: 1rem;
  }
}

/* Chip atoms */
.marquee-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 1.05rem;
  margin: 0 0.35rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.7rem, 0.82vw, 0.84rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(245, 239, 230, 0.04);
  border: 1px solid rgba(232, 125, 59, 0.3);
  white-space: nowrap;
}

.marquee-chip--navy {
  background: rgba(26, 39, 80, 0.55);
  border-color: rgba(245, 239, 230, 0.2);
  color: var(--cream);
}

.marquee-chip--cream {
  background: rgba(245, 239, 230, 0.9);
  color: var(--navy);
  border-color: rgba(232, 125, 59, 0.4);
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Colour the dot per chip variant */
.marquee-chip--navy .marquee-dot {
  background: var(--cream);
}

.marquee-chip--cream .marquee-dot {
  background: var(--navy);
}

/* Strip variant — slightly lighter border for variety */
.marquee-strip--alt {
  background: linear-gradient(90deg, #1e2f5e 0%, var(--navy) 50%, #1e2f5e 100%);
  border-color: rgba(245, 239, 230, 0.12);
}

.marquee-strip--alt::before {
  background: linear-gradient(90deg, #1e2f5e 0%, transparent 100%);
}

.marquee-strip--alt::after {
  background: linear-gradient(270deg, #1e2f5e 0%, transparent 100%);
}

/* ── 3. STATS COUNT-UP — no visual change, JS writes the number ──
   The .stat-number elements inherit .about-stats styling.
   We don't add extra CSS beyond ensuring the element is visible from load.
   ── */

/* ── 4. REVEAL VARIANTS — additional to existing .reveal (fade-up) ── */

/* Clip reveal — heading dividers */
.reveal-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 920ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-clip.is-in {
  clip-path: inset(0 0 0% 0);
}

/* Scale reveal — about image */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.is-in {
  opacity: 1;
  transform: scale(1);
}

/* Slide-x reveal — process/areas intros */
.reveal-slide-x {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-slide-x.is-in {
  opacity: 1;
  transform: translateX(0);
}

/* Reduced motion: skip all reveal animations */
@media (prefers-reduced-motion: reduce) {
  .reveal-clip,
  .reveal-scale,
  .reveal-slide-x {
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =============================================================
   PROCESS SECTION v2 — horizontal pin, frame-bound motion
   Phase 3 / 2026-05-12
   Lessons applied:
   - lessons-core.md:122  → NO content-visibility:auto on pinned section
   - feedback_scroll_perf_universal.md → NO snap, scrub:1, lerp 0.1 untouched
   - feedback_frame_not_field_animation.md → overlay + motion stays inside step bounding box
   - lessons-scaffolding.md L59 → overlay 0.62 compromise (0.45→0.78 gradient)
   ============================================================= */

.process-section--v2 {
  background: var(--navy);
  color: var(--cream);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden; /* contains horizontal track — no bleed */
  position: relative;
  /* NO content-visibility:auto — lessons-core.md:122: breaks ScrollTrigger pin */
}

.process-section--v2 .process-intro {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── Mobile / tablet default — vertical card stack ── */
.process-pin-wrap {
  /* no height, no pin — normal flow on small screens */
}

.process-track {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  padding-inline: 1.25rem;
  padding-block-end: clamp(2rem, 4vw, 3rem);
}

.process-step {
  position: relative;
  border-radius: 16px;
  overflow: hidden; /* frame-not-field: overlay + img stay inside */
  isolation: isolate;
  background: var(--asphalt);
  min-height: 420px;
}

/* ── Desktop — horizontal pin track ── */
@media (min-width: 1024px) {
  .process-pin-wrap {
    height: 100vh;
    min-height: 640px;
    position: relative;
    /* will-change NOT set here — GSAP manages it during pin lifecycle only */
  }

  .process-track {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    height: 100%;
    align-items: center;
    padding-inline: clamp(1.5rem, 5vw, 4rem);
    padding-block-end: 0;
    /* will-change:transform — only on the animated element; GSAP adds/removes */
    will-change: transform;
  }

  .process-step {
    flex: 0 0 540px;
    height: 76vh;
    min-height: 540px;
    max-height: 720px;
    border-radius: 18px;
  }
}

/* ── Step media — image fills the step frame absolutely ── */
.process-step__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.process-step__media picture,
.process-step__media img {
  width: 100%;
  height: 100%;
  display: block;
}

.process-step__media img {
  object-fit: cover;
  object-position: center 40%;
  /* NO transform:scale() here — frame-not-field; hover scale lives in :hover only */
}

/* Subtle image zoom on hover — contained by overflow:hidden on .process-step */
@media (hover: hover) {
  .process-step:hover .process-step__media img {
    transform: scale(1.04);
    transition: transform 0.9s ease;
  }
}

/* ── Navy overlay: 0.62 compromise
   lessons-scaffolding L59 sweet spot is 0.4–0.55; V2-FEEDBACK said 0.78 navy.
   Gradient top→bottom: light (0.45) at top so image reads, heavy (0.78) at
   bottom so text is legible. Stays INSIDE step bounding box (overflow:hidden).
   Opacity gated behind .process-step--img-ready (frame-not-field, no FOUC). ── */
.process-step__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 39, 80, 0.45) 0%,
    rgba(26, 39, 80, 0.78) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Image loaded — reveal overlay (frame-not-field gate) */
.process-step--img-ready .process-step__overlay {
  opacity: 1;
}

/* Image error fallback — solid navy so text remains readable */
.process-step--img-error .process-step__overlay {
  opacity: 1;
  background: var(--navy);
}

/* ── Step content — sits above overlay via z-index ── */
.process-step__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.75rem;
}

/* Large italic step number — orange, editorial font */
.process-step__num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow:
    0 2px 16px rgba(26, 39, 80, 0.98),
    0 0 2px rgba(26, 39, 80, 0.6);
  user-select: none;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(26, 39, 80, 0.95);
}

.process-step__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 239, 230, 0.9);
  max-width: 38ch;
  text-shadow: 0 1px 6px rgba(26, 39, 80, 0.9);
}

/* ── Reduced motion: no pin, no overlay transition — vertical stack always ── */
@media (prefers-reduced-motion: reduce) {
  .process-pin-wrap {
    height: auto !important;
  }

  .process-track {
    flex-direction: column !important;
    height: auto !important;
    padding-inline: 1.25rem !important;
    will-change: auto !important;
    transform: none !important;
  }

  .process-step {
    flex: 1 1 auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 420px !important;
    max-height: none !important;
  }

  .process-step__overlay {
    opacity: 1 !important;
    transition: none !important;
  }
}
