    :root {
      --bg: #f7f3ef;
      --paper: #fffaf5;
      --text: #181818;
      --muted: #69645f;
      --dark: #1f1f1f;
      --red: #d80b03;
      --red-dark: #9f2618;
      --line: rgba(24, 24, 24, .12);
      --shadow: 0 24px 70px rgba(24, 24, 24, .12);
      --radius: 28px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      overflow-x: hidden;
      font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 26px 48px;
      color: white;
      border-bottom: 1px solid transparent;
      transition: padding .38s ease, background .38s ease, backdrop-filter .38s ease, border-color .38s ease, box-shadow .38s ease;
    }

    .site-header.scrolled {
      padding: 14px 48px;
      background: rgba(10,10,10,.9);
      backdrop-filter: blur(22px);
      border-bottom-color: rgba(255,255,255,.07);
      box-shadow: 0  4px 32px rgba(0,0,0,.22);
    }

    body.header-solid .site-header {
      padding: 14px 48px;
      background: rgba(10,10,10,.95);
      backdrop-filter: blur(22px);
      border-bottom-color: rgba(255,255,255,.07);
      box-shadow: 0 4px 32px rgba(0,0,0,.22);
    }
    body.header-solid .brand-logo { height: 60px; top: 0; }

    .site-header.scrolled .brand-logo {
      height: 60px;
      top: 0px;
    }

    .brand {
      display: flex;
      align-items: center;
      min-width: 130px;
    }

    .brand-logo {
      width: auto;
      height: 100px;
      top: 10px;
      object-fit: contain;
      display: block;
      transition: opacity .2s, height .3s ease, top .3s ease;
      position: absolute;
    }

    .brand:hover .brand-logo { opacity: .75; }

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

    .nav a {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.58);
      position: relative;
      padding-bottom: 4px;
      transition: color .2s;
    }

    .nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: white;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .26s ease;
    }

    .nav a:hover,
    .nav a.active { color: white; }

    .nav a:hover::after,
    .nav a.active::after { transform: scaleX(1); }

    .header-right {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 130px;
      justify-content: flex-end;
    }

    .header-socials {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .header-socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--red);
      transition: background .2s, transform .15s;
    }

    .header-socials a:hover {
      background: var(--red-dark);
      transform: translateY(-1px);
    }

    .header-socials svg {
      width: 16px;
      height: 16px;
      display: block;
    }

    .mobile-nav-socials {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 28px;
    }

    .mobile-nav-socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.55);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.14);
      transition: color .2s, border-color .2s;
    }

    .mobile-nav-socials a:hover {
      color: white;
      border-color: rgba(255,255,255,.4);
    }

    .mobile-nav-socials svg {
      width: 20px;
      height: 20px;
      display: block;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 26px;
      height: 17px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .nav-toggle span {
      display: block;
      height: 1.5px;
      background: white;
      border-radius: 2px;
      transition: transform .3s ease, opacity .2s;
    }

    .nav-toggle.open span:nth-child(1) { transform: translateY(7.75px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); }

    .mobile-nav {
      position: fixed;
      inset: 0;
      z-index: 48;
      background: rgba(8,8,8,.97);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity .3s ease, visibility .3s, transform .3s ease;
    }

    .mobile-nav.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .mobile-nav nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }

    .mobile-nav nav a {
      color: rgba(255,255,255,.6);
      font-size: clamp(30px, 8vw, 46px);
      font-weight: 800;
      letter-spacing: -.03em;
      font-family: Fraunces, Georgia, serif;
      line-height: 1.35;
      transition: color .2s;
    }

    .mobile-nav nav a:hover { color: white; }

    .mobile-nav-cta {
      margin-top: 36px;
      font-size: 15px;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .hero-video-wrap iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1.32);
      width: 177.78vh;
      height: 56.25vw;
      min-width: 100%;
      min-height: 100%;
      border: none;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, #000 0%, rgba(0,0,0,.78) 18%, rgba(0,0,0,.25) 50%, transparent 72%);
      z-index: 1;
    }

    .hero-silhouette {
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: auto;
      z-index: 2;
      transform: translateX(50%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 140px 48px 90px;
    }

    .hero-content-box {
      max-width: 720px;
    }

    .eyebrow {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--red-dark);
      background: rgba(255,255,255,.48);
      font-size: 13px;
      font-weight: 800;
    }

    .eyebrow span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 6px rgba(214,66,43,.12);
    }

    h1 {
      margin: 0;
      max-width: 650px;
      font-size: clamp(40px, 5.4vw, 72px);
      line-height: 1.02;
      letter-spacing: -.055em;
      font-weight: 800;
    }

    .hero-title-accent {
      color: var(--red);
      display: block;
    }

    .hero-lead {
      max-width: 560px;
      margin: 22px 0 0;
      color: var(--muted);
      font-size: clamp(16px, 1.55vw, 19px);
      line-height: 1.58;
    }

    .hero h1 { color: white; }
    .hero .hero-lead { color: rgba(255,255,255,.78); }
    .hero .eyebrow {
      border-color: rgba(255,255,255,.22);
      background: rgba(255,255,255,.08);
      color: white;
    }
    .hero .btn-secondary {
      border-color: rgba(255,255,255,.35);
      background: rgba(255,255,255,.1);
      color: white;
      backdrop-filter: blur(10px);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: scrollBounce 2s ease-in-out infinite;
      opacity: .7;
      transition: opacity .2s;
    }

    .hero-scroll-hint:hover { opacity: 1; }

    .hero-scroll-hint svg { width: 40px; height: 40px; }

    .hero-scroll-hint polyline:nth-of-type(1) {
      animation: chevronFade 1.6s ease-in-out infinite;
    }

    .hero-scroll-hint polyline:nth-of-type(2) {
      animation: chevronFade 1.6s ease-in-out infinite;
      animation-delay: .45s;
    }

    @keyframes chevronFade {
      0%, 100% { opacity: .15; }
      50%       { opacity: 1; }
    }

    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: var(--dark);
      color: white;
      box-shadow: 0 18px 40px rgba(0,0,0,.18);
    }

    .btn-secondary {
      border-color: var(--line);
      background: rgba(255,255,255,.54);
      color: var(--text);
    }

    .hero-card {
      position: relative;
      min-height: 520px;
      border-radius: 42px;
      overflow: hidden;
      background: #ddd;
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .hero-card img {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
      filter: saturate(.92) contrast(1.02);
    }

    .hero-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.64), rgba(0,0,0,.06) 58%);
      z-index: 1;
    }

    .hero-badge {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      z-index: 2;
      padding: 20px;
      border-radius: 26px;
      color: white;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.24);
      backdrop-filter: blur(14px);
    }

    .hero-badge strong {
      display: block;
      font-size: 18px;
      margin-bottom: 4px;
    }

    .hero-badge p {
      margin: 0;
      color: rgba(255,255,255,.75);
      font-size: 14px;
    }

    .section {
      padding: 78px 24px;
    }

    .container {
      width: min(1120px, 100%);
      margin: 0 auto;
    }

    .section-head {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      min-height: 145px;
      margin-bottom: 42px;
      text-align: left;
      overflow: hidden;
    }

    .section-head::before {
      content: attr(data-bigtittle);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(24, 24, 24, .045);
      font-size: clamp(64px, 9vw, 132px);
      line-height: .8;
      font-weight: 900;
      letter-spacing: -.08em;
      white-space: nowrap;
      pointer-events: none;
      z-index: 0;
    }

    .section-head > div {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 24px;
    }

    .section-head .section-kicker {
      display: none;
    }

    .section-head h2 {
      position: relative;
      color: #16345a;
      font-size: 50px;
      letter-spacing: -.045em;
    }

    .section-head h2::before {
      content: "";
      display: inline-block;
      width: 40px;
      height: 2px;
      margin-right: 20px;
      border-radius: 999px;
      background: var(--red);
      vertical-align: middle;
    }

    .section-head > p {
      display: none;
    }

    .services-intro {
      max-width: 980px;
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .7s ease, transform .7s ease;
      margin: 0 auto 30px;
      text-align: center;
    }

    .services-intro.section-head {
      max-width: 1120px;
      margin-bottom: 18px;
    }

    .services-intro h2 {
      margin-bottom: 18px;
    }

    .services-intro p:not(.section-kicker) {
      max-width: 650px;
      margin: 0 auto;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.6;
    }

    .section-kicker {
      margin: 0 0 12px;
      color: var(--red-dark);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .12em;
    }

    h2 {
      margin: 0;
      font-size: clamp(32px, 3.3vw, 50px);
      line-height: 1.05;
      letter-spacing: -.05em;
    }

    .section-head > p {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
    }

    .story-panel {
      position: relative;
      opacity: 0;
      transform: translateY(34px) scale(.985);
      transition: opacity .8s ease, transform .9s cubic-bezier(.16,.84,.24,1);
      padding: clamp(30px, 3.2vw, 48px);
      border-radius: 34px;
      background: var(--red);
      color: white;
      overflow: hidden;
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .story-panel.is-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .story-panel .story-quote,
    .story-panel .story-portrait,
    .story-panel .story-content {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .7s ease, transform .8s cubic-bezier(.16,.84,.24,1);
    }

    .story-panel.is-visible .story-quote {
      opacity: 1;
      transform: translateY(0);
      transition-delay: .12s;
    }

    .story-quote span,
    .wave-letter {
      display: inline-block;
      opacity: 0;
      transform: translateY(18px) rotate(2deg);
    }

    .wave-word {
      display: inline-block;
      white-space: nowrap;
    }

    .story-panel.is-visible .story-quote span,
    .wave-title.is-visible .wave-letter {
      animation: quoteWave .95s cubic-bezier(.22,1,.36,1) both;
      animation-delay: calc(.18s + (var(--i) * .024s));
    }

    @keyframes quoteWave {
      0% {
        opacity: 0;
        transform: translateY(18px) rotate(1.5deg);
      }
      45% {
        opacity: 1;
        transform: translateY(-5px) rotate(-.6deg);
      }
      72% {
        opacity: 1;
        transform: translateY(2px) rotate(.2deg);
      }
      100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
      }
    }

    .wave-title .wave-word {
      display: inline-block;
      white-space: nowrap;
    }

    .wave-title .wave-letter {
      display: inline-block;
      opacity: 0;
      transform: translateY(18px) rotate(1.5deg);
    }

    .wave-title.is-visible .wave-letter {
      animation: quoteWave .95s cubic-bezier(.22,1,.36,1) both;
      animation-delay: calc(.08s + (var(--i) * .018s));
    }

    .hero h1.wave-title.is-visible .wave-letter {
      animation-delay: calc(.5s + (var(--i) * .026s));
    }

    .story-panel.is-visible .story-portrait {
      opacity: 1;
      transform: translateY(0);
      transition-delay: .26s;
    }

    .story-panel.is-visible .story-content {
      opacity: 1;
      transform: translateY(0);
      transition-delay: .38s;
    }

    .story-panel::before {
      content: "";
      position: absolute;
      left: -110px;
      top: 88px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(120,0,0,.28) 0 37%, transparent 38% 100%);
      border: 58px solid rgba(160, 28, 8, .45);
      z-index: -1;
    }

    .story-quote {
      margin-bottom: 34px;
      text-align: center;
      font-family: Fraunces, Georgia, serif;
      font-size: clamp(30px, 3.7vw, 52px);
      line-height: 1.04;
      letter-spacing: -.04em;
      font-weight: 700;
      font-style: italic;
    }

    .story-grid {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: clamp(28px, 4vw, 56px);
      align-items: center;
    }

    .story-portrait {
      position: relative;
      min-height: 360px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .portrait-ring {
      position: absolute;
      width: min(330px, 84%);
      aspect-ratio: 1;
      border-radius: 50%;
      background: rgba(125, 15, 10, .35);
      border: 46px solid rgba(155, 28, 5, .58);
      left: 50%;
      bottom: 2%;
      transform: translateX(-50%);
    }

    .story-portrait img {
      position: relative;
      width: min(310px, 82%);
      height: 380px;
      object-fit: cover;
      object-position: center top;
      border-radius: 0 0 220px 220px;
      filter: drop-shadow(0 24px 28px rgba(0,0,0,.22));
    }

    .story-content .section-kicker {
      color: rgba(255,255,255,.72);
    }

    .story-content h2 {
      font-size: clamp(34px, 3.4vw, 50px);
      color: white;
      margin-bottom: 8px;
      letter-spacing: -.045em;
    }

    .story-subtitle {
      margin: 0 0 28px;
      color: rgba(255,255,255,.88);
      font-weight: 700;
      font-size: clamp(15px, 1.55vw, 19px);
      letter-spacing: -.025em;
    }

    .story-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px;
      font-size: clamp(14px, 1.1vw, 16px);
      line-height: 1.62;
      font-weight: 500;
      color: rgba(255,255,255,.9);
    }

    .story-columns p {
      margin: 0 0 14px;
    }

    .service-showcase {
      display: grid;
      gap: 28px;
    }

    .service-tabs {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .65s ease .14s, transform .65s ease .14s;
      display: flex;
      justify-content: center;
      gap: clamp(18px, 3vw, 42px);
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .service-pill {
      position: relative;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: var(--muted);
      padding: 12px 4px;
      font: inherit;
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      transition: color .25s ease;
    }

    .service-pill::after {
      content: "";
      position: absolute;
      left: 4px;
      right: 4px;
      bottom: 4px;
      height: 2px;
      border-radius: 999px;
      background: var(--red);
      opacity: 0;
      transform: scaleX(.35);
      transform-origin: center;
      transition: opacity .25s ease, transform .25s ease;
    }

    .service-pill.active,
    .service-pill:hover {
      color: var(--red-dark);
    }

    .service-pill.active::after,
    .service-pill:hover::after {
      opacity: 1;
      transform: scaleX(1);
    }

    .service-feature-layered {
      position: relative;
      transition: opacity .22s ease, transform .22s ease;
      margin-top: 10px;
      opacity: 0;
      transform: translateY(34px);
      min-height: 520px;
      display: grid;
      grid-template-columns: .74fr 1.26fr;
      align-items: center;
      padding: 22px 0;
      isolation: isolate;
    }

    .services-section.is-visible .services-intro,
    .services-section.is-visible .service-tabs {
      opacity: 1;
      transform: translateY(0);
    }

    .services-section.is-visible .service-feature-layered {
      opacity: 1;
      transform: translateY(0);
      transition: opacity .8s ease .26s, transform .8s cubic-bezier(.16,.84,.24,1) .26s;
    }

    .service-feature-layered.is-changing .service-layer-card,
    .service-feature-layered.is-changing .service-layer-image {
      opacity: 0;
      transform: translateY(10px) scale(.98);
    }

    .service-feature-layered.is-changing .service-text-columns > div {
      opacity: 0;
      transform: translateY(14px);
    }

    .service-feature-layered.is-changing .service-floating-note {
      opacity: 0;
      transform: translateY(10px) scale(.98) rotate(2.5deg);
    }

    .service-layer-card,
    .service-layer-image,
    .service-floating-note {
      will-change: transform, opacity;
    }

    .service-feature-layered.is-ready .service-layer-card {
      animation: revealMainCard .42s cubic-bezier(.2,.8,.2,1) both;
    }

    .service-feature-layered.is-ready .service-text-columns > div:nth-child(1) {
      animation: revealServiceColumn .52s cubic-bezier(.2,.8,.2,1) .18s both;
    }

    .service-feature-layered.is-ready .service-text-columns > div:nth-child(2) {
      animation: revealServiceColumn .52s cubic-bezier(.2,.8,.2,1) .34s both;
    }

    .service-feature-layered.is-ready .service-layer-image {
      animation: revealImage .48s cubic-bezier(.2,.8,.2,1) .16s both;
    }

    .service-feature-layered.is-ready .service-floating-note {
      animation: revealNote .42s cubic-bezier(.2,.8,.2,1) .32s both;
    }

    @keyframes revealMainCard {
      from { opacity: 0; transform: translateY(18px) scale(.985); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes revealImage {
      from { opacity: 0; transform: rotate(-3deg) translateX(-22px) scale(.96); }
      to { opacity: 1; transform: rotate(-1.2deg) translateX(0) scale(1); }
    }

    @keyframes revealServiceColumn {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes revealNote {
      from { opacity: 0; transform: translateY(14px) scale(.92) rotate(2.5deg); }
      to { opacity: 1; transform: translateY(0) scale(1) rotate(2.5deg); }
    }

    .service-feature-layered::before {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 72%;
      border-radius: 36px;
      background: rgba(255, 250, 245, .88);
      border: 1px solid var(--line);
      box-shadow: 0 24px 70px rgba(24,24,24,.09);
      z-index: -2;
    }

    .service-feature-layered::after {
      content: "";
      position: absolute;
      left: 39%;
      bottom: 26px;
      width: 170px;
      height: 170px;
      background-image: radial-gradient(rgba(214,66,43,.28) 1.5px, transparent 1.5px);
      background-size: 16px 16px;
      opacity: .7;
      z-index: -1;
    }

    .service-layer-image {
      position: relative;
      height: 390px;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: 0 28px 70px rgba(0,0,0,.18);
      transform: rotate(-1.2deg);
      margin-left: 4px;
      z-index: 2;
    }

    .service-layer-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.03);
    }

    .service-layer-card {
      position: relative;
      min-height: 410px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 42px 64px 42px 118px;
      color: var(--text);
      z-index: 1;
    }

    .service-layer-card h3 {
      margin: 0 0 24px;
      color: var(--red);
      font-size: clamp(34px, 3.8vw, 58px);
      line-height: 1;
      letter-spacing: -.06em;
    }

    .service-text-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 46px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.68;
    }

    .service-text-columns > div {
      opacity: 0;
      transform: translateY(18px);
    }

    .service-text-columns p {
      margin: 0 0 16px;
    }

    .service-floating-note {
      position: absolute;
      left: 27%;
      bottom: 42px;
      width: 180px;
      transform: rotate(2.5deg);
      padding: 18px;
      border-radius: 22px;
      background: var(--red);
      color: white;
      box-shadow: 0 20px 52px rgba(214,66,43,.26);
      z-index: 3;
    }

    .service-floating-note strong {
      display: block;
      font-size: 18px;
      margin-bottom: 4px;
      letter-spacing: -.04em;
    }

    .service-floating-note span {
      color: rgba(255,255,255,.78);
      font-size: 13px;
    }

    .work-section {
      position: relative;
      width: min(1440px, calc(100% - 48px));
      margin: 30px auto 0;
      background: var(--dark);
      color: white;
      border-radius: 48px;
      overflow: visible;
      isolation: isolate;
    }

    .work-section::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(214, 66, 43, .42), rgba(214, 66, 43, 0) 66%);
      transform: translate(-18%, -18%);
      z-index: 0;
      pointer-events: none;
    }

    .work-head-container,
    .video-strip {
      position: relative;
      z-index: 1;
    }

    .work-head-container {
      margin-bottom: 10px;
    }

    .work-section .section-kicker {
      color: #ff8069;
    }

    .work-section .section-head p { color: rgba(255,255,255,.62); }

    .work-section .section-head::before {
      color: rgba(255, 255, 255, .055);
    }

    .work-section .section-head h2 {
      color: white;
    }

    .work-header {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      margin-bottom: 45px;
    }

    .work-header h2 {
      max-width: 760px;
      color: white;
      font-size: clamp(32px, 3.3vw, 50px);
      line-height: 1.05;
      letter-spacing: -.05em;
    }

    .video-strip {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      display: flex;
      gap: 28px;
      align-items: center;
      overflow-x: auto;
      overflow-y: visible;
      padding: 32px max(24px, calc((100vw - 1120px) / 2)) 52px;
      scroll-snap-type: x mandatory;
    }

    .video-strip::-webkit-scrollbar {
      height: 8px;
    }

    .video-strip::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,.18);
      border-radius: 999px;
    }

    .video-card {
      flex: 0 0 clamp(300px, 34vw, 470px);
      display: grid;
      gap: 14px;
      scroll-snap-align: center;
      opacity: 0;
      transition: transform .55s cubic-bezier(.16,.84,.24,1);
    }


    .work-section.is-visible .work-header {
      opacity: 1;
      transform: translateY(0);
    }

    .work-section.is-visible .video-card {
      opacity: 1;
      animation: videoCardIn 1.05s cubic-bezier(.16,.84,.24,1) both;
      transition: transform .55s cubic-bezier(.16,.84,.24,1), opacity .35s ease;
    }

    .work-section.is-visible .video-card:nth-child(1) { animation-delay: .25s; }
    .work-section.is-visible .video-card:nth-child(2) { animation-delay: .48s; }
    .work-section.is-visible .video-card:nth-child(3) { animation-delay: .71s; }
    .work-section.is-visible .video-card:nth-child(4) { animation-delay: .94s; }
    .work-section.is-visible .video-card:nth-child(5) { animation-delay: 1.17s; }
    .work-section.is-visible .video-card:nth-child(6) { animation-delay: 1.40s; }

    @keyframes videoCardIn {
      from {
        opacity: 0;
        transform: translateY(58px) rotate(0deg) scale(.92);
        filter: blur(12px);
      }
      58% {
        opacity: 1;
        filter: blur(0);
      }
      to {
        opacity: 1;
        transform: rotate(var(--card-rotate, 0deg)) translateY(var(--card-y, 0px)) scale(1);
        filter: blur(0);
      }
    }

    .video-card:nth-child(odd) {
      --card-rotate: -2.2deg;
      --card-y: 8px;
      transform: rotate(var(--card-rotate)) translateY(var(--card-y));
    }

    .video-card:nth-child(even) {
      --card-rotate: 1.8deg;
      --card-y: -10px;
      transform: rotate(var(--card-rotate)) translateY(var(--card-y));
    }

    .video-card:nth-child(3n) {
      --card-rotate: -1deg;
      --card-y: -2px;
      transform: rotate(var(--card-rotate)) translateY(var(--card-y));
    }


    .video-thumb {
      position: relative;
      display: block;
      aspect-ratio: 16 / 9;
      border-radius: 22px;
      overflow: hidden;
      background: #111;
      box-shadow: 0 24px 58px rgba(0,0,0,.28);
      transition: transform .28s ease, box-shadow .28s ease;
    }

    .video-card:hover .video-thumb {
      transform: translateY(-8px) scale(1.015);
      box-shadow: 0 30px 70px rgba(0,0,0,.34);
    }

    .video-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .86;
      transition: transform .3s ease, opacity .3s ease;
    }

    .video-thumb:hover img {
      transform: scale(1.04);
      opacity: 1;
    }

    .video-thumb::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.42), rgba(0,0,0,0) 58%);
    }

    .play-button {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      width: 68px;
      height: 48px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      padding-left: 4px;
      background: #e62117;
      color: white;
      font-size: 22px;
      box-shadow: 0 14px 26px rgba(0,0,0,.28);
    }

    .video-meta {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 18px;
    }

    .video-meta h3 {
      margin: 0;
      color: white;
      font-size: clamp(17px, 1.6vw, 22px);
      line-height: 1.25;
      letter-spacing: -.035em;
    }

    .video-meta time {
      color: #ff8069;
      font-weight: 900;
      white-space: nowrap;
      font-size: 15px;
    }

    .references {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .references-cloud {
      padding: 10px 0 28px;
    }

    .logo-box {
      min-height: 132px;
      opacity: 0;
      transform: translateY(calc(var(--logo-y, 0px) + 22px));
      display: grid;
      place-items: center;
      padding: 22px;
      border-radius: 26px;
      background: rgba(255,255,255,.58);
      border: 1px solid rgba(24,24,24,.08);
      box-shadow: 0 18px 46px rgba(24,24,24,.055);
      filter: grayscale(1);
      transition: opacity .45s ease, transform .45s ease, filter .25s ease, box-shadow .25s ease, background .25s ease;
    }

    .logo-box img {
      max-width: 200px;
      max-height: 82px;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    .references.is-visible .logo-box {
      opacity: .82;
      transform: translateY(var(--logo-y, 0px));
    }

    .references.is-visible .logo-box:nth-child(1) { transition-delay: .04s; }
    .references.is-visible .logo-box:nth-child(2) { transition-delay: .10s; }
    .references.is-visible .logo-box:nth-child(3) { transition-delay: .16s; }
    .references.is-visible .logo-box:nth-child(4) { transition-delay: .22s; }
    .references.is-visible .logo-box:nth-child(5) { transition-delay: .08s; }
    .references.is-visible .logo-box:nth-child(6) { transition-delay: .14s; }
    .references.is-visible .logo-box:nth-child(7) { transition-delay: .20s; }
    .references.is-visible .logo-box:nth-child(8) { transition-delay: .26s; }
    .references.is-visible .logo-box:nth-child(9) { transition-delay: .12s; }
    .references.is-visible .logo-box:nth-child(10) { transition-delay: .18s; }
    .references.is-visible .logo-box:nth-child(11) { transition-delay: .24s; }

    .logo-box:hover {
      opacity: 1;
      filter: grayscale(.05);
      transform: translateY(calc(var(--logo-y, 0px) - 5px));
      background: white;
      box-shadow: 0 24px 60px rgba(24,24,24,.09);
    }

    .logo-box:nth-child(4n + 2),
    .logo-box:nth-child(4n + 4) {
      --logo-y: 18px;
    }

    .contact-panel {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 28px;
      border-radius: 38px;
      background: var(--dark);
      color: white;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .contact-premium {
      position: relative;
      padding: 14px;
      isolation: isolate;
    }

    .contact-premium::before {
      content: "";
      position: absolute;
      inset: -30% auto auto -10%;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(214,66,43,.42), rgba(214,66,43,0) 66%);
      z-index: -1;
    }

    .contact-copy {
      padding: clamp(32px, 4vw, 52px);
      padding-right: 10px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 36px;
    }

    .contact-copy .contact-kicker {
      color: #ff8069;
    }

    .contact-title-block {
      position: relative;
      min-height: 145px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .contact-title-block::before {
      content: attr(data-bigtittle);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255, 255, 255, .055);
      font-size: clamp(64px, 7vw, 124px);
      line-height: .8;
      font-weight: 900;
      letter-spacing: -.08em;
      white-space: nowrap;
      pointer-events: none;
      z-index: 0;
    }

    .contact-title-block::after {
      content: none;
    }

    .contact-title-block .contact-kicker {
      display: none;
    }

    .contact-title-block h2 {
      position: relative;
      z-index: 1;
      color: white;
      font-size: 50px;
      letter-spacing: -.045em;
    }

    .contact-title-block h2::before {
      content: "";
      display: inline-block;
      width: 40px;
      height: 2px;
      margin-right: 20px;
      border-radius: 999px;
      background: var(--red);
      vertical-align: middle;
    }


    .contact-copy h2 {
      color: white;
      max-width: 640px;
      font-size: clamp(34px, 3.2vw, 52px);
    }

    .contact-copy > p:not(.section-kicker) {
      max-width: 560px;
      color: rgba(255,255,255,.72);
      font-size: 18px;
      line-height: 1.65;
      margin: 18px 0 0;
    }

    .contact-card-mini {
      width: min(360px, 100%);
      padding: 22px;
      border-radius: 26px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(16px);
      display: grid;
      gap: 8px;
    }

    .contact-card-mini strong {
      font-size: 20px;
      letter-spacing: -.04em;
    }

    .contact-card-mini a {
      position: relative;
      color: rgba(255,255,255,.78);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .contact-card-mini a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 1px;
      border-radius: 999px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left;
      opacity: .75;
      transition: transform .28s ease;
    }

    .contact-card-mini a {
      transition: color .25s ease;
    }

    .contact-card-mini a svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
      opacity: .72;
      transition: transform .22s ease, opacity .22s ease;
    }

    .contact-card-mini a:hover {
      color: white;
    }

    .contact-card-mini a:hover::after {
      transform: scaleX(1);
    }

    .contact-card-mini a:hover svg {
      opacity: 1;
      transform: translate(3px, -3px);
    }

    .contact-details {
      margin-top: 34px;
      display: grid;
      gap: 10px;
      color: rgba(255,255,255,.88);
      font-weight: 700;
    }

    .form {
      display: grid;
      gap: 16px;
    }

    .contact-form-card {
      margin: 0;
      padding: clamp(22px, 3vw, 34px);
      align-content: center;
      background: rgba(255,255,255,.92);
      color: var(--text);
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,.72);
      box-shadow: 0 22px 70px rgba(0,0,0,.18);
    }

    .contact-success {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(255,255,255,.92);
      color: #166534;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,.72);
      box-shadow: 0 22px 70px rgba(0,0,0,.18);
      padding: clamp(28px, 4vw, 44px) clamp(22px, 3vw, 34px);
      font-size: 15px;
      line-height: 1.5;
      flex-direction: column;
    }
    .contact-success svg { width: 28px; height: 28px; flex-shrink: 0; color: #16a34a; }
    .contact-success strong { display: block; font-size: 17px; margin-bottom: 2px; }

    .contact-form-error {
      background: #fef2f2;
      color: #b91c1c;
      border: 1px solid #fecaca;
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 13.5px;
      margin-bottom: 4px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form label {
      display: grid;
      gap: 8px;
    }

    .form label span {
      color: rgba(24,24,24,.56);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .form input,
    .form textarea,
    .form select {
      width: 100%;
      border: 1px solid rgba(24,24,24,.11);
      outline: 0;
      border-radius: 16px;
      padding: 16px 17px;
      font: inherit;
      background: rgba(255,255,255,.82);
      color: var(--text);
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .form input:focus,
    .form textarea:focus,
    .form select:focus {
      border-color: rgba(214,66,43,.52);
      background: white;
      box-shadow: 0 0 0 4px rgba(214,66,43,.1);
    }

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

    .form button {
      border: 0;
      min-height: 56px;
      border-radius: 16px;
      background: var(--red);
      color: white;
      font: inherit;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 18px 34px rgba(214,66,43,.24);
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    }

    .form button:hover {
      transform: translateY(-2px);
      background: var(--red-dark);
      box-shadow: 0 22px 42px rgba(214,66,43,.3);
    }

    .site-footer {
      position: relative;
      padding: 64px 24px 28px;
      background:
        radial-gradient(circle at 12% 18%, rgba(214,66,43,.28), transparent 34%),
        radial-gradient(circle at 84% 8%, rgba(159,38,24,.22), transparent 32%),
        radial-gradient(circle at 52% 100%, rgba(255,255,255,.035), transparent 38%),
        #161616;
      color: rgba(255,255,255,.68);
      font-size: 14px;
      overflow: hidden;
      isolation: isolate;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      width: min(760px, 70vw);
      height: 1px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, rgba(214,66,43,.75), transparent);
      z-index: 1;
    }

    .site-footer::after {
      content: "";
      position: absolute;
      inset: -35% -12% auto -12%;
      height: 420px;
      background:
        radial-gradient(circle at 18% 35%, rgba(214,66,43,.28), transparent 32%),
        radial-gradient(circle at 78% 42%, rgba(255,255,255,.045), transparent 30%),
        radial-gradient(circle at 52% 8%, rgba(0,0,0,.74), transparent 48%);
      filter: blur(34px);
      pointer-events: none;
      z-index: -1;
    }

    .footer-inner {
      width: min(1120px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.15fr .9fr .9fr;
      gap: clamp(34px, 5vw, 78px);
      align-items: start;
    }

    .footer-brand img {
      width: auto;
      height: 44px;
      margin-bottom: 20px;
      filter: brightness(0) invert(1);
    }

    .footer-brand p {
      max-width: 390px;
      margin: 0;
      color: rgba(255,255,255,.62);
      font-size: 15px;
      line-height: 1.65;
    }

    .footer-links,
    .footer-contact {
      display: grid;
      gap: 12px;
    }

    .footer-links a,
    .footer-contact a,
    .footer-bottom a {
      position: relative;
      width: fit-content;
      color: rgba(255,255,255,.68);
      font-weight: 600;
      transition: color .25s ease;
    }

    .footer-links a::after,
    .footer-contact a::after,
    .footer-bottom a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 1px;
      border-radius: 999px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left;
      opacity: .72;
      transition: transform .28s ease;
    }

    .footer-links a:hover,
    .footer-contact a:hover,
    .footer-bottom a:hover {
      color: white;
    }

    .footer-links a:hover::after,
    .footer-contact a:hover::after,
    .footer-bottom a:hover::after {
      transform: scaleX(1);
    }

    .footer-contact {
      justify-items: end;
      text-align: right;
    }

    .footer-bottom {
      width: min(1120px, 100%);
      margin: 54px auto 0;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.09);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      color: rgba(255,255,255,.48);
    }


    @media (max-width: 920px) {
      .section-head h2 { text-align: left; font-size: 32px; }
      .section-head { min-height: 50px; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-contact { justify-items: start; text-align: left; }
      .footer-bottom { display: flex; align-items: flex-start; flex-direction: column; }
      .nav { display: none; }
      .nav-toggle { display: flex; }
      .header-cta { display: none; }
      .header-socials { display: none; }
      .site-header { padding: 20px 24px; }
      .site-header.scrolled { padding: 14px 24px; }
      .story-grid, .contact-panel { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .work-header { align-items: flex-start; flex-direction: column; }
      .hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,.7) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.4) 100%); }
      .hero-content { padding: 120px 24px 70px; }
      .hero-content-box { max-width: 100%; }
      .service-feature-layered { grid-template-columns: 1fr; padding: 0; }
      .service-feature-layered::before { left: 0; right: 0; width: auto; top: 120px; }
      .service-layer-image { height: 360px; margin: 0 24px -70px; }
      .service-layer-card { padding: 110px 34px 38px; }
      .service-text-columns { grid-template-columns: 1fr; gap: 0; }
      .service-floating-note { display: none; }
      .video-card { flex-basis: clamp(280px, 52vw, 430px); }
      .story-columns { grid-template-columns: 1fr; }
      .references { grid-template-columns: repeat(2, 1fr); }
      .logo-box:nth-child(n) { transform: none; --logo-x: 0; --logo-y: 0; }
      .form { border-left: 0; }
    }

    @media (max-width: 620px) {
      .work-section { width: calc(100% - 24px); border-radius: 32px; }
      .hero-content { padding-top: 112px; }
      .story-columns, .references { grid-template-columns: 1fr; }
      .service-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
      .service-pill { white-space: nowrap; }
      .service-layer-image { height: 320px; margin-inline: 0; }
      .service-layer-card { padding-inline: 24px; }
      .video-strip { gap: 18px; padding-bottom: 34px; }
      .video-card { flex-basis: 82vw; transform: none !important; }
      .video-meta { align-items: flex-start; flex-direction: column; gap: 6px; }
      .story-panel, .contact-copy { padding: 5px; }
      .story-portrait { min-height: 360px; }
      .story-portrait img { height: 420px; }
      .section { padding: 68px 18px; }
      .contact-title-block { min-height: 90px; }
    }

    /* ── Video Modal ──────────────────────────────────────────── */
    .video-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .video-modal[hidden] { display: none; }

    .video-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.88);
      cursor: pointer;
    }

    .video-modal-inner {
      position: relative;
      width: 100%;
      max-width: 920px;
      z-index: 1;
    }

    .video-modal-close {
      position: absolute;
      top: -44px;
      right: 0;
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
      padding: 8px;
      line-height: 1;
      opacity: .75;
      transition: opacity .2s;
    }

    .video-modal-close:hover { opacity: 1; }

    .video-modal-frame {
      position: relative;
      aspect-ratio: 16 / 9;
      border-radius: 16px;
      overflow: hidden;
      background: #000;
    }

    .video-modal-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }