﻿:root {
      --ink: 0 0 0;
      --cyan: 0 187 214;
      --flower: 228 30 29;
      --cream: 247 252 253;
      --cream-2: 236 247 250;
      --line: 210 228 232;
      --muted: 90 112 118;
      --ok: 18 140 74;
      --gutter: 1.25rem;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; color-scheme: dark; background: #000; }
    html:not(.is-ready) #productList { visibility: hidden; }
    body {
      font-family: Inter, system-ui, sans-serif;
      background: #000;
      color: #fff;
      line-height: 1.45;
      font-size: 1rem;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input, select { font: inherit; }
    .wrap { width: min(100% - (var(--gutter) * 2), 1200px); margin-inline: auto; }
    .eyebrow {
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 500;
      color: rgb(var(--cyan));
    }
    .display {
      font-size: clamp(2.4rem, 8vw, 5.6rem);
      line-height: .9;
      letter-spacing: -.045em;
      font-weight: 400;
    }
    .h-sec {
      font-size: clamp(1.7rem, 4vw, 2.6rem);
      line-height: 1;
      letter-spacing: -.03em;
      font-weight: 400;
    }
    .muted { color: #9aa8ad; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: .85rem 1.2rem;
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      border: 1px solid transparent;
      background: none;
      cursor: pointer;
    }
    .btn-ink { background: rgb(var(--cyan)); color: #000; }
    .btn-line { border-color: rgb(var(--cyan)); color: #fff; }
    .btn-ghost { border-color: rgb(var(--cyan)); color: rgb(var(--cyan)); }

    .nav {
      position: sticky; top: 0; z-index: 40;
      background: #000;
      color: #fff;
      border-bottom: 1px solid rgb(var(--cyan) / .35);
      transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    }
    .nav.is-away { transform: translateY(-110%); }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      min-height: 4.4rem;
      padding-block: .4rem;
    }
    .nav-end { display: flex; align-items: center; gap: 1.2rem; flex-shrink: 0; }
    .nav-links { display: flex; gap: 1.1rem; }
    .nav-links a { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgb(var(--cyan)); }
    .brand { display: flex; justify-content: flex-start; flex: 1; min-width: 0; }
    .brand img { height: 56px; width: auto; max-width: min(62vw, 240px); display: block; object-fit: contain; object-position: left center; }
    @media (max-width: 799px) {
      .nav-inner { min-height: 3.6rem; }
      .nav-links { display: none; }
      .brand img { height: 42px; }
    }

    .hero {
      position: relative;
      min-height: min(86svh, 760px);
      color: #fff;
      overflow: hidden;
      background: #000;
    }
    .hero-media { position: absolute; inset: 0; background: #000; }
    .hero-media picture,
    .hero-media video,
    .hero-media img {
      position: absolute; inset: 0; width: 100%; height: 100%;
    }
    .hero-media video,
    .hero-media img {
      object-fit: cover;
      object-position: 58% 28%;
      display: block;
      pointer-events: none;
    }
    .hero-media video { z-index: 1; }
    .hero-media::after {
      content: "";
      position: absolute; inset: 0; z-index: 2; pointer-events: none;
      background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.52) 40%, rgba(0,0,0,.18) 70%, rgba(0,0,0,.1) 100%);
    }
    .hero-copy {
      position: relative; z-index: 3;
      display: flex; align-items: flex-end;
      min-height: inherit;
      padding: 2.2rem 0 2rem;
    }
    .hero-copy h1 {
      font-size: clamp(1.9rem, 5.4vw, 3.1rem); line-height: 1.05;
      letter-spacing: -.03em; font-weight: 400; max-width: 22ch;
      text-shadow: 0 1px 2px rgba(0,0,0,.7), 0 8px 24px rgba(0,0,0,.45);
    }
    .hero-copy .lead { margin: .7rem 0 1rem; color: #d5dee1; max-width: 46ch; line-height: 1.45; }
    .proof { margin-top: .75rem; font-size: .85rem; color: #c5d0d3; }

    .split { display: grid; }
    @media (min-width: 800px) { .split { grid-template-columns: 1fr 1fr; } }
    .tile { position: relative; min-height: 52vh; color: rgb(var(--cyan)); display: block; }
    @media (min-width: 800px) { .tile { min-height: calc(100svh - 4.4rem); } }
    .tile .shot { position: absolute; inset: 0; }
    .tile:has(.has-img) { color: rgb(var(--cream-2)); }
    .tile .label {
      position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2;
      font-size: clamp(1.6rem, 4vw, 2.8rem);
      letter-spacing: -.03em;
    }

    .shot {
      position: relative;
      overflow: hidden;
      background:
        repeating-linear-gradient(-45deg, #111, #111 12px, #1a1a1a 12px, #1a1a1a 24px);
    }
    .shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
    .shot.has-img img { display: block; }
    .shot-ph {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      text-align: center; padding: 1rem;
      font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
      color: rgb(var(--muted));
    }
    .shot.has-img .shot-ph { display: none; }
    .shot--ink { background: rgb(var(--ink)); }
    .shot--ink .shot-ph { color: rgb(var(--cream-2) / .55); }

    .section { padding: 3.2rem 0; }
    @media (min-width: 1000px) { .section { padding: 5rem 0; } .wrap { --gutter: 2rem; } }

    .plist {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px;
    }
    @media (min-width: 1000px) { .plist { grid-template-columns: repeat(4, 1fr); } }
    .intro-card {
      background: #fff;
      color: #111;
      min-height: 100%;
      padding: 1.4rem;
      display: flex; flex-direction: column; justify-content: center; align-items: center;
      text-align: center; gap: .7rem;
      aspect-ratio: 3/4;
    }
    .intro-card .h-sec { color: #000; }
    .intro-card p { font-size: .95rem; max-width: 18ch; color: rgb(var(--muted)); }
    .pcard { background: #fff; color: #111; }
    .pcard .shot { aspect-ratio: 3/4; }
    .pcard .meta { padding: .7rem .2rem 1.1rem; }
    .pcard .col { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgb(var(--muted)); }
    .pcard .name { font-size: .86rem; margin-top: .15rem; }
    .pcard .ask {
      margin-top: .45rem;
      font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
      border-bottom: 1px solid rgb(var(--cyan));
      color: rgb(var(--cyan));
    }

    .cols { padding: 4rem 0; min-height: 70svh; display: grid; align-content: center; }
    .cols .eyebrow { display: block; text-align: center; margin-bottom: 1.6rem; }
    .col-link {
      display: block;
      text-align: center;
      font-size: clamp(2.2rem, 8vw, 5.2rem);
      line-height: 1.05;
      letter-spacing: -.04em;
      padding: .35rem 0;
      border-top: 1px solid rgb(255 255 255 / .16);
    }
    .col-link:last-child { border-bottom: 1px solid rgb(255 255 255 / .16); }
    .col-link.is-on { opacity: 1; }
    .col-link:not(.is-on) { opacity: .35; }
    .cols:not(.is-filter) .col-link { opacity: 1; }

    .panel {
      background: #fff;
      color: #111;
    }
    .panel .muted { color: rgb(var(--muted)); }
    .panel .btn-line { color: #111; }
    .panel .shot {
      background: repeating-linear-gradient(-45deg, #f3f3f3, #f3f3f3 12px, #ececec 12px, #ececec 24px);
    }
    .svc { padding: 2.6rem 0; border-top: 1px solid #e6e6e6; }
    .svc-top {
      display: grid; gap: 1.2rem; margin-bottom: 1.4rem;
    }
    @media (min-width: 800px) {
      .svc-top { grid-template-columns: 1fr 1fr; align-items: end; }
    }
    .svc-top .shot { aspect-ratio: 16/10; min-height: 180px; }
    .svc-list { list-style: none; }
    .svc-list li {
      display: grid;
      gap: .6rem;
      padding: 1.15rem 0;
      border-top: 1px solid rgb(var(--line));
    }
    @media (min-width: 700px) {
      .svc-list li { grid-template-columns: 1fr auto; align-items: center; }
    }
    .svc-list h4 { font-size: 1.05rem; font-weight: 500; }
    .svc-list p { color: rgb(var(--muted)); font-size: .95rem; margin-top: .2rem; }

    .ink { background: rgb(var(--ink)); color: rgb(var(--cream-2)); }
    .collage {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
      padding: 2rem var(--gutter) 3rem;
    }
    .collage .shot { min-height: 140px; }
    .c-wide { grid-column: span 6; aspect-ratio: 16/6; min-height: 120px; }
    .c-mid { grid-column: span 3; aspect-ratio: 3/4; }
    .c-sm { grid-column: span 2; aspect-ratio: 3/4; }
    .collage-cta {
      grid-column: span 6;
      display: flex; justify-content: center; padding: .6rem 0 1rem;
    }
    @media (min-width: 800px) {
      .c-wide { grid-column: 2 / 6; }
      .c-mid { grid-column: span 2; }
      .collage-cta { grid-column: 5 / 7; align-items: end; justify-content: end; }
    }
    .word { text-align: center; padding: 1rem; }
    .word img { width: min(100%, 380px); margin-inline: auto; }

    .team { display: grid; }
    @media (min-width: 800px) { .team { grid-template-columns: 1fr 1fr; min-height: 70vh; } }
    .team .shot { min-height: 50vh; }
    .team-copy {
      display: flex; flex-direction: column; justify-content: center; align-items: center;
      text-align: center; gap: 1rem; padding: 2.4rem 1.4rem;
    }
    .team-copy p { max-width: 34ch; }
    .marquee {
      font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
      overflow: hidden; white-space: nowrap; opacity: .8;
    }
    .marquee span { display: inline-block; padding-left: 2rem; animation: mq 18s linear infinite; }
    @keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    .quote {
      position: relative;
      min-height: 70vh;
      display: grid; place-items: center;
      text-align: center;
      padding: 3rem 1.2rem;
    }
    .quote .shot { position: absolute; inset: 0; background: rgb(var(--ink)); }
    .quote .shot::after {
      content: "";
      position: absolute; inset: 0;
      background: rgb(var(--ink) / .4);
    }
    .quote .display { position: relative; z-index: 1; max-width: 16ch; color: rgb(var(--cream-2)); }

    .visit { display: grid; gap: 1.2rem; }
    @media (min-width: 860px) { .visit { grid-template-columns: 1fr 1fr; align-items: start; } }
    .form {
      display: grid; gap: .7rem;
      background: #fff;
      border: 1px solid rgb(var(--line));
      padding: 1.2rem;
    }
    .form label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
    .form input, .form select {
      width: 100%;
      border: 0;
      border-bottom: 1px solid rgb(var(--ink));
      background: transparent;
      padding: .55rem 0;
      border-radius: 0;
    }
    .form .row { display: grid; gap: .7rem; }
    @media (min-width: 600px) { .form .row { grid-template-columns: 1fr 1fr; } }
    .map { width: 100%; min-height: 320px; border: 0; }
    .nap { margin: .8rem 0 1rem; }

    footer {
      background: rgb(var(--ink));
      color: rgb(var(--cream-2));
      padding: 2.4rem 0 5.5rem;
    }
    .foot-top { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
    .foot-links { display: flex; gap: 1rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
    .wordmark {
      text-align: center;
      padding: 2.4rem 0 1.2rem;
    }
    .wordmark img { width: min(100%, 420px); margin-inline: auto; }
    .foot-note { text-align: center; font-size: .85rem; opacity: .7; }
    .foot-note a { text-decoration: underline; }

    .float {
      position: fixed; right: max(1rem, env(safe-area-inset-right));
      bottom: max(1rem, env(safe-area-inset-bottom));
      z-index: 50;
      background: rgb(var(--ok)); color: #fff;
      padding: .9rem 1.15rem; border-radius: 999px;
      font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .marquee span { animation: none; }
      .nav { transition: none; }
      .hero-media video { display: none; }
    }
