/* ==========================================================================
   World In Shades — window tint, Minneapolis MN
   One stylesheet, one palette, one type pair, one spacing rhythm.

   PALETTE — measured off their logo (brandColors.palette), nothing invented:
     #0048c0  logo bed blue  → primary: buttons, highlights, the brand band
     #1860c0  logo blue 2    → hover / secondary blue
     #a8c0d8  logo steel     → accent type on dark, hairlines, tints
   Neutrals are the "tint black" navy and a cool paper, both pulled toward
   that blue. The logo's own furniture inks (red / gold / green diamonds under
   the wordmark) appear ONLY in the .diamonds divider that echoes it.
   Change the three --brand-* tokens and the whole site follows.
   ========================================================================== */

@font-face {
  font-family: "Gabarito";
  src: url("/fonts/gabarito-latin.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree-latin.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-blue: #0048c0;
  --brand-blue-2: #1860c0;
  --brand-steel: #a8c0d8;

  --ink: #06101f;          /* tint black */
  --ink-2: #0b1a31;        /* raised dark panel */
  --ink-3: #12264a;        /* dark hairline / hover */
  --paper: #f2f5f9;        /* cool base */
  --paper-2: #e3eaf3;      /* deeper cool base */
  --white: #ffffff;
  --text: #0b1627;
  --muted: #475870;
  --muted-d: #a3b3c8;
  --line: rgba(11, 22, 39, .12);
  --line-d: rgba(168, 192, 216, .18);

  --ink-red: #cb201b;
  --ink-gold: #eda305;
  --ink-green: #037430;

  --display: "Gabarito", "Figtree", system-ui, sans-serif;
  --body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

  --max: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
  --sec: clamp(72px, 10.5vw, 136px);
  --hdr-h: 72px;
  --top-h: 36px;
  --radius: 6px;
  --radius-lg: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 1px 2px rgba(6, 16, 31, .06), 0 12px 32px -12px rgba(6, 16, 31, .22);
  --shadow-lg: 0 2px 4px rgba(6, 16, 31, .08), 0 30px 60px -24px rgba(6, 16, 31, .45);
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--hdr-h) + var(--top-h) + 16px);
  background: var(--ink);
  color-scheme: light;
}
@media (max-width: 899px) { html { scroll-padding-bottom: calc(84px + env(safe-area-inset-bottom)); } }
a, button, label, summary, input { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 850; letter-spacing: -.02em; line-height: 1; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--brand-steel); outline-offset: 3px; border-radius: 2px; }
.bg-paper :focus-visible, .bg-white :focus-visible, .bg-paper2 :focus-visible { outline-color: var(--brand-blue); }
::selection { background: var(--brand-blue); color: #fff; }

.sr {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: fixed; left: 12px; top: 12px; z-index: 200;
  padding: 12px 18px; border-radius: var(--radius);
  background: #fff; color: var(--ink); font-weight: 700;
  transform: translateY(-160%); transition: transform .2s var(--ease);
}
.skip:focus { transform: none; }

/* ------------------------------------------------------------------ layout */
.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2 * var(--gutter), 880px); margin-inline: auto; }
.sec { padding-block: var(--sec); position: relative; }
.bg-ink { background: var(--ink); color: #fff; }
.bg-ink2 { background: var(--ink-2); color: #fff; }
.bg-paper { background: var(--paper); }
.bg-paper2 { background: var(--paper-2); }
.bg-white { background: var(--white); }
.bg-blue { background: var(--brand-blue); color: #fff; }

/* ------------------------------------------------------------------ type */
.kick {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: .78rem; font-weight: 750;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 18px;
}
.kick::before {
  content: ""; width: 9px; height: 9px; flex: none;
  background: currentColor; transform: rotate(45deg);
}
.bg-ink .kick, .bg-ink2 .kick, .on-photo .kick { color: var(--brand-steel); }
.bg-blue .kick { color: #fff; }

.h2 { font-size: clamp(2.15rem, 7.6vw, 4rem); line-height: .98; }
.h3 { font-size: clamp(1.45rem, 4.6vw, 2rem); line-height: 1.04; }
.hl { color: var(--brand-blue); }
.bg-ink .hl, .bg-ink2 .hl, .on-photo .hl, .bg-blue .hl { color: var(--brand-steel); }
.lede { font-size: clamp(1.06rem, 2.4vw, 1.2rem); line-height: 1.55; color: var(--muted); max-width: 40ch; }
.bg-ink .lede, .bg-ink2 .lede, .on-photo .lede { color: var(--muted-d); }
.bg-blue .lede { color: rgba(255, 255, 255, .86); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 22px; }
.mt-l { margin-top: 36px; }

/* the logo's own diamond row: red · gold · green · red */
.diamonds { display: inline-flex; gap: 9px; align-items: center; }
.diamonds i { width: 9px; height: 9px; transform: rotate(45deg); display: block; }
.diamonds i:nth-child(1), .diamonds i:nth-child(4) { background: var(--ink-red); }
.diamonds i:nth-child(2) { background: var(--ink-gold); }
.diamonds i:nth-child(3) { background: var(--ink-green); }

/* ------------------------------------------------------------------ buttons */
.btn {
  --b: var(--brand-blue);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px;
  border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--body); font-weight: 750; font-size: 1rem; letter-spacing: .005em;
  text-decoration: none; white-space: nowrap;
  transition: transform .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-blue { background: var(--brand-blue); color: #fff; box-shadow: 0 10px 24px -12px rgba(0, 72, 192, .8); }
.btn-ghost { background: rgba(6, 16, 31, .28); color: #fff; border-color: rgba(168, 192, 216, .55); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-line { background: transparent; color: var(--brand-blue); border-color: rgba(0, 72, 192, .4); }
.btn-white { background: #fff; color: var(--brand-blue); }
@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
  .btn-blue:hover { background: var(--brand-blue-2); box-shadow: 0 16px 30px -14px rgba(0, 72, 192, .9); }
  .btn-ghost:hover { background: rgba(168, 192, 216, .16); border-color: var(--brand-steel); }
  .btn-dark:hover { background: var(--ink-3); }
  .btn-line:hover { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }
  .btn-white:hover { background: var(--paper); }
}
.btn:active { transform: translateY(0) scale(.98); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.center .btn-row, .btn-row.center { justify-content: center; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 750; text-decoration: none; color: var(--brand-blue);
  min-height: 44px;
}
.arrow-link svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.bg-ink .arrow-link, .bg-ink2 .arrow-link, .on-photo .arrow-link { color: var(--brand-steel); }
@media (hover: hover) { .arrow-link:hover svg { transform: translateX(4px); } }

/* ------------------------------------------------------------------ header */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: calc(var(--hdr-h) + var(--top-h) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  color: #fff;
  transition: transform .35s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.hdr::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6, 16, 31, .7), rgba(6, 16, 31, 0));
  transition: opacity .3s var(--ease);
}
.hdr.solid { background: rgba(6, 16, 31, .94); box-shadow: 0 1px 0 var(--line-d); }
.hdr.solid::before { opacity: 0; }
.hdr.up { transform: translateY(-105%); }
.hdr-in {
  height: var(--hdr-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: inline-flex; align-items: center; flex: none; text-decoration: none; min-height: 44px; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 10px 12px; min-height: 44px; display: inline-flex; align-items: center;
  font-weight: 650; font-size: .95rem; text-decoration: none; color: rgba(255, 255, 255, .86);
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px;
  background: var(--brand-steel); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"]::after { transform: scaleX(1); }
@media (hover: hover) { .nav a:hover { color: #fff; } .nav a:hover::after { transform: scaleX(1); } }
.hdr-actions { display: flex; align-items: center; gap: 8px; }
.hdr-call { min-height: 44px; padding: 0 16px; font-size: .95rem; }
.hdr-call .num { display: none; }
.icon-btn {
  width: 46px; height: 46px; display: inline-grid; place-items: center;
  border-radius: 999px; border: 1.5px solid rgba(168, 192, 216, .4);
  background: rgba(6, 16, 31, .3); color: #fff;
  -webkit-tap-highlight-color: transparent;
}
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn, .motion-btn, .lb-x { transition: background-color .25s var(--ease), border-color .25s var(--ease); }
@media (hover: hover) {
  .icon-btn:hover, .motion-btn:hover, .lb-x:hover { background: rgba(168, 192, 216, .2); border-color: var(--brand-steel); }
}
@media (min-width: 560px) { .hdr-call .num { display: inline; } .hdr-call .lbl { display: none; } }
@media (max-width: 1099px) { .nav { display: none; } }
@media (min-width: 1100px) { .burger { display: none; } .brand img { height: 52px; } }

/* mobile menu sheet */
.sheet {
  position: fixed; inset: 0; z-index: 120;
  background: var(--ink); color: #fff;
  padding: calc(env(safe-area-inset-top) + 14px) var(--gutter) calc(env(safe-area-inset-bottom) + 24px);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  overflow-y: auto; overscroll-behavior: contain;
}
.sheet.open { opacity: 1; visibility: visible; transform: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.sheet-top { display: flex; justify-content: space-between; align-items: center; min-height: var(--hdr-h); }
.sheet-top img { height: 44px; width: auto; }
.sheet nav { margin-top: 18px; display: grid; }
.sheet nav a {
  font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem, 8vw, 2.3rem);
  text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line-d);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
@media (max-width: 359px) { .sheet nav a { font-size: 1.55rem; } }
.sheet nav a small { font-family: var(--body); font-weight: 600; font-size: .8rem; color: var(--muted-d); letter-spacing: .06em; }
.sheet nav a[aria-current="page"] { color: var(--brand-steel); }
.sheet-cta { margin-top: auto; padding-top: 28px; display: grid; gap: 10px; }
.sheet-cta .btn { width: 100%; }
.sheet-meta { margin-top: 18px; color: var(--muted-d); font-size: .92rem; }

/* ------------------------------------------------------------------ hero */
.hero, .phero {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; place-items: center;
  color: #fff; background: var(--ink);
}
.hero {
  min-height: max(660px, 100svh);
  padding: calc(var(--hdr-h) + var(--top-h) + env(safe-area-inset-top) + 20px) 0 clamp(56px, 9vh, 96px);
}
.phero {
  min-height: max(520px, 74svh);
  padding: calc(var(--hdr-h) + var(--top-h) + env(safe-area-inset-top) + 40px) 0 clamp(56px, 8vh, 88px);
}
.hero-media, .phero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media picture, .phero-media picture, .moment-media picture { width: 100%; height: 100%; display: block; }
.hero-media img, .phero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: 50% 40%;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-media img { animation: kb 26s ease-in-out infinite alternate; }
  .phero-media img { animation: kb-soft 30s ease-in-out infinite alternate; }
}
@keyframes kb { from { transform: scale(1.04) translate3d(0, 0, 0); } to { transform: scale(1.15) translate3d(-1.5%, -1.2%, 0); } }
@keyframes kb-soft { from { transform: scale(1.03); } to { transform: scale(1.11) translate3d(1%, -1%, 0); } }
html.motion-off .hero-media img, html.motion-off .phero-media img, html.motion-off .moment-media img { animation-play-state: paused; }

.hero::after, .phero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(6, 16, 31, .55), rgba(6, 16, 31, 0) 72%),
    linear-gradient(180deg, rgba(6, 16, 31, .78) 0%, rgba(6, 16, 31, .5) 34%, rgba(6, 16, 31, .62) 64%, rgba(6, 16, 31, .96) 100%);
}
/* page heroes sit on bright shop photos (white trucks, lit bays): a deeper centre keeps the steel words legible */
.phero::after {
  background:
    radial-gradient(ellipse 64% 50% at 50% 48%, rgba(6, 16, 31, .72), rgba(6, 16, 31, 0) 76%),
    linear-gradient(180deg, rgba(6, 16, 31, .78) 0%, rgba(6, 16, 31, .5) 34%, rgba(6, 16, 31, .62) 64%, rgba(6, 16, 31, .96) 100%);
}
.hero h1 .hl, .phero h1 .hl { text-shadow: 0 2px 26px rgba(6, 16, 31, .6); }
.hero-in, .phero-in {
  position: relative; text-align: center;
  width: min(100% - 2 * var(--gutter), 900px); margin-inline: auto;
  display: flex; flex-direction: column; align-items: center;
}
.hero-logo {
  width: clamp(236px, 66vw, 380px); height: auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, .45));
  margin-bottom: clamp(18px, 3vh, 28px);
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(168, 192, 216, .5);
  background: rgba(6, 16, 31, .38);
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #dfe8f2;
}
.pill svg { width: 14px; height: 14px; color: var(--brand-steel); }
.hero h1 {
  margin-top: 20px;
  font-size: clamp(2.7rem, 11.6vw, 5.9rem);
  font-weight: 900; line-height: .95; letter-spacing: -.028em;
}
.phero h1 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 10.6vw, 5.2rem);
  font-weight: 900; line-height: .96; letter-spacing: -.026em;
}
.hero h1 .hl, .phero h1 .hl { color: var(--brand-steel); }
.hero .sub, .phero .sub {
  margin-top: 18px; max-width: 34ch;
  font-size: clamp(1.06rem, 2.6vw, 1.28rem); line-height: 1.5; color: #d9e3ee;
}
.hero .btn-row, .phero .btn-row { margin-top: 28px; justify-content: center; }
.trust {
  list-style: none; margin-top: 26px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px;
  font-size: .9rem; font-weight: 650; color: #d1dce8;
}
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.trust li::before { content: ""; width: 6px; height: 6px; transform: rotate(45deg); background: var(--brand-steel); }
@media (max-width: 559px) {
  .hero .btn-row, .phero .btn-row { flex-direction: column; align-items: stretch; width: min(100%, 330px); }
  .trust { flex-direction: column; align-items: center; gap: 6px; font-size: .88rem; }
  .trust li:nth-child(3) { display: none; }
}
.crumb { font-size: .86rem; color: var(--muted-d); display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.crumb a { color: #dfe8f2; text-decoration: none; display: inline-block; padding: 12px 6px; margin: -12px -6px; }
.crumb a:hover { text-decoration: underline; }
.motion-btn {
  position: absolute; right: max(var(--gutter), env(safe-area-inset-right)); bottom: 18px; z-index: 2;
  width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(6, 16, 31, .45); border: 1px solid rgba(168, 192, 216, .35); color: #fff;
}
.motion-btn svg { width: 16px; height: 16px; }
.motion-btn .i-play { display: none; }
html.motion-off .motion-btn .i-play { display: block; }
html.motion-off .motion-btn .i-pause { display: none; }
@media (prefers-reduced-motion: reduce) { .motion-btn { display: none; } }

/* ------------------------------------------------------------------ film strip band */
.filmstrip { background: var(--brand-blue); color: #fff; padding: 18px 0; }
.filmstrip ul {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 6px 0; font-weight: 750; font-size: clamp(.86rem, 2.4vw, 1rem); letter-spacing: .04em; text-transform: uppercase;
}
.filmstrip li { display: inline-flex; align-items: center; white-space: nowrap; }
.filmstrip li + li::before { content: "//"; margin: 0 12px; color: var(--brand-steel); font-weight: 800; }
@media (max-width: 599px) {
  .filmstrip { padding: 16px 0; }
  .filmstrip ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; text-align: center; }
  .filmstrip li { justify-content: center; gap: 8px; }
  .filmstrip li::before, .filmstrip li + li::before { content: ""; margin: 0; width: 6px; height: 6px; transform: rotate(45deg); background: var(--brand-steel); }
}

/* ------------------------------------------------------------------ section heads */
.head { display: grid; gap: 18px; margin-bottom: clamp(36px, 6vw, 64px); }
.head-split { align-items: end; }
@media (min-width: 900px) {
  .head-split { grid-template-columns: 1.15fr .85fr; gap: 48px; }
  .head-split .lede { justify-self: end; }
}

/* ------------------------------------------------------------------ services: numbered photo blocks */
.svc-grid { display: grid; gap: 14px; }
.svc {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--radius);
  min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(22px, 4vw, 36px);
  color: #fff; text-decoration: none; background: var(--ink-2);
}
.svc .ph { position: absolute; inset: 0; z-index: -2; }
.svc .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.svc::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6, 16, 31, .15) 0%, rgba(6, 16, 31, .35) 40%, rgba(6, 16, 31, .92) 100%);
}
.svc .num {
  position: absolute; top: clamp(14px, 3vw, 26px); left: clamp(20px, 4vw, 34px);
  font-family: var(--display); font-weight: 900; font-size: clamp(4.2rem, 16vw, 7.5rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(168, 192, 216, .8);
  letter-spacing: -.04em;
}
.svc .tag { font-size: .76rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-steel); }
.svc h3 { margin-top: 10px; font-size: clamp(1.8rem, 6.4vw, 2.7rem); line-height: 1; }
.svc p { margin-top: 10px; color: #d3dde9; max-width: 42ch; }
.svc .arrow-link { margin-top: 8px; color: #fff; }
@media (hover: hover) {
  .svc:hover .ph img { transform: scale(1.05); }
  .svc:hover .arrow-link svg { transform: translateX(4px); }
}
@media (min-width: 860px) {
  .svc-grid { grid-template-columns: repeat(12, 1fr); gap: 18px; }
  .svc:nth-child(1) { grid-column: span 7; min-height: 560px; }
  .svc:nth-child(2) { grid-column: span 5; min-height: 560px; margin-top: 64px; }
  .svc:nth-child(3) { grid-column: span 5; min-height: 584px; margin-top: -64px; }
  .svc:nth-child(4) { grid-column: span 7; min-height: 520px; }
}

/* ------------------------------------------------------------------ the shade scale (signature) */
.shade-head { display: grid; gap: 18px; margin-bottom: clamp(30px, 5vw, 52px); }
@media (min-width: 900px) { .shade-head { grid-template-columns: 1fr 1fr; align-items: end; gap: 48px; } }
.scale { position: relative; border: 0; margin: 0; padding: 0; min-width: 0; }
.scale legend { padding: 0; }
.scale-frame {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--radius);
  height: clamp(440px, 64vw, 620px);
  background: #1b2a3c;
}
.scale-frame > img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%;
}
.strips { position: absolute; inset: 0; display: flex; }
.strips input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.strip {
  --o: .5;
  position: relative; flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  padding-bottom: 20px;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
  border-right: 1px solid rgba(168, 192, 216, .28);
  transition: flex-grow .6s var(--ease);
}
.strip:last-of-type { border-right: 0; }
.strip::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(4, 12, 26, var(--o)), rgba(2, 8, 20, calc(var(--o) + .04)));
  transform-origin: 50% 0;
  transition: transform .9s var(--ease), background-color .3s;
}
.strip::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--brand-steel); transform: scaleX(0); transition: transform .4s var(--ease);
}
.strip .v {
  font-family: var(--display); font-weight: 900; line-height: 1;
  font-size: clamp(1.25rem, 5.2vw, 2.6rem); color: #fff; letter-spacing: -.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
}
.strip .v small { font-size: .5em; font-weight: 800; margin-left: 1px; }
.strip .vl { margin-top: 6px; font-size: .72rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; color: #cfdbe8; }
.strip[data-v="70"] { --o: .3; }
.strip[data-v="50"] { --o: .5; }
.strip[data-v="40"] { --o: .58; }
.strip[data-v="35"] { --o: .65; }
.strip[data-v="30"] { --o: .71; }
.strip[data-v="20"] { --o: .8; }
.strip[data-v="15"] { --o: .86; }
.strip[data-v="5"] { --o: .93; }
.scale.rv:not(.in) .strip::before { transform: scaleY(0); }
.scale.rv.in .strip:nth-of-type(2)::before { transition-delay: .08s; }
.scale.rv.in .strip:nth-of-type(3)::before { transition-delay: .16s; }
.scale.rv.in .strip:nth-of-type(4)::before { transition-delay: .24s; }
.scale.rv.in .strip:nth-of-type(5)::before { transition-delay: .32s; }
.scale.rv.in .strip:nth-of-type(6)::before { transition-delay: .4s; }
.scale.rv.in .strip:nth-of-type(7)::before { transition-delay: .48s; }
.scale.rv.in .strip:nth-of-type(8)::before { transition-delay: .56s; }
.strips input:checked + .strip { flex-grow: 2.3; }
.strips input:checked + .strip::after { transform: scaleX(1); }
.strips input:focus-visible + .strip { outline: 3px solid var(--brand-steel); outline-offset: -3px; }
@media (hover: hover) { .strip:hover::after { transform: scaleX(1); } }
.scale-read {
  display: grid; gap: 6px;
  margin-top: 18px; padding: 18px 0 0;
  border-top: 1px solid var(--line-d);
  min-height: 7.2em;
}
.scale-read .say { display: none; }
.scale-read .say b { font-family: var(--display); font-weight: 850; font-size: 1.35rem; color: #fff; display: block; letter-spacing: -.01em; }
.scale-read .say span { color: var(--muted-d); }
.scale:has(#vlt70:checked) .say[data-v="70"],
.scale:has(#vlt50:checked) .say[data-v="50"],
.scale:has(#vlt35:checked) .say[data-v="35"],
.scale:has(#vlt40:checked) .say[data-v="40"],
.scale:has(#vlt30:checked) .say[data-v="30"],
.scale:has(#vlt20:checked) .say[data-v="20"],
.scale:has(#vlt15:checked) .say[data-v="15"],
.scale:has(#vlt5:checked) .say[data-v="5"] { display: block; }
.scale-foot { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px; }
.scale-foot p { color: var(--muted-d); max-width: 52ch; font-size: .98rem; }
@media (min-width: 700px) { .strip .vl { font-size: .72rem; } .strip { padding-bottom: 28px; } }

/* ------------------------------------------------------------------ film types split */
.films { overflow: hidden; }
.films-grid { display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; }
.films-photo { position: relative; margin-inline: calc(-1 * var(--gutter)); }
.films-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 38% 50%; }
.films-photo figcaption, .cap {
  font-size: .8rem; color: var(--muted); margin-top: 10px; padding-inline: var(--gutter);
}
@media (min-width: 960px) {
  .films-grid { grid-template-columns: 1.1fr .9fr; }
  .films-photo { margin-inline: 0; margin-left: calc(-1 * max(var(--gutter), (100vw - var(--max)) / 2)); }
  .films-photo img { aspect-ratio: 5 / 4; border-radius: 0 var(--radius) var(--radius) 0; }
  .films-photo figcaption { padding-inline: max(var(--gutter), (100vw - var(--max)) / 2) 0; }
}
.film-rows { margin-top: 28px; border-top: 1px solid var(--line); }
.film-row { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.film-row .swatch { grid-row: span 2; width: 44px; height: 44px; border-radius: 4px; margin-top: 2px; }
.swatch.carbon { background: linear-gradient(135deg, #1d2530, #06101f 60%, #26303c); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08); }
.swatch.ceramic { background: linear-gradient(135deg, #7d9ab8, #2a4e84 55%, #a8c0d8); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25); }
.film-row h3 { font-size: 1.5rem; }
.film-row p { color: var(--muted); }
.both { margin-top: 20px; font-weight: 650; color: var(--text); }
.both span { color: var(--brand-blue); font-weight: 800; margin: 0 6px; }

/* ------------------------------------------------------------------ the bay */
.bay-grid { display: grid; gap: clamp(28px, 5vw, 56px); }
.bay-copy .lede { max-width: 38ch; }
.bay-points { list-style: none; margin-top: 26px; display: grid; gap: 0; border-top: 1px solid var(--line-d); }
.bay-points li { display: flex; gap: 14px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line-d); color: #d9e3ee; }
.bay-points b { font-family: var(--display); font-weight: 850; color: var(--brand-steel); min-width: 2ch; }
.mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mosaic figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink-2); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.mosaic .m1 { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
.mosaic .m2, .mosaic .m3 { aspect-ratio: 1 / 1; }
.mosaic figcaption {
  position: absolute; left: 10px; bottom: 10px;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(6, 16, 31, .7); color: #e6edf5; font-size: .74rem; font-weight: 650;
}
@media (hover: hover) { .mosaic figure:hover img { transform: scale(1.04); } }
@media (min-width: 960px) {
  .bay-grid { grid-template-columns: .8fr 1.2fr; align-items: center; }
  .mosaic { grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }
  .mosaic .m1 { grid-column: 1; grid-row: 1 / 3; aspect-ratio: auto; min-height: 560px; }
  .mosaic .m2, .mosaic .m3 { aspect-ratio: auto; }
}

/* ------------------------------------------------------------------ photo moment */
.moment {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(460px, 72vh, 720px);
  display: grid; align-items: end;
  color: #fff; background: var(--ink);
}
.moment-media { position: absolute; inset: 0; z-index: -2; }
.moment-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
@media (prefers-reduced-motion: no-preference) {
  .moment-media img { animation: kb-soft 28s ease-in-out infinite alternate; }
}
.moment::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6, 16, 31, .2) 0%, rgba(6, 16, 31, .1) 35%, rgba(6, 16, 31, .88) 100%);
}
.moment-in { padding-block: clamp(40px, 7vw, 80px); }
.moment .motion-btn { top: 18px; bottom: auto; }
.moment h2 { font-size: clamp(2.3rem, 9vw, 5.4rem); max-width: 14ch; line-height: .95; }
.moment p { margin-top: 14px; color: #d9e3ee; max-width: 42ch; }

/* ------------------------------------------------------------------ steps */
.steps-grid { display: grid; gap: clamp(32px, 5vw, 64px); }
.steps-list { list-style: none; counter-reset: s; border-top: 1px solid var(--line); }
.steps-list li {
  counter-increment: s;
  display: grid; grid-template-columns: 64px 1fr; gap: 4px 16px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.steps-list li::before {
  content: "0" counter(s);
  grid-row: span 2;
  font-family: var(--display); font-weight: 900; font-size: 2.6rem; line-height: .9;
  color: transparent; -webkit-text-stroke: 1.5px var(--brand-blue);
}
.steps-list h3 { font-size: 1.4rem; line-height: 1.1; }
.steps-list p { color: var(--muted); }
.steps-photo { margin: 0; position: relative; }
.steps-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%; border-radius: var(--radius); }
.steps-photo figcaption { font-size: .8rem; color: var(--muted); margin-top: 10px; }
@media (min-width: 960px) {
  .steps-grid { grid-template-columns: 1fr .75fr; align-items: start; }
  .steps-photo { position: sticky; top: calc(var(--hdr-h) + var(--top-h) + 24px); }
}

/* ------------------------------------------------------------------ gallery */
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.work-grid button {
  position: relative; display: block; width: 100%; padding: 0; border: 0;
  overflow: hidden; border-radius: var(--radius); background: var(--ink-2);
  aspect-ratio: 1 / 1;
}
.work-grid button:first-child { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
.work-grid button:nth-child(4) { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.work-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .4s var(--ease); }
.work-grid .zoom {
  position: absolute; right: 10px; bottom: 10px; width: 36px; height: 36px; border-radius: 999px;
  display: grid; place-items: center; background: rgba(6, 16, 31, .65); color: #fff;
  opacity: .9; transition: opacity .3s var(--ease);
}
.work-grid .zoom svg { width: 16px; height: 16px; }
@media (hover: hover) { .work-grid button:hover img { transform: scale(1.05); } }
@media (min-width: 860px) {
  .work-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 14px; }
  .work-grid button, .work-grid button:first-child, .work-grid button:nth-child(4) { aspect-ratio: auto; }
  .work-grid button:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
  .work-grid button:nth-child(4) { grid-column: 3 / 5; }
}
.work-note { margin-top: 14px; font-size: .84rem; color: var(--muted-d); }

.lb { padding: 0; border: 0; background: transparent; max-width: min(96vw, 1400px); max-height: 94vh; overflow: visible; overscroll-behavior: contain; }
.lb::backdrop { background: rgba(3, 8, 16, .92); }
.lb figure { margin: 0; }
.lb img { max-width: min(96vw, 1400px); max-height: 84vh; width: auto; height: auto; border-radius: 4px; }
.lb figcaption { color: #dfe8f2; font-size: .9rem; margin-top: 10px; text-align: center; }
.lb-x {
  position: fixed; top: calc(env(safe-area-inset-top) + 14px); right: 14px;
  width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(168, 192, 216, .4);
  background: rgba(6, 16, 31, .7); color: #fff; display: grid; place-items: center;
}
.lb-x svg { width: 20px; height: 20px; }

/* ------------------------------------------------------------------ hairline rows (service pages) */
.rows { list-style: none; border-top: 1px solid var(--line); }
.rows li { display: grid; grid-template-columns: 56px 1fr; gap: 4px 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.rows .n { grid-row: span 2; font-family: var(--display); font-weight: 900; font-size: 1.1rem; color: var(--brand-blue); padding-top: 4px; }
.rows h3 { font-size: 1.35rem; line-height: 1.1; }
.rows p { color: var(--muted); }
.bg-ink .rows, .bg-ink2 .rows { border-color: var(--line-d); }
.bg-ink .rows li, .bg-ink2 .rows li { border-color: var(--line-d); }
.bg-ink .rows p, .bg-ink2 .rows p { color: var(--muted-d); }
.bg-ink .rows .n, .bg-ink2 .rows .n { color: var(--brand-steel); }

.split { display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split-photo { margin: 0; }
.split-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.split-photo.tall img { aspect-ratio: 4 / 5; }
.split-photo figcaption { font-size: .8rem; color: var(--muted); margin-top: 10px; }
.bg-ink .split-photo figcaption, .bg-ink2 .split-photo figcaption { color: var(--muted-d); }
@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.rev .split-photo { order: -1; }
  .split.wide-photo { grid-template-columns: 1.15fr .85fr; }
}
.fact {
  margin-top: 26px; display: flex; gap: 14px; align-items: center;
  padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.fact svg { width: 26px; height: 26px; color: var(--brand-blue); flex: none; }
.fact p { font-weight: 650; }
.bg-ink .fact, .bg-ink2 .fact { border-color: var(--line-d); }
.bg-ink .fact svg { color: var(--brand-steel); }

.strip3 { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.strip3 figure { margin: 0; overflow: hidden; border-radius: var(--radius); }
.strip3 img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.strip3 figure:first-child { grid-column: 1 / -1; }
@media (min-width: 860px) {
  .strip3 { grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; }
  .strip3 figure:first-child { grid-column: auto; }
  .strip3 img { aspect-ratio: 4 / 5; }
}

/* related services */
.related { display: grid; gap: 12px; }
.rel {
  position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius);
  min-height: 220px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; text-decoration: none;
}
.rel img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.rel::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6, 16, 31, .1), rgba(6, 16, 31, .88)); }
.rel h3 { font-size: 1.6rem; }
.rel span { margin-top: 6px; color: var(--brand-steel); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.rel span svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
@media (hover: hover) { .rel:hover img { transform: scale(1.05); } .rel:hover span svg { transform: translateX(4px); } }
@media (min-width: 760px) { .related { grid-template-columns: repeat(3, 1fr); gap: 14px; } .rel { min-height: 300px; } }

/* services overview rows */
.svc-rows { display: grid; gap: clamp(56px, 9vw, 110px); }
.svc-row { display: grid; gap: clamp(24px, 4vw, 56px); align-items: center; }
.svc-row figure { margin: 0; position: relative; }
.svc-row img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.svc-row .big-n {
  font-family: var(--display); font-weight: 900; font-size: clamp(4rem, 12vw, 7rem); line-height: .8;
  color: transparent; -webkit-text-stroke: 1.5px var(--brand-blue); display: block; margin-bottom: 14px;
}
.svc-row p { color: var(--muted); max-width: 44ch; margin-top: 14px; }
.svc-row ul { list-style: none; margin-top: 18px; display: grid; gap: 8px; }
.svc-row li { display: flex; gap: 10px; align-items: baseline; font-weight: 600; }
.svc-row li::before { content: ""; width: 7px; height: 7px; flex: none; transform: rotate(45deg) translateY(-2px); background: var(--brand-blue); }
@media (min-width: 960px) {
  .svc-row { grid-template-columns: 1.1fr .9fr; }
  .svc-row:nth-child(even) figure { order: 2; }
}

/* ------------------------------------------------------------------ FAQ */
.faq-grid { display: grid; gap: clamp(28px, 5vw, 64px); }
@media (min-width: 960px) { .faq-grid { grid-template-columns: .8fr 1.2fr; align-items: start; } .faq-grid .head { position: sticky; top: calc(var(--hdr-h) + var(--top-h) + 24px); } }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; min-height: 44px;
  font-family: var(--display); font-weight: 800; font-size: clamp(1.12rem, 3.4vw, 1.35rem); line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 30px; height: 30px; flex: none; border-radius: 999px; border: 1.5px solid rgba(0, 72, 192, .35); position: relative; transition: transform .3s var(--ease), background-color .3s; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--brand-blue); transform: translate(-50%, -50%); }
.faq summary .pm::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s var(--ease); }
.faq details[open] summary .pm { background: var(--brand-blue); border-color: var(--brand-blue); }
.faq details[open] summary .pm::before, .faq details[open] summary .pm::after { background: #fff; }
.faq details[open] summary .pm::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq .ans { padding: 0 0 22px; color: var(--muted); max-width: 60ch; }
.faq .ans a { color: var(--brand-blue); font-weight: 650; }

/* ------------------------------------------------------------------ visit band */
.visit {
  position: relative; isolation: isolate; overflow: hidden; color: #fff; background: var(--ink);
  padding-block: var(--sec);
}
.visit-media { position: absolute; inset: 0; z-index: -2; }
.visit-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.visit::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(6, 16, 31, .92) 0%, rgba(6, 16, 31, .72) 55%, rgba(6, 16, 31, .45) 100%); }
.visit-grid { display: grid; gap: 36px; }
.visit dl { margin: 0; display: grid; gap: 0; border-top: 1px solid var(--line-d); }
.visit dl div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line-d); }
.visit dt { font-size: .76rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-steel); padding-top: 3px; }
.visit dd { margin: 0; font-weight: 600; }
.visit dd a { color: #fff; }
.near { margin-top: 18px; color: var(--muted-d); max-width: 46ch; }
@media (min-width: 960px) { .visit-grid { grid-template-columns: 1fr 1fr; align-items: end; } }

/* ------------------------------------------------------------------ quote / form */
.quote { background: var(--brand-blue); color: #fff; position: relative; overflow: hidden; }
.quote::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .07) 0 30%, transparent 30% 100%),
    linear-gradient(115deg, transparent 0 62%, rgba(6, 16, 31, .16) 62% 100%);
}
.quote-grid { position: relative; display: grid; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (min-width: 960px) { .quote-grid { grid-template-columns: .85fr 1.15fr; } }
.quote-lines { list-style: none; margin-top: 26px; display: grid; gap: 0; border-top: 1px solid rgba(255, 255, 255, .22); }
.quote-lines li { border-bottom: 1px solid rgba(255, 255, 255, .22); }
.quote-lines a, .quote-lines span.row {
  display: flex; align-items: center; gap: 14px; padding: 16px 0; min-height: 44px;
  text-decoration: none; font-weight: 700; font-size: 1.05rem; color: #fff;
}
.quote-lines svg { width: 22px; height: 22px; flex: none; color: var(--brand-steel); transition: transform .25s var(--ease); }
@media (hover: hover) {
  .quote-lines a:hover > span { text-decoration: underline; text-underline-offset: 4px; }
  .quote-lines a:hover svg { transform: scale(1.12); color: #fff; }
  .faq summary:hover { color: var(--brand-blue); }
}
.quote-lines small { display: block; font-weight: 500; font-size: .84rem; color: rgba(255, 255, 255, .78); }
.form {
  background: #fff; color: var(--text);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: clamp(22px, 4vw, 40px);
}
.form h3 { font-size: 1.6rem; }
.form .note { color: var(--muted); font-size: .95rem; margin-top: 6px; }
.fields { display: grid; gap: 14px; margin-top: 22px; }
.fields .two { display: grid; gap: 14px; }
@media (min-width: 640px) { .fields .two { grid-template-columns: 1fr 1fr; } }
.field label, .field .lab { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 6px; }
.field label em, .field .lab em { font-style: normal; font-weight: 500; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; min-height: 50px; padding: 12px 14px;
  border: 1.5px solid #c9d4e2; border-radius: var(--radius); background: #fbfcfe;
  font-size: 16px; line-height: 1.4;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 4px rgba(0, 72, 192, .15); background: #fff; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #b3261e; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; border: 0; padding: 0; margin: 0; min-width: 0; }
.chips legend { font-weight: 700; font-size: .9rem; margin-bottom: 8px; padding: 0; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip span {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px;
  border-radius: 999px; border: 1.5px solid #c9d4e2; background: #fbfcfe;
  font-weight: 650; font-size: .94rem;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
@media (hover: hover) { .chip:hover span { border-color: var(--brand-blue); } }
.chip input:checked + span { background: var(--brand-blue); border-color: var(--brand-blue); color: #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--brand-blue); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { width: 100%; margin-top: 18px; }
.form-msg { margin-top: 14px; font-weight: 600; font-size: .96rem; min-height: 1.4em; }
.form-msg.ok { color: #0b5d2a; }
.form-msg.err { color: #b3261e; }
.form-msg button, .form-msg a {
  display: inline-flex; align-items: center; min-height: 44px; margin: 8px 8px 0 0; padding: 0 14px;
  border-radius: 999px; border: 1.5px solid var(--brand-blue); background: #fff; color: var(--brand-blue);
  font-weight: 700; text-decoration: none;
}
.form .fine { margin-top: 12px; font-size: .82rem; color: var(--muted); }

/* ------------------------------------------------------------------ footer */
.ftr { background: var(--ink); color: #cdd8e4; padding: clamp(56px, 8vw, 96px) 0 calc(28px + env(safe-area-inset-bottom)); }
.ftr-grid { display: grid; gap: 36px; }
.ftr-brand img { width: 220px; height: auto; }
.ftr-brand p { margin-top: 16px; max-width: 34ch; color: var(--muted-d); }
.ftr h2 { font-family: var(--body); font-size: .78rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-steel); margin-bottom: 14px; }
.ftr ul { list-style: none; display: grid; gap: 2px; }
.ftr a { text-decoration: none; color: #e8eef5; display: inline-flex; min-height: 40px; align-items: center; }
@media (hover: hover) { .ftr a:hover { color: #fff; text-decoration: underline; } }
.ftr address { font-style: normal; line-height: 1.7; }
.ftr-base { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line-d); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; font-size: .84rem; color: var(--muted-d); }
@media (min-width: 760px) { .ftr-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1100px) { .ftr-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

/* ------------------------------------------------------------------ sticky mobile call bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 10px max(12px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  background: rgba(6, 16, 31, .96); box-shadow: 0 -1px 0 var(--line-d);
  transform: translateY(110%); transition: transform .35s var(--ease);
}
.callbar.show { transform: none; }
.callbar .btn { min-height: 50px; font-size: .95rem; padding: 0 12px; }
@media (min-width: 900px) { .callbar { display: none; } }
@media (max-width: 899px) { .ftr { padding-bottom: calc(96px + env(safe-area-inset-bottom)); } }

/* ------------------------------------------------------------------ reveal */
.js .rv { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }
.js .scale.rv { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
  .scale.rv:not(.in) .strip::before { transform: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* photograph safety net: a failed image leaves its designed panel, never a broken glyph */
.no-photo { background: linear-gradient(135deg, var(--ink-2), var(--ink-3)) !important; }

/* ------------------------------------------------------------------ 404 */
.nf { min-height: 80svh; display: grid; place-items: center; text-align: center; padding: calc(var(--hdr-h) + var(--top-h) + 40px) 0 60px; }
.nf .big { font-family: var(--display); font-weight: 900; font-size: clamp(6rem, 30vw, 14rem); line-height: .8; color: transparent; -webkit-text-stroke: 2px var(--brand-steel); }

/* ------------------------------------------------------------------ desktop refinements */
@media (min-width: 1100px) {
  :root { --hdr-h: 84px; }
  .hero-logo { width: 400px; }
  .hero .sub { max-width: 40ch; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 2.45rem; }
  .btn { padding: 0 16px; font-size: .95rem; }
}

/* ---- EN/ES toggle */
.lang-toggle{display:inline-flex;align-items:center;gap:5px;padding:8px 11px;border:1px solid rgba(255,255,255,.28);border-radius:999px;font:700 12px/1 var(--font-body,inherit);letter-spacing:.06em;color:#fff;text-decoration:none;white-space:nowrap}
.lang-toggle .lt-on{opacity:.55}.lang-toggle .lt-sep{opacity:.35}
.lang-toggle:hover{border-color:#fff}
.lang-toggle-sheet{justify-content:center;width:100%;padding:12px;margin-bottom:10px;font-size:14px}
/* ---- booking (Cal.com inline) */
.book-head{max-width:62ch}
.book-frame{margin-top:clamp(22px,4vw,36px);background:#fff;border-radius:18px;padding:clamp(8px,1.5vw,14px);box-shadow:0 30px 70px -40px rgba(0,0,0,.8)}
.cal-inline{width:100%;min-height:560px}
.cal-inline iframe{width:100%!important;display:block}
.cal-inline:not(.is-ready){background:linear-gradient(90deg,#f2f5f9 25%,#e3eaf3 37%,#f2f5f9 63%);background-size:400% 100%;animation:calsk 1.4s ease infinite;border-radius:12px}
@keyframes calsk{0%{background-position:100% 0}100%{background-position:0 0}}
.book-fallback{padding:clamp(18px,3vw,30px);color:var(--text)}
.book-fallback .lede{color:var(--muted)}
.book-fallback .btn-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
.book-fallback .btn-ghost{color:var(--brand-blue);border-color:var(--brand-blue)}
@media(max-width:700px){.cal-inline{min-height:520px}}

/* ---- shade scale: Carbon | Ceramic pick; the 70% strip is ceramic only */
.film-pick { display: inline-flex; gap: 4px; padding: 4px; margin: 0 0 14px; border: 1px solid var(--line-d); border-radius: 999px; background: rgba(255, 255, 255, .04); }
.film-pick input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.film-pick label { display: inline-flex; align-items: baseline; gap: 6px; padding: 9px 16px; border-radius: 999px; cursor: pointer; font-weight: 700; color: #cfdbe8; font-size: .95rem; line-height: 1; transition: background .2s, color .2s; -webkit-tap-highlight-color: transparent; }
.film-pick label small { font-size: .72rem; font-weight: 600; letter-spacing: .04em; color: var(--muted-d); }
.film-pick input:checked + label { background: #fff; color: var(--ink); }
.film-pick input:checked + label small { color: var(--muted); }
.film-pick input:focus-visible + label { outline: 3px solid var(--brand-steel); outline-offset: 2px; }
.scale:has(#filmCarbon:checked) .strip[data-v="70"] { display: none; }
.strip .v { font-size: clamp(1.05rem, 4.2vw, 2.4rem); }
@media (max-width: 480px) { .strip .vl { font-size: .58rem; letter-spacing: .08em; } .strip { padding-bottom: 14px; } }

/* ---- top strip: maps · facebook · instagram · EN/ES (every width) */
.topbar { height: var(--top-h); background: rgba(6, 16, 31, .92); border-bottom: 1px solid rgba(168, 192, 216, .16); }
.topbar-in { height: 100%; display: flex; align-items: center; gap: 8px; }
.tb-link { display: inline-flex; align-items: center; gap: 7px; min-height: 28px; padding: 0 10px 0 6px; border-radius: 999px; border: 1px solid rgba(168, 192, 216, .3); color: #fff; text-decoration: none; font-size: .8rem; font-weight: 700; letter-spacing: .01em; white-space: nowrap; -webkit-tap-highlight-color: transparent; }
.tb-link svg { width: 16px; height: 16px; color: var(--brand-steel); }
.tb-link:hover { border-color: #fff; }
.tb-social { display: inline-flex; gap: 6px; margin-left: 2px; }
.tb-ic { width: 28px; height: 28px; display: inline-grid; place-items: center; border-radius: 999px; border: 1px solid rgba(168, 192, 216, .3); color: #fff; -webkit-tap-highlight-color: transparent; }
.tb-ic svg { width: 15px; height: 15px; }
.tb-ic:hover { border-color: #fff; }
.tb-lang { margin-left: auto; padding: 6px 10px; font-size: 11.5px; }
.hdr-actions .lang-toggle { display: none; }
@media (max-width: 380px) { .tb-map span { display: none; } .tb-link { padding: 0 6px; } }
