    :root {
      --ink: #41362A;
      --panel: rgba(245, 243, 238, 0.05);
      --panel-hover: rgba(245, 243, 238, 0.1);
      --sand: #FFF3DC;
      --sand-dim: rgba(255, 243, 220, 0.66);
      --sand-faint: rgba(255, 243, 220, 0.18);
      --gold: #AA8837;
      --gold-dim: rgba(170, 136, 55, 0.35);
      --rose: #846555;
      --plum: #D1BDAD;
      --offwhite: #F5F3EE;
      --ff-display: 'Poltawski Nowy', serif;
      --ff-mono: 'Jost', sans-serif;
      --ff-body: 'Jost', sans-serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--ink);
      color: var(--sand);
      font-family: var(--ff-body);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    ::selection {
      background: var(--gold);
      color: var(--ink);
    }

    .grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 200;
      opacity: 0.05;
      mix-blend-mode: overlay;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .eyebrow {
      font-family: var(--ff-mono);
      font-size: 1rem;
      line-height: 1;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 20px;
      border: 1px solid var(--gold);
      border-radius: 999px;
      background: none;
    }

    .eyebrow .spark {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
      color: var(--gold);
    }

    section {
      position: relative;
      z-index: 2;
      padding: min(14vw, 140px) 6vw;
    }

    .menu-toggle {
      position: fixed;
      top: min(5vw, 32px);
      right: min(5vw, 32px);
      z-index: 300;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 1px solid var(--gold-dim);
      background: var(--ink);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
      transition: border-color .3s, background .3s;
    }

    .menu-toggle:hover {
      background: linear-gradient(90deg, #8A6A2E 0%, #E8C877 50%, #8A6A2E 100%);
      border-color: transparent;
    }

    .menu-toggle-bar {
      width: 18px;
      height: 1px;
      background: var(--sand);
      transition: transform .35s ease, opacity .35s ease, background .35s;
    }

    .menu-toggle:hover .menu-toggle-bar {
      background: var(--ink);
    }

    .menu-toggle.is-open {
      border-color: var(--gold);
    }

    .menu-toggle.is-open .menu-toggle-bar:first-child {
      transform: translateY(3.5px) rotate(45deg);
    }

    .menu-toggle.is-open .menu-toggle-bar:last-child {
      transform: translateY(-3.5px) rotate(-45deg);
    }

    .site-menu {
      position: fixed;
      inset: 0;
      z-index: 250;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(23, 19, 16, 0.97);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      opacity: 0;
      visibility: hidden;
      transition: opacity .45s ease, visibility 0s linear .45s;
    }

    .site-menu.is-open {
      opacity: 1;
      visibility: visible;
      transition: opacity .45s ease;
    }

    .site-menu-list {
      list-style: none;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: min(3vw, 22px);
    }

    .site-menu-link {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: var(--ff-display);
      font-style: italic;
      font-weight: 600;
      font-size: clamp(1.6rem, 4vw, 2.8rem);
      color: var(--sand);
      opacity: 0.8;
      transition: opacity .3s, color .3s;
    }

    .site-menu-link:hover {
      opacity: 1;
      color: var(--gold);
    }

    .site-menu-link .spark {
      width: 0.55em;
      height: 0.55em;
      flex-shrink: 0;
      color: var(--gold);
    }

    body.menu-open {
      overflow: hidden;
    }

    .hero-logo {
      height: clamp(90px, 22vh, 180px);
      width: auto;
      margin-bottom: clamp(28px, 6vh, 48px);
      animation: heroLogoIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    @keyframes heroLogoIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media(max-width:640px) {
      .hero-logo {
        height: clamp(70px, 16vh, 120px);
        margin-bottom: clamp(20px, 5vh, 32px);
      }
    }

    .hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 0;
      padding-bottom: 0;
      overflow: hidden;
      position: relative;
      background:
        linear-gradient(180deg, rgba(11,10,13,0.42) 0%, rgba(11,10,13,0.3) 40%, rgba(11,10,13,0.85) 100%),
              url('../images/hero-bg.webp');
      background-size: cover;
      background-position: 60% 40%;
    }

    @media(max-width:640px) {
      .hero {
        background-position: 40% 40%;
      }
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1440px;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero h1 {
      font-family: var(--ff-display);
      font-weight: 600;
      font-size: clamp(1.92rem, min(5vw, 7vh), 4.17rem);
      line-height: 1.02;
      letter-spacing: -0.02em;
      max-width: 17ch;
      margin: 0 auto;
      min-height: 5.1em;
    }

    @media(min-width:1200px) {
      .hero h1 {
        max-width: 22ch;
        min-height: 3.06em;
      }
    }

    @media(min-width:768px) and (max-width:992px) {
      .hero h1 {
        max-width: 21ch;
        min-height: 4.08em;
      }
    }

    @media(max-width:640px) {
      .hero h1 {
        font-size: min(2.8rem, 7vh);
      }
    }

    .hero h1 .word {
      display: inline-block;
      overflow: hidden;
      padding: 0.12em 0.06em 0.14em 0;
      margin: -0.12em -0.06em -0.14em 0;
    }

    .hero h1 .word.word-em {
      padding-right: 0.18em;
    }

    .hero h1 .word span {
      display: inline-block;
      transform: translateY(115%);
    }

    .hero h1 em {
      font-style: italic;
      font-weight: 600;
      display: inline-block;
      padding: 0 0.2em 0.16em 0;
      margin: 0 -0.2em -0.16em 0;
      background: linear-gradient(90deg, #C9A24B 0%, #F0D9A0 50%, #C9A24B 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-sub {
      margin: 38px auto 0;
      max-width: 72ch;
      color: var(--sand-dim);
      font-size: 1.18rem;
      line-height: 1.7;
    }

    .bridge {
      border-top: 1px solid var(--sand-faint);
      padding-top: 0;
      padding-bottom: 0;
      background:
        radial-gradient(140% 100% at 20% 100%, rgba(170, 136, 55, 0.3) 0%, transparent 60%),
        linear-gradient(160deg, rgba(255, 243, 220, 0.52) 0%, rgba(245, 231, 200, 0.25) 55%, rgba(232, 214, 178, 0.52) 100%),
        url('../images/cats-bg-light.webp');
      background-size: auto, auto, cover;
      background-position: center, center, 30% 40%;
      color: var(--ink);
    }

    .bridge .eyebrow {
      border-color: var(--ink);
      color: var(--ink);
    }

    .bridge .eyebrow .spark {
      color: var(--ink);
    }

    .bridge-pin {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: min(10vw, 110px) 6vw;
    }

    .bridge-inner {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(280px, 528px) minmax(320px, 1fr);
      align-items: center;
      gap: min(8vw, 90px);
      text-align: left;
    }

    .bridge-head {
      max-width: 640px;
      margin: 0 0 min(2vw, 24px);
    }

    .bridge-head h2 {
      font-family: var(--ff-display);
      font-weight: 600;
      font-style: italic;
      font-size: clamp(1.7rem, 3.2vw, 3.4rem);
      margin-top: 16px;
      line-height: 1.2;
    }

    .bridge-text {
      max-width: 56ch;
      color: rgba(65, 54, 42, 0.75);
      font-size: 1.1rem;
      line-height: 1.75;
      margin: 0 0 22px;
    }

    .bridge-text:last-child {
      margin-bottom: 0;
    }

    .bridge-media {
      position: relative;
      width: 100%;
      max-width: 528px;
      aspect-ratio: 1 / 1.05;
      margin: 0 auto;
    }

    .bridge-photo {
      position: absolute;
      object-fit: cover;
      border-radius: 14px;
      border: 1px solid rgba(170, 136, 55, 0.55);
      box-shadow: 0 20px 45px rgba(46, 38, 29, 0.35);
      background: var(--ink);
    }

    .bridge-photo-skyline {
      width: 64%;
      height: 44%;
      left: 0;
      bottom: 0;
      z-index: 2;
    }

    .bridge-photo-filming {
      width: 56%;
      height: 40%;
      right: 0;
      bottom: 6%;
      z-index: 1;
    }

    .bridge-photo-portrait {
      width: 66%;
      height: 62%;
      top: 0;
      left: 15%;
      z-index: 3;
    }

    @media(max-width:1150px) {
      .bridge-inner {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .bridge-head {
        margin: 0 auto min(6vw, 56px);
      }

      .bridge-text {
        margin-left: auto;
        margin-right: auto;
      }

      .bridge-media {
        max-width: 408px;
        margin-bottom: min(8vw, 48px);
      }
    }

    .cats-deliverables-bg {
      position: relative;
      background:
        linear-gradient(180deg, rgba(10, 7, 5, 0.55) 0%, rgba(10, 7, 5, 0.4) 50%, rgba(10, 7, 5, 0.62) 100%),
        url('../images/prisma-brilho2.webp?v=2');
      background-size: cover;
      background-position: center;
    }

    .cats {
      border-top: 1px solid var(--sand-faint);
      padding-bottom: 0 !important;
    }

    .cats-inner {
      max-width: 1440px;
      margin: 0 auto;
    }

    .cats-head {
      margin-bottom: min(2vw, 24px);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .cats-head h2 {
      font-family: var(--ff-display);
      font-style: italic;
      font-weight: 600;
      font-size: clamp(1.7rem, 3.2vw, 3.4rem);
      margin: 16px 0 0;
    }

    .carousel-viewport {
      position: relative;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      height: 500px;
      margin-top: min(4vw, 40px);
      overflow-x: hidden;
      overflow-y: visible;
    }

    .carousel-track {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .carousel-card {
      position: absolute;
      left: 50%;
      top: 50%;
      width: clamp(170px, 17vw, 240px);
      height: 400px;
      border-radius: 14px;
      overflow: hidden;
      background: linear-gradient(160deg, #33291D 0%, #16110C 100%);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
      transition: box-shadow 0.7s ease;
      will-change: transform;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    .carousel-card.is-center {
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45), 0 0 22px 2px rgba(232, 200, 119, 0.35);
    }

    .carousel-card-image {
      position: relative;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    @media(max-width:640px) {
      .carousel-viewport {
        height: 380px;
      }

      .carousel-card {
        height: 300px;
      }
    }

    .carousel-card-scrim {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 7, 5, 0.92) 0%, rgba(10, 7, 5, 0.55) 38%, transparent 72%);
    }

    .carousel-card-overlay {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 14px 12px 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .carousel-card-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 243, 220, 0.14);
      border: 1px solid rgba(255, 243, 220, 0.3);
      backdrop-filter: blur(3px);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      flex-shrink: 0;
    }

    .carousel-card-icon svg {
      width: 17px;
      height: 17px;
      stroke: var(--sand);
      fill: none;
      stroke-width: 1.7;
    }

    .carousel-card-title {
      font-family: var(--ff-body);
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--sand);
    }

    .carousel-veil {
      position: absolute;
      inset: 0;
      background: #0A0705;
      opacity: 0;
      pointer-events: none;
      z-index: 5;
    }

    .deliverables {
      color: var(--sand);
    }

    .deliverables-inner {
      max-width: 1440px;
      margin: 0 auto;
    }

    .deliverables-head {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: min(2vw, 24px);
    }

    .deliverables-head h2 {
      font-family: var(--ff-display);
      font-style: italic;
      font-weight: 600;
      font-size: clamp(1.7rem, 3.2vw, 3.4rem);
      margin: 16px 0 0;
    }

    .deliverables-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: min(2.2vw, 24px);
    }

    .deliverable-item {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
      padding: 34px 20px 28px;
      border-radius: 16px;
      border: 1px solid #AA8837;
      background: linear-gradient(90deg,rgba(99, 71, 91, 0.6) 0%, rgba(137, 106, 73, .5) 50%, rgba(161, 127, 59, .7) 100%);
      box-shadow: 0 14px 30px rgba(10, 7, 5, 0.3);
    }

    .deliverable-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(255, 243, 220, 0.08);
      border: 1px solid var(--gold-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .deliverable-icon svg {
      width: 31px;
      height: 31px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1;
    }

    .deliverable-copy h3 {
      font-family: var(--ff-display);
      font-weight: 600;
      font-size: 1.4rem;
      color: #FFF3DC;
      margin-bottom: 8px;
    }

    .deliverable-copy p {
      line-height: 1.5;
      color: rgba(255, 243, 220, 0.75);
      font-size: 1.1rem;
    }

    @media(max-width:960px) {
      .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:640px) {
      .deliverables-grid {
        grid-template-columns: 1fr;
      }

      .deliverable-item {
        border-radius: 24px;
        padding: 24px;
      }
    }

    .mission {
      position: relative;
      border-top: 1px solid var(--sand-faint);
      padding: 0;
    }

    .mission-inner {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: clamp(460px, 46vw, 640px);
    }

    .mission-media {
      position: relative;
      background-size: cover;
      background-position: center;
    }

    .mission-media-scrim {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, #171310 0%, rgba(23, 19, 16, 0) 18%);
    }

    .mission-content {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: #171310;
      padding: min(6vw, 64px) min(6vw, 64px) min(6vw, 64px) max(6vw, calc((100vw - 1440px) / 2 + 6vw));
    }

    .mission-head {
      margin-bottom: min(2vw, 24px);
    }

    .mission-head h2 {
      font-family: var(--ff-display);
      font-style: italic;
      font-weight: 600;
      font-size: clamp(1.7rem, 3.2vw, 3.4rem);
      margin: 16px 0 0;
    }

    .mission-list {
      list-style: none;
      max-width: 46ch;
    }

    .mission-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 12px 0;
      font-size: 1.1rem;
      line-height: 1.5;
      color: var(--sand-dim);
    }

    .mission-bullet {
      width: 11px;
      height: 11px;
      flex-shrink: 0;
      margin-top: 5px;
      color: var(--gold);
    }

    @media(max-width:860px) {
      .mission-inner {
        grid-template-columns: 1fr;
      }

      .mission-media {
        min-height: 280px;
      }

      .mission-media-scrim {
        background: linear-gradient(to bottom, rgba(23, 19, 16, 0) 78%, #171310 100%);
      }

      .mission-content {
        padding: min(10vw, 56px) 6vw;
      }
    }

    .media {
      border-top: 1px solid var(--sand-faint);
      position: relative;
      background:
        radial-gradient(120% 90% at 74% 0%, rgba(255, 255, 255, 0.28) 0%, transparent 55%),
        radial-gradient(140% 100% at 15% 100%, rgba(170, 136, 55, 0.14) 0%, transparent 60%),
        linear-gradient(160deg, rgba(255, 243, 220, 0.86) 0%, rgba(248, 233, 202, 0.5) 50%, rgba(255, 243, 220, 0.92) 100%),
        url('../images/media-bg.webp');
      background-size: auto, auto, auto, cover;
      background-position: center, center, center, 72% 32%;
      color: var(--ink);
    }

    .media .eyebrow {
      border-color: var(--ink);
      color: var(--ink);
    }

    .media .eyebrow .spark {
      color: var(--ink);
    }

    .media-inner {
      max-width: 1440px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .media-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: min(2vw, 24px);
    }

    .media-head h2 {
      font-family: var(--ff-display);
      font-style: italic;
      font-weight: 600;
      font-size: clamp(1.7rem, 3.2vw, 3.4rem);
      margin: 16px 0 0;
    }

    .media-nav-group {
      display: flex;
      gap: 12px;
    }

    .media-nav {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid var(--gold-dim);
      background: var(--ink);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .3s, border-color .3s, color .3s;
      flex-shrink: 0;
    }

    .media-nav:hover {
      background: linear-gradient(90deg, #8A6A2E 0%, #E8C877 50%, #8A6A2E 100%);
      border-color: transparent;
      color: var(--ink);
    }

    .media-nav svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
    }

    .media-track {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
      -webkit-overflow-scrolling: touch;
      padding: 4px 4px 12px;
    }

    .media-track::-webkit-scrollbar {
      display: none;
    }

    .media-card {
      scroll-snap-align: start;
      flex: 0 0 auto;
      width: clamp(260px, 30vw, 360px);
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 30px;
      padding: 30px;
      border-radius: 14px;
      border: 1px solid rgba(65, 54, 42, 0.16);
      background: rgba(255, 250, 240, 0.32);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: border-color .35s, background .35s, transform .35s;
    }

    .media-card:hover {
      border-color: rgba(170, 136, 55, 0.55);
      background: rgba(255, 250, 240, 0.5);
      transform: translateY(-4px);
    }

    .media-outlet {
      font-family: var(--ff-mono);
      font-size: 1.1rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #8A6A2E;
      display: block;
      margin-bottom: 16px;
    }

    .media-title {
      font-family: var(--ff-display);
      font-weight: 500;
      font-size: clamp(1.05rem, 1.6vw, 1.3rem);
      line-height: 1.35;
      color: var(--ink);
    }

    .media-card-bottom {
      display: flex;
      justify-content: flex-end;
    }

    .media-arrow-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--gold-dim);
      background: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
      transition: background .35s, color .35s, border-color .35s;
    }

    .media-arrow-btn svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      transition: transform .35s;
    }

    .media-card:hover .media-arrow-btn {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--ink);
    }

    .media-card:hover .media-arrow-btn svg {
      transform: translate(2px, -2px);
    }

    @media(max-width:640px) {
      .media-card {
        width: clamp(230px, 78vw, 320px);
        padding: 24px;
      }
    }

    .contact {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background:
        linear-gradient(rgba(23, 19, 16, 0.92), rgba(23, 19, 16, 0.92)),
        url('../images/contact-bg.webp?v=2');
      background-size: cover;
      background-position: center;
    }

    .contact-inner {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: min(8vw, 100px);
      max-width: 1440px;
      margin: 0 auto;
    }

    @media(max-width:860px) {
      .contact-inner {
        grid-template-columns: 1fr;
      }
    }

    .contact h2 {
      font-family: var(--ff-display);
      font-style: italic;
      font-weight: 600;
      font-size: clamp(1.7rem, 3.2vw, 3.4rem);
      margin-top: 16px;
      margin-bottom: 24px;
    }

    .contact-info p {
      color: var(--sand-dim);
      max-width: 38ch;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 34px;
    }

    .contact-form-col {
      display: flex;
      flex-direction: column;
      max-width: 480px;
    }

    .contact-quick {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 24px;
      margin-bottom: 28px;
    }

    .contact-quick-item {
      display: flex;
      align-items: center;
      gap: 16px;
      font-family: var(--ff-mono);
      font-size: 1.1rem;
      transition: color .3s;
    }

    .contact-quick-item:hover {
      color: var(--gold);
    }

    .contact-icon-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--gold-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
      transition: background .3s, color .3s, border-color .3s;
    }

    .contact-quick-item:hover .contact-icon-btn {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--ink);
    }

    .contact-icon-btn svg {
      width: 20px;
      height: 20px;
    }

    .contact-divider {
      border-top: 1px solid var(--sand-faint);
      margin-bottom: 28px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .field {
      position: relative;
    }

    .field label {
      font-family: var(--ff-mono);
      font-size: 1.1rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--sand-dim);
      display: block;
      margin-bottom: 10px;
    }

    .field input,
    .field textarea {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--sand-faint);
      color: var(--sand);
      font-family: var(--ff-body);
      font-size: 1.1rem;
      padding: 10px 2px;
      resize: none;
      transition: border-color .3s;
    }

    .field input:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--gold);
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(255, 243, 220, 0.28);
    }

    .btn {
      align-self: flex-end;
      margin-top: 8px;
      background: none;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: var(--ff-mono);
      font-size: 1.1rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 16px 34px;
      cursor: pointer;
      transition: background .35s, color .35s;
    }

    .btn:hover {
      background: linear-gradient(90deg, #8A6A2E 0%, #E8C877 50%, #8A6A2E 100%);
      color: var(--ink);
      border-color: transparent;
    }

    footer {
      position: relative;
      z-index: 2;
      padding: 18px 6vw;
      border-top: 1px solid var(--sand-faint);
      font-family: var(--ff-mono);
      font-size: 1.1rem;
      color: var(--sand-dim);
      letter-spacing: 0.06em;
    }

    .footer-inner {
      max-width: 1440px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(36px);
    }

    @media(max-width:640px) {
      .bridge-head h2,
      .cats-head h2,
      .deliverables-head h2,
      .mission-head h2,
      .media-head h2,
      .contact h2 {
        font-size: 2.4rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation: none !important;
        transition: none !important;
      }

      .hero h1 .word span {
        transform: none;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    .cats-boxes {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: min(4vw, 40px);
      max-width: 1040px;
      margin: 64px auto 0;
      position: relative;
    }

    .cats-box {
      position: relative;
      border: 1px solid #AA8837;
      border-radius: 28px;
      padding: 56px 40px 48px;
      background: linear-gradient(90deg, rgba(99, 71, 91, 0.7) 0%, rgba(137, 106, 73, .6) 50%, rgba(161, 127, 59, .8) 100%);
      box-shadow: 0 14px 30px rgba(10, 7, 5, 0.3);
    }

    .cats-box-header {
      position: absolute;
      top: -24px;
      left: 50%;
      transform: translateX(-50%);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--ink);
      font-family: var(--ff-mono);
      font-weight: 700;
      font-size: clamp(0.95rem, 1.6vw, 1.15rem);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 14px 26px;
      border-radius: 999px;
      white-space: nowrap;
      z-index: 2;
    }

    .cats-box-icon {
      width: 28px;
      height: 28px;
      stroke: var(--ink);
      fill: none;
      stroke-width: 1.8;
      flex-shrink: 0;
    }

    .cats-boxes-spark {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      width: 22px;
      height: 22px;
      color: var(--gold);
      z-index: 3;
    }

    .cats-box-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 24px;
      text-align: center;
    }

    .cats-box-list li {
      font-family: var(--ff-mono);
      font-weight: 700;
      font-size: clamp(1.05rem, 1.8vw, 1.4rem);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--sand);
    }

    @media(max-width:720px) {
      .cats-boxes {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .cats-boxes-spark {
        display: none;
      }
    }
