:root {
      --cream: #f7f2ec;
      --sand: #e8ddd1;
      --blush: #dccbc2;
      --taupe: #b8a89a;
      --cocoa: #8b6f5a;
      --brown: #5c4033;
      --espresso: #4a352b;
      --ink: #2d2522;
      --white: #fffdf9;
      --champagne: #c9a25e;
      --champagne-soft: #e3c894;
      --gold-line: rgba(201, 162, 94, .5);
      --hairline: rgba(74, 53, 43, .12);
      --r-sm: 14px;
      --r-md: 20px;
      --r-lg: 28px;
      --r-xl: 36px;
      --shadow-sm: 0 8px 24px rgba(74, 53, 43, .08);
      --shadow-md: 0 16px 48px rgba(74, 53, 43, .12);
      --shadow-lg: 0 24px 70px rgba(74, 53, 43, .16);
      --shadow: var(--shadow-lg);
      --section-y: clamp(72px, 9vw, 126px);
      --display: "Bodoni Moda", Georgia, serif;
      --body: "Jost", "Avenir Next", sans-serif;
      --max: 1180px;
      --max-tariffs: 1400px;
      --nav-height: 112px;
      --nav-logo-height: 108px;
      --footer-line-gap: 10px;
      --focus-ring: 0 0 0 2px var(--cream), 0 0 0 4px var(--champagne);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: clip;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--cream);
      font-family: var(--body);
      font-size: 17px;
      line-height: 1.65;
    }

    body.modal-open {
      overflow: hidden;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
    }

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

    :focus-visible {
      outline: none;
      box-shadow: var(--focus-ring);
    }

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

    .button:focus-visible,
    .menu a:focus-visible,
    .mobile-menu a:focus-visible,
    .category-trigger:focus-visible,
    .team-spotlight-card:focus-visible,
    .service-tile:focus-visible {
      outline: none;
      box-shadow: var(--focus-ring);
    }

    .announcement {
      display: flex;
      justify-content: center;
      gap: clamp(18px, 4vw, 64px);
      padding: 10px 18px;
      color: var(--cream);
      background: var(--espresso);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .announcement--location {
      display: block;
      overflow: hidden;
      padding: 12px 0;
      border-bottom: 1px solid rgba(201, 162, 94, .22);
      text-transform: none;
      letter-spacing: normal;
      font-size: 13px;
      font-weight: 500;
      line-height: 1;
    }

    .announcement-marquee {
      overflow: hidden;
      width: 100%;
    }

    .announcement-track {
      display: flex;
      width: max-content;
      animation: announcement-scroll var(--marquee-duration, 40s) linear infinite;
      will-change: transform;
    }

    .announcement-group {
      display: flex;
      flex: 0 0 auto;
      align-items: center;
    }

    .announcement-text {
      margin: 0;
      padding-right: 4rem;
      white-space: nowrap;
      flex: 0 0 auto;
    }

    .announcement--location a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: .18em;
    }

    @keyframes announcement-scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(var(--marquee-shift, -50%));
      }
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid var(--hairline);
      background: rgba(247, 242, 236, .94);
      backdrop-filter: blur(18px);
    }

    .nav {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      min-height: var(--nav-height);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 24px;
    }

    .brand {
      display: inline-block;
      line-height: 0;
      text-decoration: none;
    }

    .brand-logo {
      display: block;
      width: auto;
      height: var(--nav-logo-height);
      max-width: min(260px, 50vw);
      object-fit: contain;
    }

    .menu {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: clamp(16px, 2.8vw, 34px);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .menu a {
      position: relative;
      padding: 8px 0;
    }

    .menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, var(--champagne), var(--champagne-soft));
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .24s ease;
    }

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

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 13px 24px;
      border: 1px solid transparent;
      border-radius: 999px;
      background: var(--brown);
      color: var(--cream);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .12em;
      line-height: 1;
      text-transform: uppercase;
      box-shadow: var(--shadow-sm);
      transition:
        transform .22s ease,
        background .22s ease,
        color .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
    }

    .button:hover {
      transform: translateY(-2px);
      background: var(--cocoa);
      box-shadow: var(--shadow-md);
    }

    .nav-cta {
      min-height: 40px;
      padding: 10px 20px;
    }

    .nav-cta:hover,
    .nav > .button.nav-cta:hover {
      background: var(--cocoa);
    }

    .button.light {
      border-color: rgba(247, 242, 236, .58);
      background: rgba(247, 242, 236, .14);
      color: var(--cream);
      box-shadow: none;
    }

    .button.light:hover {
      border-color: var(--gold-line);
      background: rgba(247, 242, 236, .22);
      color: var(--cream);
    }

    .button.ghost {
      border-color: rgba(74, 53, 43, .28);
      background: transparent;
      color: var(--espresso);
      box-shadow: none;
    }

    .button.ghost:hover {
      border-color: var(--gold-line);
      background: rgba(255, 253, 249, .5);
      color: var(--brown);
    }

    .button.light--surface {
      border-color: rgba(74, 53, 43, .28);
      background: var(--white);
      color: var(--espresso);
      box-shadow: var(--shadow-sm);
    }

    .button.light--surface:hover {
      border-color: var(--gold-line);
      background: var(--cream);
      color: var(--brown);
    }

    .mobile-trigger {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 999px;
      background: var(--sand);
      color: var(--espresso);
      font-size: 22px;
    }

    .mobile-menu {
      display: none;
      padding: 10px 20px 24px;
      border-top: 1px solid rgba(74, 53, 43, .12);
      background: var(--cream);
    }

    .mobile-menu a {
      display: block;
      padding: 16px 0;
      border-bottom: 1px solid rgba(74, 53, 43, .12);
      color: var(--espresso);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .14em;
      text-align: center;
      text-transform: uppercase;
    }

    .mobile-menu.is-open {
      display: block;
    }

    .menu a[aria-current="page"],
    .hero-mobile-visual {
      display: none;
    }

    .hero {
      min-height: calc(100svh - 120px);
      display: grid;
      align-items: end;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      padding: 0;
      color: var(--cream);
      background:
        linear-gradient(180deg, rgba(45, 37, 34, .24), rgba(45, 37, 34, .72)),
        url("images/Team/hero-team.avif?v=20260619") center 38% / cover;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: .04;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 42%;
      z-index: 0;
      background: linear-gradient(0deg, rgba(45, 37, 34, .78), transparent);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      padding: clamp(58px, 9vw, 120px) 0 clamp(44px, 6vw, 78px);
      display: block;
      max-width: 920px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-top: 28px;
    }

    .eyebrow {
      position: relative;
      margin: 0 0 18px;
      padding-bottom: 14px;
      color: var(--champagne);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .24em;
      text-transform: uppercase;
      opacity: .95;
    }

    .eyebrow::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 2.5rem;
      height: 1px;
      background: linear-gradient(90deg, var(--champagne), transparent);
    }

    .hero .eyebrow,
    .results .eyebrow,
    .trust-section .eyebrow {
      color: var(--champagne-soft);
    }

    .hero .eyebrow::after,
    .results .eyebrow::after,
    .trust-section .eyebrow::after {
      background: linear-gradient(90deg, var(--champagne-soft), transparent);
    }

    h1,
    h2,
    h3 {
      margin: 0;
      font-family: var(--display);
      font-weight: 600;
      line-height: .96;
      letter-spacing: -.025em;
    }

    h1 {
      max-width: 980px;
      font-size: clamp(44px, 6.8vw, 88px);
    }

    .hero h1 {
      font-size: clamp(44px, 6.8vw, 88px);
    }

    h2 {
      font-size: clamp(36px, 5.5vw, 64px);
    }

    h3 {
      font-size: clamp(24px, 2.8vw, 40px);
    }

    .hero-copy {
      max-width: 530px;
      margin: 26px 0 0;
      color: rgba(247, 242, 236, .88);
      font-size: clamp(18px, 2.1vw, 24px);
      font-weight: 300;
      line-height: 1.45;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }
    @media (max-width: 980px) {
      .menu,
      .nav > .button {
        display: none;
      }

      .site-header {
        width: 100%;
        box-sizing: border-box;
        padding-inline: 14px;
      }

      .nav {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 10px;
        min-height: 0;
        padding-block: 10px;
        grid-template-columns: none;
      }

      .site-header .nav {
        display: flex;
      }

      .brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 52px);
      }

      .brand-logo {
        height: clamp(76px, 22vw, 96px);
        max-width: 100%;
      }

      .mobile-trigger {
        display: inline-grid;
        flex: 0 0 44px;
        margin-left: auto;
        place-items: center;
      }

      .hero {
        display: block;
        position: relative;
        min-height: 0;
        overflow: hidden;
        background: transparent;
        color: var(--cream);
        isolation: isolate;
      }

      .hero::after {
        display: none;
      }

      .hero::before {
        display: none;
      }

      .hero-inner {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
        width: 100%;
        max-width: none;
        max-height: 100%;
        margin: 0;
        overflow: hidden;
        padding: clamp(20px, 5vw, 32px) clamp(14px, 4vw, 20px) clamp(24px, 6vw, 40px);
        background: none;
      }

      .hero-content {
        position: relative;
        z-index: 2;
      }

      .hero .eyebrow {
        color: var(--champagne-soft);
        text-shadow: 0 1px 16px rgba(0, 0, 0, .55);
      }

      .hero .eyebrow::after {
        background: linear-gradient(90deg, var(--champagne-soft), transparent);
      }

      .hero h1 {
        color: var(--white);
        text-shadow: 0 2px 24px rgba(0, 0, 0, .55);
      }

      .hero-copy {
        max-width: none;
        margin-top: 16px;
        color: rgba(255, 253, 249, .96);
        font-size: clamp(16px, 4.2vw, 18px);
        line-height: 1.4;
        text-shadow: 0 1px 18px rgba(0, 0, 0, .5);
      }

      .hero-badges {
        display: none;
      }

      .hero-actions {
        margin-top: 20px;
      }

      .hero-mobile-visual {
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        margin: 0;
        line-height: 0;
      }

      .hero-mobile-visual img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        vertical-align: top;
      }

      .hero .button.light {
        border-color: rgba(247, 242, 236, .45);
        background: rgba(247, 242, 236, .14);
        color: var(--cream);
      }

      .hero .button.light:hover {
        background: rgba(247, 242, 236, .24);
        color: var(--cream);
      }

      .hero-inner,
      .section-head,
      .story-grid,
      .tariff-wrap,
