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

  :root {
    --bg: #120f10;
    --bg-soft: #1a1513;
    --panel: rgba(255, 255, 255, 0.04);
    --panel-strong: rgba(255, 255, 255, 0.08);
    --line: rgba(255, 255, 255, 0.1);
    --text: #f2f2ec;
    --muted: rgba(242, 242, 236, 0.68);
    --muted-strong: rgba(242, 242, 236, 0.84);
    --accent: #d8ef6a;
    --accent-soft: rgba(216, 239, 106, 0.15);
    --radius-lg: 34px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
    --container: min(1320px, calc(100vw - 2.4rem));
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --sticky-offset: 110px;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--sticky-offset) - clamp(34px, 6vh, 58px));
    overflow-x: hidden;
    background: #120f10;
    min-height: 100%;
  }

  body {
    font-family: 'Manrope', sans-serif;
    background-color: #120f10;
    background: linear-gradient(180deg, #171311 0%, #14100f 48%, #120f10 100%);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 1200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2'/%3E%3C/filter%3E%3Crect width='1200' height='1200' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: soft-light;
    opacity: 0.026;
  }

  body::after {
    content: none;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; }
  section[id] { scroll-margin-top: calc(var(--sticky-offset) - clamp(34px, 6vh, 58px)); }

  .container {
    width: var(--container);
    margin: 0 auto;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    isolation: isolate;
    transform: translate3d(0, 0, 0);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .site-nav.nav-hidden {
    transform: translate3d(0, calc(-100% - 0.5rem), 0);
  }

  .site-nav.menu-open {
    transform: translate3d(0, 0, 0);
  }

  .site-nav::before,
  .site-nav::after {
    content: '';
    position: absolute;
    pointer-events: none;
    opacity: 0;
  }

  .site-nav::before {
    inset: 0;
    background: rgba(10, 10, 10, 0.54);
    backdrop-filter: blur(16px) saturate(118%);
    -webkit-backdrop-filter: blur(16px) saturate(118%);
    transition: opacity 0.35s ease, background 0.35s ease;
    z-index: 0;
  }

  .site-nav::after {
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
    transition: opacity 0.22s ease, background 0.22s ease;
    z-index: 0;
  }

  .site-nav.scrolled::before,
  .site-nav.scrolled::after {
    opacity: 1;
  }

  .nav-inner {
    width: min(1420px, calc(100vw - 2rem));
    margin: 0 auto;
    min-height: 78px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.9rem;
  }

  .nav-brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }

  .nav-brand img {
    width: clamp(142px, 14.2vw, 224px);
    height: auto;
    mix-blend-mode: screen;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
  }

  .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: nowrap;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
  }

  .nav-links a,
  .nav-pill {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.73rem;
    color: var(--muted);
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  }

  .nav-links a:hover,
  .nav-pill:hover {
    color: var(--text);
  }

  .social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .social-icons.nav-socials {
    margin-left: auto;
  }

  .social-icon {
    width: 2.62rem;
    height: 2.62rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  }

  .social-icon svg {
    width: 0.94rem;
    height: 0.94rem;
    display: block;
    fill: currentColor;
  }

  .social-icon:hover {
    color: var(--text);
    border-color: rgba(216, 239, 106, 0.35);
    background: rgba(216, 239, 106, 0.08);
    transform: translateY(-1px);
  }

  .nav-pill {
    margin-left: 0.3rem;
    padding: 0.78rem 1.08rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-pill:hover {
    border-color: rgba(216, 239, 106, 0.5);
    background: rgba(216, 239, 106, 0.08);
    transform: translateY(-1px);
  }

  .nav-menu-toggle,
  .nav-mobile-spacer,
  .nav-mobile-panel {
    display: none;
  }

  .nav-menu-toggle {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 0.22rem;
    flex-direction: column;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  }

  .nav-menu-toggle:hover {
    border-color: rgba(216, 239, 106, 0.35);
    background: rgba(216, 239, 106, 0.08);
    transform: translateY(-1px);
  }

  .nav-menu-toggle:focus-visible,
  .nav-mobile-links a:focus-visible,
  .nav-mobile-pill:focus-visible {
    outline: 2px solid rgba(216, 239, 106, 0.75);
    outline-offset: 2px;
  }

  .nav-menu-toggle-bar {
    width: 1rem;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.32s var(--ease), opacity 0.24s ease;
  }

  .site-nav.menu-open .nav-menu-toggle-bar:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .site-nav.menu-open .nav-menu-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-nav.menu-open .nav-menu-toggle-bar:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .nav-mobile-panel {
    position: absolute;
    top: calc(100% + 0.42rem);
    left: 50%;
    width: min(calc(100vw - 1rem), 34rem);
    transform: translate3d(-50%, -12px, 0) scale(0.985);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s ease;
    z-index: 2;
  }

  .site-nav.menu-open .nav-mobile-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  .nav-mobile-panel-inner {
    padding: 1rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
      linear-gradient(180deg, rgba(17, 17, 18, 0.96) 0%, rgba(12, 12, 13, 0.94) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 68px rgba(0, 0, 0, 0.44);
  }

  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .site-nav::before {
      background: rgba(10, 10, 10, 0.74);
    }

    .nav-mobile-panel-inner {
      background: rgba(12, 12, 13, 0.97);
    }
  }

  .nav-mobile-links {
    list-style: none;
    display: grid;
    gap: 0.28rem;
  }

  .nav-mobile-links a,
  .nav-mobile-pill {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-size: 0.74rem;
  }

  .nav-mobile-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    color: rgba(242, 242, 236, 0.88);
    background: rgba(255, 255, 255, 0.015);
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  }

  .nav-mobile-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-mobile-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.3rem;
    margin-top: 0.75rem;
    padding: 0.92rem 1rem;
    border-radius: 999px;
    color: var(--text);
    border: 1px solid rgba(216, 239, 106, 0.3);
    background: rgba(216, 239, 106, 0.08);
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  }

  .nav-mobile-pill:hover {
    border-color: rgba(216, 239, 106, 0.48);
    background: rgba(216, 239, 106, 0.14);
    transform: translateY(-1px);
  }

  .hero {
    --hero-base: #0d0d0f;
    position: relative;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 7.8rem 0 3rem;
    overflow: hidden;
    isolation: isolate;
  }

  .hero::after {
    content: none;
  }

  .hero-backdrop,
  .hero-glow {
    position: absolute;
    inset: 0;
    z-index: -2;
  }

  .hero-backdrop {
    background: linear-gradient(180deg, rgba(13, 13, 15, 0.99) 0%, rgba(18, 15, 16, 0.94) 48%, rgba(18, 15, 16, 0.46) 78%, rgba(18, 15, 16, 0.08) 92%, rgba(18, 15, 16, 0) 100%);
  }

  .hero-glow {
    background: none;
    z-index: -1;
  }

  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
    width: var(--container);
    margin: 0 auto;
    z-index: 1;
  }

  .hero-main {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
    gap: 0;
    width: 100%;
  }

  .hero-eyebrow,
  .partner-title {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.72rem;
    line-height: 1;
    font-weight: 500;
  }

  .hero-eyebrow {
    margin-bottom: 1.05rem;
  }

  .hero-stage {
    position: relative;
    width: 100%;
    min-height: clamp(380px, 44vw, 620px);
    border-radius: clamp(28px, 3vw, 42px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow);
    isolation: isolate;
  }

  .hero-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.03) 0%, rgba(5, 5, 5, 0.12) 42%, rgba(5, 5, 5, 0.34) 66%, rgba(5, 5, 5, 0.74) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.032) 0%, rgba(255, 255, 255, 0.008) 18%, transparent 40%);
    opacity: 0.24;
    z-index: 1;
    pointer-events: none;
  }

  .hero-stage-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 68%, rgba(0, 0, 0, 0.94) 80%, rgba(0, 0, 0, 0.42) 92%, rgba(0, 0, 0, 0.16) 100%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 68%, rgba(0, 0, 0, 0.94) 80%, rgba(0, 0, 0, 0.42) 92%, rgba(0, 0, 0, 0.16) 100%);
  }

  .hero-stage-video {
    filter: grayscale(0.2) contrast(1.08) brightness(0.58);
    transform: scale(1.015);
  }

  .hero-stage-content {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.2rem, 2.2vw, 1.8rem);
    pointer-events: none;
  }

  .hero-stage-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 1.6rem 0 2.6rem;
  }

  .hero-stage-logo {
    width: min(980px, 92%);
    height: auto;
    mix-blend-mode: screen;
    filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.48));
  }

  @media (min-width: 861px) {
    .site-nav::before,
    .site-nav::after {
      opacity: 1;
    }

    .site-nav::before {
      background: rgba(10, 10, 10, 0.44);
    }

    .site-nav::after {
      background: rgba(255, 255, 255, 0.035);
    }

    .hero {
      padding-top: clamp(5rem, 7vw, 6.1rem);
      padding-bottom: clamp(3rem, 4.8vw, 4.2rem);
    }

    .hero-grid {
      width: 100%;
      gap: 0.85rem;
    }

    .hero-eyebrow {
      position: relative;
      z-index: 3;
      margin-bottom: 0.75rem;
    }

    .hero-stage {
      width: 100vw;
      min-height: clamp(500px, 63vw, 860px);
      margin-top: calc(-1 * clamp(3.7rem, 5vw, 4.7rem));
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      border-top: 0;
      border-left: 0;
      border-right: 0;
      border-radius: 0 0 clamp(30px, 3vw, 44px) clamp(30px, 3vw, 44px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .hero-stage::before {
      background: linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.04) 46%, rgba(5, 5, 5, 0.08) 74%, rgba(5, 5, 5, 0.12) 100%);
    }

    .hero-stage::after {
      opacity: 0.1;
    }

    .hero-stage-media {
      -webkit-mask-image: none;
      mask-image: none;
    }

    .hero-stage-content {
      padding: clamp(1.5rem, 2.4vw, 2rem);
    }

    .hero-stage-logo {
      width: min(1100px, 86%);
    }

    .partner-shell {
      width: min(62rem, 100%);
      margin: 0 auto;
    }

    .partner-title {
      color: var(--accent);
    }

    .partner-head {
      margin-bottom: 0.6rem;
    }

    .partner-wall {
      --partner-marquee-gap: 1.45rem;
      width: min(45.5rem, 100%);
      margin-inline: auto;
      margin-top: 0;
      gap: var(--partner-marquee-gap);
    }

    .partner-card {
      max-width: 8.1rem;
      justify-self: center;
      border-color: rgba(255, 255, 255, 0.14);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }

    .partner-card.racechip .partner-logo {
      transform: scale(1.14);
    }

    .partner-card.la-nativa .partner-logo {
      transform: scale(1.12);
    }

    .partner-card.physi .partner-logo {
      transform: scale(1.1);
    }

    .partner-card:hover {
      border-color: rgba(255, 255, 255, 0.14);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }

  }

  .section-flow {
    padding-top: 0;
  }

  @supports not ((mask-image: linear-gradient(black, transparent)) or (-webkit-mask-image: linear-gradient(black, transparent))) {
    .hero-stage-media,
    .partner-marquee {
      -webkit-mask-image: none;
      mask-image: none;
    }
  }

  /* Scroll-driven headline system for the core story sections. */
  .scroll-focus {
    position: relative;
    min-height: clamp(96svh, 108vh, 128svh);
    min-height: clamp(96dvh, 108vh, 128dvh);
  }

  .scroll-focus-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: var(--sticky-offset);
    min-height: calc(100svh - var(--sticky-offset));
    min-height: calc(100dvh - var(--sticky-offset));
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-block: clamp(0.8rem, 1.8vh, 1.2rem);
  }

  .scroll-focus-shell {
    display: flex;
    width: 100%;
  }

  .scroll-focus[data-align="left"] .scroll-focus-shell {
    justify-content: flex-start;
  }

  .scroll-focus[data-align="right"] .scroll-focus-shell {
    justify-content: flex-end;
  }

  .scroll-focus[data-align="center"] .scroll-focus-shell {
    justify-content: center;
  }

  .scroll-focus-card {
    position: relative;
    width: min(1080px, 100%);
    display: grid;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-origin: center center;
    isolation: isolate;
    transform:
      translate3d(var(--focus-x, 0px), var(--focus-y, 84px), 0)
      scale(var(--focus-scale, 1.9));
    opacity: var(--focus-opacity, 0.56);
  }

  .scroll-focus-card::before {
    content: '';
    width: clamp(78px, 8vw, 124px);
    height: 1px;
    margin-bottom: 0.8rem;
    background: linear-gradient(90deg, var(--tone-divider), var(--tone-divider-fade));
    opacity: calc(0.3 + (var(--focus-progress, 0) * 0.7));
  }

  .scroll-focus-card::after {
    content: none;
  }

  .scroll-focus[data-align="right"] .scroll-focus-card {
    text-align: right;
  }

  .scroll-focus[data-align="right"] .scroll-focus-card::before {
    margin-left: auto;
    background: linear-gradient(270deg, var(--tone-divider), var(--tone-divider-fade));
  }

  .scroll-focus[data-align="center"] .scroll-focus-card {
    text-align: center;
  }

  .scroll-focus[data-align="center"] .scroll-focus-card::before {
    margin-left: auto;
    margin-right: auto;
  }

  .scroll-focus-title {
    font-family: 'Archivo Black', 'Arial Black', 'Impact', sans-serif;
    font-size: clamp(3.5rem, 8.5vw, 8rem);
    line-height: 0.96;
    letter-spacing: -0.066em;
    font-weight: 400;
    text-transform: uppercase;
    text-wrap: balance;
    color: var(--text);
    font-stretch: normal;
  }

  .scroll-focus-title span {
    display: block;
  }

  .scroll-title-line {
    display: block;
  }

  .scroll-focus-title .scroll-title-word {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    gap: var(--word-gap, 0.006em);
    white-space: nowrap;
    isolation: isolate;
    transform:
      translate3d(var(--word-shift-x, 0px), var(--word-shift-y, 0px), 0)
      scale(var(--word-scale, 1));
    transform-origin: left 75%;
    will-change: transform;
  }

  .scroll-focus-title .scroll-title-letter {
    display: inline-block;
    transform:
      translate3d(var(--letter-x, 0px), var(--letter-y, 0px), 0)
      scale(var(--letter-scale, 1))
      rotate(var(--letter-rotate, 0deg));
    transform-origin: left bottom;
    opacity: var(--letter-opacity, 1);
    filter: blur(var(--letter-blur, 0px));
    will-change: transform, opacity, filter;
    text-shadow:
      0 0 calc(var(--letter-glow, 0) * 22px) rgba(216, 239, 106, 0.22),
      0 10px 26px rgba(0, 0, 0, 0.18);
  }

  .scroll-focus-title em {
    font-style: normal;
    color: var(--accent);
  }

  .scroll-focus-copy {
    max-width: 42rem;
    color: color-mix(in srgb, var(--muted-strong) 84%, var(--text) 16%);
    line-height: 1.62;
    font-size: clamp(1rem, 1.34vw, 1.2rem);
    font-weight: 650;
    letter-spacing: -0.018em;
    text-wrap: balance;
  }

  .scroll-focus[data-align="right"] .scroll-focus-copy {
    margin-left: auto;
  }

  .scroll-focus[data-align="center"] .scroll-focus-copy {
    margin-left: auto;
    margin-right: auto;
  }

  @media (min-width: 861px) {
    #services {
      --tone-surface-top: rgba(16, 15, 16, 0.18);
      --tone-surface-bottom: rgba(16, 15, 16, 0.08);
      --tone-surface-hover-top: rgba(16, 15, 16, 0.24);
      --tone-surface-hover-bottom: rgba(16, 15, 16, 0.12);
      --tone-service-overlay-primary: none;
      --tone-service-overlay-secondary: none;
      --tone-service-card-top-shadow: rgba(255, 255, 255, 0);
      --tone-service-card-bottom-shadow: rgba(255, 255, 255, 0);
      --tone-service-image-filter: brightness(0.9) saturate(1.18) contrast(1.06);
      --tone-service-image-hover-filter: brightness(0.96) saturate(1.22) contrast(1.08);
      --tone-hover-glow: rgba(126, 92, 61, 0.18);
    }

    .scroll-focus-sticky {
      align-items: flex-start;
      padding-top: clamp(1.15rem, 2vh, 1.55rem);
      padding-bottom: clamp(0.85rem, 1.5vh, 1.1rem);
    }

    #portfolio .scroll-focus {
      min-height: clamp(62svh, 68vh, 76svh);
      min-height: clamp(62dvh, 68vh, 76dvh);
    }

    .manifesto .scroll-focus {
      min-height: clamp(74svh, 80vh, 88svh);
      min-height: clamp(74dvh, 80vh, 88dvh);
    }

    #services .scroll-focus {
      min-height: clamp(22svh, 26vh, 30svh);
      min-height: clamp(22dvh, 26vh, 30dvh);
    }

    #contact .scroll-focus {
      min-height: clamp(58svh, 64vh, 70svh);
      min-height: clamp(58dvh, 64vh, 70dvh);
    }

    #services .scroll-focus-sticky {
      min-height: auto;
      align-items: flex-start;
      padding-top: clamp(0.28rem, 0.65vh, 0.58rem);
      padding-bottom: 0;
    }

    #contact .scroll-focus-sticky {
      align-items: flex-start;
      padding-top: clamp(0.9rem, 1.35vh, 1.15rem);
      padding-bottom: clamp(0.16rem, 0.55vh, 0.4rem);
    }

    #services .service-row {
      box-shadow: 0 14px 32px rgba(125, 101, 81, 0.12);
    }

    #services .service-row:hover {
      box-shadow: 0 20px 42px rgba(125, 101, 81, 0.18);
    }

    #services .service-visual {
      opacity: calc(0.72 + (var(--service-progress, 0) * 0.2));
    }

    #services .service-row::before {
      opacity: calc(0.04 + (var(--service-progress, 0) * 0.1));
    }

  }

  .section-content {
    position: relative;
    z-index: 2;
    min-width: 0;
  }

  .service-main,
  .frame-copy,
  .frame-meta,
  .about-panel,
  .about-image,
  .contact-intro,
  .contact-card,
  .note,
  .note span {
    min-width: 0;
  }

  .hero-partners {
    width: 100%;
    margin-top: 0;
    padding-top: 0.35rem;
    padding-bottom: 0;
  }

  .partner-shell {
    padding: 0;
  }

  .partner-marquee {
    position: relative;
  }

  .partner-head,
  .partner-wall {
    position: relative;
  }

  .partner-head {
    display: flex;
    justify-content: center;
    margin-bottom: 0.18rem;
  }

  .partner-wall {
    --partner-marquee-gap: 1.1rem;
    margin-top: 0.45rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    gap: var(--partner-marquee-gap);
  }

  .partner-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 0.55rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px) saturate(155%);
    -webkit-backdrop-filter: blur(18px) saturate(155%);
    overflow: hidden;
    isolation: isolate;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  }

  .partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0.02) 62%, transparent 100%);
    opacity: 0.9;
    pointer-events: none;
  }

  .partner-card::after {
    content: '';
    position: absolute;
    inset: auto 12% 10% 12%;
    height: 28%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    opacity: 0.34;
    filter: blur(14px);
    pointer-events: none;
  }

  .partner-card > * {
    position: relative;
    z-index: 1;
  }

  .partner-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: none;
  }

  .partner-card-clone {
    display: none;
  }

  .partner-logo-wrap {
    width: 100%;
    height: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0.4rem 0.55rem;
  }

  .partner-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: saturate(0.98) contrast(1.08);
    transform-origin: center;
  }

  .partner-card.racechip .partner-logo {
    max-width: 300px;
    max-height: 78px;
  }

  .partner-card.la-nativa .partner-logo {
    max-width: 236px;
    max-height: 82px;
  }

  .partner-card.physi .partner-logo {
    max-width: 204px;
    max-height: 102px;
  }

  .partner-card.vasilakis .partner-logo {
    max-width: 168px;
    max-height: 96px;
  }

  .partner-card.fresh-up .partner-logo {
    max-width: 194px;
    max-height: 106px;
  }

  @keyframes partner-marquee-forward {
    from {
      transform: translate3d(calc(-50% - (var(--partner-marquee-gap, 0px) / 2)), 0, 0);
    }

    to {
      transform: translate3d(0, 0, 0);
    }
  }

  .section {
    --text: #f2f2ec;
    --muted: rgba(242, 242, 236, 0.68);
    --muted-strong: rgba(242, 242, 236, 0.84);
    --section-block-padding: 5rem;
    --section-overlap: clamp(1.65rem, 3.2vw, 2.7rem);
    --section-radius: clamp(32px, 4vw, 56px);
    --section-top-radius: var(--section-radius);
    --section-bottom-radius: 0px;
    --tone-base: #111214;
    --tone-ambient-a: rgba(216, 239, 106, 0.05);
    --tone-ambient-b: rgba(255, 255, 255, 0.04);
    --section-surface-top: rgba(255, 255, 255, 0.024);
    --section-surface-bottom: rgba(255, 255, 255, 0.01);
    --section-mark-color: rgba(255, 255, 255, 0.038);
    --section-mark-shadow: rgba(0, 0, 0, 0.16);
    --section-overlay-opacity: 0.82;
    --section-overlay-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, transparent 24%, transparent 78%, rgba(0, 0, 0, 0.08) 100%);
    --tone-light-origin: 24% 14%;
    --tone-light-origin-secondary: 82% 76%;
    --tone-vignette: rgba(0, 0, 0, 0.26);
    --tone-panel-border: rgba(255, 255, 255, 0.08);
    --tone-panel-border-soft: rgba(255, 255, 255, 0.09);
    --tone-panel-highlight: rgba(255, 255, 255, 0.08);
    --tone-surface-top: rgba(255, 255, 255, 0.04);
    --tone-surface-bottom: rgba(255, 255, 255, 0.02);
    --tone-surface-hover-top: rgba(255, 255, 255, 0.055);
    --tone-surface-hover-bottom: rgba(255, 255, 255, 0.028);
    --tone-divider: rgba(216, 239, 106, 0.82);
    --tone-divider-fade: rgba(216, 239, 106, 0);
    --tone-chip-border: rgba(216, 239, 106, 0.28);
    --tone-chip-bg: rgba(216, 239, 106, 0.07);
    --tone-chip-text: var(--accent);
    --tone-hover-glow: rgba(216, 239, 106, 0.14);
    --tone-overlay-top: rgba(5, 5, 5, 0.18);
    --tone-overlay-bottom: rgba(5, 5, 5, 0.82);
    --tone-image-filter: brightness(0.74) saturate(0.92);
    --tone-image-hover-filter: brightness(0.5) saturate(1.05);
    --tone-portrait-filter: brightness(0.82) saturate(0.88);
    --tone-section-line: rgba(255, 255, 255, 0.08);
    --tone-input-focus: rgba(216, 239, 106, 0.5);
    --tone-input-bg: rgba(216, 239, 106, 0.05);
    --tone-submit-shadow: rgba(216, 239, 106, 0.2);
    --tone-panel-fill: rgba(255, 255, 255, 0.02);
    --tone-service-overlay-primary: linear-gradient(90deg, rgba(10, 10, 10, 0.96) 0%, rgba(10, 10, 10, 0.92) 24%, rgba(10, 10, 10, 0.76) 48%, rgba(10, 10, 10, 0.42) 72%, rgba(10, 10, 10, 0.2) 100%);
    --tone-service-overlay-secondary: linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.34));
    --tone-service-card-top-shadow: rgba(5, 5, 5, 0.04);
    --tone-service-card-bottom-shadow: rgba(5, 5, 5, 0.22);
    --tone-service-image-filter: brightness(0.52) saturate(0.94);
    --tone-service-image-hover-filter: brightness(0.62) saturate(1);
    --tone-input-placeholder: rgba(242, 242, 236, 0.38);
    --tone-select-option-bg: #161616;
    padding: calc(var(--section-block-padding) + var(--section-overlap)) 0 var(--section-block-padding);
    margin-top: calc(-1 * var(--section-overlap));
    position: relative;
    overflow: visible;
    isolation: isolate;
    z-index: 1;
    color: var(--text);
    border-radius: var(--section-top-radius) var(--section-top-radius) var(--section-bottom-radius) var(--section-bottom-radius);
    box-shadow:
      0 0 0 1px color-mix(in srgb, var(--tone-panel-border-soft) 52%, transparent),
      0 18px 36px rgba(0, 0, 0, 0.08);
    background:
      linear-gradient(180deg, var(--section-surface-top) 0%, rgba(255, 255, 255, 0.006) 26%, transparent 100%),
      linear-gradient(180deg, transparent 0%, var(--tone-vignette) 100%),
      var(--tone-base);
  }

  .section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--section-overlay-bg);
    opacity: var(--section-overlay-opacity);
    pointer-events: none;
    z-index: 0;
  }

  .section::after {
    content: attr(data-section-mark);
    position: absolute;
    top: clamp(1.4rem, 4vw, 3.3rem);
    right: clamp(0.9rem, 4.6vw, 3.6rem);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(6.2rem, 17vw, 16rem);
    line-height: 0.82;
    letter-spacing: 0.04em;
    color: var(--section-mark-color);
    text-shadow: none;
    white-space: nowrap;
    opacity: 0.96;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  .section > * {
    position: relative;
    z-index: 1;
  }

  .manifesto {
    --tone-base: #120f10;
    --section-surface-top: transparent;
    --section-surface-bottom: transparent;
    --section-mark-color: rgba(240, 223, 209, 0.036);
    --tone-ambient-a: rgba(216, 239, 106, 0);
    --tone-ambient-b: rgba(255, 255, 255, 0);
    --tone-light-origin: 50% 14%;
    --tone-light-origin-secondary: 78% 74%;
    --tone-vignette: transparent;
    --section-overlay-opacity: 0;
    --section-overlay-bg: none;
    background: #120f10;
  }

  .manifesto::before {
    opacity: 0;
  }

  #services {
    --text: #171311;
    --muted: rgba(23, 19, 17, 0.7);
    --muted-strong: rgba(23, 19, 17, 0.84);
    --tone-base: #f7f2eb;
    --section-surface-top: rgba(255, 255, 255, 0.92);
    --section-surface-bottom: rgba(239, 232, 223, 0.84);
    --section-mark-color: rgba(26, 20, 18, 0.07);
    --section-mark-shadow: rgba(255, 255, 255, 0.4);
    --tone-ambient-a: rgba(214, 184, 153, 0.13);
    --tone-ambient-b: rgba(47, 34, 27, 0.028);
    --tone-light-origin: 18% 14%;
    --tone-light-origin-secondary: 82% 72%;
    --tone-vignette: rgba(154, 132, 112, 0.07);
    --tone-panel-border: rgba(25, 19, 17, 0.09);
    --tone-panel-border-soft: rgba(25, 19, 17, 0.11);
    --tone-panel-highlight: rgba(255, 255, 255, 0.76);
    --tone-surface-top: rgba(16, 15, 16, 0.2);
    --tone-surface-bottom: rgba(16, 15, 16, 0.1);
    --tone-surface-hover-top: rgba(16, 15, 16, 0.24);
    --tone-surface-hover-bottom: rgba(16, 15, 16, 0.12);
    --tone-divider: rgba(91, 73, 55, 0.28);
    --tone-divider-fade: rgba(91, 73, 55, 0);
    --tone-chip-border: rgba(255, 255, 255, 0.24);
    --tone-chip-bg: rgba(14, 14, 16, 0.28);
    --tone-chip-text: rgba(255, 255, 255, 0.94);
    --tone-hover-glow: rgba(121, 90, 61, 0.14);
    --tone-section-line: rgba(36, 27, 23, 0.1);
    --tone-overlay-top: rgba(255, 255, 255, 0.14);
    --tone-overlay-bottom: rgba(237, 228, 219, 0.68);
    --tone-input-focus: rgba(91, 73, 55, 0.3);
    --tone-input-bg: rgba(255, 255, 255, 0.74);
    --tone-panel-fill: rgba(255, 255, 255, 0.58);
    --tone-service-overlay-primary: none;
    --tone-service-overlay-secondary: none;
    --tone-service-card-top-shadow: rgba(255, 255, 255, 0);
    --tone-service-card-bottom-shadow: rgba(255, 255, 255, 0);
    --tone-service-image-filter: brightness(0.9) saturate(1.14) contrast(1.04);
    --tone-service-image-hover-filter: brightness(0.95) saturate(1.2) contrast(1.08);
    --tone-input-placeholder: rgba(23, 19, 17, 0.36);
    --tone-select-option-bg: #f3ece4;
    --section-overlay-opacity: 0;
    background: linear-gradient(
      180deg,
      #fbf7f2 0%,
      #f1f0ec 18%,
      #c2c7c9 42%,
      #595f64 66%,
      #181a1d 88%,
      #0a0b0d 100%
    );
  }

  #services::before {
    opacity: 0;
  }

  #portfolio {
    --tone-base: #1a1b20;
    --section-surface-top: transparent;
    --section-surface-bottom: transparent;
    --section-mark-color: rgba(224, 231, 237, 0.034);
    --tone-ambient-a: rgba(190, 122, 88, 0);
    --tone-ambient-b: rgba(255, 225, 192, 0);
    --tone-light-origin: 76% 16%;
    --tone-light-origin-secondary: 18% 78%;
    --tone-vignette: transparent;
    --tone-panel-highlight: rgba(224, 232, 238, 0.05);
    --tone-divider: rgba(192, 206, 218, 0.58);
    --tone-divider-fade: rgba(192, 206, 218, 0);
    --tone-chip-border: rgba(183, 198, 208, 0.28);
    --tone-chip-bg: rgba(126, 142, 156, 0.08);
    --tone-chip-text: rgba(230, 236, 241, 0.9);
    --tone-hover-glow: rgba(126, 146, 164, 0.14);
    --tone-section-line: rgba(201, 210, 219, 0.1);
    --tone-overlay-top: rgba(16, 17, 22, 0.06);
    --tone-overlay-bottom: rgba(20, 21, 27, 0.58);
    --tone-image-filter: brightness(0.72) saturate(0.98) sepia(0.05);
    --tone-image-hover-filter: brightness(0.5) saturate(1.1) sepia(0.08);
    --section-overlay-opacity: 0;
    --section-overlay-bg: none;
    background: #1a1b20;
  }

  #portfolio::before {
    opacity: 0;
  }

  #about {
    --text: #16120f;
    --muted: rgba(22, 18, 15, 0.7);
    --muted-strong: rgba(22, 18, 15, 0.84);
    --tone-base: #fbf7f2;
    --section-surface-top: rgba(255, 255, 255, 0.94);
    --section-surface-bottom: rgba(241, 234, 225, 0.82);
    --section-mark-color: rgba(24, 18, 16, 0.066);
    --section-mark-shadow: rgba(255, 255, 255, 0.44);
    --tone-ambient-a: rgba(207, 177, 151, 0.11);
    --tone-ambient-b: rgba(41, 30, 25, 0.022);
    --tone-light-origin: 24% 14%;
    --tone-light-origin-secondary: 74% 70%;
    --tone-vignette: rgba(148, 124, 105, 0.08);
    --tone-panel-border: rgba(25, 19, 17, 0.09);
    --tone-panel-border-soft: rgba(25, 19, 17, 0.11);
    --tone-panel-highlight: rgba(255, 255, 255, 0.8);
    --tone-surface-top: rgba(255, 255, 255, 0.88);
    --tone-surface-bottom: rgba(243, 236, 228, 0.76);
    --tone-surface-hover-top: rgba(255, 255, 255, 0.94);
    --tone-surface-hover-bottom: rgba(238, 230, 221, 0.84);
    --tone-divider: rgba(98, 79, 61, 0.24);
    --tone-divider-fade: rgba(98, 79, 61, 0);
    --tone-chip-border: rgba(92, 75, 59, 0.18);
    --tone-chip-bg: rgba(255, 255, 255, 0.76);
    --tone-chip-text: rgba(60, 49, 39, 0.82);
    --tone-hover-glow: rgba(150, 117, 88, 0.12);
    --tone-section-line: rgba(36, 27, 23, 0.1);
    --tone-overlay-top: rgba(255, 255, 255, 0.14);
    --tone-overlay-bottom: rgba(238, 230, 221, 0.72);
    --tone-panel-fill: rgba(255, 255, 255, 0.64);
    --tone-portrait-filter: brightness(0.94) saturate(0.9) sepia(0.04);
    --section-overlay-opacity: 0.34;
    --section-overlay-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 30%, transparent 84%, rgba(170, 143, 121, 0.05) 100%);
  }

  #contact {
    --tone-base: #18171a;
    --section-surface-top: transparent;
    --section-surface-bottom: transparent;
    --section-mark-color: rgba(224, 231, 237, 0.038);
    --tone-ambient-a: rgba(134, 151, 166, 0);
    --tone-ambient-b: rgba(214, 197, 179, 0);
    --tone-light-origin: 22% 16%;
    --tone-light-origin-secondary: 80% 72%;
    --tone-panel-highlight: rgba(224, 232, 238, 0.055);
    --tone-divider: rgba(192, 206, 218, 0.58);
    --tone-divider-fade: rgba(192, 206, 218, 0);
    --tone-chip-border: rgba(183, 198, 208, 0.24);
    --tone-chip-bg: rgba(126, 142, 156, 0.08);
    --tone-chip-text: rgba(230, 236, 241, 0.9);
    --tone-hover-glow: rgba(126, 146, 164, 0.14);
    --tone-section-line: rgba(201, 210, 219, 0.1);
    --tone-input-focus: rgba(183, 198, 208, 0.4);
    --tone-input-bg: rgba(126, 142, 156, 0.07);
    --tone-submit-shadow: rgba(183, 198, 208, 0.16);
    --tone-vignette: transparent;
    --section-overlay-opacity: 0;
    --section-overlay-bg: none;
    background: #18171a;
  }

  #contact::before {
    opacity: 0;
  }

  .section-kicker {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.82rem;
    margin-bottom: 0.9rem;
  }

  .service-list {
    display: grid;
    gap: 1rem;
  }

  .service-row {
    position: relative;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 220px;
    gap: 1.5rem;
    align-items: start;
    padding: 1.6rem 1.5rem;
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, var(--tone-surface-top), var(--tone-surface-bottom));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, opacity;
    transform:
      perspective(1400px)
      translate3d(0, var(--service-y, 0px), 0)
      rotateX(var(--service-rotate-x, 0deg))
      rotateZ(var(--service-rotate-z, 0deg))
      scale(var(--service-scale, 1));
    opacity: var(--service-opacity, 0.58);
    transition: border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  }

  .service-row:hover {
    background: linear-gradient(180deg, var(--tone-surface-hover-top), var(--tone-surface-hover-bottom));
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
  }

  .service-visual {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    opacity: calc(0.82 + (var(--service-progress, 0) * 0.18));
  }

  .service-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--tone-service-overlay-primary), var(--tone-service-overlay-secondary);
    z-index: 1;
  }

  .service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--service-image-position, center);
    filter: var(--tone-service-image-filter);
    transform: scale(1.08);
    transform-origin: center;
    transition: transform 0.7s var(--ease), filter 0.7s var(--ease), opacity 0.7s var(--ease);
    opacity: 1;
  }

  .service-row:hover .service-visual img {
    transform: scale(1.13);
    filter: var(--tone-service-image-hover-filter);
    opacity: 1;
  }

  .service-row::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    opacity: 1;
    pointer-events: none;
    z-index: 1;
  }

  .service-row > :not(.service-visual) {
    position: relative;
    z-index: 2;
  }

  .service-row:nth-child(odd) {
    --service-rotate-z-base: -2.8deg;
  }

  .service-row:nth-child(even) {
    --service-rotate-z-base: 2.8deg;
  }

  .service-index {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 0.9;
    color: rgba(255, 255, 255, 0.38);
  }

  .service-main h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 0.95;
    letter-spacing: 0.06em;
    font-weight: 400;
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
  }

  .service-main p {
    color: rgba(18, 15, 13, 0.9);
    line-height: 1.85;
    max-width: 46rem;
    text-shadow: none;
  }

  .service-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    align-self: start;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--tone-chip-border);
    background: var(--tone-chip-bg);
    color: var(--tone-chip-text);
    backdrop-filter: blur(12px) saturate(135%);
    -webkit-backdrop-filter: blur(12px) saturate(135%);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  }

  .service-tag:hover {
    color: rgba(255, 255, 255, 0.98);
    border-color: rgba(216, 239, 106, 0.35);
    background: rgba(216, 239, 106, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
  }

  .service-tag:focus-visible {
    outline: 2px solid rgba(216, 239, 106, 0.75);
    outline-offset: 2px;
  }

  .service-showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(18.5rem, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(1rem, 2vw, 1.6rem);
    min-height: clamp(34rem, 52vw, 46rem);
    padding: clamp(1rem, 2vw, 1.35rem);
    border-radius: clamp(28px, 4vw, 52px);
    overflow: visible;
    isolation: isolate;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .service-showcase-panel,
  .service-showcase-stage {
    position: relative;
    z-index: 1;
  }

  .service-showcase-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    gap: 0.66rem;
    padding: clamp(1rem, 2.2vw, 2rem);
    min-width: 0;
    border-radius: clamp(22px, 2.8vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 10, 10, 0.26);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(118%);
    -webkit-backdrop-filter: blur(16px) saturate(118%);
  }

  .service-showcase-kicker {
    margin: 0 0 0.18rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .service-choice {
    appearance: none;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.78rem;
    padding: 0.78rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.66);
    text-align: left;
    cursor: pointer;
    transition: transform 0.34s var(--ease), background 0.34s var(--ease), color 0.34s var(--ease), border-color 0.34s var(--ease), box-shadow 0.34s var(--ease), opacity 0.34s var(--ease);
  }

  .service-choice:hover,
  .service-choice:focus-visible,
  .service-choice.is-active {
    transform: translateX(0.22rem);
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(30, 26, 22, 0.94);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    opacity: 1;
  }

  .service-choice:focus-visible {
    outline: 2px solid rgba(216, 239, 106, 0.85);
    outline-offset: 3px;
  }

  .service-choice-index {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.28rem;
    letter-spacing: 0.1em;
    color: currentColor;
    opacity: 0.72;
  }

  .service-choice-copy {
    display: grid;
    gap: 0.16rem;
    min-width: 0;
  }

  .service-choice-title {
    font-size: 1.02rem;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 800;
  }

  .service-choice-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.84rem;
    line-height: 1.35;
    color: currentColor;
    opacity: 0.58;
  }

  .service-showcase-stage {
    min-height: clamp(30rem, 48vw, 42rem);
    border-radius: clamp(24px, 3.2vw, 42px);
    overflow: hidden;
    background: transparent;
  }

  .service-stack {
    position: absolute;
    inset: 0;
    overflow: hidden;
    perspective: 1600px;
  }

  .service-showcase-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(70%, 38rem);
    height: min(78%, 34rem);
    border-radius: clamp(22px, 2.8vw, 36px);
    overflow: hidden;
    isolation: isolate;
    opacity: var(--service-card-opacity, 0);
    z-index: var(--service-card-z, 1);
    transform:
      translate(-50%, -50%)
      translate3d(var(--service-card-x, 0%), var(--service-card-y, 0%), 0)
      scale(var(--service-card-scale, 0.72))
      rotate(var(--service-card-rotate, 0deg));
    filter: var(--service-card-filter, grayscale(1) brightness(0.42));
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.32);
    transition: transform 0.76s cubic-bezier(0.22, 0.72, 0.2, 1), opacity 0.5s ease, filter 0.62s ease, box-shadow 0.62s ease;
    pointer-events: none;
  }

  .service-showcase-card.is-active {
    --service-card-x: 0%;
    --service-card-y: 0%;
    --service-card-scale: 1;
    --service-card-rotate: 0deg;
    --service-card-opacity: 1;
    --service-card-z: 8;
    --service-card-filter: brightness(0.94) saturate(1.12) contrast(1.06);
    box-shadow: 0 34px 68px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .service-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--service-showcase-position, center);
    transform: scale(1.04);
  }

  .service-showcase-card picture,
  .frame-card picture,
  .about-image picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .service-showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.1) 42%, rgba(0, 0, 0, 0.62) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .service-card-copy {
    position: absolute;
    left: clamp(1rem, 2vw, 1.55rem);
    right: clamp(1rem, 2vw, 1.55rem);
    bottom: clamp(1rem, 2vw, 1.55rem);
    z-index: 2;
    color: #fff;
  }

  .service-card-chip {
    display: inline-flex;
    margin-bottom: 0.75rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--accent);
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .service-card-copy h3 {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 0.9;
    letter-spacing: 0.06em;
    font-weight: 400;
  }

  .service-card-copy p {
    max-width: 24rem;
    margin: 0.65rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .frame-card,
  .about-panel,
  .about-image,
  .contact-card {
    position: relative;
    isolation: isolate;
  }

  .frame-card::before,
  .about-panel::before,
  .about-image::before,
  .contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid var(--tone-panel-border);
    background: linear-gradient(180deg, color-mix(in srgb, var(--tone-panel-highlight) 34%, transparent), transparent 56%);
    opacity: 0.16;
    pointer-events: none;
    z-index: 0;
  }

  .frame-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.95fr;
    grid-auto-rows: 216px;
    gap: 1rem;
  }

  .portfolio-pager {
    display: none;
  }

  #portfolio .section-content {
    padding-top: 0;
    overflow: visible;
  }

  .frame-card {
    position: relative;
    overflow: visible;
    border-radius: var(--radius-lg);
    border: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
  }

  .frame-card::before {
    content: none;
  }

  .frame-card.portfolio-scroll {
    --portfolio-flow-x: 0px;
    --portfolio-flow-z: 0px;
    --portfolio-flow-scale: 1;
    --portfolio-flow-rotate-y: 0deg;
    --portfolio-flow-order: 1;
    transform:
      perspective(1600px)
      translate3d(calc(var(--portfolio-x, 0px) + var(--portfolio-flow-x, 0px)), var(--portfolio-y, 52px), var(--portfolio-flow-z, 0px))
      rotateY(var(--portfolio-flow-rotate-y, 0deg))
      rotate(var(--portfolio-rotate, 0deg))
      scale(var(--portfolio-scale, 1.18))
      scale(var(--portfolio-flow-scale, 1));
    transform-origin: center center;
    opacity: var(--portfolio-opacity, 0.06);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: none;
    z-index: var(--portfolio-flow-order, 1);
  }

  .frame-card:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--accent) 82%, transparent);
    outline-offset: 3px;
  }

  .frame-card.portfolio-scroll::before {
    content: none;
  }

  .frame-card.large {
    grid-row: span 2;
  }

  .frame-card.tall {
    grid-row: span 2;
  }

  .frame-card.wide {
    grid-column: span 2;
  }

  .frame-card-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border-radius: inherit;
    transform-style: preserve-3d;
    transition: transform 0.72s cubic-bezier(0.22, 0.72, 0.2, 1), box-shadow 0.32s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  }

  .frame-card.is-flipped .frame-card-inner {
    transform: rotateY(180deg);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22), 0 0 0 1px color-mix(in srgb, var(--tone-hover-glow) 30%, transparent);
  }

  .frame-face {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    border: 1px solid var(--tone-panel-border-soft);
    background: var(--tone-base);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .frame-face-front {
    z-index: 1;
  }

  .frame-face-back {
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1rem, 2.2vw, 1.4rem);
    transform: rotateY(180deg);
    background:
      linear-gradient(180deg, rgba(216, 239, 106, 0.08) 0%, rgba(216, 239, 106, 0.02) 16%, rgba(14, 11, 10, 0) 34%),
      linear-gradient(180deg, rgba(18, 13, 11, 0.96) 0%, rgba(11, 9, 8, 0.98) 100%);
    pointer-events: none;
  }

  .frame-card.is-flipped .frame-face-front {
    pointer-events: none;
  }

  .frame-card.is-flipped .frame-face-back {
    pointer-events: auto;
  }

  .frame-face-back::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid color-mix(in srgb, var(--tone-panel-border-soft) 72%, transparent);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 44%);
    opacity: 0.9;
    pointer-events: none;
  }

  .frame-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--tone-image-filter);
    transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  }

  .frame-card:not(.is-flipped):hover img {
    transform: scale(1.06);
    filter: var(--tone-image-hover-filter);
  }

  .frame-card:not(.is-flipped):hover .frame-card-inner {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16), 0 0 0 1px color-mix(in srgb, var(--tone-hover-glow) 36%, transparent);
  }

  .frame-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.4rem;
    background: linear-gradient(180deg, var(--tone-overlay-top), var(--tone-overlay-bottom));
  }

  .frame-back-top {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.9rem;
  }

  .frame-back-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.62rem;
    color: color-mix(in srgb, var(--accent) 72%, var(--text) 28%);
  }

  .frame-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.64rem;
    color: color-mix(in srgb, var(--text) 72%, transparent);
  }

  .frame-copy h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.9;
    letter-spacing: 0.06em;
    font-weight: 400;
  }

  .frame-copy p {
    margin-top: 0.45rem;
    color: color-mix(in srgb, var(--text) 78%, transparent);
    line-height: 1.7;
    max-width: 32ch;
    font-size: 0.92rem;
  }

  .frame-back-copy {
    display: grid;
    gap: 0.6rem;
  }

  .frame-back-copy h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3.3vw, 2.4rem);
    line-height: 0.94;
    letter-spacing: 0.05em;
    font-weight: 400;
  }

  .frame-back-copy p {
    color: color-mix(in srgb, var(--text) 82%, transparent);
    line-height: 1.64;
    font-size: 0.87rem;
    max-width: 34ch;
  }

  .frame-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 6.5rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--tone-chip-border) 88%, transparent);
    background: color-mix(in srgb, var(--tone-chip-bg) 88%, rgba(255, 255, 255, 0.02));
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-size: 0.68rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  }

  .frame-link:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--accent) 42%, transparent);
    background: color-mix(in srgb, var(--accent) 12%, rgba(255, 255, 255, 0.02));
    color: var(--text);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }

  .frame-link:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--accent) 80%, transparent);
    outline-offset: 2px;
  }

  @media (min-width: 861px) {
    .frame-card.wide .frame-face-back,
    .frame-card:not(.large):not(.tall):not(.wide) .frame-face-back {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      grid-template-rows: auto 1fr;
      align-items: start;
      column-gap: clamp(0.8rem, 1.25vw, 1rem);
      row-gap: 0.72rem;
      padding: clamp(1rem, 1.7vw, 1.2rem) clamp(1rem, 1.8vw, 1.24rem) clamp(1.28rem, 2.2vw, 1.5rem);
    }

    .frame-card.wide .frame-back-top,
    .frame-card:not(.large):not(.tall):not(.wide) .frame-back-top {
      display: contents;
    }

    .frame-card.wide .frame-back-copy,
    .frame-card:not(.large):not(.tall):not(.wide) .frame-back-copy {
      grid-column: 1;
      grid-row: 2;
      align-self: start;
      gap: 0.5rem;
    }

    .frame-card.wide .frame-link,
    .frame-card:not(.large):not(.tall):not(.wide) .frame-link {
      grid-column: 2;
      grid-row: 2;
      justify-self: end;
      align-self: end;
      margin: 0 0 0.08rem;
      min-width: 5.85rem;
      padding: 0.72rem 0.92rem;
    }

    .frame-card.wide .frame-back-meta,
    .frame-card:not(.large):not(.tall):not(.wide) .frame-back-meta {
      display: contents;
    }

    .frame-card.wide .frame-back-meta span:first-child,
    .frame-card:not(.large):not(.tall):not(.wide) .frame-back-meta span:first-child {
      grid-column: 1;
      grid-row: 1;
    }

    .frame-card.wide .frame-back-meta span:last-child,
    .frame-card:not(.large):not(.tall):not(.wide) .frame-back-meta span:last-child {
      grid-column: 2;
      grid-row: 1;
      justify-self: end;
      align-self: start;
      text-align: right;
    }

    .frame-card:not(.large):not(.tall):not(.wide) .frame-back-copy h3 {
      font-size: clamp(1.18rem, 1.55vw, 1.54rem);
    }

    .frame-card:not(.large):not(.tall):not(.wide) .frame-back-copy p {
      font-size: 0.79rem;
      line-height: 1.48;
      max-width: 22ch;
    }

    .frame-card.wide .frame-face-back {
      padding-bottom: clamp(1.4rem, 2.4vw, 1.7rem);
    }

    .frame-card.wide .frame-back-copy p {
      max-width: 36ch;
    }
  }

  .about-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0.9rem;
    align-items: stretch;
  }

  #about .section-content {
    padding-top: 0.2rem;
    overflow: clip;
  }

  #services .section-content,
  #contact .section-content {
    padding-top: 0;
  }

  .about-panel,
  .about-image,
  .contact-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--tone-panel-border);
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--tone-panel-highlight) 78%, transparent), var(--tone-panel-fill)),
      var(--tone-panel-fill);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  }

  .about-panel {
    position: relative;
    z-index: 2;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.3rem;
  }

  .about-image {
    position: relative;
    z-index: 1;
  }

  #about .about-panel,
  #about .about-image {
    box-shadow: none;
  }

  #about .about-panel::before,
  #about .about-image::before {
    content: none;
  }

  #about .scroll-focus {
    min-height: clamp(82svh, 90vh, 104svh);
  }

  .quote {
    max-width: 34rem;
  }

  .quote p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4.4vw, 4rem);
    line-height: 0.9;
    letter-spacing: 0.05em;
    text-wrap: balance;
    color: var(--text);
  }

  .quote small {
    display: block;
    margin-top: 1rem;
    color: var(--tone-chip-text);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.72rem;
  }

  .about-text {
    color: var(--muted);
    line-height: 1.78;
    max-width: 40rem;
  }

  .about-text-title {
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    line-height: 0.95;
    letter-spacing: 0.08em;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text);
  }

  .metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .metric {
    padding: 0.92rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--tone-panel-border);
    background: color-mix(in srgb, var(--tone-surface-top) 88%, var(--tone-panel-fill));
  }

  .metric strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 0.9;
    letter-spacing: 0.06em;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    color: var(--text);
  }

  .metric strong.metric-value-accent {
    color: var(--accent);
  }

  .metric span {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
  }

  @media (min-width: 861px) {
    #about .metric {
      padding: clamp(1.05rem, 1.7vw, 1.35rem);
    }

    #about .metric strong {
      font-size: clamp(2.7rem, 4.4vw, 5rem);
      line-height: 0.82;
    }
  }

  .about-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    filter: var(--tone-portrait-filter);
  }

  @media (min-width: 1181px) and (max-height: 1200px) {
    .about-panel {
      padding: 1.45rem;
      gap: 0.95rem;
    }

    .quote p {
      font-size: clamp(1.85rem, 3.3vw, 3.3rem);
    }

    .about-text p {
      font-size: 0.95rem;
      line-height: 1.66;
    }

    .metrics {
      gap: 0.8rem;
    }

    .metric {
      padding: 0.82rem 0.88rem;
    }

    .metric strong {
      font-size: clamp(2.35rem, 3.5vw, 3.8rem);
    }
  }

  .contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
    align-items: start;
  }

  .contact-intro {
    padding-right: 2rem;
  }

  .contact-copy {
    color: var(--muted);
    line-height: 1.9;
    max-width: 32rem;
    margin-top: 1rem;
  }

  .contact-notes {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .note {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
    border-top: 1px solid var(--tone-section-line);
    color: var(--muted);
    font-size: 0.95rem;
  }

  .note strong {
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    min-width: 150px;
  }

  .contact-card {
    padding: clamp(1.6rem, 4vw, 2.4rem);
    display: grid;
    gap: 1rem;
  }

  .about-panel > *,
  .contact-card > * {
    position: relative;
    z-index: 1;
  }

  .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .contact-card input,
  .contact-card textarea,
  .contact-card select {
    width: 100%;
    border: 1px solid var(--tone-panel-border);
    border-radius: 18px;
    background: color-mix(in srgb, var(--tone-surface-top) 88%, var(--tone-panel-fill));
    color: var(--text);
    padding: 1rem 1.1rem;
    font: inherit;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  }

  .contact-card input:focus,
  .contact-card textarea:focus,
  .contact-card select:focus {
    border-color: var(--tone-input-focus);
    background: var(--tone-input-bg);
    transform: translateY(-1px);
  }

  .contact-card input::placeholder,
  .contact-card textarea::placeholder {
    color: var(--tone-input-placeholder);
  }

  .contact-card select option {
    color: var(--text);
    background: var(--tone-select-option-bg);
  }

  .contact-card textarea {
    min-height: 180px;
    resize: vertical;
  }

  .submit-btn {
    border: none;
    border-radius: 999px;
    background: var(--accent);
    color: #0b0b0b;
    padding: 1.05rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 45px var(--tone-submit-shadow);
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 55px var(--tone-hover-glow);
  }

  .site-footer {
    position: relative;
    margin-top: clamp(-1.8rem, -2.2vw, -0.9rem);
    padding: 2.6rem 0 2.1rem;
    overflow: visible;
    isolation: isolate;
    background: #120f10;
  }

  .site-footer::before,
  .site-footer::after {
    content: none;
  }

  .footer-inner {
    width: var(--container);
    margin: 0 auto;
    padding-top: 0.3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
  }

  .footer-top {
    justify-self: start;
  }

  .footer-top-link {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  }

  .footer-top-link svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
  }

  .footer-top-link:hover {
    color: var(--text);
    border-color: rgba(216, 239, 106, 0.35);
    background: rgba(216, 239, 106, 0.08);
    transform: translateY(-2px);
  }

  .footer-center {
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-brand img {
    width: min(240px, 34vw);
    mix-blend-mode: screen;
  }

  .footer-copy {
    color: rgba(242, 242, 236, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
  }

  .footer-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-self: end;
    justify-content: flex-end;
  }

  .footer-links .social-icon {
    width: 3rem;
    height: 3rem;
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
    transition-delay: var(--delay, 0s);
  }

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

  [data-panel-reveal] {
    --panel-reveal-x: 0px;
    --panel-reveal-y: 0px;
    --panel-reveal-scale: 1;
    --panel-reveal-rotate: 0deg;
    --panel-reveal-opacity: 1;
    transform:
      perspective(1400px)
      translate3d(var(--panel-reveal-x), var(--panel-reveal-y), 0)
      rotate(var(--panel-reveal-rotate))
      scale(var(--panel-reveal-scale));
    opacity: var(--panel-reveal-opacity);
    transform-origin: center center;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  @media (max-width: 1180px) {
    .partner-wall {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 1rem;
    }

    .scroll-focus {
      min-height: 106vh;
    }

    .hero-stage {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }

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

    .contact-intro {
      justify-self: start;
      padding-right: 0;
    }

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

    .frame-card.large,
    .frame-card.tall,
    .frame-card.wide {
      grid-column: auto;
      grid-row: auto;
      min-height: 340px;
    }
  }

  @media (max-width: 860px), (orientation: portrait) and (min-width: 861px) and (max-width: 1100px) {
    html,
    body {
      overflow-x: hidden;
    }

    .section::after {
      top: 1rem;
      right: 0.8rem;
      font-size: clamp(5.1rem, 22vw, 8.4rem);
      opacity: 0.56;
    }

    .section::before {
      opacity: 0.68;
    }

    section[id] {
      scroll-margin-top: calc(var(--sticky-offset) - clamp(18px, 4vh, 30px));
    }

    html {
      scroll-padding-top: calc(var(--sticky-offset) - clamp(18px, 4vh, 30px));
    }

    .site-nav,
    .site-nav.scrolled {
      padding-top: env(safe-area-inset-top, 0px);
      padding-left: 0;
      padding-right: 0;
    }

    .site-nav::before,
    .site-nav::after {
      opacity: 1;
      transition: none;
    }

    .site-nav::before {
      background: rgba(5, 5, 5, 0.94);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .site-nav::after {
      background: rgba(255, 255, 255, 0.08);
    }

    .nav-inner {
      width: min(calc(100vw - 1rem), 35rem);
      width: min(calc(100dvw - 1rem), 35rem);
      min-height: auto;
      padding: 0.78rem 0 0.72rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 3rem minmax(0, 1fr) 3rem;
      grid-template-areas: "toggle brand spacer";
      align-items: center;
      gap: 0.7rem;
    }

    .nav-brand {
      grid-area: brand;
      min-width: 0;
      justify-self: center;
    }

    .nav-brand img {
      width: clamp(136px, 34vw, 182px);
    }

    .nav-menu-toggle {
      display: inline-flex;
      grid-area: toggle;
      justify-self: start;
    }

    .nav-mobile-spacer {
      display: block;
      grid-area: spacer;
      width: 3rem;
      height: 3rem;
      justify-self: end;
    }

    .nav-mobile-panel {
      display: block;
      left: 50%;
      right: auto;
      width: min(calc(100vw - 1rem), 33.25rem);
      width: min(calc(100dvw - 1rem), 33.25rem);
      max-width: 33.25rem;
      transform: translate3d(-50%, -12px, 0) scale(0.985);
    }

    .site-nav.menu-open .nav-mobile-panel {
      transform: translate3d(-50%, 0, 0) scale(1);
    }

    .nav-links,
    .social-icons.nav-socials {
      display: none;
    }

    .nav-pill {
      display: none;
    }

    .hero {
      min-height: auto;
      display: block;
      padding-top: 0;
      padding-bottom: 2.2rem;
    }

    .hero-grid {
      width: 100%;
      gap: 0.72rem;
    }

    .hero-stage {
      width: 100vw;
      width: 100dvw;
      min-height: clamp(440px, 86vw, 700px);
      margin-top: 0;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      border-top: 0;
      border-left: 0;
      border-right: 0;
      border-radius: 0 0 28px 28px;
    }

    .hero-stage-content {
      padding: 1rem 1rem 1.15rem;
    }

    .hero-stage-media {
      object-position: 50% 55%;
    }

    .hero-stage-video {
      transform: scale(1.085) translateY(-2.6%);
      transform-origin: center top;
    }

    .hero-eyebrow,
    .partner-title {
      font-size: 0.66rem;
      letter-spacing: 0.22em;
    }

    .hero-eyebrow {
      margin-bottom: 0.9rem;
    }

    .partner-marquee {
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent 100%);
    }

    .partner-wall {
      --partner-marquee-gap: 0.85rem;
      display: flex;
      grid-template-columns: none;
      width: max-content;
      gap: var(--partner-marquee-gap);
      animation: partner-marquee-forward 24s linear infinite;
      will-change: transform;
    }

    .partner-card {
      --partner-tile-size: clamp(7.2rem, 23vw, 9.4rem);
      flex: 0 0 var(--partner-tile-size);
      width: var(--partner-tile-size);
      min-width: var(--partner-tile-size);
      min-height: 0;
      aspect-ratio: 1 / 1;
      padding: 0.42rem;
    }

    .partner-card-clone {
      display: flex;
    }

    .partner-logo-wrap {
      min-height: 0;
    }

    .scroll-focus {
      min-height: auto;
      margin-bottom: 0.92rem;
    }

    #about .scroll-focus {
      min-height: auto;
      margin-bottom: 0.56rem;
    }

    .scroll-focus-sticky {
      position: relative;
      top: auto;
      min-height: auto;
      display: block;
    }

    .scroll-focus-shell {
      justify-content: stretch !important;
    }

    .scroll-focus-card,
    .scroll-focus[data-align="right"] .scroll-focus-card,
    .scroll-focus[data-align="center"] .scroll-focus-card {
      text-align: left;
      width: 100%;
      padding: 1.2rem 1.05rem 1.16rem;
      gap: 0.82rem;
      transform-origin: left center;
    }

    .scroll-focus-card::after {
      border-radius: 26px;
    }

    .scroll-focus-title {
      font-size: clamp(2.6rem, 11vw, 4.25rem);
      line-height: 1;
      letter-spacing: -0.072em;
    }

    .scroll-focus-card::before,
    .scroll-focus[data-align="right"] .scroll-focus-card::before,
    .scroll-focus[data-align="center"] .scroll-focus-card::before {
      margin-left: 0;
      margin-right: 0;
      background: linear-gradient(90deg, var(--tone-divider), var(--tone-divider-fade));
    }

    .scroll-focus-copy,
    .scroll-focus[data-align="right"] .scroll-focus-copy,
    .scroll-focus[data-align="center"] .scroll-focus-copy {
      margin-left: 0;
      margin-right: 0;
      max-width: none;
      font-size: 0.98rem;
      line-height: 1.58;
      letter-spacing: -0.016em;
      text-wrap: pretty;
    }

    .section {
      --section-block-padding: 4.7rem;
      --section-overlap: clamp(1.1rem, 3.8vw, 1.8rem);
      --section-radius: 30px;
    }

    .section-content {
      padding-top: 0.12rem;
      overflow-x: clip;
    }

    #portfolio .section-content,
    #services .section-content,
    #about .section-content,
    #contact .section-content {
      overflow-x: clip;
    }

    .form-row,
    .frame-grid,
    .metrics {
      grid-template-columns: 1fr;
    }

    .service-list {
      gap: 0.95rem;
    }

    .service-row {
      grid-template-columns: 64px minmax(0, 1fr);
      gap: 0.75rem 0.95rem;
      padding: 1.15rem 1rem;
    }

    .service-visual::after {
      background: var(--tone-service-overlay-primary), var(--tone-service-overlay-secondary);
    }

    .service-visual img {
      filter: var(--tone-service-image-filter);
      opacity: 0.98;
    }

    .service-row:hover .service-visual img {
      filter: var(--tone-service-image-hover-filter);
    }

    .service-index {
      font-size: 2.15rem;
    }

    .service-main h3 {
      font-size: clamp(1.5rem, 7vw, 2rem);
      line-height: 0.98;
    }

    .service-main p {
      font-size: 0.95rem;
      line-height: 1.72;
    }

    .service-tag {
      grid-column: 2;
      justify-self: start;
      padding: 0.62rem 0.86rem;
      font-size: 0.64rem;
    }

    .service-showcase {
      grid-template-columns: 1fr;
      min-height: auto;
      padding: 0.8rem;
      gap: 0.82rem;
      border-radius: 30px;
      background: transparent;
    }

    .service-showcase-panel {
      padding: 0.82rem;
      gap: 0.46rem;
    }

    .service-showcase-kicker {
      margin-bottom: 0.2rem;
      font-size: 0.66rem;
    }

    .service-choice {
      width: 100%;
      padding: 0.58rem 0.78rem;
      gap: 0.52rem;
    }

    .service-choice-title {
      font-size: 0.72rem;
      letter-spacing: 0.13em;
    }

    .service-choice-desc {
      font-size: 0.7rem;
    }

    .service-showcase-stage {
      min-height: min(84vw, 32rem);
      border-radius: 26px;
    }

    .service-showcase-card {
      width: min(76vw, 26rem);
      height: 78%;
    }

    .service-card-copy p {
      max-width: 18rem;
      font-size: 0.86rem;
      line-height: 1.48;
    }

    .frame-grid {
      gap: 0.95rem;
    }

    #portfolio .frame-grid {
      --portfolio-mobile-card: min(82vw, 22rem);
      grid-template-columns: none;
      grid-auto-flow: column;
      grid-auto-columns: var(--portfolio-mobile-card);
      grid-auto-rows: minmax(0, 1fr);
      gap: 0.55rem;
      align-items: stretch;
      overflow-x: auto;
      overflow-y: visible;
      padding: 0.22rem max(0.35rem, calc((100% - var(--portfolio-mobile-card)) / 2)) 0.35rem;
      scroll-padding-inline: max(0.35rem, calc((100% - var(--portfolio-mobile-card)) / 2));
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    #portfolio .portfolio-pager {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.48rem;
      margin-top: 0.65rem;
      padding-bottom: 0.08rem;
    }

    #portfolio .portfolio-pager-dot {
      appearance: none;
      border: 0;
      padding: 0;
      width: 0.46rem;
      height: 0.46rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.42);
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
      cursor: pointer;
      transition: transform 0.28s ease, background 0.28s ease, width 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
      opacity: 0.9;
    }

    #portfolio .portfolio-pager-dot.is-active {
      width: 1.42rem;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 0.18rem 0.55rem rgba(255, 255, 255, 0.18);
      opacity: 1;
      transform: translateZ(0);
    }

    #portfolio .portfolio-pager-dot:focus-visible {
      outline: 2px solid rgba(216, 239, 106, 0.8);
      outline-offset: 2px;
    }

    #portfolio .frame-grid::-webkit-scrollbar {
      display: none;
    }

    #portfolio .frame-card,
    #portfolio .frame-card.large,
    #portfolio .frame-card.tall,
    #portfolio .frame-card.wide {
      width: var(--portfolio-mobile-card);
      min-height: clamp(21rem, 60vh, 27rem);
      scroll-snap-align: center;
      scroll-snap-stop: always;
    }

    .frame-card,
    .frame-card.large,
    .frame-card.tall,
    .frame-card.wide {
      min-height: 300px;
    }

    .frame-overlay {
      padding: 1rem;
    }

    .frame-face-back {
      padding: 1rem;
      gap: 0.88rem;
    }

    .frame-meta {
      flex-wrap: wrap;
      gap: 0.45rem 0.7rem;
      font-size: 0.58rem;
      letter-spacing: 0.15em;
    }

    .frame-copy h3 {
      font-size: clamp(1.72rem, 8vw, 2.55rem);
      line-height: 0.92;
    }

    .frame-copy p {
      max-width: none;
      font-size: 0.88rem;
      line-height: 1.6;
    }

    .frame-back-copy h3 {
      font-size: clamp(1.35rem, 6vw, 2rem);
    }

    .frame-back-copy p {
      font-size: 0.82rem;
      line-height: 1.56;
      max-width: none;
    }

    .frame-link {
      min-width: 5.7rem;
      padding: 0.72rem 0.92rem;
      font-size: 0.62rem;
    }

    .about-layout,
    .contact-layout {
      gap: 1rem;
    }

    .metrics,
    .contact-notes {
      gap: 0.72rem;
    }

    .about-text p,
    .contact-copy {
      font-size: 0.96rem;
      line-height: 1.76;
    }

    .note {
      flex-direction: column;
      gap: 0.45rem;
    }

    .footer-inner {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-top,
    .footer-center,
    .footer-links {
      justify-self: center;
    }

    .footer-links {
      justify-content: center;
    }

    .reveal {
      transform: translateY(18px);
      transition-duration: 0.65s;
    }
  }

  @media (max-width: 560px) {
    :root {
      --container: min(calc(100vw - 1rem), 1320px);
    }

    .section::after {
      top: 0.9rem;
      right: 0.65rem;
      font-size: clamp(4.4rem, 24vw, 7rem);
      opacity: 0.48;
    }

    html,
    body {
      overflow-x: hidden;
    }

    section[id] {
      scroll-margin-top: calc(var(--sticky-offset) - clamp(12px, 3vh, 20px));
    }

    html {
      scroll-padding-top: calc(var(--sticky-offset) - clamp(12px, 3vh, 20px));
    }

    .nav-inner {
      width: min(calc(100vw - 0.8rem), 31rem);
      width: min(calc(100dvw - 0.8rem), 31rem);
      grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
      gap: 0.62rem;
    }

    .site-nav,
    .site-nav.scrolled {
      padding-left: 0;
      padding-right: 0;
    }

    .nav-menu-toggle,
    .nav-mobile-spacer {
      width: 2.75rem;
      height: 2.75rem;
    }

    .nav-brand img {
      width: clamp(118px, 38vw, 152px);
    }

    .nav-mobile-panel {
      top: calc(100% + 0.34rem);
      width: min(calc(100vw - 0.8rem), 30.2rem);
      width: min(calc(100dvw - 0.8rem), 30.2rem);
      max-width: 30.2rem;
    }

    .nav-mobile-panel-inner {
      padding: 0.88rem;
      border-radius: 24px;
    }

    .nav-mobile-links {
      gap: 0.22rem;
    }

    .nav-mobile-links a,
    .nav-mobile-pill {
      font-size: 0.68rem;
      letter-spacing: 0.16em;
    }

    .nav-mobile-links a {
      min-height: 3rem;
      padding: 0.82rem 0.78rem;
    }

    .nav-mobile-pill {
      min-height: 3.08rem;
      margin-top: 0.7rem;
      padding: 0.84rem 0.9rem;
    }

    .hero {
      min-height: auto;
      display: block;
      padding-top: calc(var(--sticky-offset, 84px) - 14px);
      padding-bottom: 1.75rem;
    }

    .hero-main {
      gap: 0;
    }

    .hero-stage {
      width: 100vw;
      width: 100dvw;
      min-height: clamp(448px, 98vw, 640px);
      margin-top: 0;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      border-top: 0;
      border-left: 0;
      border-right: 0;
      border-radius: 0 0 24px 24px;
    }

    .hero-stage-media {
      object-position: 50% 46%;
      -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0.92) 84%, rgba(0, 0, 0, 0.28) 100%);
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0.92) 84%, rgba(0, 0, 0, 0.28) 100%);
    }

    .hero-stage-video {
      transform: scale(1.045) translateY(-1.2%);
      transform-origin: center top;
    }

    .hero-stage-center {
      padding: 1.15rem 0 1.8rem;
    }

    .hero::after {
      height: 112px;
    }

    .scroll-focus {
      margin-bottom: 0.84rem;
    }

    #about .scroll-focus {
      min-height: auto;
      margin-bottom: 0.4rem;
    }

    .section {
      --section-block-padding: clamp(1.75rem, 8.4vw, 2.35rem);
      --section-overlap: clamp(0.58rem, 3.2vw, 0.9rem);
      --section-radius: 24px;
    }

    .section-content {
      padding-top: 0.08rem;
      overflow-x: clip;
    }

    #about .section-content {
      padding-top: 0;
    }

    .scroll-focus-title {
      font-size: clamp(2.28rem, 11.2vw, 3.35rem);
    }

    .scroll-focus-card {
      padding: 1.02rem 0.95rem 1.04rem;
      gap: 0.72rem;
    }

    .scroll-focus-copy {
      font-size: 0.93rem;
      line-height: 1.54;
    }

    .partner-wall {
      --partner-marquee-gap: 0.7rem;
      display: flex;
      grid-template-columns: none;
      width: max-content;
      gap: var(--partner-marquee-gap);
      animation-duration: 20s;
    }

    .hero-eyebrow,
    .partner-title {
      font-size: 0.66rem;
      letter-spacing: 0.22em;
    }

    .partner-card {
      --partner-tile-size: clamp(6.3rem, 25vw, 8.4rem);
      width: var(--partner-tile-size);
      min-width: var(--partner-tile-size);
      min-height: 0;
      aspect-ratio: 1 / 1;
      padding: 0.34rem;
    }

    .partner-card-clone {
      display: flex;
    }

    .partner-logo-wrap {
      min-height: 0;
    }

    .partner-card.racechip .partner-logo {
      max-width: 222px;
      max-height: 56px;
    }

    .partner-card.la-nativa .partner-logo {
      max-width: 168px;
      max-height: 60px;
    }

    .partner-card.physi .partner-logo {
      max-width: 142px;
      max-height: 76px;
    }

    .partner-card.vasilakis .partner-logo {
      max-width: 118px;
      max-height: 72px;
    }

    .partner-card.fresh-up .partner-logo {
      max-width: 136px;
      max-height: 78px;
    }

    .hero-stage-logo {
      width: min(94%, 700px);
    }

    .section {
      --section-block-padding: clamp(1.75rem, 8.4vw, 2.35rem);
      --section-overlap: clamp(0.58rem, 3.2vw, 0.9rem);
      --section-radius: 24px;
    }

    .section-kicker {
      font-size: 0.72rem;
      margin-bottom: 0.68rem;
    }

    .service-row {
      grid-template-columns: 1fr;
      gap: 0.7rem;
      padding: 1rem 0.95rem;
    }

    .service-visual {
      opacity: calc(0.82 + (var(--service-progress, 0) * 0.18));
    }

    .service-visual::after {
      background: var(--tone-service-overlay-primary), var(--tone-service-overlay-secondary);
    }

    .service-visual img {
      filter: var(--tone-service-image-filter);
      opacity: 1;
    }

    .service-row:hover .service-visual img {
      filter: var(--tone-service-image-hover-filter);
    }

    .service-index {
      font-size: 1.85rem;
    }

    .service-main h3 {
      font-size: clamp(1.35rem, 8.5vw, 1.8rem);
    }

    .service-main p {
      font-size: 0.9rem;
      line-height: 1.62;
    }

    .service-tag {
      grid-column: auto;
      padding: 0.58rem 0.78rem;
    }

    .service-showcase {
      padding: 0.32rem;
      gap: 0.52rem;
      border-radius: 24px;
    }

    .service-showcase-panel {
      padding: 0.5rem;
      gap: 0.28rem;
      border-radius: 20px;
    }

    .service-showcase-kicker {
      margin-bottom: 0.08rem;
      font-size: 0.58rem;
    }

    .service-choice {
      padding: 0.42rem 0.58rem;
      gap: 0.36rem;
      min-height: 2.25rem;
    }

    .service-choice-index {
      font-size: 1.02rem;
    }

    .service-choice-title {
      font-size: 0.66rem;
      letter-spacing: 0.12em;
    }

    .service-choice-desc {
      display: none;
    }

    .service-showcase-stage {
      min-height: min(78vw, 22rem);
      border-radius: 22px;
    }

    .service-showcase-card {
      width: min(88vw, 21.5rem);
      height: 90%;
    }

    .service-card-copy h3 {
      font-size: clamp(1.7rem, 10vw, 2.7rem);
    }

    .service-card-copy p {
      display: none;
    }

    .frame-card,
    .frame-card.large,
    .frame-card.tall,
    .frame-card.wide {
      min-height: 252px;
    }

    #portfolio .frame-grid {
      --portfolio-mobile-card: min(84vw, 19.75rem);
      gap: 0.42rem;
      padding: 0.18rem max(0.28rem, calc((100% - var(--portfolio-mobile-card)) / 2)) 0.24rem;
      scroll-padding-inline: max(0.28rem, calc((100% - var(--portfolio-mobile-card)) / 2));
    }

    #portfolio .portfolio-pager {
      gap: 0.4rem;
      margin-top: 0.54rem;
    }

    #portfolio .portfolio-pager-dot {
      width: 0.42rem;
      height: 0.42rem;
    }

    #portfolio .portfolio-pager-dot.is-active {
      width: 1.24rem;
    }

    #portfolio .frame-card,
    #portfolio .frame-card.large,
    #portfolio .frame-card.tall,
    #portfolio .frame-card.wide {
      width: var(--portfolio-mobile-card);
      min-height: clamp(19.5rem, 56vh, 24.5rem);
    }

    .service-list,
    .frame-grid,
    .about-layout,
    .contact-layout {
      gap: 0.82rem;
    }

    .metrics,
    .contact-notes {
      gap: 0.68rem;
    }

    .frame-overlay {
      padding: 0.9rem;
    }

    .frame-face-back {
      padding: 0.9rem;
      gap: 0.78rem;
    }

    .frame-meta {
      font-size: 0.54rem;
      letter-spacing: 0.14em;
    }

    .frame-copy h3 {
      font-size: clamp(1.45rem, 8.8vw, 2.2rem);
    }

    .frame-back-copy h3 {
      font-size: clamp(1.2rem, 7.2vw, 1.7rem);
    }

    .frame-back-copy p {
      font-size: 0.78rem;
      line-height: 1.5;
    }

    .frame-copy p {
      margin-top: 0.35rem;
      font-size: 0.84rem;
    }

    .about-panel,
    .contact-card {
      padding: 1.15rem;
    }

    .about-text p,
    .contact-copy {
      font-size: 0.92rem;
      line-height: 1.7;
    }

  }

  @media (orientation: landscape) and (max-height: 560px) and (max-width: 980px) {
    .site-nav,
    .site-nav.scrolled {
      padding-top: env(safe-area-inset-top, 0px);
      padding-left: 0;
      padding-right: 0;
    }

    .site-nav::before,
    .site-nav::after {
      opacity: 1;
      transition: none;
    }

    .site-nav::before {
      background: rgba(5, 5, 5, 0.94);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .site-nav::after {
      background: rgba(255, 255, 255, 0.08);
    }

    .nav-inner {
      width: min(calc(100vw - 1rem), 42rem);
      width: min(calc(100dvw - 1rem), 42rem);
      min-height: auto;
      padding: 0.56rem 0 0.5rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
      grid-template-areas: "toggle brand spacer";
      align-items: center;
      gap: 0.62rem;
    }

    .nav-brand {
      grid-area: brand;
      min-width: 0;
      justify-self: center;
    }

    .nav-brand img {
      width: clamp(138px, 22vw, 176px);
    }

    .nav-menu-toggle {
      display: inline-flex;
      grid-area: toggle;
      justify-self: start;
      width: 2.75rem;
      height: 2.75rem;
    }

    .nav-mobile-spacer {
      display: block;
      grid-area: spacer;
      width: 2.75rem;
      height: 2.75rem;
      justify-self: end;
    }

    .nav-mobile-panel {
      display: block;
      top: calc(100% + 0.32rem);
      left: 50%;
      right: auto;
      width: min(calc(100vw - 1rem), 27rem);
      width: min(calc(100dvw - 1rem), 27rem);
      max-width: 27rem;
      max-height: calc(100svh - 4.8rem);
      max-height: calc(100dvh - 4.8rem);
      transform: translate3d(-50%, -12px, 0) scale(0.985);
      overflow-y: auto;
    }

    .site-nav.menu-open .nav-mobile-panel {
      transform: translate3d(-50%, 0, 0) scale(1);
    }

    .nav-mobile-panel-inner {
      padding: 0.88rem;
      border-radius: 24px;
    }

    .nav-mobile-links {
      gap: 0.22rem;
    }

    .nav-mobile-links a,
    .nav-mobile-pill {
      font-size: 0.68rem;
      letter-spacing: 0.16em;
    }

    .nav-mobile-links a {
      min-height: 2.9rem;
      padding: 0.78rem 0.8rem;
    }

    .nav-mobile-pill {
      min-height: 3rem;
      margin-top: 0.68rem;
      padding: 0.82rem 0.9rem;
    }

    .nav-links,
    .social-icons.nav-socials,
    .nav-pill {
      display: none;
    }

    .hero {
      min-height: auto;
      display: block;
      padding-top: calc(var(--sticky-offset, 78px) - 10px);
      padding-bottom: 1.25rem;
    }

    .hero-grid {
      width: 100%;
      gap: 0.38rem;
    }

    .hero-stage {
      width: 100vw;
      width: 100dvw;
      min-height: clamp(220px, 74vh, 360px);
      margin-top: 0;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      border-top: 0;
      border-left: 0;
      border-right: 0;
      border-radius: 0 0 22px 22px;
    }

    .hero-stage-content {
      padding: 0.8rem 0.9rem 0.92rem;
    }

    .hero-stage-media {
      object-position: 50% 44%;
      -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 76%, rgba(0, 0, 0, 0.9) 90%, rgba(0, 0, 0, 0.28) 100%);
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 76%, rgba(0, 0, 0, 0.9) 90%, rgba(0, 0, 0, 0.28) 100%);
    }

    .hero-stage-video {
      transform: scale(1.03) translateY(-0.8%);
      transform-origin: center top;
    }

    .hero-stage-center {
      padding: 0.7rem 0 1rem;
    }
  }

  @media (min-width: 561px) and (max-width: 860px), (orientation: portrait) and (min-width: 861px) and (max-width: 1100px) {
    .hero {
      padding-bottom: 2rem;
    }

    .hero-stage {
      min-height: clamp(500px, 72vw, 760px);
    }

    .hero-stage-content {
      padding: 1.15rem 1.2rem 1.3rem;
    }

    .partner-wall {
      --partner-marquee-gap: 1rem;
    }

    .partner-card {
      --partner-tile-size: clamp(8rem, 18vw, 10rem);
      width: var(--partner-tile-size);
      min-width: var(--partner-tile-size);
      min-height: 0;
      aspect-ratio: 1 / 1;
    }

    .partner-logo-wrap {
      min-height: 0;
    }

    .scroll-focus {
      margin-bottom: 0.82rem;
    }

    .scroll-focus-card,
    .scroll-focus[data-align="right"] .scroll-focus-card,
    .scroll-focus[data-align="center"] .scroll-focus-card {
      padding: 1.35rem 1.3rem 1.32rem;
      gap: 0.88rem;
    }

    .scroll-focus-title {
      font-size: clamp(3rem, 7.7vw, 4.55rem);
    }

    .scroll-focus-copy,
    .scroll-focus[data-align="right"] .scroll-focus-copy,
    .scroll-focus[data-align="center"] .scroll-focus-copy {
      font-size: 1.04rem;
      line-height: 1.56;
      max-width: 43rem;
    }

    .section {
      --section-block-padding: 5rem;
      --section-overlap: clamp(1.15rem, 3vw, 1.8rem);
      --section-radius: 30px;
    }

    .service-list {
      gap: 1rem;
    }

    .service-row {
      grid-template-columns: 70px minmax(0, 1fr) auto;
      align-items: center;
      gap: 0.85rem 1rem;
      padding: 1.2rem 1.15rem;
    }

    .service-main h3 {
      font-size: clamp(1.6rem, 5vw, 2rem);
    }

    .service-main p {
      font-size: 0.97rem;
      line-height: 1.7;
    }

    .service-tag {
      grid-column: auto;
      justify-self: end;
      align-self: center;
    }

    #portfolio .frame-grid {
      --portfolio-mobile-card: min(55vw, 23rem);
      gap: 0.78rem;
      padding: 0.28rem max(1rem, calc((100% - var(--portfolio-mobile-card)) / 2)) 0.5rem;
      scroll-padding-inline: max(1rem, calc((100% - var(--portfolio-mobile-card)) / 2));
    }

    #portfolio .portfolio-pager {
      margin-top: 0.72rem;
      gap: 0.54rem;
    }

    #portfolio .portfolio-pager-dot {
      width: 0.5rem;
      height: 0.5rem;
    }

    #portfolio .portfolio-pager-dot.is-active {
      width: 1.5rem;
    }

    #portfolio .frame-card,
    #portfolio .frame-card.large,
    #portfolio .frame-card.tall,
    #portfolio .frame-card.wide {
      min-height: clamp(20rem, 52vh, 25.5rem);
    }

    .frame-overlay {
      padding: 1rem;
    }

    .frame-copy p {
      font-size: 0.9rem;
    }

    .metrics {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .metric {
      padding: 0.88rem 0.92rem;
    }

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

    .about-layout,
    .contact-layout {
      gap: 1.08rem;
    }

    .about-panel,
    .contact-card {
      padding: 1.35rem;
    }

    .about-text p,
    .contact-copy {
      font-size: 0.98rem;
      line-height: 1.74;
    }
  }

  @media (orientation: portrait) and (min-width: 861px) and (max-width: 1100px) {
    .scroll-focus,
    #portfolio .scroll-focus,
    #services .scroll-focus,
    #contact .scroll-focus,
    .manifesto .scroll-focus {
      min-height: auto;
      margin-bottom: 0.5rem;
    }

    #about .scroll-focus {
      min-height: auto;
      margin-bottom: 0.34rem;
    }

    .scroll-focus-sticky,
    #services .scroll-focus-sticky,
    #contact .scroll-focus-sticky {
      position: relative;
      top: auto;
      min-height: auto;
      display: block;
      padding-top: 0;
      padding-bottom: 0;
    }

    .scroll-focus-card,
    .scroll-focus[data-align="right"] .scroll-focus-card,
    .scroll-focus[data-align="center"] .scroll-focus-card {
      padding: 1.18rem 1.16rem 1.08rem;
      gap: 0.76rem;
    }

    .scroll-focus-copy,
    .scroll-focus[data-align="right"] .scroll-focus-copy,
    .scroll-focus[data-align="center"] .scroll-focus-copy {
      line-height: 1.56;
      max-width: 41rem;
    }

    .section {
      --section-block-padding: 4.2rem;
      --section-overlap: clamp(0.95rem, 2.6vw, 1.35rem);
      --section-radius: 30px;
    }

    .section-content,
    #portfolio .section-content,
    #services .section-content,
    #about .section-content,
    #contact .section-content {
      padding-top: 0;
    }

    .service-list,
    .about-layout,
    .contact-layout {
      gap: 0.94rem;
    }

    .metrics,
    .contact-notes {
      gap: 0.64rem;
    }

    .nav-inner {
      width: calc(100vw - 1.5rem);
      width: calc(100dvw - 1.5rem);
      max-width: none;
      grid-template-columns: 3.35rem minmax(0, 1fr) 3.35rem;
      gap: 0.82rem;
      padding: 0.84rem 0 0.78rem;
    }

    .nav-menu-toggle,
    .nav-mobile-spacer {
      width: 3.35rem;
      height: 3.35rem;
    }

    .nav-brand img {
      width: clamp(164px, 23vw, 214px);
    }

    .nav-mobile-panel {
      top: calc(100% + 0.46rem);
      width: calc(100vw - 1.5rem);
      width: calc(100dvw - 1.5rem);
      max-width: none;
    }

    .nav-mobile-panel-inner {
      padding: 1.08rem;
      border-radius: 28px;
    }

    .nav-mobile-links a,
    .nav-mobile-pill {
      font-size: 0.74rem;
      letter-spacing: 0.17em;
    }

    .nav-mobile-links a {
      min-height: 3.3rem;
      padding: 0.92rem 0.92rem;
    }

    .nav-mobile-pill {
      min-height: 3.35rem;
      margin-top: 0.78rem;
      padding: 0.92rem 0.98rem;
    }
  }

  @media (orientation: landscape) and (min-width: 861px) and (max-width: 1180px) {
    .hero {
      padding-top: clamp(4.8rem, 6.8vw, 5.5rem);
      padding-bottom: 2.6rem;
    }

    .hero-grid {
      gap: 0.78rem;
    }

    .hero-stage {
      min-height: clamp(560px, 66vw, 780px);
      margin-top: calc(-1 * clamp(3rem, 4.4vw, 3.6rem));
      border-radius: 0 0 34px 34px;
    }

    .hero-stage-media {
      object-position: 50% 54%;
    }

    .hero-stage-video {
      transform: scale(1.035) translateY(-1.8%);
      transform-origin: center top;
    }

    .partner-wall {
      --partner-marquee-gap: 0.9rem;
      gap: var(--partner-marquee-gap);
    }

    .partner-card {
      min-height: 0;
    }

    .scroll-focus {
      min-height: clamp(84svh, 92vh, 102svh);
    }

    #about .scroll-focus {
      min-height: clamp(76svh, 84vh, 96svh);
    }

    .scroll-focus-title {
      font-size: clamp(3.75rem, 6.4vw, 5.4rem);
    }

    .scroll-focus-copy {
      max-width: 40rem;
      line-height: 1.6;
    }

    .section {
      --section-block-padding: 4.6rem;
      --section-overlap: clamp(1.2rem, 2.7vw, 2rem);
      --section-radius: 38px;
    }

    .frame-grid {
      gap: 1rem;
    }

    #portfolio .section-content {
      padding-bottom: 0.9rem;
    }

    #portfolio .frame-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: minmax(248px, auto);
      align-items: start;
      gap: 1rem;
      margin-bottom: 0.1rem;
    }

    #portfolio .frame-card,
    #portfolio .frame-card.large,
    #portfolio .frame-card.tall,
    #portfolio .frame-card.wide {
      grid-column: auto;
      grid-row: auto;
      min-height: clamp(16.5rem, 25vw, 20rem);
    }

    #portfolio .frame-card.large,
    #portfolio .frame-card.tall {
      min-height: clamp(21rem, 34vw, 27rem);
    }

    #portfolio .frame-copy h3 {
      font-size: clamp(1.8rem, 3.1vw, 2.8rem);
    }

    #portfolio .frame-copy p {
      max-width: 28ch;
    }

    .frame-card.large,
    .frame-card.tall,
    .frame-card.wide {
      min-height: 320px;
    }

    .service-row {
      grid-template-columns: 74px minmax(0, 1fr) 176px;
      gap: 1rem 1.15rem;
      padding: 1.35rem 1.25rem;
    }

    .service-main h3 {
      font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    }

    .service-main p {
      max-width: 40rem;
      font-size: 0.96rem;
      line-height: 1.76;
    }

    .service-tag {
      padding-inline: 0.9rem;
      font-size: 0.66rem;
    }

    .about-layout {
      grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
      gap: 1rem;
    }

    .about-panel {
      padding: 1.45rem;
      gap: 1.05rem;
    }

    .about-image img {
      min-height: 500px;
    }

    .contact-layout {
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 1rem;
    }

    .contact-intro {
      padding-right: 1.2rem;
    }

    .contact-card {
      padding: 1.55rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation: none !important;
      transition-duration: 0.01ms !important;
      transition-delay: 0ms !important;
    }

    .hero-stage-video {
      animation: none !important;
    }

  }
