/* ==========================================================================
   360 Tint — site styles
   Palette: warm off-white ground, gloss black, chrome. Display type echoes the
   logo's wide italic lettering; body type is Barlow for legibility.
   ========================================================================== */

:root {
  --bg: #f3f1ec;
  --ink: #0b0b0d;
  --ink-2: #2a2a2e;
  --muted: #62626a;
  --line: #d3cfc5;
  --black: #0b0b0d;
  --black-line: #2a2a2f;
  --accent: #3b78d8;
  --radius: 16px;
  --font-display: "Exo 2", "Barlow", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --wrap: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

@media (max-width: 720px) {
  :root { --header-h: 60px; }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  /* Looping animations can't just be shortened — they'd flicker. Switch them off outright,
     and drop the marquee's clone track so the trust list doesn't render twice. */
  .chrome--sweep, .hero__trust-track { animation: none !important; }
  .hero__trust-track[aria-hidden] { display: none !important; }
  .hero__trust-track { flex-wrap: wrap !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.wrap { width: min(var(--wrap), 100% - 40px); margin-inline: auto; }
@media (max-width: 720px) { .wrap { width: min(var(--wrap), 100% - 32px); } }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: translateY(-200%);
  transition: transform .15s;
}
.skip-link:focus-visible { transform: none; outline-offset: 2px; }
#why:focus { outline: none; }

/* ---------- Type ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: .95;
  margin: 0;
}

h1 { font-size: clamp(42px, 8.5vw, 92px); }
h2 { font-size: clamp(34px, 5.2vw, 60px); }
h3 { font-size: clamp(20px, 2.2vw, 24px); letter-spacing: 0; line-height: 1.1; }

p { margin: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; opacity: .55; }

.lede { font-size: clamp(17px, 1.6vw, 21px); color: var(--ink-2); max-width: 46ch; }

/* Chrome lettering — bright version for black grounds, gunmetal for light grounds */
.chrome, .chrome-dark {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.chrome {
  background-image: linear-gradient(180deg, #ffffff 0%, #eef0f3 30%, #9ea4ad 50%, #f4f5f7 60%, #b6bbc3 100%);
}
.chrome-dark {
  background-image: linear-gradient(180deg, #5a5f67 0%, #16171a 42%, #6d737c 52%, #0b0b0d 100%);
}
h2 .chrome-dark { white-space: nowrap; }

/* ---------- Buttons ---------- */

.btn {
  --btn-bg: var(--black);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s, color .2s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 1px 2px rgba(0,0,0,.15);
}
.btn:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 8px 20px rgba(11,11,13,.18); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(11,11,13,.06); box-shadow: none; }

.btn--chrome {
  --btn-bg: linear-gradient(180deg, #ffffff 0%, #d9dce1 45%, #aab0b8 52%, #e6e8ec 100%);
  --btn-fg: var(--black);
  background: var(--btn-bg);
  box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(0,0,0,.4);
}
.btn--chrome:hover { box-shadow: inset 0 1px 0 #fff, 0 10px 24px rgba(0,0,0,.45); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255,255,255,.55);
  box-shadow: none;
}
.btn--outline-light:hover { background: rgba(255,255,255,.08); box-shadow: none; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(243,241,236,.86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(11,11,13,.08);
  transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(11,11,13,.08); }
.site-header .wrap { height: 100%; display: flex; align-items: center; gap: 24px; }

.brand { display: flex; align-items: center; height: 100%; flex: none; }
.brand img { height: calc(var(--header-h) - 14px); width: auto; filter: drop-shadow(0 1px 1px rgba(0,0,0,.25)); }

.site-nav { display: flex; gap: 6px; margin-left: 8px; }
.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  transition: background-color .2s, color .2s;
}
.site-nav a:hover { background: rgba(11,11,13,.06); color: var(--ink); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; flex: none; }
.header-cta .btn-label-short { display: none; }

@media (max-width: 720px) {
  .site-header .wrap { gap: 12px; }
  .site-nav { display: none; }
  .header-actions { gap: 6px; }
  .header-cta { min-height: 42px; padding: 0 16px; font-size: 13px; }
  .header-cta .btn-label-long { display: none; }
  .header-cta .btn-label-short { display: inline; }
  /* Directions collapses to a round icon button; the link keeps its aria-label */
  .header-dir { min-height: 42px; width: 42px; padding: 0; border-radius: 50%; }
  .header-dir__label { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  background: #070708;
  color: #e9e9ec;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero__scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero.is-live .hero__scene { opacity: 1; }

/* Fine photographic grain: hides gradient banding on the black and makes the chrome read as a photo */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: url("../assets/grain.png") repeat;
  background-size: 112px 112px;
  opacity: .08;
  mix-blend-mode: overlay;
}

/* Bottom of the scene melts into the black "Why tint" section */
.hero__fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 22%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,13,0) 0%, rgba(11,11,13,.85) 70%, var(--black) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 600px) 1fr;
  align-items: center;
  padding: clamp(28px, 6vh, 72px) 0 clamp(24px, 4vh, 48px);
}

/* Where the hoop lives. js/hero.js reads this box's rect and fits the 3D hoop to it.
   It comes first in the DOM (phones stack it above the copy) but sits in the right column here. */
.hero__stage {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  pointer-events: none;
  perspective: 1400px;
}

.hero__copy { grid-column: 1; grid-row: 1; display: grid; gap: 18px; justify-items: start; }
.hero .eyebrow { color: #9a9ba3; }
.hero h1 { font-size: clamp(42px, 6.4vw, 86px); filter: drop-shadow(0 6px 22px rgba(0,0,0,.75)); }
.hero .lede { color: #c4c5cb; max-width: 40ch; text-shadow: 0 1px 14px rgba(0,0,0,.85); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

/* Entrance: copy rises in, one line after the next */
.hero__copy > * { animation: hero-rise .9s var(--ease) both; }
.hero__copy > :nth-child(2) { animation-delay: .1s; }
.hero__copy > :nth-child(3) { animation-delay: .2s; }
.hero__copy > :nth-child(4) { animation-delay: .3s; }
.hero__copy > :nth-child(5) { animation-delay: .4s; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Light sweep that races across the chrome lettering every few seconds */
.chrome--sweep {
  background-image:
    linear-gradient(105deg, rgba(255,255,255,0) 38%, rgba(255,255,255,.95) 50%, rgba(255,255,255,0) 62%),
    linear-gradient(180deg, #ffffff 0%, #eef0f3 30%, #9ea4ad 50%, #f4f5f7 60%, #b6bbc3 100%);
  background-size: 260% 100%, 100% 100%;
  background-position: 200% 0, 0 0;
  background-repeat: no-repeat;
  animation: chrome-sweep 7s cubic-bezier(.4, 0, .2, 1) 1.2s infinite;
}
@keyframes chrome-sweep {
  0% { background-position: 200% 0, 0 0; }
  32%, 100% { background-position: -160% 0, 0 0; }
}

/* Shade pills — drive the film's transmission in the 3D scene */
.hero__shades {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 10px;
  padding: 8px 8px 8px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.hero__shades-label {
  display: grid;
  line-height: 1.2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9a9ba3;
}
.hero__shades-label small {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
  color: #8f9098;
}
.hero__shades-row { display: flex; gap: 6px; }
.shade-pill {
  appearance: none;
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  color: #c9cad0;
  font: inherit;
  font-weight: 700;
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  min-width: 50px;
  padding: 11px 12px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s, transform .15s var(--ease);
}
.shade-pill:hover { border-color: rgba(255,255,255,.4); color: #fff; }
.shade-pill:active { transform: scale(.95); }
.shade-pill.is-on {
  background: linear-gradient(180deg, #ffffff 0%, #d9dce1 45%, #aab0b8 52%, #e6e8ec 100%);
  color: var(--black);
  border-color: transparent;
  box-shadow: inset 0 1px 0 #fff, 0 4px 14px rgba(0,0,0,.5);
}

/* Trust strip: a static row on desktop, a slow marquee on phones */
.hero__trust {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9a9ba3;
}
.hero__trust-track {
  list-style: none;
  margin: 0 auto;
  padding: 18px 0 clamp(20px, 3vh, 30px);
  width: min(var(--wrap), 100% - 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.hero__trust-track[aria-hidden] { display: none; }
.hero__trust li { display: inline-flex; align-items: center; gap: 10px; }
.hero__trust li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(180deg, #fff, #9ea4ad);
  box-shadow: 0 0 10px rgba(255,255,255,.5);
}

/* Fallback (no WebGL / reduced motion): CSS chrome hoop stands in for the scene */
.hero__hoop {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, 64vh);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 210deg, #f7f8fa, #6d737c 16%, #ffffff 34%, #4a4f57 52%, #eef0f3 70%, #7d838c 86%, #f7f8fa);
  -webkit-mask: radial-gradient(circle, transparent 62%, #000 62.5%, #000 71%, transparent 71.5%);
  mask: radial-gradient(circle, transparent 62%, #000 62.5%, #000 71%, transparent 71.5%);
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-18deg);
  filter: drop-shadow(0 0 24px rgba(255,255,255,.18));
  display: none;
}
.hero--static .hero__scene { display: none; }
.hero--static .hero__hoop { display: block; }
.hero--static .hero__shades { display: none; }
.hero--static .chrome--sweep { animation: none; }

@media (max-width: 900px) {
  /* Phones and small tablets: the hoop gets its own stage above the copy, and takes
     every spare pixel of viewport height; the copy sits below it, centred. */
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(clamp(210px, 34svh, 380px), 1fr) auto;
    align-items: start;
    row-gap: 6px;
    padding: 8px 0 18px;
  }
  .hero__stage { grid-column: 1; grid-row: 1; align-self: stretch; }
  .hero__hoop { width: min(92%, 42svh); transform: translate(-50%, -50%) rotateX(54deg) rotateZ(-14deg); }
  .hero__copy { grid-column: 1; grid-row: 2; justify-items: center; text-align: center; gap: 14px; }
  .hero h1 { font-size: clamp(40px, 11.5vw, 64px); }
  .hero .lede { margin-inline: auto; font-size: 16.5px; }
  .hero__cta { width: 100%; margin-top: 4px; }
  .hero__cta .btn { flex: 1 1 0; padding: 0 14px; }
  .hero__shades {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 10px 10px;
    border-radius: 22px;
  }
  .hero__shades-label { text-align: center; }
  .hero__shades-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; }
  .shade-pill { min-width: 0; padding: 12px 2px; font-size: 13px; }
  /* darken the lower half so the copy reads over the film ribbons */
  .hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 62%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7,7,8,0) 0%, rgba(7,7,8,.55) 28%, rgba(7,7,8,.72) 100%);
  }

  /* Trust marquee: two identical tracks slide left; the clone takes over as the first exits */
  .hero__trust {
    display: flex;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }
  .hero__trust-track, .hero__trust-track[aria-hidden] {
    display: flex;
    flex: none;
    flex-wrap: nowrap;
    width: auto;
    margin: 0;
    gap: 0 30px;
    padding: 14px 30px 18px 0;
    animation: trust-marquee 28s linear infinite;
  }
  .hero__trust li { white-space: nowrap; font-size: 12px; }
  @keyframes trust-marquee { to { transform: translateX(-100%); } }
}

@media (max-width: 900px) and (max-height: 640px) {
  /* Short landscape phones: don't starve the copy */
  .hero__inner { grid-template-rows: minmax(160px, 1fr) auto; }
}

/* ---------- Sections ---------- */

.section { padding: clamp(64px, 9vw, 120px) 0; scroll-margin-top: var(--header-h); }
.section__head { display: grid; gap: 16px; max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section--dark { background: var(--black); color: #e9e9ec; }
.section--dark .eyebrow { color: #9a9ba3; }
.section--dark .lede { color: #c4c5cb; }

/* Why tint — benefit grid */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits { grid-template-columns: 1fr; } }

.benefit {
  background: linear-gradient(180deg, #17171a, #111113);
  border: 1px solid var(--black-line);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  display: grid;
  gap: 12px;
  align-content: start;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.benefit__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #d5d8dd 48%, #9ba1a9 52%, #e4e6ea 100%);
  color: var(--black);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 4px 14px rgba(0,0,0,.5);
}
.benefit__icon svg { width: 24px; height: 24px; }
.benefit h3 { color: #fff; }
.benefit p { color: #b3b4bb; font-size: 16px; }

/* ---------- Film & shades ---------- */

.films { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 820px) { .films { grid-template-columns: 1fr; } }

.film {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  gap: 18px;
  align-content: start;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 10px 30px rgba(11,11,13,.05);
}
.film__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.film h3 { font-size: clamp(28px, 3.2vw, 36px); letter-spacing: -.01em; }
.film__tag { margin-top: 6px; font-weight: 600; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.film__tier {
  flex: none;
  text-align: right;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.02em;
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  background-image: linear-gradient(180deg, #5a5f67 0%, #16171a 42%, #6d737c 52%, #0b0b0d 100%);
}
.film__tier small {
  display: block;
  margin-top: 5px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--muted);
  color: var(--muted);
}
.film__body { color: var(--ink-2); font-size: 16.5px; }
.film__perks { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15.5px; color: var(--ink-2); }
.film__perks li { display: flex; gap: 10px; align-items: flex-start; }
.film__perks li::before {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b0b0d' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 11px no-repeat,
    linear-gradient(180deg, #ffffff 0%, #d5d8dd 48%, #9ba1a9 52%, #e4e6ea 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 2px 6px rgba(0,0,0,.25);
}
.film__shades { display: grid; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.film__shades-label { font-weight: 600; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.swatches { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 14px; }
.swatches li { display: grid; justify-items: center; gap: 7px; font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; }
.swatch {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.6), rgba(255,255,255,0) 55%), var(--vlt, #333);
  border: 1px solid rgba(0,0,0,.28);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.45), 0 3px 10px rgba(0,0,0,.2);
}

/* Ceramic card goes gloss black to read as the premium tier */
.film--ceramic { background: linear-gradient(180deg, #17171a, #111113); border-color: var(--black-line); color: #e9e9ec; box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.film--ceramic h3 { color: #fff; }
.film--ceramic .film__tag, .film--ceramic .film__shades-label { color: #9a9ba3; }
.film--ceramic .film__tier { background-image: linear-gradient(180deg, #ffffff 0%, #eef0f3 30%, #9ea4ad 50%, #f4f5f7 60%, #b6bbc3 100%); }
.film--ceramic .film__tier small { -webkit-text-fill-color: #9a9ba3; color: #9a9ba3; }
.film--ceramic .film__body, .film--ceramic .film__perks { color: #c4c5cb; }
.film--ceramic .film__shades { border-top-color: var(--black-line); }
.film--ceramic .swatch { border-color: rgba(255,255,255,.18); box-shadow: inset 0 0 0 2px rgba(255,255,255,.3), 0 3px 10px rgba(0,0,0,.5); }

.films__note { margin-top: 18px; color: var(--muted); font-size: 15px; max-width: 70ch; }
@media (max-width: 560px) {
  /* six carbon swatches on one row of a phone */
  .swatches { gap: 10px 8px; }
  .swatches li { font-size: 13px; gap: 6px; }
  .swatch { width: 40px; height: 40px; }
}

/* Steps strip */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(32px, 5vw, 56px); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 26px 24px 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
  display: grid;
  gap: 8px;
}
.step__n {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  background-image: linear-gradient(180deg, #5a5f67 0%, #16171a 42%, #6d737c 52%, #0b0b0d 100%);
}
.step p { color: var(--ink-2); font-size: 16px; }

/* Call-to-action band at the foot of the film section */
.cta-band {
  margin-top: 20px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius);
  background: var(--black);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.cta-band h3 { font-size: clamp(24px, 2.8vw, 32px); color: #fff; }
.cta-band p { margin-top: 6px; color: #b3b4bb; max-width: 48ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 560px) {
  .cta-band__actions { width: 100%; display: grid; }
}

/* ---------- Contact ---------- */

.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }

.contact__phone {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.01em;
  display: inline-block;
  margin: 8px 0 18px;
}
.contact__phone:hover { text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 8px; }

.contact dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 12px 22px; font-size: 16.5px; }
.contact dt { font-weight: 600; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #9a9ba3; padding-top: 4px; }
.contact dd { margin: 0; color: #e9e9ec; }
.contact dd a:hover { text-decoration: underline; text-underline-offset: 4px; }

.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.contact-card {
  background: linear-gradient(180deg, #17171a, #111113);
  border: 1px solid var(--black-line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  gap: 18px;
}
.contact-card img { width: min(260px, 70%); margin-inline: auto; }
.contact-card p { color: #b3b4bb; font-size: 16px; text-align: center; }

/* ---------- Footer ---------- */

.site-footer { background: #070708; color: #8d8e97; font-size: 14px; padding: 26px 0; border-top: 1px solid #1a1a1e; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; align-items: center; }
.site-footer a:hover { color: #fff; }
