/* ==========================================================================
   Sacardo — Design Tokens (premium, motion-forward system)
   ========================================================================== */

:root {
  --ink:        #0E1912;
  --ink-raised: #16241C;
  --ink-sunk:   #0A130D;
  --paper:      #F4F1E7;
  --paper-dim:  #B7B29E;
  --paper-faint:#726E5E;
  --gold:       #C9A227;
  --gold-bright:#E5C158;
  --line:       rgba(244, 241, 231, 0.14);
  --line-strong:rgba(244, 241, 231, 0.26);

  --font-display: "Playfair Display", serif;
  --font-body: "Archivo", sans-serif;

  --gutter: clamp(1.5rem, 5vw, 4.5rem);
  --section-space: clamp(5rem, 11vw, 8.5rem);
  --measure: 62ch;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

.container { max-width: 1200px; margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before { content: ""; width: 1.6em; height: 1px; background: var(--gold); }

/* ==========================================================================
   Buttons — gold sweep-fill on hover
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1em 2em;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { color: var(--ink); border-color: var(--gold); }

.btn-solid { background: var(--gold); color: var(--ink); border-color: var(--gold); font-weight: 700; }
.btn-solid::before { background: var(--gold-bright); }
.btn-solid:hover { color: var(--ink); }

.btn-ghost { color: var(--paper); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem var(--gutter);
  border-bottom: 1px solid var(--line);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
}

.wordmark { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.wordmark em { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a { position: relative; padding-bottom: 4px; color: var(--paper-dim); transition: color 0.2s ease; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--paper); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; background: none; border: none; color: var(--paper); cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  body.nav-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.6rem;
    position: fixed; top: var(--header-h, 4.3rem); right: 0; bottom: 0; left: 0;
    padding: 2.5rem var(--gutter);
    background: var(--ink);
    z-index: 90;
  }
  body.nav-open .nav-links a { font-size: 1.15rem; }
}

/* ==========================================================================
   Hero — clip-path text reveal
   ========================================================================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--gutter) 4rem;
  overflow: hidden;
  background: radial-gradient(ellipse 65% 55% at 75% 10%, rgba(201, 162, 39, 0.14), transparent 60%), var(--ink);
}

.hero-inner { max-width: 980px; }

.hero-status {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.7em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--paper-dim);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.5em 1em 0.5em 0.8em;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fade-up 0.7s ease 0s forwards;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4C8C5B;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid #4C8C5B;
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.hero .eyebrow { margin-bottom: 1.6rem; opacity: 0; animation: fade-up 0.7s ease 0.12s forwards; }

.reveal-line { overflow: hidden; }
.reveal-line span {
  display: inline-block;
  transform: translateY(110%);
  animation: line-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero h1 .reveal-line:nth-child(1) span { animation-delay: 0.15s; }
.hero h1 .reveal-line:nth-child(2) span { animation-delay: 0.28s; }
.hero h1 .reveal-line:nth-child(3) span { animation-delay: 0.41s; }

.hero h1 { font-size: clamp(2.6rem, 6.6vw, 5.2rem); }
.hero h1 em { font-style: italic; color: var(--gold); }

@keyframes line-up { to { transform: translateY(0); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .reveal-line span { animation: none; transform: none; }
  .hero .eyebrow, .hero-status { animation: none; opacity: 1; }
  .pulse-dot::after { animation: none; display: none; }
}

.hero-sub {
  margin-top: 1.8rem;
  max-width: 48ch;
  font-size: 1.15rem;
  color: var(--paper-dim);
  opacity: 0;
  animation: fade-up 0.7s ease 0.6s forwards;
}

.hero-actions {
  margin-top: 2.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.7s ease 0.75s forwards;
}

/* ==========================================================================
   Marquee band — the first eye-grabber
   ========================================================================== */

.marquee-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-raised);
  overflow: hidden;
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--paper-dim);
  padding-inline: 1.2rem;
  white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 1rem; }

