

/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  --paper:        #F7F4EF;
  --paper-warm:   #F3EDE4;
  --linen:        #EAE3DA;
  --linen-mid:    #E0D8CE;
  --linen-deep:   #D7CFC4;
  --graphite:     #4E4A48;
  --graphite-mid: #706C6A;
  --graphite-lt:  #9A9593;
  --ink:          #2A2724;
  --teal:         #2F7C7B;
  --teal-dim:     rgba(47,124,123,0.10);
  --teal-rule:    rgba(47,124,123,0.20);
  --teal-mid:     rgba(47,124,123,0.55);
  --ochre:        #C9991E;
  --ochre-dim:    rgba(201,153,30,0.15);
  --clay:         #D98A6C;
  --sage:         #9BB0A7;
  --rule:         rgba(78,74,72,0.10);
  --rule-med:     rgba(78,74,72,0.16);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Questrial', sans-serif;

  --max-w:  1280px;
  --pad:    72px;
  --pad-sm: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: var(--paper);
  color: var(--graphite);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   GLOBAL TYPE SCALE — warm, grounded, readable
══════════════════════════════════════════ */

/* Eyebrow / labels */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 22px;
  height: 1px;
  background: var(--teal);
  opacity: 0.4;
  flex-shrink: 0;
}
.eyebrow-text {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.85;
}
.eyebrow-text.muted {
  color: var(--graphite-mid);
  opacity: 0.85;
}

/* Section body — readable, not whisper-thin */
.body-lg {
  font-size: 16px;
  line-height: 1.80;
  color: var(--graphite);
}
.body-md {
  font-size: 15px;
  line-height: 1.78;
  color: var(--graphite);
}
.body-sm {
  font-size: 14px;
  line-height: 1.74;
  color: var(--graphite);
}
.body-xs {
  font-size: 13px;
  line-height: 1.70;
  color: var(--graphite-mid);
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: 66px;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  background: rgba(247,244,239,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-star-ring {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.nav-star-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dotted rgba(47,124,123,0.22);
}
.nav-star-ring svg { width: 28px; height: 28px; }

.nav-wordmark-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.nav-tagline-sub {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.55;
}

.nav-divider {
  width: 1px;
  height: 26px;
  background: var(--rule-med);
  margin: 0 28px;
  flex-shrink: 0;
}
.nav-center-text {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.6;
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.nav-link:hover { opacity: 1; }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  border: 1px solid var(--teal-rule);
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.22s, color 0.22s;
}
.nav-cta:hover { background: var(--teal); color: var(--paper); }

/* ══════════════════════════════════════════
   HERO — warm, paper-based
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 66px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 55% at 88% 12%, rgba(170,184,175,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 38% 50% at 2% 62%, rgba(47,124,123,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: 88px var(--pad) 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 66px);
}

/* Mark */
.hero-mark {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 44px;
  opacity: 0;
  animation: riseIn 0.6s 0.1s ease forwards;
}
.hero-mark svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero-mark-txt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.7;
}

/* Headline */
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(54px, 5.6vw, 90px);
  line-height: 1.055;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 26px;
  opacity: 0;
  animation: riseIn 1s 0.22s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-h1 .finally { font-style: italic; color: var(--graphite-mid); display: block; }
.hero-h1 .teal-stop { color: var(--teal); }

/* Rule */
.hero-rule {
  width: 32px;
  height: 1px;
  background: var(--teal);
  margin-bottom: 22px;
  opacity: 0;
  animation: ruleExpand 0.5s 0.5s ease forwards;
}

/* Sub */
.hero-sub {
  font-size: 17px;
  line-height: 1.76;
  color: var(--graphite);
  max-width: 400px;
  margin-bottom: 44px;
  opacity: 0;
  animation: riseIn 0.7s 0.6s ease forwards;
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 56px;
  opacity: 0;
  animation: riseIn 0.6s 0.72s ease forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--teal);
  border: 1px solid var(--teal);
  padding: 16px 30px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.22s, color 0.22s;
}
.btn-primary:hover { background: transparent; color: var(--teal); }
.btn-primary .arr { transition: transform 0.2s; }
.btn-primary:hover .arr { transform: translateX(4px); }

.btn-ghost {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
  text-decoration: none;
  opacity: 0.5;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: opacity 0.2s, border-color 0.2s;
}
.btn-ghost:hover { opacity: 0.85; border-color: rgba(78,74,72,0.35); }

/* Pillars strip — generous, grounded, breathable */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-med);
  padding-top: 0;
  opacity: 0;
  animation: riseIn 0.5s 0.86s ease forwards;
}
.pillar {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite-mid);
  padding: 22px 0 22px;
  border-right: 1px solid var(--rule-med);
  line-height: 1.4;
}
.pillar:last-child { border-right: none; }
/* Separate each pillar clearly with inner padding */
.pillar:not(:first-child) { padding-left: 20px; }
.pillar:not(:last-child) { padding-right: 20px; }

/* Hero right */
.hero-right {
  position: relative;
  height: 100svh;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.4s 0.35s ease forwards;
}

.hero-img {
  position: absolute;
  inset: 0;
  background: var(--linen);
}
.hero-img svg { width: 100%; height: 100%; }

/* Left fade — see strengthened version in polish section below */

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: 68px;
  left: -20px;
  z-index: 3;
  background: var(--paper);
  border: 1px solid var(--rule-med);
  border-radius: 3px;
  padding: 16px 20px;
  box-shadow: 0 6px 28px rgba(42,39,36,0.07);
}
.badge-eyebrow {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.7;
  margin-bottom: 4px;
}
.badge-title {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 6px;
}
.badge-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite-lt);
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }

/* Scroll signal removed */

/* ══════════════════════════════════════════
   CONTEXT STRIP — linen, grounded
══════════════════════════════════════════ */
.strip {
  border-top: 1px solid var(--rule);
  background: var(--linen);
}
.strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.strip-card {
  padding: 52px 0;
}
.strip-card:not(:last-child) {
  border-right: 1px solid var(--rule-med);
  padding-right: 52px;
  margin-right: 52px;
}
.strip-num {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  opacity: 0.65;
}
.strip-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.strip-body {
  font-size: 14.5px;
  line-height: 1.76;
  color: var(--graphite);
}

/* ══════════════════════════════════════════
   RECOGNITION — paper background
══════════════════════════════════════════ */
.recognition {
  padding: 120px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.recognition-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 96px;
  align-items: start;
}
.recog-left { position: sticky; top: 100px; }

.recog-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 3.4vw, 52px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 22px;
}
.recog-h2 em { font-style: italic; color: var(--graphite-mid); }

.recog-body {
  font-size: 16px;
  line-height: 1.78;
  color: var(--graphite);
  max-width: 360px;
  margin-bottom: 24px;
}.recog-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--teal);
  line-height: 1.55;
  padding-left: 18px;
  border-left: 2px solid var(--teal-rule);
}

/* Transformation rows */
.t-row {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.t-row:first-child { border-top: 1px solid var(--rule); }
.t-circle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(47,124,123,0.07);
  border: 1px solid rgba(47,124,123,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.t-circle svg { width: 12px; height: 12px; color: var(--teal); }
.t-from {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--graphite-lt);
  text-decoration: line-through;
  text-decoration-color: rgba(95,90,88,0.22);
  margin-bottom: 5px;
}
.t-to {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  font-weight: 300;
  line-height: 1.2;
}

/* ══════════════════════════════════════════
   STUDIO — teal-tinted warm section (not dark)
   This replaces the heavy charcoal section.
   Dark ink is removed. Replaced with a deep
   warm teal-tinted linen.
══════════════════════════════════════════ */
.studio {
  background: #EAF0EF;   /* very soft sage-teal tint — warm, not dark */
  border-top: 1px solid rgba(47,124,123,0.1);
  border-bottom: 1px solid rgba(47,124,123,0.1);
  padding: 112px var(--pad) 96px;
  position: relative;
  overflow: hidden;
}
.studio::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -6%;
  width: 45%;
  height: 65%;
  background: radial-gradient(ellipse, rgba(47,124,123,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.studio-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }

.studio-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-bottom: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(47,124,123,0.12);
}

.studio-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.studio-eyebrow-line { width: 22px; height: 1px; background: var(--teal); opacity: 0.45; }
.studio-eyebrow-txt {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.7;
}

.studio-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 3.2vw, 50px);
  color: var(--ink);
  line-height: 1.1;
}
.studio-h2 em { font-style: italic; color: var(--teal); }

