/* ZUMBO — atelier-forward dev prototype
   Lumen / 2026-05-09 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --paper: #F4F1EC;
  --paper-warm: #EDE7DD;
  --ink: #1A1A1A;
  --ink-soft: #4A4540;
  --ink-faint: #8A857E;
  --rule: #D9D2C4;
  --burgundy: #5A1A24;
  --burgundy-deep: #3F0F18;

  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --gutter: clamp(20px, 4vw, 64px);
  --max: 1480px;
  --max-text: 720px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Display type ─────────────────────────────────────────── */

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(44px, 7vw, 110px); }
h2 { font-size: clamp(32px, 4.5vw, 64px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 500; }

.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
  display: inline-block;
}

.lede {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.45;
}

p { font-size: 15px; line-height: 1.7; max-width: var(--max-text); color: var(--ink); }
p + p { margin-top: 1.1em; }

/* ── Layout ───────────────────────────────────────────────── */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(80px, 10vw, 160px) 0; }
.section--tight { padding: clamp(60px, 6vw, 100px) 0; }
.section + .section { border-top: 1px solid var(--rule); }

/* ── Nav ──────────────────────────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.04em;
}
.nav__brand {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.32em;
  font-weight: 500;
  display: flex; align-items: center; gap: 14px;
}
.nav__logo { height: 32px; width: auto; display: block; mix-blend-mode: multiply; }
.nav__monogram {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}
.nav__menu { display: flex; gap: 32px; }
.nav__menu a { color: var(--ink-soft); transition: color .15s ease; }
.nav__menu a:hover { color: var(--ink); }
.nav__menu a.active { color: var(--ink); }
.nav__util { display: flex; gap: 24px; align-items: center; font-size: 12px; }
.nav__util a { color: var(--ink-soft); }

@media (max-width: 880px) {
  .nav__menu { display: none; }
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 14px 26px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: all .2s ease;
}
.btn:hover { background: var(--burgundy); border-color: var(--burgundy); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.link {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: color .15s ease, border-color .15s ease;
}
.link:hover { color: var(--burgundy); border-color: var(--burgundy); }

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 86vh;
  border-bottom: 1px solid var(--rule);
}
.hero__copy {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}
.hero__copy h1 { margin-bottom: 28px; }
.hero__copy .lede { margin-bottom: 44px; }
.hero__cta { display: flex; gap: 28px; align-items: center; }

.hero__image {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero__image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(0.96) saturate(0.92);
}
.hero__caption {
  position: absolute; bottom: 24px; left: 24px;
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__image { min-height: 60vh; }
}

/* ── Atelier strip (3-up process photography) ─────────────── */

.atelier-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--rule); }
.atelier-strip figure { background: var(--paper); }
.atelier-strip img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: contrast(0.94) saturate(0.85);
}
.atelier-strip figcaption {
  padding: 24px 28px;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.4;
}
@media (max-width: 880px) {
  .atelier-strip { grid-template-columns: 1fr; }
}

/* ── Section heading ──────────────────────────────────────── */

.shead { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 64px; gap: 40px; flex-wrap: wrap; }
.shead h2 { max-width: 720px; }
.shead__aside { font-size: 13px; color: var(--ink-soft); max-width: 320px; line-height: 1.6; }

/* ── Six shapes taxonomy ──────────────────────────────────── */

.shapes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.shape {
  padding: 56px 24px;
  text-align: center;
  border-right: 1px solid var(--rule);
  transition: background .2s ease;
  cursor: pointer;
}
.shape:last-child { border-right: none; }
.shape:hover { background: var(--paper-warm); }
.shape__form {
  width: 90px; height: 90px;
  margin: 0 auto 24px;
  background: var(--ink);
  position: relative;
}
.shape__form--bianca { border-radius: 8px; }
.shape__form--beija {
  width: 0; height: 0; background: transparent;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid var(--ink);
  margin-bottom: 28px;
}
.shape__form--casey { border-radius: 50%; }
.shape__form--haley { width: 130px; height: 70px; border-radius: 6px; }
.shape__form--maximillian { border-radius: 22px; transform: rotate(8deg); }
.shape__form--sophie { width: 120px; height: 80px; border-radius: 60px; }
.shape__name { font-family: var(--display); font-size: 18px; letter-spacing: 0.22em; font-weight: 500; }
.shape__meta { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-top: 6px; }

