/* ============================================================
   FORMED OF LIGHT — v2
   Dark editorial, evolved. Mobile-first.
   ============================================================ */

:root {
  --bg: #0a0a0b;
  --bg-2: #121214;
  --surface: #17171a;
  --line: #26262b;
  --ink: #f4f0e8;          /* warm off-white */
  --ink-dim: #a8a49c;
  --ink-faint: #6c6963;
  --glow-a: #c46bff;       /* projection violet */
  --glow-b: #3ecbff;       /* projection cyan */
  --grad: linear-gradient(100deg, var(--glow-a), var(--glow-b));
  --serif: "Fraunces", Georgia, serif;
  --sans: "Space Grotesk", system-ui, sans-serif;
  --nav-h: 68px;
  --pad: clamp(20px, 5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--glow-a); color: #0a0a0b; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 999; background: var(--ink); color: var(--bg); padding: 8px 16px; }

/* ── Typography helpers ── */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; }
.eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-faint);
  display: block; margin-bottom: 18px;
}
.grad-text {
  background: linear-gradient(100deg, #d98fff, #7edcff); /* brighter than the base gradient for legibility */
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-style: italic;
  /* drop-shadow follows the gradient glyphs (text-shadow can't with clipped text):
     dark edge for contrast + soft glow so it reads over any background */
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.85)) drop-shadow(0 0 14px rgba(150,120,255,.35));
}

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  transition: background .35s, backdrop-filter .35s, transform .35s;
}
.nav.filled { background: rgba(10,10,11,.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav.hidden { transform: translateY(-100%); }
.nav-logo {
  font-family: var(--serif); font-size: 19px; text-decoration: none;
  letter-spacing: 0.01em; white-space: nowrap;
}
.nav-logo em { font-style: italic; color: var(--ink-dim); }
.nav-logo-mark {
  display: inline-block; margin-right: 4px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  text-decoration: none; font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-dim);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a[aria-current] { color: var(--ink); }
.nav-cta {
  border: 1px solid var(--ink); border-radius: 100px;
  padding: 9px 22px; color: var(--ink) !important;
  transition: background .25s, color .25s !important;
}
.nav-cta:hover { background: var(--ink); color: var(--bg) !important; }
.nav-burger { display: none; }

@media (max-width: 880px) {
  .nav-burger {
    display: block; background: none; border: 0; cursor: pointer;
    width: 42px; height: 42px; position: relative; z-index: 102;
  }
  .nav-burger span {
    position: absolute; left: 8px; right: 8px; height: 2px; background: var(--ink);
    transition: transform .3s, top .3s;
  }
  .nav-burger span:nth-child(1) { top: 16px; }
  .nav-burger span:nth-child(2) { top: 24px; }
  body.menu-open .nav-burger span:nth-child(1) { top: 20px; transform: rotate(45deg); }
  body.menu-open .nav-burger span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

  .nav-links {
    position: fixed; inset: 0; z-index: 101;
    background: rgba(10,10,11,.97); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 8px;
    opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  body.menu-open .nav-links { opacity: 1; pointer-events: auto; }
  /* While the menu is open the nav must have NO transform/backdrop-filter:
     either one turns it into the containing block for the fixed overlay,
     trapping the full-screen menu inside the 68px bar. */
  body.menu-open .nav {
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: none;
    background: transparent;
    border-bottom: 0;
  }
  .nav-links a {
    font-family: var(--serif); font-size: clamp(30px, 8vw, 44px);
    text-transform: none; letter-spacing: -0.02em; color: var(--ink);
    padding: 8px 0;
  }
  .nav-cta { border: 0; padding: 8px 0; }
  .nav-cta:hover { background: none; color: var(--ink) !important; }
  body.menu-open { overflow: hidden; }
}

/* ── Buttons ── */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--sans); font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 100px; padding: 16px 34px; transition: all .25s;
  border: 1px solid transparent;
}
.btn-solid { background: var(--ink); color: var(--bg); }
.btn-solid:hover { background: var(--glow-a); color: #0a0a0b; transform: translateY(-2px); }
.btn-ghost { border-color: rgba(244,240,232,.35); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(244,240,232,.07); }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 40px) var(--pad) 64px;
  isolation: isolate;
}
.hero-bg, .hero-bg::after { position: absolute; inset: 0; z-index: -1; }
.hero-bg { background-size: cover; background-position: 50% 20%; }
.hero-bg::after {
  content: "";
  background: linear-gradient(180deg, rgba(10,10,11,.35) 0%, rgba(10,10,11,.15) 40%, rgba(10,10,11,.92) 100%);
}
.hero h1 {
  font-size: clamp(44px, 9vw, 118px);
  max-width: 13ch;
  margin-bottom: 26px;
  text-shadow: 0 1px 2px rgba(0,0,0,.9), 0 2px 6px rgba(0,0,0,.7), 0 4px 24px rgba(0,0,0,.5);
}
/* Let the gradient word render clean — the h1 text-shadow otherwise bleeds
   through the transparent-filled glyphs and mutes the color. grad-text has
   its own drop-shadow filter for contrast. */