.studio-desc {
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--graphite);
  margin-bottom: 28px;
}

.studio-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.studio-link:hover { opacity: 1; }
.studio-link .arr { transition: transform 0.2s; }
.studio-link:hover .arr { transform: translateX(4px); }

/* Studio cards — warm paper on sage-teal tint */
.studio-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(47,124,123,0.1);
}
.s-card {
  background: rgba(247,244,239,0.85);
  padding: 44px 32px;
  transition: background 0.25s;
}
.s-card:hover { background: rgba(247,244,239,0.98); }
.s-num {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--teal);
  opacity: 0.5;
  margin-bottom: 20px;
  display: block;
}
.s-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 12px;
}
.s-body {
  font-size: 14.5px;
  line-height: 1.76;
  color: var(--graphite);
  margin-bottom: 24px;
}
.s-foot {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.45;
  border-top: 1px solid rgba(47,124,123,0.1);
  padding-top: 18px;
}

/* ══════════════════════════════════════════
   EDITIONS — paper, warm
══════════════════════════════════════════ */
.editions {
  padding: 120px var(--pad) 120px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.editions-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 52px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.ed-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3vw, 46px);
  color: var(--ink);
  line-height: 1.1;
}
.ed-h2 em { font-style: italic; color: var(--graphite-mid); }

.ed-intro {
  font-size: 15px;
  line-height: 1.74;
  color: var(--graphite-mid);
}

.editions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--rule-med);
}

.ed-card {
  background: var(--paper);
  padding: 48px 34px 40px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s, box-shadow 0.25s;
}
.ed-card:hover { background: rgba(47,124,123,0.03); box-shadow: inset 0 0 0 1px rgba(47,124,123,0.08); }
.ed-card.open { background: var(--linen); }
.ed-card.open:hover { background: var(--linen-mid); box-shadow: inset 0 0 0 1px rgba(47,124,123,0.07); }

.ed-open-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(47,124,123,0.08);
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 28px;
  align-self: flex-start;
}
.tag-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }

.ed-icon { width: 36px; height: 36px; color: var(--teal); opacity: 0.6; margin-bottom: 22px; }

.ed-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 25px;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}
.ed-niche {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.55;
  margin-bottom: 14px;
}
.ed-body {
  font-size: 14.5px;
  line-height: 1.76;
  color: var(--graphite);
  flex: 1;
  margin-bottom: 22px;
}
.ed-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 26px;
}
.ed-tag {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
  background: rgba(78,74,72,0.09);
  padding: 5px 10px;
  border-radius: 2px;
}
.ed-link {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
  margin-top: auto;
}
.ed-link:hover { opacity: 1; }
.ed-link .arr { transition: transform 0.2s; }
.ed-link:hover .arr { transform: translateX(3px); }

.ed-coming {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.38;
  margin-top: auto;
}

/* Wellness card — fully grounded, equal visual weight */
.ed-card-wellness {
  background: var(--linen);
}
.ed-card-wellness:hover {
  background: var(--linen-mid);
  box-shadow: inset 0 0 0 1px rgba(47,124,123,0.07);
}

/* Interest tag — same structural weight as "Now Open", different tone */
.ed-open-tag-interest {
  background: rgba(155,176,167,0.14);
  color: var(--graphite-mid);
}
.tag-dot-interest {
  background: var(--sage);
}

/* Interest link — same structural presence as ed-link */
.ed-link-interest {
  color: var(--graphite-mid);
  opacity: 0.6;
}
.ed-link-interest:hover {
  opacity: 1;
  color: var(--graphite);
}

/* ══════════════════════════════════════════
   PHILOSOPHY PAUSE — paper-warm
══════════════════════════════════════════ */
.philosophy {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 100px var(--pad);
}
.philosophy-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.phil-star { display: flex; justify-content: center; margin-bottom: 30px; }
.phil-h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 2.8vw, 42px);
  color: var(--ink);
  line-height: 1.22;
  margin-bottom: 22px;
}
.phil-h3 em { font-style: italic; color: var(--teal); }
.phil-body {
  font-size: 16px;
  line-height: 1.80;
  color: var(--graphite);
  max-width: 480px;
  margin: 0 auto 34px;
}
.phil-pillars { display: flex; justify-content: center; align-items: center; gap: 18px; }
.phil-pillar {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--graphite-mid);
  opacity: 0.55;
}
.phil-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--teal); opacity: 0.3; }

/* ══════════════════════════════════════════
   ABOUT — emotionally honest, human, warm
══════════════════════════════════════════ */
.about {
  padding: 128px var(--pad) 120px;
  background: var(--paper);
}
.about-inner { max-width: var(--max-w); margin: 0 auto; }

/* Founder story — grid */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 88px;
  align-items: start;
  margin-bottom: 96px;
  padding-bottom: 96px;
  border-bottom: 1px solid var(--rule);
}

/* Image */
.about-img-col {
  position: sticky;
  top: 90px; /* clears the fixed nav (66px) with breathing room */
  align-self: start;
}
.about-img {
  border-radius: 3px;
  overflow: hidden;
  background: var(--linen);
  aspect-ratio: 4/5;
}
.about-img svg { width: 100%; height: 100%; }
.about-img-cap {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.45;
}

/* Founder copy — fully readable */
.about-text { display: flex; flex-direction: column; }

.about-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 3vw, 50px);
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 30px;
}
.about-h2 em { font-style: italic; color: var(--graphite-mid); }

/* Body paragraphs — fully readable */
.about-p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--graphite);
  margin-bottom: 16px;
}
.about-p.smaller {
  font-size: 15.5px;
  line-height: 1.80;
  color: var(--graphite);
  margin-bottom: 14px;
}

/* The emotional pull quote — calm, grounded, not branded */
.about-pull {
  margin: 32px 0 28px;
  padding: 26px 30px;
  background: var(--linen);
  border-left: 2px solid rgba(47,124,123,0.28);
  border-radius: 0 3px 3px 0;
}
.about-pull p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.56;
  font-weight: 300;
}

/* Values */
.about-vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 36px;
  border-top: 1px solid var(--rule);
}
.about-val {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.about-val:nth-child(odd) {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--rule);
}
.val-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.6;
  margin-bottom: 4px;
}
.val-text {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  font-weight: 300;
}

/* Bottom 3-col — linen */
.about-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--rule-med);
}
.about-col {
  background: var(--linen);
  padding: 44px 34px;
}
.col-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.6;
  margin-bottom: 14px;
}
.col-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.col-body {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--graphite);
}

/* ══════════════════════════════════════════
   WORK WITH US — linen, not dark
══════════════════════════════════════════ */
.work {
  background: var(--linen);
  border-top: 1px solid var(--rule);
  padding: 120px var(--pad) 112px;
}
.work-inner { max-width: var(--max-w); margin: 0 auto; }

.work-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-bottom: 72px;
}
.work-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 3.2vw, 50px);
  color: var(--ink);
  line-height: 1.1;
}
.work-h2 em { font-style: italic; color: var(--teal); }

.work-desc {
  font-size: 16px;
  line-height: 1.78;
  color: var(--graphite);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* Process */
.process-step {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--rule); margin-bottom: 72px; }
.ps-num { font-size: 10px; letter-spacing: 0.14em; color: var(--teal); opacity: 0.5; padding-top: 3px; }
.ps-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 5px;
}
.ps-body {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--graphite);
}

/* CTA block */
.work-cta-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  border-top: 1px solid var(--rule-med);
  padding-top: 56px;
}
.work-cta-h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 2.6vw, 40px);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 10px;
}
.work-cta-h3 em { font-style: italic; color: var(--teal); }
.work-cta-sub {
  font-size: 15px;
  line-height: 1.72;
  color: var(--graphite-mid);
  max-width: 480px;
}
.work-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--teal);
  border: 1px solid var(--teal);
  padding: 17px 34px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.22s, color 0.22s;
  white-space: nowrap;
}
.btn-primary-lg:hover { background: transparent; color: var(--teal); }
.btn-primary-lg .arr { transition: transform 0.2s; }
.btn-primary-lg:hover .arr { transform: translateX(4px); }

.btn-quiet {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite-mid);
  text-decoration: none;
  opacity: 0.45;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: opacity 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-quiet:hover { opacity: 0.75; border-color: rgba(78,74,72,0.28); }