/* Reverse band: opposite direction, opposite voice — bold uppercase sans instead of italic serif */
.marquee-band.reverse { background: var(--ink); border-top: none; }
.marquee-band.reverse .marquee-track { animation-direction: reverse; }
.marquee-band.reverse .marquee-track span {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.marquee-band.reverse .marquee-track span::after { content: "/"; color: var(--paper-faint); font-size: 0.95rem; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ==========================================================================
   Work grid — three live case studies, each in its own visual language
   ========================================================================== */

.work-grid {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  align-items: start;
}
@media (min-width: 981px) {
  .work-grid .exhibit:nth-child(2) { margin-top: 2.6rem; }
}
@media (max-width: 980px) {
  .work-grid { grid-template-columns: 1fr; gap: 2.6rem; }
}

.exhibit-tags { display: inline-flex; gap: 0.5em; }
.exhibit-tags span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--paper-faint);
  border: 1px solid var(--line);
  padding: 0.3em 0.6em;
  white-space: nowrap;
}

/* ==========================================================================
   Section scaffolding
   ========================================================================== */

section { padding: var(--section-space) 0; }

.section-head { max-width: 680px; margin-bottom: 3.2rem; }
.section-head h2 { margin-top: 1.1rem; font-size: clamp(1.9rem, 4vw, 2.9rem); }

/* Echo-type emphasis: a stroked ghost copy offset behind the word, instead of just a color change */
.text-echo { position: relative; display: inline-block; }
.text-echo::after {
  content: attr(data-text);
  position: absolute;
  left: 0.14em;
  top: 0.1em;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  text-stroke: 1px var(--gold);
  opacity: 0.55;
  pointer-events: none;
}
.section-head p { margin-top: 1.2rem; color: var(--paper-dim); font-size: 1.05rem; max-width: var(--measure); }

.band { background: var(--ink-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ==========================================================================
   Materials band — a real gold-leaf photograph, not a rendered gradient
   ========================================================================== */

.materials-band {
  position: relative;
  height: clamp(140px, 22vw, 220px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.materials-band-image {
  position: absolute;
  inset: -5% -5%;
  background-image: url("../images/gold-leaf.jpg");
  background-size: cover;
  background-position: 50% 50%;
  animation: materials-pan 40s ease-in-out infinite alternate;
  filter: saturate(0.9) brightness(0.85);
}

@keyframes materials-pan {
  from { transform: scale(1.08) translate(-1.5%, -1%); }
  to { transform: scale(1.15) translate(1.5%, 1%); }
}

.materials-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 25, 18, 0.55), rgba(14, 25, 18, 0.2) 40%, rgba(14, 25, 18, 0.55));
}

@media (prefers-reduced-motion: reduce) {
  .materials-band-image { animation: none; transform: scale(1.08); }
}

/* ==========================================================================
   About section — dark marble texture behind the pull-quote
   ========================================================================== */

.about-textured { position: relative; overflow: hidden; }

.about-texture {
  position: absolute;
  inset: -5%;
  z-index: 0;
  background-image: url("../images/dark-marble.jpg");
  background-size: cover;
  background-position: 50% 50%;
  opacity: 0.4;
  animation: about-zoom 50s ease-in-out infinite alternate;
}
.about-textured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, rgba(22, 36, 28, 0.55), var(--ink-raised) 75%);
}
.about-textured .container { position: relative; z-index: 1; }

@keyframes about-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.16); }
}

@media (prefers-reduced-motion: reduce) {
  .about-texture { animation: none; transform: scale(1.05); }
}

/* ==========================================================================
   Statement interstitial — a single animated line, not counted stats
   ========================================================================== */

.statement {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--ink-sunk);
}

/* Photo: gold leaf surface, Colin Watts on Unsplash (unsplash.com/photos/zwMUC0o9_74), Unsplash License */
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/gold-leaf.jpg");
  background-size: cover;
  background-position: 50% 35%;
  filter: saturate(0.8) brightness(0.6);
  opacity: 0.22;
}

.statement::after {
  content: "";
  position: absolute;
  inset: -25% -10%;
  background: linear-gradient(115deg,
    transparent 42%,
    rgba(201, 162, 39, 0.35) 47%,
    rgba(229, 193, 88, 0.65) 50%,
    rgba(201, 162, 39, 0.35) 53%,
    transparent 58%);
  transform: translateX(-70%);
  opacity: 0;
}

.statement.in-view::after {
  animation: gold-sweep 2.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s 1 both;
}