.hero h1 .grad-text { text-shadow: none; }
.hero p { font-size: clamp(16px, 2vw, 20px); color: var(--ink-dim); max-width: 44ch; margin-bottom: 36px;
  text-shadow: 0 1px 2px rgba(0,0,0,.9), 0 2px 8px rgba(0,0,0,.65); }
.hero .eyebrow { text-shadow: 0 1px 2px rgba(0,0,0,.9); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; right: var(--pad); bottom: 64px;
  writing-mode: vertical-rl; font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ink-faint); text-decoration: none;
}
@media (max-width: 700px) { .hero-scroll { display: none; } }

/* ── Marquee ── */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden; white-space: nowrap; padding: 18px 0;
  background: var(--bg);
}
.marquee-track { display: inline-block; animation: marquee 30s linear infinite; }
.marquee span {
  font-family: var(--serif); font-size: clamp(18px, 3vw, 28px);
  font-style: italic; color: var(--ink-dim); margin: 0 28px;
}
.marquee b {
  font-family: var(--sans); font-weight: 500; font-style: normal;
  font-size: 12px; letter-spacing: .3em; vertical-align: middle;
  color: var(--ink-faint);
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Sections ── */
.section { padding: clamp(72px, 12vw, 150px) var(--pad); }
.section-tight { padding-block: clamp(48px, 8vw, 90px); }
.section-head { max-width: 900px; margin-bottom: clamp(36px, 6vw, 72px); }
.section-head h2 { font-size: clamp(34px, 5.5vw, 68px); margin-bottom: 20px; }
.section-head p { color: var(--ink-dim); font-size: clamp(15px, 1.8vw, 18px); max-width: 58ch; }

/* ── Horizontal scroll strip ── */
.strip {
  display: flex; gap: 14px; overflow-x: auto; padding: 4px var(--pad) 26px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
  cursor: grab;
}
.strip::-webkit-scrollbar { display: none; }
.strip.dragging { cursor: grabbing; scroll-snap-type: none; }
.strip.dragging img { pointer-events: none; }
.strip img {
  height: clamp(300px, 48vw, 480px); width: auto; flex: none;
  scroll-snap-align: center; border-radius: 6px;
  object-fit: cover;
}

/* ── Work cards (portfolio index / featured) ── */
/* Mobile: every card full-width (the "Back Projection" look) so titles + blurbs never clip */
.work-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.work-card {
  position: relative; overflow: hidden; border-radius: 8px;
  aspect-ratio: 16/10; text-decoration: none; display: block;
  isolation: isolate;
}
.work-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%; /* favor the top so faces aren't cropped on tall mobile cards */
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
  z-index: -1;
}
.work-card:hover img { transform: scale(1.045); }
.work-card::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(200deg, transparent 45%, rgba(5,5,6,.86));
}
.work-card-label {
  position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1;
}
.work-card-label h3 { font-size: clamp(22px, 3.4vw, 38px); font-style: italic;
  text-shadow: 0 1px 2px rgba(0,0,0,.95), 0 2px 10px rgba(0,0,0,.7); }