/* ══════════════════════════════════════════
   RHYTHM LETTER — paper-warm, soft teal wash
   (The only genuinely darker moment — kept
   as the single atmospheric shift, now using
   a deep warm teal-sage instead of charcoal)
══════════════════════════════════════════ */
.rhythm {
  background: #2E4D4C;   /* deep teal — warm, not cold charcoal */
  padding: 96px var(--pad);
  border-top: 1px solid rgba(47,124,123,0.15);
}
.rhythm-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.r-eyebrow {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(170,210,205,0.65);
  margin-bottom: 16px;
}
.r-h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 2.6vw, 40px);
  color: rgba(247,244,239,0.92);
  line-height: 1.15;
  margin-bottom: 14px;
}
.r-h3 em { font-style: italic; color: rgba(155,210,205,0.75); }
.r-body {
  font-size: 15px;
  line-height: 1.76;
  color: rgba(247,244,239,0.52);
  max-width: 360px;
}
.r-form { display: flex; flex-direction: column; gap: 10px; max-width: 420px; }
.r-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 15px 18px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(247,244,239,0.82);
  outline: none;
  transition: border-color 0.2s;
}
.r-input::placeholder { color: rgba(247,244,239,0.22); }
.r-input:focus { border-color: rgba(155,210,205,0.4); }
.r-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2E4D4C;
  background: rgba(247,244,239,0.9);
  border: none;
  padding: 15px 26px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.r-submit:hover { background: var(--paper); }
.r-note {
  font-size: 10px;
  color: rgba(247,244,239,0.22);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 72px var(--pad) 48px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.f-brand-mark { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.f-wordmark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.7);
}
.f-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13.5px;
  color: rgba(247,244,239,0.25);
  line-height: 1.55;
  max-width: 220px;
}
.f-col-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.38);
  margin-bottom: 18px;
}
.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-link {
  font-size: 13px;
  color: rgba(247,244,239,0.36);
  text-decoration: none;
  transition: color 0.2s;
}
.f-link:hover { color: rgba(247,244,239,0.72); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.f-copy { font-size: 10px; color: rgba(247,244,239,0.18); letter-spacing: 0.04em; }
.f-pillars { display: flex; gap: 18px; align-items: center; }
.f-pillar { font-size: 8.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,244,239,0.16); }
.f-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(47,124,123,0.3); }

/* ══════════════════════════════════════════
   SECTION DIVIDER — rhythm spacer
══════════════════════════════════════════ */
.divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ══════════════════════════════════════════
   REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.reveal.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.26s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --pad: var(--pad-sm); }
  .nav-center-text, .nav-divider { display: none; }
  .nav-links { display: none; }
  .nav-cta { display: inline-flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { min-height: auto; padding: 56px var(--pad-sm) 64px; }
  .hero-right { display: none; }
  .hero-pillars { grid-template-columns: 1fr 1fr; }
  .pillar { padding: 18px 0; font-size: 10px; }
  .pillar:nth-child(1), .pillar:nth-child(3) { border-right: 1px solid var(--rule-med); padding-right: 16px; }
  .pillar:nth-child(3), .pillar:nth-child(4) { border-top: 1px solid var(--rule-med); }
  .pillar:not(:first-child) { padding-left: 0; }
  .pillar:nth-child(2), .pillar:nth-child(4) { padding-left: 16px; }
  .strip-inner { grid-template-columns: 1fr; }
  .strip-card { border-right: none !important; padding-right: 0 !important; margin-right: 0 !important; border-bottom: 1px solid var(--rule); }
  .recognition-grid, .studio-header, .editions-header, .about-grid, .work-header, .rhythm-inner { grid-template-columns: 1fr; gap: 48px; }
  .recog-left { position: static; }
  .about-img-col { position: static; }
  .studio-cards { grid-template-columns: 1fr; }
  .editions-grid { grid-template-columns: 1fr; }
  .about-cols { grid-template-columns: 1fr; }
  .work-cta-block { grid-template-columns: 1fr; gap: 36px; }
  .work-actions { align-items: flex-start; }
  .about-vals { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .f-brand { grid-column: 1 / -1; }
  .about-val:nth-child(odd) { padding-right: 16px; margin-right: 16px; }
}

@media (max-width: 600px) {
  .hero-pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; padding-right: 0 !important; border-top: 1px solid var(--rule-med) !important; }
  .pillar:first-child { border-top: none !important; }
  .about-vals { grid-template-columns: 1fr; }
  .about-val:nth-child(odd) { border-right: none; padding-right: 0; margin-right: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .editions { padding: 72px var(--pad-sm); }
  .studio { padding: 80px var(--pad-sm) 72px; }
  .work { padding: 80px var(--pad-sm) 80px; }
  .about { padding: 80px var(--pad-sm) 80px; }
  .philosophy { padding: 72px var(--pad-sm); }
  .recognition { padding: 80px var(--pad-sm); }
}

/* ══════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ruleExpand {
  from { opacity: 0; width: 0; }
  to   { opacity: 0.45; width: 32px; }
}
@keyframes scrollBreath {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 0.6;  transform: scaleY(1.15); }
}

/* ══════════════════════════════════════════
   IMAGE CONTAINERS — editorial, warm
   Real photos slot in via <img src=""> inside
   .img-frame, or swap SVG placeholder for
   background-image on .img-frame itself
══════════════════════════════════════════ */
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--linen);
}
.img-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2; /* sits above SVG fallback — add src="" to activate */
}
.img-frame svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* SVG is fallback only — hidden when real img is present */
}
/* Warm vignette over every image */
.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 35% 45%, transparent 40%, rgba(42,39,36,0.06) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── Lifestyle bridge section ── */
.img-bridge {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-warm);
  overflow: hidden;
}
.img-bridge-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px var(--pad) 56px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2px;
  align-items: stretch;
}
.img-bridge-main {
  aspect-ratio: 16/9;
}
.img-bridge-sub {
  aspect-ratio: unset;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.img-bridge-sub .img-frame {
  flex: 1;
  min-height: 140px;
}
.img-bridge-caption {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
}
.img-bridge-cap-line { width: 18px; height: 1px; background: var(--teal); opacity: 0.3; flex-shrink:0; }
.img-bridge-cap-txt {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.55;
}

/* ── Editions atmosphere band ── */
.editions-atmo {
  height: 320px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  background: var(--linen); /* warm letterbox background when contain shows bars */
}
.editions-atmo .img-frame {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: var(--linen);
}
.editions-atmo .img-frame img {
  object-fit: contain;           /* preserves full composition — no crop */
  object-position: center center;
}
.editions-atmo .img-frame::after { border-radius: 0; }
.editions-atmo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(247,244,239,0.82) 0%, rgba(247,244,239,0.28) 12%, transparent 28%),
    linear-gradient(to left,   rgba(247,244,239,0.82) 0%, rgba(247,244,239,0.28) 12%, transparent 28%),
    linear-gradient(to bottom, transparent 52%, rgba(247,244,239,0.60) 100%);
  z-index: 4;
  pointer-events: none;
}
.editions-atmo-label {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.atmo-label-rule { width: 1px; height: 24px; background: var(--teal); opacity: 0.2; }
.atmo-label-txt {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--ink);
  opacity: 0.5;
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   JOURNAL — editorial, warm, breathable
══════════════════════════════════════════ */
.journal {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 120px var(--pad) 112px;
}
.journal-inner { max-width: var(--max-w); margin: 0 auto; }

.journal-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.j-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3vw, 46px);
  color: var(--ink);
  line-height: 1.1;
}
.j-h2 em { font-style: italic; color: var(--graphite-mid); }
.j-intro {
  font-size: 15px;
  line-height: 1.76;
  color: var(--graphite-mid);
}
.j-intro-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.j-intro-link:hover { opacity: 1; }
.j-intro-link .arr { transition: transform 0.2s; }
.j-intro-link:hover .arr { transform: translateX(3px); }

/* Featured article — large, full-width pair */
.j-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule-med);
  margin-bottom: 1px;
}
.j-featured-img { aspect-ratio: 4/3; }
.j-featured-body {
  background: var(--linen);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
}
.j-art-num {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.5;
  margin-bottom: 22px;
  display: block;
}
.j-art-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(26px, 2.4vw, 36px);
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 18px;
}
.j-art-title em { font-style: italic; }
.j-art-excerpt {
  font-size: 15px;
  line-height: 1.80;
  color: var(--graphite);
  flex: 1;
  margin-bottom: 32px;
}
.j-art-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  margin-top: auto;
}
.j-meta-read {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.5;
}
.j-art-link {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  opacity: 0.65;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  transition: opacity 0.2s;
}
.j-art-link:hover { opacity: 1; }
.j-art-link .arr { transition: transform 0.2s; }
.j-art-link:hover .arr { transform: translateX(3px); }