@keyframes gold-sweep {
  0% { transform: translateX(-70%); opacity: 0; }
  12% { opacity: 1; }
  65% { opacity: 0.85; }
  100% { transform: translateX(70%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .statement.in-view::after { animation: none; opacity: 0; }
}

.statement .container { position: relative; z-index: 1; }

.statement-quote {
  max-width: 900px;
  margin-inline: auto;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.7rem, 4.4vw, 3.1rem);
  line-height: 1.4;
}
.statement-quote em { color: var(--gold); font-style: italic; }

.q-line { display: block; overflow: hidden; }
.q-line span {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.statement.in-view .q-line:nth-child(1) span { transition-delay: 0.05s; }
.statement.in-view .q-line:nth-child(2) span { transition-delay: 0.18s; }
.statement.in-view .q-line:nth-child(3) span { transition-delay: 0.31s; }
.statement.in-view .q-line span { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .q-line span { transition: none; transform: none; }
}

/* ==========================================================================
   Case-study curtain reveal
   ========================================================================== */

.exhibit {
  position: relative;
  border: 1px solid var(--line-strong);
}
.exhibit-curtain {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-bright) 100%);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}
.exhibit.revealed .exhibit-curtain { transform: scaleX(0); }
.exhibit-frame { overflow: hidden; position: relative; display: flex; flex-direction: column; }

.exhibit-launch {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.7em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--gold);
  border: none;
  padding: 0.8em 0.8em 0.8em 1.3em;
  cursor: pointer;
  transition: background 0.2s ease;
}
.exhibit-launch .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.exhibit-launch svg { width: 14px; height: 14px; }
.exhibit-launch:hover { background: var(--gold-bright); }
.exhibit-launch:hover .icon-circle { transform: rotate(45deg); }
@media (prefers-reduced-motion: reduce) {
  .exhibit-launch:hover .icon-circle { transform: none; }
}

.exhibit-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  padding: 0.9rem 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--paper-dim);
}
.exhibit-caption strong { color: var(--paper); }

/* ---- Recreated project heroes, in-card scale — each keeps its own site's real type/color system ---- */

.ev-hero, .dj-hero, .gaia-hero {
  position: relative;
  padding: 2.2rem 1.6rem 1.9rem;
}
.ev-hero h3, .dj-hero h3, .gaia-hero h3 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); line-height: 1.08; margin: 0; }
.ev-hero p, .dj-hero p, .gaia-hero p { margin-top: 0.8rem; max-width: 30ch; font-size: 0.78rem; }