.work-card-label span {
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim);
  text-shadow: 0 1px 2px rgba(0,0,0,.95), 0 0 8px rgba(0,0,0,.7);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.work-card-count {
  position: absolute; top: 18px; right: 20px; z-index: 1;
  font-size: 11px; letter-spacing: .18em; color: var(--ink-dim);
  border: 1px solid rgba(244,240,232,.25); border-radius: 100px; padding: 5px 13px;
  backdrop-filter: blur(6px);
}
@media (min-width: 620px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid .work-card:first-child { grid-column: 1 / -1; aspect-ratio: 16/8; }
  .work-card { aspect-ratio: 4/5; }
}
@media (min-width: 900px) {
  .work-grid { grid-template-columns: repeat(6, 1fr); }
  .work-grid .work-card:nth-child(1) { grid-column: span 4; aspect-ratio: auto; }
  .work-grid .work-card:nth-child(2) { grid-column: span 2; aspect-ratio: 4/5; }
  .work-grid .work-card:nth-child(3) { grid-column: span 2; aspect-ratio: 4/5; }
  .work-grid .work-card:nth-child(4) { grid-column: span 2; aspect-ratio: 4/5; }
  .work-grid .work-card:nth-child(5) { grid-column: span 2; aspect-ratio: 4/5; }
}

/* ── Bento (who is this for) ── */
.bento { display: grid; gap: 14px; }
@media (min-width: 760px) { .bento { grid-template-columns: repeat(2, 1fr); } }
.bento-card {
  position: relative; border: 1px solid var(--line); border-radius: 10px;
  padding: clamp(26px, 4vw, 44px); background-size: cover; background-position: center;
  isolation: isolate; overflow: hidden;
}
.bento-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, rgba(10,10,11,.9), rgba(10,10,11,.75));
}
.bento-card h3 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,.9), 0 2px 8px rgba(0,0,0,.6); }
.bento-card p { color: var(--ink-dim); font-size: 15px; margin-bottom: 10px;
  text-shadow: 0 1px 2px rgba(0,0,0,.9); }