/* Four smaller cards */
.j-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-med);
}
.j-card {
  background: var(--paper);
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.22s;
}
.j-card:hover { background: var(--paper-warm); }
.j-card-img {
  aspect-ratio: 3/2;
  margin-bottom: 20px;
}
.j-card-num {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.45;
  margin-bottom: 9px;
}
.j-card-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 10px;
  flex: 1;
}
.j-card-title em { font-style: italic; }
.j-card-excerpt {
  font-size: 13px;
  line-height: 1.70;
  color: var(--graphite);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.j-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.j-card-read {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.45;
}
.j-card-link {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.j-card-link:hover { opacity: 1; }

@media (max-width: 960px) {
  .img-bridge-inner { grid-template-columns: 1fr; padding: 48px var(--pad-sm); }
  .img-bridge-sub { flex-direction: row; min-height: 160px; }
  .journal-header { grid-template-columns: 1fr; gap: 32px; }
  .j-featured { grid-template-columns: 1fr; }
  .j-featured-img { aspect-ratio: 16/9; }
  .j-grid { grid-template-columns: 1fr 1fr; }
  .editions-atmo { height: 200px; }
}
@media (max-width: 600px) {
  .journal { padding: 80px var(--pad-sm) 72px; }
  .j-grid { grid-template-columns: 1fr; }
  .j-featured-body { padding: 36px 24px; }
  .img-bridge-sub { flex-direction: column; }
}



/* ══════════════════════════════════════════
   PAGE HERO — interior pages (contact, inquire, thank-you)
══════════════════════════════════════════ */
.page-hero {
  padding-top: 66px; /* clears fixed nav */
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--pad) 72px;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 88px;
  align-items: center;
}
.page-hero-inner.centered {
  grid-template-columns: 1fr;
  max-width: 720px;
  text-align: center;
  padding: 112px var(--pad) 96px;
}
.page-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.page-eyebrow-line {
  width: 22px; height: 1px;
  background: var(--teal); opacity: 0.4;
  flex-shrink: 0;
}
.page-eyebrow-text {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.8;
}
.page-h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 62px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.page-h1 em { font-style: italic; color: var(--graphite-mid); }
.page-h1 .teal { color: var(--teal); }
.page-lead {
  font-size: 16px;
  line-height: 1.80;
  color: var(--graphite);
  max-width: 480px;
  margin-bottom: 0;
}
.page-hero-inner.centered .page-lead {
  margin: 0 auto;
}
.page-hero-img {
  aspect-ratio: 4/3;
  border-radius: 3px;
  overflow: hidden;
  background: var(--linen);
  position: relative;
}

/* ══════════════════════════════════════════
   FORM SYSTEM — calm, editorial, warm
══════════════════════════════════════════ */
.form-section {
  background: var(--paper);
  padding: 80px var(--pad) 96px;
}
.form-section.linen-bg {
  background: var(--linen);
}
.form-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 96px;
  align-items: start;
}
.form-inner.full-width {
  grid-template-columns: 1fr;
  max-width: 700px;
}
.form-sidebar {
  position: sticky;
  top: 90px;
}
.form-sidebar-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.65;
  margin-bottom: 18px;
}
.form-sidebar-h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(26px, 2.4vw, 38px);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 18px;
}
.form-sidebar-h3 em { font-style: italic; color: var(--graphite-mid); }
.form-sidebar-body {
  font-size: 15px;
  line-height: 1.78;
  color: var(--graphite);
  margin-bottom: 14px;
}
.form-sidebar-note {
  font-size: 12px;
  line-height: 1.68;
  color: var(--graphite-lt);
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  margin-top: 24px;
}

/* Form itself */
.cform {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cform-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.cform-group:first-child { border-top: 1px solid var(--rule); }
.cform-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.7;
}
.cform-input,
.cform-textarea,
.cform-select {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  padding: 4px 0;
  line-height: 1.6;
  transition: color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.cform-input::placeholder,
.cform-textarea::placeholder { color: var(--graphite-lt); opacity: 0.5; }
.cform-input:focus,
.cform-textarea:focus,
.cform-select:focus { color: var(--ink); }
.cform-textarea { resize: vertical; min-height: 100px; }
.cform-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9593' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
  color: var(--graphite);
}
.cform-select option { color: var(--ink); background: var(--paper); }

/* Checkboxes */
.cform-check-group {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.cform-check-group:first-child { border-top: 1px solid var(--rule); }
.cform-check-label-row {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.7;
  margin-bottom: 14px;
}
.cform-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.cform-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.cform-check input[type="checkbox"] {
  width: 14px; height: 14px;
  border: 1px solid var(--graphite-lt);
  border-radius: 2px;
  appearance: none; -webkit-appearance: none;
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}
.cform-check input[type="checkbox"]:checked {
  background: var(--teal);
  border-color: var(--teal);
}
.cform-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.cform-check-text {
  font-size: 13.5px;
  color: var(--graphite);
  line-height: 1.4;
}

/* Section divider within form */
.cform-section-head {
  padding: 32px 0 8px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.55;
}

/* Submit row */
.cform-submit {
  padding-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cform-submit-note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--graphite-lt);
  max-width: 280px;
}

/* ══════════════════════════════════════════
   PROCESS OVERVIEW — inquire page
══════════════════════════════════════════ */
.process-band {
  background: var(--linen);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 80px var(--pad);
}
.process-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.process-band-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 52px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule-med);
}
.process-band-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 2.8vw, 42px);
  color: var(--ink);
  line-height: 1.12;
}
.process-band-h2 em { font-style: italic; color: var(--graphite-mid); }
.process-band-desc {
  font-size: 15px;
  line-height: 1.76;
  color: var(--graphite);
}
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-med);
}
.ps-cell {
  background: var(--paper);
  padding: 36px 28px 32px;
}
.ps-cell-num {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.5;
  margin-bottom: 16px;
}
.ps-cell-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 10px;
}
.ps-cell-body {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--graphite);
}

/* ══════════════════════════════════════════
   CONNECT STRIP — contact page social/email
══════════════════════════════════════════ */
.connect-strip {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  padding: 64px var(--pad);
}
.connect-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--rule);
}
.connect-item {
  background: var(--paper-warm);
  padding: 36px 32px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.22s;
}
.connect-item:hover { background: var(--linen); }
.connect-item-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.6;
}
.connect-item-value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.3;
}
.connect-item-note {
  font-size: 12px;
  color: var(--graphite-lt);
  line-height: 1.5;
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   THANK YOU — centered, calm
══════════════════════════════════════════ */
.thankyou-body {
  min-height: calc(100svh - 66px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  padding: 80px var(--pad);
}
.thankyou-inner {
  max-width: 560px;
  text-align: center;
}
.thankyou-star {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.thankyou-h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.thankyou-h1 em { font-style: italic; color: var(--graphite-mid); }
.thankyou-rule {
  width: 32px; height: 1px;
  background: var(--teal);
  opacity: 0.3;
  margin: 0 auto 24px;
}
.thankyou-lead {
  font-size: 15.5px;
  line-height: 1.80;
  color: var(--graphite);
  margin-bottom: 14px;
}
.thankyou-response {
  font-size: 13px;
  color: var(--graphite-lt);
  line-height: 1.65;
  margin-bottom: 44px;
  padding: 18px 22px;
  background: var(--linen);
  border-radius: 2px;
  border-left: 2px solid rgba(47,124,123,0.2);
  text-align: left;
}
.thankyou-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.thankyou-img {
  aspect-ratio: 16/7;
  border-radius: 3px;
  overflow: hidden;
  background: var(--linen);
  margin-bottom: 48px;
}

/* ══════════════════════════════════════════
   SUITED-FOR — inquire page qualifier section
══════════════════════════════════════════ */
.suited-band {
  background: var(--paper);
  padding: 80px var(--pad);
  border-top: 1px solid var(--rule);
}
.suited-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.suited-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 2.6vw, 40px);
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 18px;
}
.suited-h2 em { font-style: italic; color: var(--graphite-mid); }
.suited-body {
  font-size: 15px;
  line-height: 1.76;
  color: var(--graphite);
  margin-bottom: 0;
}
.suited-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.suited-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.suited-item:first-child { border-top: 1px solid var(--rule); }
.suited-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.4;
  margin-top: 8px;
  justify-self: center;
}
.suited-text {
  font-size: 14.5px;
  line-height: 1.70;
  color: var(--graphite);
}

