    :root {
      --bg: #f5f2ea;
      --text: #0f0f14;
      --muted: #777773;
      --line: #d7d6d1;
      --accent: #7c5cff;
      --accent-tint: #ece6ff;
      --white: #f5f2ea;
      --radius: 4px;
      --pad: clamp(20px, 3vw, 48px);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: "Inter", Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      display: flex;
      flex-direction: column;
      min-height: 100svh;
    }

    /* Lets a fullscreen section fill the space above the footer. */
    main {
      display: flex;
      flex-direction: column;
      flex: 1 0 auto;
    }

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

    button {
      font: inherit;
    }

    /* ------------------------------
       NAVIGATION
    ------------------------------ */

    .nav {
      position: fixed;
      z-index: 100;
      top: 0;
      left: 0;
      width: 100%;
      padding: 22px var(--pad);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      pointer-events: none;
      background: rgba(245, 242, 234, 0);
      box-shadow: 0 1px 0 rgba(15, 15, 20, 0);
      backdrop-filter: blur(0px);
      transition:
        background 0.4s ease,
        box-shadow 0.4s ease,
        backdrop-filter 0.4s ease;
    }

    /* Off-white backing panel behind the nav once scrolled. */
    .nav.nav--backed {
      background: rgba(245, 242, 234, 0.96);
      box-shadow: 0 1px 0 rgba(15, 15, 20, 0.08);
      backdrop-filter: blur(8px);
    }

    .nav a {
      pointer-events: auto;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .nav-logo-mark {
      height: 22px;
      width: auto;
      display: block;
      color: var(--accent);
      transition: color 0.3s ease;
    }

    /* Purple-on-purple would be illegible over the Strategy /
       Coach / Testimonials sections, so the mark switches to
       near-black there, same trigger as the nav's other swaps. */
    .nav.nav--on-purple .nav-logo-mark {
      color: var(--text);
    }

    .nav-logo-text {
      display: flex;
      flex-direction: column;
      color: #0f0f14;
      transition: color 0.3s ease;
    }

    .nav-role {
      display: block;
      margin-top: 1px;
      font-size: 10px;
      font-weight: 500;
      opacity: 0.7;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-email-icon {
      display: flex;
      align-items: center;
    }

    .nav-links a,
    .nav-email-icon {
      position: relative;
      color: #0f0f14;
      transition: color 0.3s ease;
    }

    /* Purple text over the near-black sections (Consult / Contact / Footer). */
    .nav.nav--on-dark .nav-logo-text,
    .nav.nav--on-dark .nav-links a,
    .nav.nav--on-dark .nav-email-icon {
      color: var(--accent);
    }

    .nav-links a:hover,
    .nav-links a:focus-visible,
    .nav-links a:active,
    .nav-email-icon:hover,
    .nav-email-icon:focus-visible,
    .nav-email-icon:active {
      color: var(--accent);
    }

    /* Off-white hover only before .nav--backed kicks in - once it has,
       the nav's own backing panel is off-white, so hover stays purple. */
    .nav.nav--on-purple:not(.nav--backed) .nav-links a:hover,
    .nav.nav--on-purple:not(.nav--backed) .nav-links a:focus-visible,
    .nav.nav--on-purple:not(.nav--backed) .nav-links a:active,
    .nav.nav--on-purple:not(.nav--backed) .nav-email-icon:hover,
    .nav.nav--on-purple:not(.nav--backed) .nav-email-icon:focus-visible,
    .nav.nav--on-purple:not(.nav--backed) .nav-email-icon:active {
      color: var(--white);
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.4s ease;
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      gap: 6px;
      width: 30px;
      height: 30px;
      background: none;
      border: none;
      padding: 0;
      margin: 0;
      cursor: pointer;
      pointer-events: auto;
      position: relative;
      z-index: 210;
      color: #0f0f14;
      transition: color 0.3s ease;
    }

    .nav.nav--on-dark .nav-toggle {
      color: var(--accent);
    }

    .nav-toggle.is-active {
      color: var(--bg) !important;
    }

    .nav-toggle-bar {
      display: block;
      width: 100%;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      transition: transform 0.35s ease, width 0.35s ease;
    }

    .nav-toggle.is-active .nav-toggle-bar:first-child {
      transform: translateY(4px) rotate(45deg);
      width: 100%;
    }

    .nav-toggle.is-active .nav-toggle-bar:last-child {
      transform: translateY(-4px) rotate(-45deg);
      width: 100%;
    }

    /* ------------------------------
       HERO
    ------------------------------ */

    .hero {
      min-height: 100svh;
      padding: 130px var(--pad) 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hero-heading {
      width: 100%;
      max-width: 1300px;
      font-size: clamp(48px, 9vw, 150px);
      line-height: 0.88;
      font-weight: 700;
      letter-spacing: -0.075em;
      text-transform: uppercase;
      overflow-wrap: break-word;
      margin-bottom: clamp(32px, 5vw, 72px);
    }

    .hero-heading span {
      display: block;
    }

    .hero-heading span:first-child {
      color: var(--accent);
    }

    /* ------------------------------
       SHOWREEL
    ------------------------------ */

    .showreel {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 8.5;
      min-height: 380px;
      max-height: 75vh;
      overflow: hidden;
      background: #0f0f14;
      border-radius: var(--radius);
    }

    .showreel iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .showreel-meta {
      margin-top: 14px;
      display: flex;
      justify-content: space-between;
      color: var(--muted);
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ------------------------------
       SCROLL CUE
       Fixed pill hinting there's more below the
       Hero / dark / purple intro blocks.
    ------------------------------ */

    .scroll-cue {
      position: fixed;
      left: 50%;
      bottom: 32px;
      transform: translateX(-50%);
      z-index: 40;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: var(--radius);
      background: rgba(15, 15, 20, 0.72);
      color: var(--bg);
      opacity: 0.9;
      transition: opacity 0.3s ease;
    }

    .scroll-cue:hover,
    .scroll-cue:focus-visible {
      opacity: 1;
    }

    .scroll-cue.scroll-cue--hidden {
      opacity: 0;
      pointer-events: none;
    }

    .scroll-cue-label {
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .scroll-cue-arrow {
      animation: scroll-cue-bounce 1.8s ease-in-out infinite;
    }

    @keyframes scroll-cue-bounce {
      0%,
      100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(5px);
      }
    }

    /* ------------------------------
       ABOUT
    ------------------------------ */

    .about {
      padding: clamp(120px, 18vw, 280px) var(--pad);
    }

    /* Clears the fixed nav when this is a page's first section. */
    .about.is-page-top {
      min-height: 100svh;
      padding-top: 130px;
    }

    .about.about-purple {
      background: var(--accent);
      color: var(--white);
    }

    .about-purple .about-copy {
      color: rgba(245, 242, 234, 0.85);
    }

    .about.about-dark {
      background: var(--text);
      color: var(--bg);
    }

    .about-dark .about-copy {
      color: rgba(243, 242, 238, 0.75);
    }

    .section-label {
      color: var(--muted);
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 60px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 40px;
    }

    .about-photo {
      aspect-ratio: 788 / 1400;
      overflow: hidden;
      border-radius: var(--radius);
    }

    .about-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(1);
      display: block;
    }

    .about-intro {
      font-size: clamp(30px, 4vw, 62px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      font-weight: 500;
      max-width: 1000px;
    }

    .about-intro strong {
      font-weight: 700;
    }

    .text-accent {
      color: var(--accent);
    }

    .inline-link {
      color: var(--accent);
      font-weight: 700;
      text-decoration: underline;
      text-decoration-color: transparent;
      text-underline-offset: 3px;
      transition: text-decoration-color 0.3s ease;
    }

    .inline-link:hover,
    .inline-link:focus-visible {
      text-decoration-color: var(--accent);
    }

    .text-dark {
      color: var(--text);
    }

    .about-copy {
      margin-top: 80px;
      max-width: 620px;
      font-size: 16px;
      line-height: 1.65;
      color: #3f3f3c;
    }

    .capabilities {
      margin-top: 100px;
      border-top: 1px solid var(--line);
    }

    .capability {
      display: grid;
      grid-template-columns: 1fr 2fr;
      padding: 17px 0;
      border-bottom: 1px solid var(--line);
      font-size: 12px;
    }

    .capability span:first-child {
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 600;
    }

    .capability span:last-child {
      font-weight: 500;
    }

    .about-logos {
      width: 100%;
      margin-top: 64px;
    }

    .about-logos-label {
      color: var(--muted);
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 22px;
    }

    .logo-carousel {
      position: relative;
      width: 100%;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 6%,
        black 94%,
        transparent
      );
      mask-image: linear-gradient(
        to right,
        transparent,
        black 6%,
        black 94%,
        transparent
      );
    }

    .logo-carousel-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation: logo-scroll 26s linear infinite;
    }

    .logo-slot {
      flex: 0 0 auto;
      width: clamp(120px, 13.5vw, 176px);
      height: 72px;
      margin-right: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-slot img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

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

    @media (prefers-reduced-motion: reduce) {
      .logo-carousel-track {
        animation: none;
      }
    }

    /* ------------------------------
       CASE STUDIES
    ------------------------------ */

    .feature-section.case-studies {
      background: var(--bg);
      color: var(--text);
      padding-top: clamp(60px, 8vw, 100px);
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(30px, 5vw, 70px) clamp(24px, 4vw, 56px);
    }

    .case-study {
      display: flex;
      flex-direction: column;
    }

    .case-study .case-video {
      margin-bottom: 20px;
    }

    .case-video {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #0f0f14;
      border-radius: var(--radius);
    }

    .case-video iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .case-meta {
      color: var(--muted);
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .case-title {
      margin-top: 10px;
      font-size: clamp(19px, 1.8vw, 23px);
      line-height: 1.15;
      letter-spacing: 0em;
      font-weight: 600;
    }

    .case-blurb {
      margin-top: 10px;
      font-size: 15px;
      line-height: 1.6;
      color: #3f3f3c;
      max-width: 480px;
    }

    /* ------------------------------
       FEATURE SECTIONS (Strategy / Consult)
    ------------------------------ */

    .feature-section {
      padding: clamp(100px, 16vw, 200px) var(--pad);
    }

    /* Clears the fixed nav when this is a page's first section. */
    .feature-section.is-page-top {
      padding-top: 130px;
    }

    .feature-section.strategy {
      background: var(--text);
      color: var(--bg);
    }

    .feature-section.consult {
      background: var(--bg);
      color: var(--text);
    }

    .feature-section.coach {
      background: var(--accent);
      color: var(--white);
    }

    .feature-section.testimonials {
      background: var(--accent);
      color: var(--white);
    }

    .feature-section.testimonials-offwhite {
      background: var(--bg);
      color: var(--text);
    }

    .feature-section .section-label {
      margin-bottom: 60px;
    }

    .feature-section.coach .section-label {
      color: rgba(245, 242, 234, 0.65);
    }

    .feature-section.strategy .section-label {
      color: rgba(245, 242, 234, 0.65);
    }

    .feature-section.testimonials .section-label {
      color: rgba(245, 242, 234, 0.65);
    }

    .feature-section.testimonials-offwhite .section-label {
      color: var(--muted);
    }

    .testimonial-carousel {
      position: relative;
      overflow: hidden;
    }

    .testimonial-track {
      display: flex;
      will-change: transform;
      transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
      touch-action: pan-y;
      user-select: none;
      -webkit-user-select: none;
    }

    .testimonial-slide,
    .testimonial-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(30px, 5vw, 70px);
    }

    .testimonial-slide {
      flex: 0 0 100%;
      min-width: 0;
    }

    /* Coach's carousel shows one testimonial at a time, matched to
       the width of the photo in the section above it. */
    #coach-testimonials .testimonial-slide {
      display: block;
    }

    #coach-testimonials .testimonial-slide .testimonial {
      max-width: calc((100% - clamp(30px, 5vw, 70px)) / 2);
    }

    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: clamp(48px, 6vw, 72px);
    }

    .testimonial-dot {
      width: 8px;
      height: 8px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: rgba(245, 242, 234, 0.3);
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .testimonial-dot.is-active {
      background: var(--white);
    }

    .feature-section.testimonials-offwhite .testimonial-dot {
      background: rgba(15, 15, 20, 0.2);
    }

    .feature-section.testimonials-offwhite .testimonial-dot.is-active {
      background: var(--accent);
    }

    .testimonial {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .testimonial p {
      font-size: clamp(19px, 2vw, 26px);
      line-height: 1.4;
      letter-spacing: -0.02em;
      font-weight: 500;
      color: rgba(245, 242, 234, 0.85);
    }

    .testimonial .name {
      font-size: 14px;
      font-weight: 600;
    }

    .testimonial .role {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-top: 3px;
      color: rgba(245, 242, 234, 0.65);
    }

    .feature-section.testimonials-offwhite .testimonial p {
      color: #3f3f3c;
    }

    .feature-section.testimonials-offwhite .testimonial .role {
      color: var(--muted);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(30px, 5vw, 70px);
      align-items: start;
    }

    .feature-image {
      overflow: hidden;
      width: 100%;
      aspect-ratio: 4 / 3;
      opacity: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      order: 1;
    }

    .feature-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .feature-section.coach .feature-image {
      color: rgba(245, 242, 234, 0.65);
    }

    .feature-text {
      order: 2;
    }

    .feature-heading {
      font-size: clamp(30px, 3.4vw, 48px);
      line-height: 1.05;
      letter-spacing: -0.05em;
      font-weight: 600;
      margin-bottom: 26px;
    }

    .feature-copy {
      font-size: 16px;
      line-height: 1.65;
      max-width: 520px;
      margin-bottom: 32px;
    }

    .feature-section.strategy .feature-copy {
      color: rgba(245, 242, 234, 0.85);
    }

    .feature-section.consult .feature-copy {
      color: #3f3f3c;
    }

    .feature-section.coach .feature-copy {
      color: rgba(245, 242, 234, 0.85);
    }

    .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 480px;
    }

    .feature-list li {
      position: relative;
      padding-left: 22px;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.4;
    }

    .feature-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 7px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }

    .feature-section.coach .feature-list li::before {
      background: var(--white);
    }

    .feature-section.strategy .feature-list li::before {
      background: var(--accent);
    }

    .signup {
      margin-top: clamp(50px, 7vw, 90px);
      text-align: center;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .signup-heading {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin-bottom: 18px;
    }

    .signup-form {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .signup-input {
      width: 260px;
      max-width: 100%;
      padding: 13px 16px;
      font-size: 14px;
      font-family: inherit;
      color: var(--text);
      background: var(--white);
      border: 1px solid transparent;
      border-radius: var(--radius);
    }

    .signup-input::placeholder {
      color: var(--muted);
    }

    .signup-input:focus {
      outline: none;
      border-color: var(--white);
    }

    .signup-button {
      padding: 13px 26px;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--accent);
      background: var(--white);
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: opacity 0.3s ease;
    }

    .signup-honeypot {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .signup-button:hover {
      opacity: 0.85;
    }

    /* ------------------------------
       CONTACT
    ------------------------------ */

    .contact {
      min-height: 80svh;
      padding: var(--pad);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: var(--text);
      color: var(--bg);
    }

    /* Contact as a standalone page: fills the screen, clears the nav. */
    .contact.contact--fullscreen {
      flex: 1;
      padding-top: 130px;
    }

    .contact-heading {
      max-width: 1100px;
      font-size: clamp(50px, 9vw, 145px);
      line-height: 0.88;
      letter-spacing: -0.075em;
      font-weight: 700;
      text-transform: uppercase;
    }

    .contact-heading span {
      color: var(--accent);
    }

    .contact-bottom {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
    }

    .contact-links {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .email {
      font-size: clamp(20px, 2.5vw, 38px);
      font-weight: 500;
      letter-spacing: -0.04em;
      position: relative;
    }

    .email::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -7px;
      width: 100%;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.5s ease;
    }

    .email:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .phone {
      font-size: 15px;
      font-weight: 500;
      letter-spacing: -0.01em;
      color: rgba(245, 242, 234, 0.65);
      position: relative;
      transition: color 0.3s ease;
    }

    .phone::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.5s ease;
    }

    .phone:hover {
      color: var(--bg);
    }

    .phone:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .socials {
      display: flex;
      gap: 24px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .socials a {
      position: relative;
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }

    .socials a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -7px;
      width: 100%;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.5s ease;
    }

    .socials a:hover {
      opacity: 1;
    }

    .socials a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    /* ------------------------------
       LANDING
    ------------------------------ */

    .landing {
      min-height: 80svh;
      padding: var(--pad);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: clamp(56px, 8vw, 100px);
      text-align: center;
      background: var(--text);
      color: var(--bg);
    }

    /* Landing as a standalone page, no nav to clear. */
    .landing.landing--fullscreen {
      flex: 1;
    }

    .landing-logo {
      height: clamp(48px, 7vw, 84px);
      width: auto;
      color: var(--accent);
    }

    .landing-main {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
    }

    .landing-links {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      justify-content: center;
      gap: clamp(12px, 2vw, 28px);
    }

    .landing-link {
      font-size: clamp(36px, 7vw, 96px);
      line-height: 0.95;
      letter-spacing: -0.04em;
      font-weight: 700;
      text-transform: uppercase;
      transition: color 0.3s ease;
    }

    .landing-link:hover,
    .landing-link:focus-visible {
      color: var(--accent);
    }

    .landing-divider {
      font-size: clamp(22px, 4vw, 56px);
      font-weight: 400;
      color: rgba(245, 242, 234, 0.35);
    }

    .landing-email {
      font-size: 15px;
      font-weight: 500;
      letter-spacing: -0.01em;
      color: rgba(245, 242, 234, 0.65);
      position: relative;
      transition: color 0.3s ease;
    }

    .landing-email::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.5s ease;
    }

    .landing-email:hover {
      color: var(--bg);
    }

    .landing-email:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .not-found {
      min-height: 100svh;
      padding-top: 130px;
      padding-left: var(--pad);
      padding-right: var(--pad);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      text-align: center;
      background: var(--text);
      color: var(--bg);
    }

    .not-found-code {
      font-size: clamp(90px, 20vw, 220px);
      line-height: 0.9;
      font-weight: 700;
      letter-spacing: -0.05em;
      color: var(--accent);
    }

    .not-found-heading {
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .not-found-copy {
      max-width: 440px;
      color: rgba(245, 242, 234, 0.7);
      font-size: 16px;
      line-height: 1.5;
    }

    .not-found-cta {
      margin-top: 10px;
      padding: 13px 26px;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--accent);
      background: var(--white);
      border-radius: var(--radius);
      transition: opacity 0.3s ease;
    }

    .not-found-cta:hover {
      opacity: 0.85;
    }

    /* ------------------------------
       MOBILE MENU (full-screen overlay)
    ------------------------------ */

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: var(--text);
      color: var(--bg);
      flex-direction: column;
      justify-content: space-between;
      padding: 110px var(--pad) 40px;
      transform: translateY(-100%);
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-menu.is-open {
      transform: translateY(0);
    }

    .mobile-menu-logo {
      position: absolute;
      top: 18px;
      left: var(--pad);
      display: block;
    }

    .mobile-menu-logo svg {
      height: 22px;
      width: auto;
      display: block;
      color: var(--accent);
    }

    .mobile-menu-close {
      position: absolute;
      top: 18px;
      right: var(--pad);
      width: 30px;
      height: 30px;
      background: none;
      border: none;
      padding: 0;
      margin: 0;
      cursor: pointer;
      color: var(--bg);
    }

    .mobile-menu-close-bar {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
    }

    .mobile-menu-close-bar:first-child {
      transform: translateY(-50%) rotate(45deg);
    }

    .mobile-menu-close-bar:last-child {
      transform: translateY(-50%) rotate(-45deg);
    }

    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .mobile-menu-links a {
      font-size: clamp(34px, 10vw, 52px);
      font-weight: 700;
      letter-spacing: -0.05em;
      text-transform: uppercase;
      color: var(--bg);
      transition: color 0.25s ease;
    }

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

    body.menu-open {
      overflow: hidden;
    }

    /* ------------------------------
       FOOTER
    ------------------------------ */

    footer {
      padding: 18px var(--pad);
      background: var(--text);
      color: rgba(243,242,238,0.45);
      border-top: 1px solid rgba(243,242,238,0.15);
      display: flex;
      justify-content: space-between;
      font-size: 9px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* ------------------------------
       REVEAL ANIMATION
    ------------------------------ */

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ------------------------------
       MOBILE
    ------------------------------ */

    @media (max-width: 700px) {
      .nav {
        padding-top: 18px;
        align-items: center;
      }

      .nav-links {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      .mobile-menu {
        display: flex;
      }

      .nav-role {
        display: none;
      }

      .hero {
        padding-top: 105px;
      }

      .hero-heading {
        font-size: clamp(45px, 14vw, 90px);
      }

      .showreel {
        aspect-ratio: 4 / 5;
        min-height: 0;
      }

      .about {
        padding-top: 130px;
        padding-bottom: 130px;
      }

      .about-grid {
        display: block;
      }

      .about-photo {
        margin-bottom: 40px;
      }

      .section-label {
        margin-bottom: 40px;
      }

      .about-copy {
        margin-top: 50px;
      }

      .capabilities {
        margin-top: 70px;
      }

      .capability {
        grid-template-columns: 1fr;
        gap: 7px;
      }

      .feature-section {
        padding-top: 90px;
        padding-bottom: 90px;
      }

      .feature-section.case-studies {
        padding-top: 50px;
      }

      .feature-section.is-page-top {
        padding-top: 105px;
      }

      .not-found {
        padding-top: 105px;
      }

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

      .case-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .testimonial-slide,
      .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 64px;
      }

      .testimonial {
        gap: 28px;
      }

      .testimonial p {
        line-height: 1.5;
      }

      .testimonial-dots {
        margin-top: 56px;
      }

      .feature-image {
        aspect-ratio: 16 / 9;
        object-fit: contain;
      }

      #coach-testimonials .testimonial-slide .testimonial {
        max-width: none;
      }

      .contact {
        min-height: 85svh;
      }

      .contact.contact--fullscreen {
        padding-top: 105px;
      }

      .landing {
        min-height: 85svh;
      }

      .contact-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      footer {
        gap: 15px;
        flex-direction: column;
      }
    }

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

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