.bento-card strong { color: var(--ink); font-weight: 600; }
.bento-link {
  display: inline-block; margin-top: 14px; text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bento-link::after { content: " →"; -webkit-text-fill-color: var(--glow-b); }

/* ── About ── */
.about { display: grid; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (min-width: 860px) { .about { grid-template-columns: 5fr 6fr; } }
.about img { border-radius: 8px; }
.about h2 { font-size: clamp(30px, 4.5vw, 54px); margin-bottom: 22px; }
.about p { color: var(--ink-dim); margin-bottom: 18px; max-width: 58ch; }
.price-note {
  font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--ink);
  border-left: 2px solid; border-image: var(--grad) 1; padding-left: 18px;
  max-width: 58ch;
}

/* ── Steps (how it works) ── */
.steps { display: grid; gap: 22px; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.steps > div { border-top: 1px solid var(--line); padding-top: 16px; }
.steps span {
  font-family: var(--serif); font-style: italic; font-size: 15px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.steps h3 { font-size: 18px; margin: 6px 0 8px; }
.steps p { font-size: 14px; color: var(--ink-dim); }

/* ── Category story blocks (portfolio pages) ── */
.story-grid { display: grid; gap: 22px; max-width: 1200px; }
@media (min-width: 700px) { .story-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .story-grid { grid-template-columns: repeat(4, 1fr); } }
.story-grid > div { border-top: 1px solid var(--line); padding-top: 16px; }
.story-grid h3 { font-size: 17px; font-style: italic; margin-bottom: 8px; }
.story-grid h3::before { content: "— "; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.story-grid p { font-size: 14.5px; color: var(--ink-dim); }

/* ── Trust strip ── */
.trust { display: grid; gap: 30px; border-top: 1px solid var(--line); padding-top: clamp(40px, 6vw, 64px); }
@media (min-width: 760px) { .trust { grid-template-columns: repeat(3, 1fr); } }
.trust h3 { font-size: 20px; margin-bottom: 10px; font-style: italic; }
.trust h3::before { content: "— "; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.trust p { color: var(--ink-dim); font-size: 14.5px; }

/* ── Masonry gallery (portfolio pages) ── */
.masonry { columns: 2; column-gap: 12px; }
@media (min-width: 760px) { .masonry { columns: 3; } }
@media (min-width: 1200px) { .masonry { columns: 4; } }
.masonry figure { break-inside: avoid; margin: 0 0 12px; position: relative; border-radius: 6px; overflow: hidden; cursor: zoom-in; }
.masonry img { width: 100%; transition: transform .6s, opacity .6s; }
.masonry figure:hover img { transform: scale(1.03); }

/* ── Page header (interior pages) ── */
.page-head { padding: calc(var(--nav-h) + clamp(50px, 10vw, 120px)) var(--pad) clamp(36px, 6vw, 70px); }
.page-head h1 { font-size: clamp(40px, 7.5vw, 96px); max-width: 16ch; margin-bottom: 20px; }
.page-head p { color: var(--ink-dim); max-width: 56ch; font-size: clamp(15px, 1.9vw, 18px); }

/* ── FAQ accordions ── */
.faq-list { max-width: 860px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px; padding: 22px 0;
  font-family: var(--serif); font-size: clamp(18px, 2.4vw, 24px);
  transition: color .2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-family: var(--sans); font-size: 22px; color: var(--ink-faint); transition: transform .25s; flex: none; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--glow-b); }
.faq-list .faq-a { padding: 0 0 24px; color: var(--ink-dim); max-width: 66ch; }
.faq-list .faq-a a { color: var(--glow-b); }

/* ── Forms ── */
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; color: var(--ink); font-family: var(--sans); font-size: 16px;
  padding: 14px 16px; transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--glow-a); }
.field textarea { min-height: 130px; resize: vertical; }

/* ── Booking flow ── */
.book-steps { display: flex; gap: 10px; margin-bottom: clamp(30px, 5vw, 50px); flex-wrap: wrap; }
.book-steps span {
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 100px; padding: 7px 16px; color: var(--ink-faint);
}
.book-steps span.on { border-color: var(--glow-a); color: var(--ink); }

.type-grid { display: grid; gap: 14px; }
@media (min-width: 700px) { .type-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .type-grid { grid-template-columns: repeat(3, 1fr); } }
.type-card {
  text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 26px; cursor: pointer; color: var(--ink); font-family: var(--sans);
  transition: border-color .2s, transform .2s; display: block; width: 100%;
}
.type-card:hover { border-color: var(--ink-faint); transform: translateY(-3px); }
.type-card.selected { border-color: var(--glow-a); box-shadow: 0 0 0 1px var(--glow-a); }
.type-card h3 { font-size: 22px; margin-bottom: 8px; }
.type-card .type-meta { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.type-card p { font-size: 14px; color: var(--ink-dim); }
.type-card .type-price { margin-top: 14px; font-family: var(--serif); font-size: 19px; font-style: italic; }
.type-card .type-price small { font-family: var(--sans); font-style: normal; font-size: 12px; color: var(--ink-faint); }

.cal-wrap { display: grid; gap: clamp(24px, 4vw, 48px); }
@media (min-width: 900px) { .cal-wrap { grid-template-columns: 3fr 2fr; align-items: start; } }
.cal { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: clamp(16px, 3vw, 28px); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-head h3 { font-size: 20px; }
.cal-head button {
  background: none; border: 1px solid var(--line); border-radius: 8px; color: var(--ink);
  width: 38px; height: 38px; cursor: pointer; font-size: 16px; transition: border-color .2s;
}
.cal-head button:hover:not(:disabled) { border-color: var(--ink-dim); }
.cal-head button:disabled { opacity: .3; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-grid .dow { text-align: center; font-size: 10.5px; letter-spacing: .1em; color: var(--ink-faint); padding: 6px 0; text-transform: uppercase; }
.cal-day {
  aspect-ratio: 1; border: 0; border-radius: 8px; background: none; color: var(--ink-faint);
  font-family: var(--sans); font-size: 14px; display: grid; place-items: center; position: relative;
}
.cal-day.open { background: var(--bg-2); color: var(--ink); cursor: pointer; transition: background .15s; }
.cal-day.open:hover { background: var(--line); }
.cal-day.open::after {
  content: ""; position: absolute; bottom: 6px; width: 4px; height: 4px; border-radius: 50%;
  background: var(--grad);
}
.cal-day.picked { background: var(--ink); color: var(--bg); font-weight: 600; }
.cal-day.picked::after { background: var(--bg); }

.slots h3 { font-size: 20px; margin-bottom: 6px; }
.slots .slots-date { color: var(--ink-dim); font-size: 14px; margin-bottom: 18px; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(105px, 1fr)); gap: 8px; }
.slot {
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  border-radius: 8px; padding: 12px 4px; font-family: var(--sans); font-size: 14px; cursor: pointer;
  transition: border-color .15s;
}
.slot:hover { border-color: var(--ink-dim); }
.slot.picked { background: var(--ink); color: var(--bg); border-color: var(--ink); font-weight: 600; }

.book-summary {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 24px; margin-bottom: 26px;
}
.book-summary p { display: flex; justify-content: space-between; gap: 20px; font-size: 14.5px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.book-summary p:last-child { border: 0; }
.book-summary span:first-child { color: var(--ink-faint); }
.book-summary .sum-total span:last-child { font-family: var(--serif); font-style: italic; font-size: 18px; }

.notice { border: 1px solid var(--line); border-left: 3px solid var(--glow-b); border-radius: 8px; background: var(--surface); padding: 16px 20px; font-size: 14.5px; color: var(--ink-dim); margin-bottom: 24px; }
.notice.err { border-left-color: #ff5470; }

/* ── Concept cards (collaborate) ── */
.concepts { display: grid; gap: 14px; }
@media (min-width: 860px) { .concepts { grid-template-columns: repeat(2, 1fr); } }
.concept {
  border: 1px solid var(--line); border-radius: 10px; padding: clamp(24px, 4vw, 40px);
  background: var(--surface);
}
.concept .num { font-family: var(--serif); font-style: italic; color: var(--ink-faint); font-size: 15px; }
.concept h3 { font-size: clamp(24px, 3vw, 32px); margin: 8px 0 14px; }
.concept p { color: var(--ink-dim); font-size: 15px; margin-bottom: 12px; }
.concept .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.concept .tags span {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 100px; padding: 5px 12px; color: var(--ink-dim);
}
/* Per-concept inspiration thumbnails (open a group-scoped lightbox) */
.concept-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.concept-thumb {
  flex: 0 0 auto; width: 68px; height: 68px; padding: 0; overflow: hidden;
  border: 1px solid var(--line); border-radius: 6px; background: none; cursor: zoom-in;
  transition: border-color .2s ease, transform .2s ease;
}
.concept-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.concept-thumb:hover, .concept-thumb:focus-visible {
  border-color: var(--glow-b); transform: translateY(-2px); outline: none;
}

/* ── Exchange columns ── */
.exchange-grid { display: grid; gap: 14px; }
@media (min-width: 760px) { .exchange-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .exchange-grid { grid-template-columns: repeat(4, 1fr); } }
.exchange-grid > div { border-top: 1px solid var(--line); padding-top: 20px; }
.exchange-grid h3 { font-size: 19px; font-style: italic; margin-bottom: 10px; }
.exchange-grid p { font-size: 14.5px; color: var(--ink-dim); }

/* ── Footer ── */
.footer { border-top: 1px solid var(--line); padding: clamp(56px, 8vw, 100px) var(--pad) 36px; overflow: hidden; }
.footer-word {
  font-family: var(--serif); font-size: clamp(52px, 12vw, 160px); line-height: .95;
  letter-spacing: -0.03em; color: transparent;
  -webkit-text-stroke: 1px var(--line);
  margin-bottom: clamp(40px, 6vw, 80px); user-select: none;
}
.footer-grid { display: grid; gap: 36px; margin-bottom: 60px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-col h4 { font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; font-weight: 500; }
.footer-col a { display: block; text-decoration: none; color: var(--ink-dim); padding: 5px 0; font-size: 15px; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-col p { color: var(--ink-faint); font-size: 14px; margin-top: 10px; }
.footer-legal { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 26px; }
.footer-legal p { font-size: 12.5px; color: var(--ink-faint); }
.footer-tag { font-family: var(--serif); font-style: italic; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(5,5,6,.96);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(94vw, 1400px); max-height: 86vh; object-fit: contain; border-radius: 4px; }
.lightbox button {
  position: absolute; background: none; border: 0; color: var(--ink); cursor: pointer;
  font-size: 30px; padding: 18px; z-index: 2; opacity: .7; transition: opacity .2s;
  font-family: var(--sans);
}
.lightbox button:hover { opacity: 1; }
.lb-close { top: 10px; right: 14px; font-size: 40px; }
.lb-prev { left: 6px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 6px; top: 50%; transform: translateY(-50%); }
.lb-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: var(--ink-dim); font-size: 13.5px; max-width: 80vw; text-align: center; }

/* Light image-theft deterrent: stop drag-to-desktop on images site-wide. */
img { -webkit-user-drag: none; -khtml-user-drag: none; user-select: none; -webkit-user-select: none; }

/* ── Reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.hidden { display: none !important; }