/* ══════════════════════════════════════════
   RESPONSIVE — new page elements
══════════════════════════════════════════ */
@media (max-width: 960px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .page-hero-img { max-height: 280px; }
  .form-inner { grid-template-columns: 1fr; gap: 52px; }
  .form-sidebar { position: static; }
  .process-band-header { grid-template-columns: 1fr; gap: 28px; }
  .process-steps-grid { grid-template-columns: 1fr 1fr; }
  .connect-strip-inner { grid-template-columns: 1fr; }
  .suited-inner { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 600px) {
  .page-hero-inner { padding: 64px var(--pad-sm) 56px; }
  .form-section { padding: 56px var(--pad-sm) 72px; }
  .process-band { padding: 56px var(--pad-sm); }
  .connect-strip { padding: 48px var(--pad-sm); }
  .process-steps-grid { grid-template-columns: 1fr; }
  .cform-checks { grid-template-columns: 1fr; }
  .thankyou-body { padding: 64px var(--pad-sm); }
  .suited-band { padding: 56px var(--pad-sm); }
  .cform-submit { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════
   MOBILE NAV — calm, minimal, on-brand
══════════════════════════════════════════ */

/* Toggle button — only visible on mobile */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  padding: 0;
}
.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.nav-toggle-icon span {
  display: block;
  height: 1px;
  background: var(--graphite);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
              opacity 0.22s ease,
              width 0.22s ease;
  transform-origin: center;
}
.nav-toggle-icon span:nth-child(1) { width: 22px; }
.nav-toggle-icon span:nth-child(2) { width: 16px; }
.nav-toggle-icon span:nth-child(3) { width: 22px; }

/* Open state */
.nav-toggle.open .nav-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 22px;
}
.nav-toggle.open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle.open .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 22px;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  background: rgba(247,244,239,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-med);
  z-index: 290;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
              opacity 0.22s ease;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer-inner {
  padding: 12px 0 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad-sm);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color 0.18s, background 0.18s;
}
.nav-drawer-link:last-child { border-bottom: none; }
.nav-drawer-link:hover { color: var(--teal); background: rgba(47,124,123,0.03); }
.nav-drawer-link.cta-link {
  color: var(--teal);
  font-weight: 500;
}
.nav-drawer-link .nav-drawer-arr {
  font-size: 14px;
  opacity: 0.35;
  transition: transform 0.18s, opacity 0.18s;
}
.nav-drawer-link:hover .nav-drawer-arr {
  transform: translateX(3px);
  opacity: 0.7;
}
.nav-drawer-divider {
  height: 1px;
  background: var(--rule-med);
  margin: 8px var(--pad-sm);
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-drawer  { display: block; }
  /* Hide the inline Work With Us CTA on mobile — drawer handles it */
  .nav-cta { display: none; }
}

/* ══════════════════════════════════════════
   HERO IMAGE — restored soft editorial fade
   Strengthened gradients so the left edge
   integrates fully into the typography column
══════════════════════════════════════════ */
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Strong left fade — bleeds into typography */
    linear-gradient(to right,
      var(--paper)              0%,
      rgba(247,244,239,0.82)   14%,
      rgba(247,244,239,0.40)   28%,
      transparent              50%),
    /* Soft top edge */
    linear-gradient(to bottom,
      rgba(247,244,239,0.24)   0%,
      transparent              18%),
    /* Soft bottom edge */
    linear-gradient(to top,
      rgba(247,244,239,0.28)   0%,
      transparent              18%),
    /* Warm overall vignette */
    radial-gradient(ellipse 80% 80% at 70% 50%,
      transparent              55%,
      rgba(42,39,36,0.06)      100%);
  z-index: 3;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   IMAGE INTEGRATION — subtle global polish
   Applied to all img-frame instances that
   need warmer, softer integration
══════════════════════════════════════════ */

/* Strengthen default img-frame vignette */
.img-frame::after {
  background: radial-gradient(
    ellipse 90% 80% at 40% 45%,
    transparent              38%,
    rgba(42,39,36,0.08)      100%
  );
}

/* Page hero images — soft bottom fade into page */
.page-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 60%, rgba(247,244,239,0.45) 100%),
    linear-gradient(to right,  transparent 65%, rgba(247,244,239,0.22) 100%);
  z-index: 2;
  pointer-events: none;
  border-radius: 3px;
}

/* ══════════════════════════════════════════
   TYPOGRAPHY LEGIBILITY — readability pass
   Increase contrast on overly pale text
   while preserving the refined Compass feel
══════════════════════════════════════════ */

/* Nav links — slightly more present */
.nav-link { opacity: 0.78; }

/* Footer links — more readable on dark bg */
.f-link { color: rgba(247,244,239,0.52); }
.f-link:hover { color: rgba(247,244,239,0.88); }
.f-col-label { color: rgba(247,244,239,0.52); }
.f-copy { color: rgba(247,244,239,0.28); }

/* Body-xs — slightly more contrast */
.body-xs { color: var(--graphite-mid); }

/* Strip body */
.strip-body { color: var(--graphite); }

/* Journal support text */
.j-intro { color: var(--graphite); }
.j-art-excerpt { color: var(--graphite); }
.j-card-excerpt { color: var(--graphite); }

/* Work section support */
.work-cta-sub { color: var(--graphite); }

/* Rhythm section body — readable on dark */
.r-body { color: rgba(247,244,239,0.68); }

/* Form sidebar body on linen */
.form-sidebar-body { color: var(--graphite); }
.form-sidebar-note { color: var(--graphite-mid); }

/* Suited-for text */
.suited-text { color: var(--graphite); }

/* About paragraphs */
.about-p { color: var(--graphite); }
.about-p.smaller { color: var(--graphite); }

/* ══════════════════════════════════════════
   HERO MOBILE — reduce redundancy
   Hide the hero mark/eyebrow on mobile since
   the nav already shows the brand name
══════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-mark { display: none; }
}

/* ══════════════════════════════════════════
   JOURNAL ARTICLE PAGES — full editorial styling
   Applied to pages: journal-*.html
   Classes: .article-page, .article-hero,
   .article-body, .article-h1, etc.
══════════════════════════════════════════ */
.article-page {
  padding-top: 66px;
  background: var(--paper);
  min-height: 100vh;
}

/* Article hero */
.article-hero {
  padding: 72px var(--pad) 56px;
  max-width: 820px;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.article-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.article-eyebrow-line { width: 20px; height: 1px; background: var(--teal); opacity: 0.4; flex-shrink: 0; }
.article-eyebrow-text {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.75;
}
.article-h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 58px);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.article-h1 em { font-style: italic; color: var(--graphite-mid); }
.article-deck {
  font-size: 17px;
  line-height: 1.72;
  color: var(--graphite);
  max-width: 640px;
  margin-bottom: 28px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.article-meta-item {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite-lt);
}
.article-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--teal); opacity: 0.3; }

/* Article image */
.article-img-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--pad) 56px;
}
.article-img {
  aspect-ratio: 16/7;
  border-radius: 2px;
  overflow: hidden;
  background: var(--linen);
  position: relative;
}
.article-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.article-img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 40% 50%, transparent 40%, rgba(42,39,36,0.07) 100%);
  pointer-events: none;
}
.article-img-caption {
  margin-top: 10px;
  font-size: 11px;
  color: var(--graphite-lt);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* Article body */
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--pad) 96px;
}
.article-body p {
  font-size: 16.5px;
  line-height: 1.86;
  color: var(--graphite);
  margin-bottom: 22px;
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 34px);
  color: var(--ink);
  line-height: 1.15;
  margin: 52px 0 16px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.article-body h2 em { font-style: italic; color: var(--graphite-mid); }
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(19px, 1.8vw, 24px);
  color: var(--ink);
  line-height: 1.2;
  margin: 36px 0 12px;
}
.article-body blockquote {
  margin: 36px 0;
  padding: 22px 26px;
  background: var(--linen);
  border-left: 2px solid rgba(47,124,123,0.3);
  border-radius: 0 2px 2px 0;
}
.article-body blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.56;
  color: var(--ink);
  margin-bottom: 0;
}
.article-body ul, .article-body ol {
  padding-left: 0;
  margin-bottom: 22px;
  list-style: none;
}
.article-body ul li, .article-body ol li {
  font-size: 16px;
  line-height: 1.80;
  color: var(--graphite);
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.35;
}
.article-body a {
  color: var(--teal);
  text-underline-offset: 3px;
}
.article-body a:hover { opacity: 0.75; }