@media (max-width: 880px) {
  .shapes { grid-template-columns: repeat(3, 1fr); }
  .shape:nth-child(3n) { border-right: none; }
  .shape:nth-child(-n+3) { border-bottom: 1px solid var(--rule); }
}

/* ── Velvets (color strip) ────────────────────────────────── */

.velvets { display: grid; grid-template-columns: repeat(13, 1fr); border-top: 1px solid var(--rule); }
.velvet {
  aspect-ratio: 1/1.4;
  position: relative;
  cursor: pointer;
  transition: transform .25s ease;
  display: flex; align-items: flex-end;
  padding: 14px;
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.18) 0%, transparent 60%), var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.velvet:hover { transform: scale(1.05); z-index: 2; }
.velvet--light { color: var(--ink); }

.velvet--conch     { --swatch: #E8C5B4; }
.velvet--paprika   { --swatch: #B0512A; }
.velvet--fuchsia   { --swatch: #BC3B6E; }
.velvet--burgundy  { --swatch: #5A1A24; }
.velvet--peacock   { --swatch: #1F5466; }
.velvet--navy      { --swatch: #1A2A45; }
.velvet--orchid    { --swatch: #8060A0; }
.velvet--plum      { --swatch: #4A2A4A; }
.velvet--iceblue   { --swatch: #BCD3D8; }
.velvet--charcoal  { --swatch: #2D2D30; }
.velvet--camel     { --swatch: #A87E50; }
.velvet--cream     { --swatch: #E8DEC8; }
.velvet--black     { --swatch: #1A1A1A; }

@media (max-width: 880px) {
  .velvets { grid-template-columns: repeat(7, 1fr); }
  .velvet { aspect-ratio: 1/1.2; }
}

/* ── Specified by ─────────────────────────────────────────── */

.specified {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.specified__cell {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--rule);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.specified__cell:last-child { border-right: none; }
@media (max-width: 880px) {
  .specified { grid-template-columns: repeat(2, 1fr); }
  .specified__cell { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .specified__cell:nth-child(2n) { border-right: none; }
  .specified__cell:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── In Place gallery ─────────────────────────────────────── */

.in-place { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2px; background: var(--rule); }
.in-place__panel { background: var(--paper); position: relative; overflow: hidden; }
.in-place__panel img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; filter: contrast(0.95) saturate(0.92); }
.in-place__panel--tall img { aspect-ratio: 4/6; }
.in-place__credit {
  position: absolute; bottom: 24px; left: 24px;
  color: var(--paper);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(4px);
  padding: 8px 14px;
}
@media (max-width: 880px) {
  .in-place { grid-template-columns: 1fr; }
}

/* ── Pull quote ───────────────────────────────────────────── */

.pull {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.pull blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 36px;
}
.pull cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ── Trade pitch banner ───────────────────────────────────── */

.trade-banner {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  text-align: center;
}
.trade-banner h2 { color: var(--paper); margin-bottom: 24px; }
.trade-banner .lede { color: rgba(244,241,236,0.7); margin: 0 auto 44px; }
.trade-banner .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.trade-banner .btn:hover { background: var(--burgundy); color: var(--paper); border-color: var(--burgundy); }

/* ── Footer ───────────────────────────────────────────────── */

.foot { background: var(--ink); color: var(--paper); padding: 80px var(--gutter) 32px; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; max-width: var(--max); margin: 0 auto 64px; }
.foot__brand h3 { font-size: 32px; letter-spacing: 0.32em; color: var(--paper); margin-bottom: 16px; }
.foot__brand p { color: rgba(244,241,236,0.6); font-size: 13px; max-width: 320px; }
.foot__col h4 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; color: rgba(244,241,236,0.5); font-weight: 500; }
.foot__col ul { list-style: none; }
.foot__col li { margin-bottom: 10px; font-size: 13px; }
.foot__col a { color: rgba(244,241,236,0.85); }
.foot__col a:hover { color: var(--paper); }
.foot__bar {
  max-width: var(--max); margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(244,241,236,0.12);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(244,241,236,0.5);
  letter-spacing: 0.06em;
}

@media (max-width: 880px) {
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__bar { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── Forms ────────────────────────────────────────────────── */

.form { max-width: 640px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form__field { display: flex; flex-direction: column; }
.form__field--full { grid-column: 1/-1; }
.form__field label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.form__field input, .form__field textarea, .form__field select {
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  outline: none;
}
.form__field textarea { resize: vertical; min-height: 90px; }
.form__field input:focus, .form__field textarea:focus { border-color: var(--burgundy); }

@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

/* ── Benefits list ────────────────────────────────────────── */

.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.benefit { padding: 36px 32px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.benefit:nth-child(2n) { border-right: none; }
.benefit:nth-last-child(-n+2) { border-bottom: none; }
.benefit__num { font-family: var(--display); font-size: 28px; color: var(--burgundy); font-weight: 500; margin-bottom: 12px; }
.benefit__title { font-family: var(--display); font-size: 22px; margin-bottom: 8px; }
.benefit__body { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 700px) {
  .benefits { grid-template-columns: 1fr; }
  .benefit { border-right: none; }
  .benefit:nth-last-child(2) { border-bottom: 1px solid var(--rule); }
}

/* ── Editorial / two-column long-form ─────────────────────── */

.lede-block { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(40px, 6vw, 96px); }
.lede-block h2 { max-width: 380px; }
.lede-block .body p { font-size: 16px; line-height: 1.8; }
@media (max-width: 880px) { .lede-block { grid-template-columns: 1fr; } }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.process__step { padding: 56px 32px; border-right: 1px solid var(--rule); }
.process__step:last-child { border-right: none; }
.process__num { font-family: var(--display); font-size: 64px; line-height: 1; color: var(--burgundy); font-weight: 400; margin-bottom: 24px; }
.process__title { font-family: var(--display); font-size: 24px; margin-bottom: 12px; }
.process__body { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 880px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process__step:nth-child(2n) { border-right: none; }
  .process__step:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}

/* ── Color landing page ──────────────────────────────────── */

.color-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; border-bottom: 1px solid var(--rule); }
.color-hero__swatch {
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.18) 0%, transparent 70%), var(--swatch, var(--burgundy));
  position: relative;
}
.color-hero__name {
  position: absolute; bottom: 32px; left: 32px;
  color: var(--paper); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7;
}
.color-hero__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
}
.color-hero__copy .eyebrow { color: var(--ink-faint); }
.color-hero__copy h1 { margin-bottom: 28px; }
@media (max-width: 880px) {
  .color-hero { grid-template-columns: 1fr; }
  .color-hero__swatch { min-height: 50vh; }
}

.skus { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); }
.sku { background: var(--paper); padding: 0; cursor: pointer; transition: background .15s ease; }
.sku:hover { background: var(--paper-warm); }
.sku__visual { aspect-ratio: 1/1; padding: 32px; background: var(--paper-warm); display: flex; align-items: center; justify-content: center; }
.sku__pillow {
  width: 60%; aspect-ratio: 1; background: var(--swatch, var(--burgundy));
  border-radius: 12px;
  background-image: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.18) 0%, transparent 60%);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.sku__pillow--lumbar { width: 80%; aspect-ratio: 1.6/1; }
.sku__pillow--pyramid { width: 0; height: 0; aspect-ratio: auto; background: none; box-shadow: none; border-left: 60px solid transparent; border-right: 60px solid transparent; border-bottom: 100px solid var(--swatch); border-radius: 0; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.18)); }
.sku__meta { padding: 18px 24px 24px; }
.sku__name { font-family: var(--display); font-size: 18px; letter-spacing: 0.2em; }
.sku__shape { font-size: 11px; color: var(--ink-faint); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
.sku__price { font-size: 13px; margin-top: 12px; color: var(--ink-soft); }

@media (max-width: 880px) { .skus { grid-template-columns: repeat(2, 1fr); } }

/* ── Pillowscape composer ────────────────────────────────── */

.composer { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 70vh; }
.composer__stage { background: var(--paper-warm); padding: 60px; display: flex; align-items: center; justify-content: center; position: relative; }
.composer__sofa {
  width: 100%; max-width: 560px;
  aspect-ratio: 16/9;
  background: #6B5D54;
  border-radius: 24px 24px 8px 8px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18), inset 0 -2px 0 rgba(0,0,0,0.18);
}
.composer__sofa::before {
  content: '';
  position: absolute; left: -3%; right: -3%; bottom: -8%;
  height: 16%;
  background: #5A4D45; border-radius: 4px 4px 12px 12px;
  z-index: -1;
}
.composer__pillows { position: absolute; bottom: 14%; left: 0; right: 0; display: flex; justify-content: center; align-items: flex-end; gap: 18px; }
.composer__pillow {
  width: 110px; aspect-ratio: 1;
  background: var(--swatch, var(--burgundy));
  border-radius: 14px;
  background-image: radial-gradient(ellipse at 30% 25%, rgba(255,255,255,0.22) 0%, transparent 60%);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  transition: all .25s ease;
}
.composer__pillow--lumbar { width: 150px; aspect-ratio: 1.7/1; }
.composer__pillow--pyramid { width: 0; height: 0; aspect-ratio: auto; background: none; border-left: 55px solid transparent; border-right: 55px solid transparent; border-bottom: 100px solid var(--swatch); border-radius: 0; box-shadow: none; filter: drop-shadow(0 10px 16px rgba(0,0,0,0.25)); }

.composer__panel {
  background: var(--paper);
  border-left: 1px solid var(--rule);
  padding: clamp(40px, 5vw, 72px);
  overflow-y: auto;
}
.composer__panel h2 { margin-bottom: 16px; font-size: 36px; }
.composer__panel .lede { font-size: 15px; margin-bottom: 36px; max-width: none; }

.slot { padding: 24px 0; border-top: 1px solid var(--rule); }
.slot:first-of-type { border-top: none; }
.slot__label { font-family: var(--display); font-size: 22px; margin-bottom: 12px; }
.slot__row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 14px; }
.slot__row span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-right: 8px; }

.chip {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  background: var(--paper);
  cursor: pointer;
  transition: all .15s ease;
  font-family: var(--body);
  font-weight: 500;
  color: var(--ink-soft);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.swatch-chip {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--rule);
  transition: transform .15s ease, box-shadow .15s ease;
}
.swatch-chip:hover { transform: scale(1.15); }
.swatch-chip.active { box-shadow: 0 0 0 2px var(--ink); }

.composer__cta { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--rule); }
.composer__cta .btn { width: 100%; text-align: center; }
.composer__cta__note { font-size: 12px; color: var(--ink-faint); margin-top: 14px; line-height: 1.5; }

@media (max-width: 980px) {
  .composer { grid-template-columns: 1fr; }
  .composer__panel { border-left: none; border-top: 1px solid var(--rule); }
}

/* ── Banner / page header (interior pages) ───────────────── */

.page-head { padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(40px, 5vw, 80px); border-bottom: 1px solid var(--rule); }
.page-head .eyebrow { color: var(--ink-faint); }
.page-head h1 { max-width: 920px; margin-bottom: 28px; font-size: clamp(40px, 6vw, 88px); }
.page-head .lede { font-size: clamp(18px, 1.8vw, 22px); }

/* ── Editorial atmospheric placeholder ────────────────────── */
/* Used where commissioned photography hasn't been shot yet.
   Reads as deliberate art-direction rather than missing-asset. */

.ph {
  position: relative;
  background:
    radial-gradient(circle at 75% 25%, rgba(208,160,90,0.22) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(90,26,36,0.28) 0%, transparent 50%),
    linear-gradient(135deg, #14110E 0%, #2A2521 45%, #1A1410 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,241,236,0.92);
  font-family: var(--display);
  font-style: italic;
  text-align: center;
  padding: 48px 36px;
  overflow: hidden;
  isolation: isolate;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, transparent 0, rgba(255,255,255,0.012) 1px, transparent 2px, transparent 4px);
  pointer-events: none;
  z-index: 1;
}
.ph__caption {
  position: relative;
  z-index: 2;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.45;
  max-width: 320px;
  font-weight: 300;
}
.ph__tag {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--body);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.45);
  z-index: 2;
}
.ph__loc {
  position: absolute;
  bottom: 20px; right: 24px;
  font-family: var(--body);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.55);
  z-index: 2;
}

/* ── Utility ──────────────────────────────────────────────── */

.center { text-align: center; }
.tight { max-width: 760px; margin-left: auto; margin-right: auto; }
.divider { height: 1px; background: var(--rule); margin: clamp(60px, 8vw, 100px) 0; }
.note-bar { background: var(--paper-warm); padding: 14px var(--gutter); text-align: center; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 1px solid var(--rule); }