.ev-hero {
  background: radial-gradient(ellipse 70% 60% at 50% 10%, rgba(225, 89, 42, 0.2), transparent 60%), #1A1512;
  font-family: "Manrope", sans-serif;
}
.ev-hero .ev-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.8rem; font-family: "Fraunces", serif; font-weight: 400; color: #F3EBDD; font-size: 0.8rem; }
.ev-hero .ev-nav .ev-links { display: flex; gap: 1rem; font-family: "IBM Plex Mono", monospace; font-size: 0.58rem; color: #C9BCAC; text-transform: uppercase; }
.ev-hero .ev-eyebrow { font-family: "IBM Plex Mono", monospace; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: #D99A3D; margin-bottom: 0.8rem; }
.ev-hero h3 { font-family: "Fraunces", serif; font-weight: 400; color: #F3EBDD; }
.ev-hero h3 em { color: #E1592A; font-style: italic; }
.ev-hero p { color: #C9BCAC; }

/* DJ-JP / All Massive Events — true black + hot-pressed gold, Bebas Neue display */
.dj-hero {
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(231, 166, 28, 0.18), transparent 60%), #0A0A0C;
  font-family: "Plus Jakarta Sans", "Archivo", sans-serif;
}
.dj-hero .dj-nav { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; margin-bottom: 1.8rem; font-family: "Bebas Neue", sans-serif; letter-spacing: 0.02em; line-height: 1.05; color: #F7F4EC; font-size: 0.78rem; white-space: nowrap; }
.dj-hero .dj-links { display: flex; gap: 0.9rem; font-size: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase; color: #BDB9AE; }
.dj-hero .dj-eyebrow { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: #E7A61C; margin-bottom: 0.8rem; }
.dj-hero h3 { font-family: "Bebas Neue", sans-serif; font-weight: 400; letter-spacing: 0.01em; color: #F7F4EC; }
.dj-hero h3 em { color: #E7A61C; font-style: normal; }
.dj-hero p { color: #BDB9AE; }

/* Gaia Cafe — dawn-sky gradient, warm Fraunces serif */
.gaia-hero {
  background: linear-gradient(165deg, #4C7093 0%, #7FA0BC 35%, #C9AE73 72%, #E7C77E 100%);
  font-family: "Public Sans", "Archivo", sans-serif;
}
.gaia-hero .gaia-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.8rem; font-family: "Fraunces", serif; font-weight: 400; color: #2B2A22; font-size: 0.85rem; }
.gaia-hero .gaia-links { display: flex; gap: 0.9rem; font-size: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(43, 42, 34, 0.65); }
.gaia-hero .gaia-eyebrow { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #8F4020; margin-bottom: 0.8rem; }
.gaia-hero h3 { font-family: "Fraunces", serif; font-weight: 600; color: #FFFCF3; text-shadow: 0 2px 18px rgba(0,0,0,0.18); }
.gaia-hero p { color: rgba(255, 252, 243, 0.92); }

/* ==========================================================================
   Process — elegant list, no cards
   ========================================================================== */

.process-list { margin-top: 2.6rem; }
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.6rem;
  padding: 1.9rem 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-num { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.3rem; color: var(--gold); }
.process-item h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.process-item p { color: var(--paper-dim); font-size: 0.98rem; max-width: var(--measure); }

@media (max-width: 620px) { .process-item { grid-template-columns: 1fr; gap: 0.5rem; } }

/* ==========================================================================
   Range — swatch rows with hover-scale
   ========================================================================== */

.range-list { margin-top: 2.6rem; display: flex; flex-direction: column; }
.range-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.8rem;
  align-items: center;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
}
.range-row:last-child { border-bottom: 1px solid var(--line); }
.range-swatches { display: flex; gap: -8px; }
.range-swatches i {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  margin-left: -14px;
  transition: transform 0.3s ease;
}
.range-swatches i:first-child { margin-left: 0; }
.range-row:hover .range-swatches i:nth-child(1) { transform: translateX(-6px); }
.range-row:hover .range-swatches i:nth-child(3) { transform: translateX(6px); }
.range-row h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.range-row p { color: var(--paper-dim); font-size: 0.95rem; max-width: var(--measure); }
.range-tag { display: block; margin-top: 0.6rem; font-size: 0.75rem; color: var(--paper-faint); font-style: italic; }

@media (max-width: 620px) { .range-row { grid-template-columns: 1fr; gap: 0.8rem; } }

/* ==========================================================================
   About
   ========================================================================== */

.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: start; }
.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.5;
  max-width: 30ch;
}
.about-quote span { color: var(--gold); }

.values-list { display: flex; flex-direction: column; gap: 1.3rem; }
.values-list li { padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.values-list li strong { display: block; font-size: 1rem; color: var(--paper); margin-bottom: 0.3rem; }
.values-list li span { font-size: 0.9rem; color: var(--paper-dim); }

@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ==========================================================================
   FAQ — plainspoken answers, not a numbered sequence (these aren't steps)
   ========================================================================== */

.faq-list { margin-top: 2.6rem; display: flex; flex-direction: column; }
.faq-item {
  padding: 1.9rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1.6rem;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 1.15rem; }
.faq-item p { color: var(--paper-dim); font-size: 0.98rem; max-width: var(--measure); }

@media (max-width: 700px) { .faq-item { grid-template-columns: 1fr; gap: 0.6rem; } }

/* ==========================================================================
   Contact — intro + a real qualifying intake form
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 3rem; } }

.contact-intro h2 { margin-top: 1rem; font-size: clamp(2.1rem, 5vw, 3.4rem); max-width: 13ch; }
.contact-intro h2 em { color: var(--gold); font-style: italic; }
.contact-lede { margin-top: 1.1rem; color: var(--paper-dim); font-size: 1.02rem; max-width: 40ch; }

.contact-email {
  position: relative;
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--paper);
  padding-bottom: 4px;
}
.contact-email::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--line-strong);
}
.contact-email::before {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.4s cubic-bezier(0.65,0,0.35,1);
}
.contact-email:hover::before { width: 100%; }

.contact-trust { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 0.9rem; }
.contact-trust li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--paper-dim);
  font-size: 0.92rem;
}
.contact-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 1px;
  background: var(--gold);
}

/* ---- Inquiry form ---- */

.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.inquiry-form { display: flex; flex-direction: column; gap: 1.5rem; }
.inquiry-form[hidden] { display: none; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 1.5rem; } }

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-faint);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--paper);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.55em 0;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 4.5rem; font-family: var(--font-body); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B7B29E' stroke-width='1.8'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px;
  padding-right: 1.5em;
}
.field select option { background: var(--ink-raised); color: var(--paper); }
.field input::placeholder, .field textarea::placeholder { color: var(--paper-faint); }

.inquiry-submit { align-self: flex-start; margin-top: 0.5rem; }
.inquiry-privacy { margin-top: 0.9rem; font-size: 0.78rem; color: var(--paper-faint); }

.inquiry-confirm h3 { font-size: 1.6rem; }
.inquiry-confirm p { margin-top: 0.8rem; color: var(--paper-dim); max-width: 42ch; }
.inquiry-confirm a { color: var(--gold-bright); border-bottom: 1px solid var(--gold-bright); }

/* ==========================================================================
   404
   ========================================================================== */

.not-found {
  min-height: calc(100vh - 5.2rem);
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 65% 55% at 75% 10%, rgba(201, 162, 39, 0.14), transparent 60%), var(--ink);
}
.not-found-inner {
  max-width: 640px;
  opacity: 0;
  animation: fade-up 0.7s ease 0.05s forwards;
}
.not-found-inner h1 { margin-top: 1rem; font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.not-found-inner h1 em { color: var(--gold); font-style: italic; }
.not-found-sub { margin-top: 1.2rem; color: var(--paper-dim); font-size: 1.05rem; max-width: 46ch; }
.not-found .hero-actions { margin-top: 2.2rem; opacity: 1; animation: none; }

@media (prefers-reduced-motion: reduce) {
  .not-found-inner { animation: none; opacity: 1; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { border-top: 1px solid var(--line); padding: 2.4rem 0; }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; font-size: 0.8rem; color: var(--paper-faint); }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ==========================================================================
   Live-site modal
   ========================================================================== */

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3.5rem);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.site-modal.open { visibility: visible; opacity: 1; transition: opacity 0.3s ease; }

.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 19, 13, 0.94);
}

.site-modal-window {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  height: 100%;
  max-height: 800px;
  background: var(--ink-raised);
  border: 1px solid var(--gold);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-modal.open .site-modal-window { transform: scale(1) translateY(0); }

.site-modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.site-modal-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.82rem;
  color: var(--paper-dim);
}
.site-modal-label .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4C8C5B;
  box-shadow: 0 0 0 3px rgba(76, 140, 91, 0.22);
  flex-shrink: 0;
}
.site-modal-actions { display: flex; align-items: center; gap: 1.1rem; }
.site-modal-open {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-bright);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-modal-open:hover { border-color: var(--gold-bright); }
.site-modal-close {
  background: none;
  border: none;
  color: var(--paper);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.1rem 0.3rem;
  transition: color 0.2s ease;
}
.site-modal-close:hover { color: var(--gold-bright); }

#siteModalFrame { flex: 1; width: 100%; border: 0; background: var(--paper); }

@media (max-width: 640px) {
  .site-modal { padding: 0; }
  .site-modal-window { max-height: none; border-left: none; border-right: none; }
  .site-modal-label-text { display: none; }
}

/* ==========================================================================
   Cursor ring — a signet that trails the pointer, echoing the "stamp" CTA
   ========================================================================== */

html.cursor-fx body { cursor: none; }
html.cursor-fx a, html.cursor-fx button { cursor: none; }

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(201, 162, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transform: translate(-200px, -200px);
  transition:
    width 0.4s cubic-bezier(0.65, 0, 0.35, 1),
    height 0.4s cubic-bezier(0.65, 0, 0.35, 1),
    margin 0.4s cubic-bezier(0.65, 0, 0.35, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    opacity 0.25s ease;
}
.cursor-ring.visible { opacity: 1; }

.cursor-ring.hover {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  background: rgba(201, 162, 39, 0.16);
}

.cursor-ring.hover-view {
  width: 88px;
  height: 88px;
  margin: -44px 0 0 -44px;
  background: var(--gold);
  border-color: var(--gold);
}
.cursor-ring.hover-view .cursor-label { opacity: 1; transform: scale(1); }

.cursor-ring.pressed { background: var(--gold-bright); border-color: var(--gold-bright); }

.cursor-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

@media (hover: none), (pointer: coarse) {
  .cursor-ring { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-ring { display: none; }
}