/* Article footer nav */
.article-nav-band {
  background: var(--linen);
  border-top: 1px solid var(--rule);
  padding: 56px var(--pad);
}
.article-nav-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.article-back:hover { opacity: 1; }
.article-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--teal);
  padding: 13px 24px;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid var(--teal);
  transition: background 0.22s, color 0.22s;
}
.article-nav-cta:hover { background: transparent; color: var(--teal); }
.article-nav-cta .arr { transition: transform 0.2s; }
.article-nav-cta:hover .arr { transform: translateX(3px); }

@media (max-width: 768px) {
  .article-hero { padding: 56px var(--pad-sm) 44px; }
  .article-img-wrap { padding: 0 var(--pad-sm) 44px; }
  .article-body { padding: 0 var(--pad-sm) 72px; }
  .article-body p { font-size: 16px; }
  .article-nav-band { padding: 44px var(--pad-sm); }
  .article-nav-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ══════════════════════════════════════════
   MOBILE IMAGE FIXES — responsive repair
   Root causes:
   1. hero-right hidden — show stacked on mobile
   2. img-bridge frames collapsing to zero height
   3. about-img losing height when grid collapses
   4. img-bridge-sub flex children need explicit height
   5. page-hero-img needs reliable height source
   6. journal card images need explicit min-height
══════════════════════════════════════════ */

/* ── 1. Hero image — show on mobile, stacked below text ── */
@media (max-width: 960px) {
  .hero-right {
    display: block;          /* override display:none */
    height: 56vw;            /* responsive height — taller on narrow screens */
    min-height: 220px;
    max-height: 400px;
    width: 100%;
    position: relative;      /* override: was just part of grid, now block flow */
    overflow: hidden;
    opacity: 1;              /* override the fadeIn animation start — show immediately */
    animation: none;         /* cancel desktop animation on mobile */
  }
  .hero-img {
    position: absolute;
    inset: 0;
  }
  /* On mobile the left-fade is irrelevant (image is below, not beside text) */
  /* Replace with a top-fade so it blends into section below hero text */
  .hero-img::after {
    background:
      linear-gradient(to bottom,
        rgba(247,244,239,0.55) 0%,
        transparent            18%,
        transparent            72%,
        rgba(247,244,239,0.40) 100%),
      radial-gradient(ellipse 90% 80% at 50% 50%,
        transparent            45%,
        rgba(42,39,36,0.07)    100%);
  }
}

/* ── 2. img-bridge — explicit heights on mobile ── */
@media (max-width: 960px) {
  /* Main image: aspect-ratio works but reinforce with min-height */
  .img-bridge-main {
    min-height: 220px;
  }
  /* Sub column: when horizontal, each frame needs a real height */
  .img-bridge-sub {
    min-height: 200px;       /* already set to 160px — increase slightly */
  }
  .img-bridge-sub .img-frame {
    flex: 1;
    min-height: 160px;       /* explicit floor so absolute img has a container */
  }
}

@media (max-width: 600px) {
  /* Sub column: when vertical (flex-direction:column), each frame needs height */
  .img-bridge-sub {
    flex-direction: column;
    min-height: unset;       /* let children set their own height */
  }
  .img-bridge-sub .img-frame {
    height: 200px;           /* explicit height — absolute children need this */
    flex: none;
    min-height: unset;
  }
  /* Main bridge image */
  .img-bridge-main {
    min-height: 200px;
  }
}

/* ── 3. About / founder image — ensure height on mobile ── */
@media (max-width: 960px) {
  /* When about-grid collapses, about-img needs a height source */
  .about-img {
    aspect-ratio: 4/3;       /* less tall than 4/5 — better on mobile */
    width: 100%;
  }
  /* about-img has position:relative on it, but img is absolute — needs height */
  /* aspect-ratio on a block element works fine as long as width is set */
}

/* ── 4. Page hero images on interior pages ── */
@media (max-width: 960px) {
  .page-hero-img {
    width: 100%;
    height: 56vw;            /* explicit height to support absolute children */
    min-height: 200px;
    max-height: 320px;
    aspect-ratio: unset;     /* override 4/3 — let explicit height rule */
  }
}

/* ── 5. Journal images — ensure rendered height ── */
@media (max-width: 960px) {
  /* Featured journal image */
  .j-featured-img {
    min-height: 220px;
  }
  /* Journal card images */
  .j-card-img {
    height: 180px;           /* explicit height for absolute-positioned img */
    min-height: 140px;
    aspect-ratio: unset;
  }
}

@media (max-width: 600px) {
  .j-card-img {
    height: 48vw;
    min-height: 160px;
  }
  .j-featured-img {
    min-height: 200px;
  }
}

/* ── 6. Edition page hero images ── */
/* Already handled by .page-hero-img rules above */

/* ── 7. Editions atmosphere band ── */
@media (max-width: 600px) {
  .editions-atmo {
    height: 180px;           /* slightly shorter on very small screens */
  }
}

/* ── 8. Global: ensure img-frame with absolute children always has height ──
   Any .img-frame that also carries an aspect-ratio class will render fine.
   The risk is bare .img-frame divs that rely solely on flex:1 with no floor.
   Add a universal minimum so no img-frame ever collapses to zero. */
.img-frame {
  min-height: 40px;          /* safety floor — prevents zero-height collapse */
}

/* ══════════════════════════════════════════
   INSIDE COMPASS — Product preview sections
   Shared across homepage + all edition pages.
   Prefixes: .ic-  .prev-  .mock-
══════════════════════════════════════════ */

/* ─────────────────────────────────────────
   Homepage "Inside Compass" outer section
───────────────────────────────────────── */
.inside-compass {
  background: var(--linen);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 112px var(--pad);
  position: relative;
  overflow: hidden;
}
.inside-compass::before {
  content: '';
  position: absolute;
  top: -14%; right: -5%;
  width: 42%; height: 68%;
  background: radial-gradient(ellipse, rgba(47,124,123,0.05) 0%, transparent 68%);
  pointer-events: none;
}
.ic-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header: two columns, headline left / desc right */
.ic-header {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule-med);
}
.ic-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3vw, 50px);
  color: var(--ink);
  line-height: 1.1;
}
.ic-h2 em { font-style: italic; color: var(--teal); }
.ic-desc {
  font-size: 15.5px;
  line-height: 1.80;
  color: var(--graphite);
}
.ic-desc p { margin-bottom: 10px; }
.ic-desc p:last-child { margin-bottom: 0; }

/* Mockup ambient glow wrapper */
.ic-mockup-wrap {
  position: relative;
  /* Explicit positioning context — no padding inflation */
}
.ic-mockup-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(47,124,123,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 8px;
}

/* The editorial frame card */
.ic-frame {
  position: relative;
  z-index: 1;
  background: var(--paper);
  border: 1px solid var(--rule-med);
  border-radius: 5px;
  box-shadow:
    0 2px 8px rgba(42,39,36,0.04),
    0 8px 32px rgba(42,39,36,0.06),
    0 24px 64px rgba(42,39,36,0.07);
  overflow: hidden;
}

/* Top bar — fake OS chrome */
.ic-frame-bar {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--rule);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ic-frame-dots { display: flex; gap: 6px; flex-shrink: 0; }
.ic-frame-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--linen-deep);
  flex-shrink: 0;
}
.ic-frame-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.42;
  flex: 1;
  text-align: center;
}
.ic-frame-date {
  font-size: 10px;
  color: var(--graphite-lt);
  opacity: 0.32;
  flex-shrink: 0;
}

/* Frame body: explicit two-column grid */
.ic-frame-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  /* No min-height — content drives height naturally */
}

/* Sidebar column */
.ic-sidebar {
  border-right: 1px solid var(--rule);
  padding: 28px 20px 28px 24px;
  background: var(--paper-warm);
}
.ic-sb-greeting {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.50;
  margin-bottom: 3px;
}
.ic-sb-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.2;
}
.ic-sb-section {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.40;
  margin-bottom: 6px;
  margin-top: 16px;
}
.ic-sb-section:first-of-type { margin-top: 0; }
.ic-sb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 3px;
  margin-bottom: 1px;
}
.ic-sb-item.active {
  background: rgba(47,124,123,0.10);
}
.ic-sb-icon {
  width: 13px; height: 13px;
  flex-shrink: 0;
  opacity: 0.40;
  color: var(--graphite);
}
.ic-sb-icon.t { opacity: 0.65; color: var(--teal); }
.ic-sb-lbl {
  font-size: 12px;
  color: var(--graphite);
  line-height: 1;
  white-space: nowrap;
}
.ic-sb-item.active .ic-sb-lbl { color: var(--teal); }

/* Main content column */
.ic-main {
  padding: 28px 28px 28px 24px;
}
.ic-main-meta {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.40;
  margin-bottom: 20px;
}
.ic-today-lbl {
  font-size: 9.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.55;
  margin-bottom: 10px;
}
.ic-today-h {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.18;
}
.ic-today-h em { font-style: italic; color: var(--graphite-mid); }

/* Task / focus rows */
.ic-focus-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 3px;
  margin-bottom: 5px;
}
.ic-check {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid var(--rule-med);
  background: var(--paper);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.ic-check.done {
  background: rgba(47,124,123,0.12);
  border-color: rgba(47,124,123,0.25);
}
.ic-check.done::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%) rotate(-42deg);
  width: 5px; height: 3px;
  border-left: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
}
.ic-focus-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--graphite);
  flex: 1;
}
.ic-focus-text.done {
  color: var(--graphite-lt);
  text-decoration: line-through;
  text-decoration-color: rgba(95,90,88,0.20);
}
.ic-focus-tag {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(47,124,123,0.08);
  padding: 3px 7px;
  border-radius: 2px;
  flex-shrink: 0;
  align-self: flex-start;
  white-space: nowrap;
}

/* Status mini-cards */
.ic-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 16px;
}
.ic-status-card {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 12px 12px 10px;
}
.ic-status-lbl {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.50;
  margin-bottom: 5px;
}
.ic-status-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 3px;
}
.ic-status-sub {
  font-size: 10px;
  color: var(--graphite-lt);
  opacity: 0.40;
}

/* Three-column copy strip below frame */
.ic-copy-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--rule-med);
}
.ic-copy-num {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.48;
  margin-bottom: 10px;
}
.ic-copy-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
}
.ic-copy-title em { font-style: italic; color: var(--graphite-mid); }
.ic-copy-body {
  font-size: 14px;
  line-height: 1.76;
  color: var(--graphite);
}

/* ─────────────────────────────────────────
   Edition preview sections — shared
───────────────────────────────────────── */
.prev-section {
  padding: 104px var(--pad);
  position: relative;
  overflow: hidden;
}
.prev-section.prev-paper {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.prev-section.prev-linen {
  background: var(--linen);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.prev-section.prev-sage {
  background: #EAF0EF;
  border-top: 1px solid rgba(47,124,123,0.10);
  border-bottom: 1px solid rgba(47,124,123,0.10);
}

/* Inner container */
.prev-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Edition badge pill */
.prev-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(47,124,123,0.08);
  padding: 5px 11px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.prev-badge.sage-badge {
  color: var(--graphite-mid);
  background: rgba(155,176,167,0.14);
}
.prev-badge-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
  flex-shrink: 0;
}

/* Section headline */
.prev-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 2.8vw, 44px);
  color: var(--ink);
  line-height: 1.10;
  margin-bottom: 14px;
}
.prev-h2 em { font-style: italic; color: var(--teal); }

/* Intro paragraph — constrained width */
.prev-sub {
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--graphite);
  max-width: 620px;
  margin-bottom: 52px;
}

/* Two-column layout: features | mockup */
.prev-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
/* Reversed: mockup | features */
.prev-layout.prev-reverse {
  grid-template-columns: 1.3fr 1fr;
}
.prev-layout.prev-reverse .prev-text  { order: 2; }
.prev-layout.prev-reverse .prev-mock-col { order: 1; }

/* Feature list */
.prev-feature-list {
  list-style: none;
  margin-bottom: 32px;
}
.prev-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--graphite);
}
.prev-feature-item:first-child { border-top: 1px solid var(--rule); }
.prev-feature-star {
  width: 10px; height: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}
.prev-feature-item strong { font-weight: 400; color: var(--ink); }

/* Link at bottom of feature list */
.prev-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.prev-learn:hover { opacity: 1; }
.prev-learn .arr { transition: transform 0.2s; }
.prev-learn:hover .arr { transform: translateX(4px); }
.prev-learn.sage-link { color: var(--graphite-mid); }

/* Mockup frame card */
.prev-mock-frame {
  background: var(--paper);
  border: 1px solid var(--rule-med);
  border-radius: 5px;
  box-shadow:
    0 2px 6px rgba(42,39,36,0.04),
    0 10px 36px rgba(42,39,36,0.07),
    0 28px 64px rgba(42,39,36,0.06);
  overflow: hidden;
  /* No explicit height — content drives it */
}
.prev-topbar {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--rule);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.prev-dots { display: flex; gap: 5px; flex-shrink: 0; }
.prev-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--linen-deep);
}
.prev-tab {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.35;
  margin-left: 4px;
  white-space: nowrap;
}
.prev-tab.active { color: var(--teal); opacity: 0.70; }
.prev-body { padding: 20px 20px 24px; }

/* ─────────────────────────────────────────
   Shared mock UI elements
───────────────────────────────────────── */

/* Section heading inside mock */
.mock-h {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.40;
  margin-bottom: 10px;
  margin-top: 18px;
}
.mock-h:first-child { margin-top: 0; }

/* 2-col production card grid */
.mock-prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 6px;
}
.mock-prod-card {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 12px 12px 10px;
}
.mock-prod-name {
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.3;
}
.mock-prod-detail {
  font-size: 10px;
  color: var(--graphite-lt);
  opacity: 0.52;
  margin-bottom: 7px;
}
.mock-prog-track {
  height: 3px;
  background: rgba(78,74,72,0.09);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}
.mock-prog-fill {
  height: 100%;
  background: var(--teal);
  opacity: 0.40;
  border-radius: 2px;
}
.mock-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 8.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mock-status.go    { color: var(--teal); }
.mock-status.pend  { color: var(--ochre); }
.mock-status.done-s{ color: var(--graphite-lt); }
.mock-status-dot   { width: 4px; height: 4px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

/* Recipe row */
.mock-recipe-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 3px;
  margin-bottom: 5px;
}
.mock-recipe-ico {
  width: 24px; height: 24px;
  border-radius: 2px;
  background: rgba(47,124,123,0.09);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-recipe-name { font-size: 12px; color: var(--ink); flex: 1; min-width: 0; }
.mock-recipe-meta { font-size: 10px; color: var(--graphite-lt); opacity: 0.40; white-space: nowrap; }
.mock-recipe-cost {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--teal);
  font-weight: 300;
  white-space: nowrap;
}

/* Checklist row */
.mock-check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
.mock-check-box {
  width: 13px; height: 13px;
  border-radius: 2px;
  border: 1px solid var(--rule-med);
  background: var(--paper);
  flex-shrink: 0;
  position: relative;
}
.mock-check-box.chk {
  background: rgba(47,124,123,0.12);
  border-color: rgba(47,124,123,0.25);
}
.mock-check-box.chk::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -57%) rotate(-42deg);
  width: 4px; height: 2.5px;
  border-left: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
}
.mock-check-label { font-size: 12px; color: var(--graphite); flex: 1; line-height: 1.4; }
.mock-check-label.done {
  color: var(--graphite-lt);
  text-decoration: line-through;
  text-decoration-color: rgba(95,90,88,0.18);
}
.mock-check-date { font-size: 10px; color: var(--graphite-lt); opacity: 0.36; white-space: nowrap; }

/* Inventory table row */
.mock-inv-hdr {
  display: grid;
  grid-template-columns: 1fr 80px 52px 72px;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rule);
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.36;
}
.mock-inv-row {
  display: grid;
  grid-template-columns: 1fr 80px 52px 72px;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
.mock-inv-name { font-size: 12px; color: var(--ink); }
.mock-inv-sku  { font-size: 10px; color: var(--graphite-lt); opacity: 0.36; }
.mock-inv-qty  {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  text-align: right;
}
.mock-inv-badge {
  font-size: 8.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
  text-align: center;
}
.mock-inv-badge.ok  { color: var(--teal); background: rgba(47,124,123,0.09); }
.mock-inv-badge.low { color: var(--clay); background: rgba(217,138,108,0.10); }
.mock-inv-badge.out { color: var(--graphite-lt); background: rgba(78,74,72,0.07); }

/* Session / schedule row */
.mock-session-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 3px;
  margin-bottom: 5px;
}
.mock-session-time {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--teal);
  opacity: 0.60;
  min-width: 44px;
  padding-top: 2px;
  flex-shrink: 0;
}
.mock-session-info { flex: 1; min-width: 0; }
.mock-session-name { font-size: 12px; color: var(--ink); line-height: 1.3; margin-bottom: 2px; }
.mock-session-type { font-size: 10px; color: var(--graphite-lt); opacity: 0.46; }
.mock-session-badge {
  font-size: 8.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
  align-self: flex-start;
  flex-shrink: 0;
  white-space: nowrap;
}
.mock-session-badge.conf { color: var(--teal); background: rgba(47,124,123,0.09); }
.mock-session-badge.open { color: var(--graphite-lt); background: rgba(78,74,72,0.07); }

/* Wellness week strip */
.mock-week-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.mock-week-day {
  text-align: center;
  padding: 8px 4px;
  background: rgba(47,124,123,0.06);
  border: 1px solid var(--rule);
  border-radius: 3px;
}
.mock-week-day.today {
  background: rgba(47,124,123,0.12);
  border-color: rgba(47,124,123,0.18);
}
.mock-week-day.rest {
  background: rgba(78,74,72,0.04);
}
.mock-week-lbl {
  font-size: 8px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--graphite-lt);
  opacity: 0.40;
  margin-bottom: 4px;
}
.mock-week-day.today .mock-week-lbl { color: var(--teal); opacity: 0.68; }
.mock-week-day.rest  .mock-week-lbl { opacity: 0.22; }
.mock-week-num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.mock-week-day.today .mock-week-num { color: var(--teal); }
.mock-week-day.rest  .mock-week-num { color: var(--graphite-lt); opacity: 0.30; }
.mock-week-sub {
  font-size: 8.5px;
  color: var(--graphite-lt);
  opacity: 0.38;
  margin-top: 3px;
  line-height: 1.3;
}
.mock-week-day.today .mock-week-sub { color: var(--teal); opacity: 0.48; }
.mock-week-day.rest  .mock-week-sub { opacity: 0.20; }

/* ─────────────────────────────────────────
   Responsive — Inside Compass (homepage)
───────────────────────────────────────── */
@media (max-width: 960px) {
  .inside-compass { padding: 80px var(--pad-sm); }
  .ic-header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 44px;
    padding-bottom: 36px;
  }
  /* Frame: stack sidebar above main on tablet */
  .ic-frame-body {
    grid-template-columns: 1fr;
  }
  .ic-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 20px 20px 16px;
    /* Show only greeting + today nav item — hide extras */
  }
  /* Keep status 3-col on tablet */
  .ic-status-grid { grid-template-columns: repeat(3, 1fr); }
  /* Copy row: single column */
  .ic-copy-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 40px;
    padding-top: 36px;
  }
}
@media (max-width: 600px) {
  .inside-compass { padding: 64px var(--pad-sm); }
  .ic-frame-bar { padding: 10px 14px; }
  .ic-main { padding: 20px 16px 20px; }
  .ic-sidebar { padding: 16px; }
  /* On small screens, 3-col status stays — numbers are short */
  .ic-status-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .ic-status-val { font-size: 20px; }
  .ic-focus-tag { display: none; } /* remove tag on very small screens for readability */
}

/* ─────────────────────────────────────────
   Responsive — Edition preview sections
───────────────────────────────────────── */
@media (max-width: 960px) {
  .prev-section { padding: 72px var(--pad-sm); }
  /* Both normal and reversed layouts become single-column */
  .prev-layout,
  .prev-layout.prev-reverse {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  /* Always show text before mockup on mobile regardless of desktop order */
  .prev-layout .prev-text            { order: 1; }
  .prev-layout .prev-mock-col        { order: 2; }
  .prev-layout.prev-reverse .prev-text    { order: 1; }
  .prev-layout.prev-reverse .prev-mock-col { order: 2; }
  /* Inventory: hide SKU column on tablet */
  .mock-inv-hdr { grid-template-columns: 1fr 48px 68px; }
  .mock-inv-row { grid-template-columns: 1fr 48px 68px; }
  .mock-inv-sku { display: none; }
  /* Production grid: single column on tablet */
  .mock-prod-grid { grid-template-columns: 1fr 1fr; }
  .prev-sub { max-width: 100%; margin-bottom: 36px; }
}
@media (max-width: 600px) {
  .prev-section { padding: 60px var(--pad-sm); }
  .mock-prod-grid { grid-template-columns: 1fr; }
  .mock-inv-hdr { display: none; }
  .mock-inv-row { grid-template-columns: 1fr 40px 64px; gap: 8px; }
}

/* ══════════════════════════════════════════
   POLISH PASS — visual refinement, rhythm,
   hierarchy, image integration.
   Edition pages (compass.css consumers).
══════════════════════════════════════════ */

/* ── Image vignette fix: above real photo ── */
.img-frame::after {
  z-index: 3;
  background:
    linear-gradient(to bottom, transparent 60%, rgba(42,39,36,0.06) 100%),
    radial-gradient(ellipse 88% 75% at 40% 42%, transparent 35%, rgba(42,39,36,0.09) 100%);
}

/* Page hero images */
.page-hero-img::before {
  background:
    linear-gradient(to bottom, transparent 55%, rgba(247,244,239,0.42) 100%),
    linear-gradient(to right,  transparent 60%, rgba(247,244,239,0.18) 100%);
  z-index: 2;
}
.page-hero-img::after { z-index: 3; }

/* ── Typography ── */
.page-lead { color: var(--graphite); }
.strip-body { color: var(--graphite); }
.prev-sub { color: var(--graphite); }
.prev-feature-item { color: var(--graphite); }

/* ── Reveal: subtle rise ── */
.reveal {
  transform: translateY(10px);
  transition: opacity 0.68s ease, transform 0.68s cubic-bezier(0.16,1,0.3,1);
}
.reveal.on { transform: translateY(0); }

/* ── Mock frame sophistication ── */
.ic-frame, .prev-mock-frame {
  box-shadow:
    0 1px 3px  rgba(42,39,36,0.04),
    0 4px 16px rgba(42,39,36,0.05),
    0 16px 48px rgba(42,39,36,0.07),
    0 40px 80px rgba(42,39,36,0.05);
}
.ic-sidebar { background: #F2EBE0; border-right-color: rgba(78,74,72,0.12); }
.ic-sb-item.active { background: rgba(47,124,123,0.12); }
.ic-status-val { font-size: 26px; letter-spacing: -0.02em; }

/* ── Edition preview section spacing ── */
.prev-section { padding: 96px var(--pad); }
@media (max-width: 960px) {
  .prev-section { padding: 72px var(--pad-sm); }
}
@media (max-width: 600px) {
  .prev-section { padding: 60px var(--pad-sm); }
}

/* ── Card hover refinement ── */
.ed-card { transition: background 0.22s, box-shadow 0.22s, transform 0.22s; }
.ed-card:hover { transform: translateY(-1px); box-shadow: inset 0 0 0 1px rgba(47,124,123,0.08), 0 4px 20px rgba(42,39,36,0.05); }

/* ── Footer readability ── */
.f-tagline { color: rgba(247,244,239,0.35); }
.f-copy    { color: rgba(247,244,239,0.28); }
.f-link    { color: rgba(247,244,239,0.48); }
.f-col-label { color: rgba(247,244,239,0.45); }
.f-pillar  { color: rgba(247,244,239,0.22); }

/* ── Eyebrow consistency ── */
.eyebrow-text { opacity: 0.78; }
.eyebrow-text.muted { opacity: 0.62; }

/* ── Strip card gap ── */
.strip-card:not(:last-child) { padding-right: 44px; margin-right: 44px; }
@media (max-width: 960px) {
  .strip-card:not(:last-child) { padding-right: 0 !important; margin-right: 0 !important; }
}

/* ── About pull quote ── */
.about-pull { border-left-width: 3px; border-left-color: rgba(47,124,123,0.25); }
.about-pull p { font-size: 20px; line-height: 1.58; }

/* ── Mock section headings ── */
.mock-h { opacity: 0.38; letter-spacing: 0.20em; }
