/* ============================================
   PRELANY CO., design tokens
   ============================================ */
:root {
  /* ink / bronze / stone, a restrained evolution of navy / gold / cream */
  --navy: #0e1e2e;
  --navy-2: #12253a;
  --navy-ink: #192532;
  --gold: #9c7d3f;
  --gold-light: #b39f78;
  --gold-dim: rgba(156, 125, 63, 0.35);
  --cream: #f6f6f3;
  --cream-warm: #f1efe6;
  --cream-line: rgba(14, 30, 46, 0.12);
  --cream-on-navy: #f3f3ef;
  --slate: #5a5f6e;
  --slate-on-navy: #aab2c8;

  --font-display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --section-pad: clamp(72px, 9vw, 128px);
  --radius: 4px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--navy-ink);
  background: var(--cream-warm);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: var(--section-pad) 0; position: relative; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy-ink);
  letter-spacing: -0.01em;
}

p { color: var(--slate); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow.center { justify-content: center; }
.eyebrow.on-navy { color: var(--gold-light); }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 18px; }
.section-head p { font-size: 17px; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-ink);
  color: var(--cream);
  border-color: var(--navy-ink);
}
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(14,30,46,0.45); }
.btn-ghost {
  background: transparent;
  color: var(--navy-ink);
  border-color: var(--cream-line);
}
.btn-ghost:hover { border-color: var(--navy-ink); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost-on-navy {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 243, 239, 0.28);
}
.btn-ghost-on-navy:hover { border-color: var(--gold); color: var(--gold-light); }
.btn svg { width: 14px; height: 14px; }

/* ============================================
   Nav
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(246, 246, 243, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--cream-line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 34px; height: 34px; }
.brand-word {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--navy-ink);
}
.brand-word b { color: var(--gold); font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-ink);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { width: 22px; height: 1.5px; background: var(--navy-ink); display: block; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream-warm);
  z-index: 99;
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.35s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu ul a {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-line);
}
.mobile-menu > .btn { margin-top: 30px; width: 100%; justify-content: center; }
body.menu-open { overflow: hidden; }

/* ============================================
   Hero
   ============================================ */
.hero {
  padding-top: calc(var(--section-pad) + 64px);
  padding-bottom: calc(var(--section-pad) - 90px);
  overflow: hidden;
}
#problems { padding-top: calc(var(--section-pad) - 60px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-lede {
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero-note {
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0.02em;
}
.hero-note b { color: var(--navy-ink); }

.hero-card {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 18px;
  padding: 44px 40px;
  color: var(--cream-on-navy);
  box-shadow: 0 40px 80px -30px rgba(14, 30, 46, 0.55);
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(156, 125, 63, 0.25);
  border-radius: 12px;
  pointer-events: none;
}
.hero-quote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 0;
}
.hero-steps {
  display: flex;
  gap: 30px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(243, 243, 239, 0.14);
}
.hero-steps div { flex: 1; }
.hero-steps .num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}
.hero-steps .lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-on-navy);
}

/* ============================================
   Problem section
   ============================================ */
.card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.problem-card {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.problem-card .mark {
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 20px;
}
.problem-card h3 { font-size: 19px; margin-bottom: 10px; }
.problem-card p { font-size: 15px; }

.section-alt { background: var(--cream); }
.section-navy {
  background: var(--navy);
  color: var(--cream-on-navy);
}
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--cream-on-navy); }
.section-navy p { color: var(--slate-on-navy); }

/* ============================================
   Problems we solve
   ============================================ */
.symptom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--cream-line);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.symptom-item {
  background: var(--cream);
  padding: 20px 24px;
  font-size: 15px;
  color: var(--navy-ink);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.symptom-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

/* ============================================
   Keep / Improve / Connect / Replace / Build
   ============================================ */
.decisions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--cream-line);
  border-left: 1px solid var(--cream-line);
}
.decision-item {
  padding: 32px 22px;
  border-right: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
}
.decision-item .dword {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.decision-item p { font-size: 14px; margin: 0; }
.decisions-principle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--navy-ink);
  text-align: center;
  max-width: 620px;
  margin: 40px auto 0;
}

/* ============================================
   Commercial value
   ============================================ */
.value-loop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 56px;
}
.loop-step {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 10px 16px;
  border: 1px solid rgba(243, 243, 239, 0.24);
  border-radius: 999px;
  color: var(--cream-on-navy);
  white-space: nowrap;
}
.loop-step.decision { background: rgba(243, 243, 239, 0.06); }
.loop-step.value {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.loop-arrow { color: var(--gold-light); font-size: 14px; }
.value-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(243, 243, 239, 0.12);
  border: 1px solid rgba(243, 243, 239, 0.12);
}
.value-tile {
  background: var(--navy-2);
  padding: 26px 20px;
  text-align: center;
}
.value-tile span {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream-on-navy);
}

/* ============================================
   Cross-functional examples
   ============================================ */
.example-list { display: flex; flex-direction: column; }
.example-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--cream-line);
}
.example-row:last-child { border-bottom: 1px solid var(--cream-line); }
.example-row .ex-domain {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 2px;
}
.example-row p { font-size: 15px; margin: 0; color: var(--navy-ink); }

.text-link { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.text-link:hover { color: var(--navy-ink); }

/* ============================================
   Careers
   ============================================ */
.careers-lead { font-size: 17px; color: var(--slate); max-width: 640px; }
.careers-tags-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 30px;
}
.talent-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; }
.talent-tags span {
  font-size: 12.5px;
  color: var(--navy-ink);
  background: rgba(14, 30, 46, 0.05);
  border: 1px solid var(--cream-line);
  padding: 7px 14px;
  border-radius: 999px;
}
.careers-cta { font-size: 15px; margin-top: 30px; }

/* ============================================
   Capabilities (services)
   ============================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  padding: 34px 32px;
  border-radius: var(--radius);
}
.pillar-wide { grid-column: 1 / -1; }
.pillar-wide .pillar-desc { max-width: 640px; }
.pillar .pillar-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.pillar h3 { font-size: 21px; margin-bottom: 6px; }
.pillar .pillar-map {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.pillar p.pillar-desc { font-size: 15px; margin-bottom: 18px; }
.pillar ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.pillar li {
  font-size: 12.5px;
  color: var(--navy-ink);
  background: rgba(14, 30, 46, 0.05);
  border: 1px solid var(--cream-line);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ============================================
   Process timeline
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 28px;
}
.process-step { padding-top: 4px; }
.process-step .idx {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold-light);
  margin-bottom: 10px;
  display: block;
}
.process-step h3 { font-size: 18px; margin-bottom: 8px; color: var(--cream-on-navy); }
.process-step p { font-size: 14.5px; }

/* ============================================
   About / Founder
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.founder-photo {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--cream-line);
  position: relative;
}
.founder-photo img { width: 100%; aspect-ratio: 1/1.08; object-fit: cover; }

.section-media-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 48px;
}
.section-media-grid .section-head { margin-bottom: 0; }
.section-media-text { min-width: 0; }
.section-media-text .careers-lead { margin-top: 30px; }
.section-photo-frame {
  background: rgba(156, 125, 63, 0.08);
  border: 1px solid var(--gold-dim);
  border-radius: 14px;
  padding: 16px;
}
.section-photo {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--cream-line);
}
.section-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.section-photo-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13.5px;
  color: var(--navy-ink);
  opacity: 0.75;
}
.section-photo-caption::before,
.section-photo-caption::after {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--gold-dim);
  flex-shrink: 0;
}
.founder-name {
  margin-top: 22px;
  font-size: 20px;
}
.founder-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.about-copy h2 { font-size: clamp(28px, 3vw, 36px); margin-bottom: 20px; }
.about-copy p { font-size: 16px; margin-bottom: 18px; }
.about-copy .lede { font-size: 18px; color: var(--navy-ink); font-family: var(--font-display); font-style: italic; margin-bottom: 24px; }

.intake-note {
  margin-top: 34px;
  padding: 22px 26px;
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-left: 3px solid var(--gold);
  font-size: 14.5px;
  color: var(--navy-ink);
}
.intake-note b { color: var(--navy-ink); }

/* Inside the practice */
.studio-list { margin-top: 40px; }
.studio-item {
  padding: 22px 0;
  border-top: 1px solid var(--cream-line);
  max-width: 640px;
}
.studio-item h3 { font-size: 17px; margin-bottom: 6px; }
.studio-item p { font-size: 14.5px; margin: 0; }

/* ============================================
   Insights
   ============================================ */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.insight-card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.insight-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.insight-card h3 { font-size: 19px; margin-bottom: 10px; }
.insight-card p { font-size: 14.5px; margin-bottom: 20px; flex-grow: 1; }
.insight-link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}
.insight-card:hover .insight-link { color: var(--navy-ink); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 780px; }
.faq-item { padding: 24px 0; border-top: 1px solid var(--cream-line); }
.faq-item:last-child { border-bottom: 1px solid var(--cream-line); }
.faq-item h3 { font-size: 17px; margin-bottom: 8px; }
.faq-item p { font-size: 15px; margin: 0; }

/* ============================================
   Article pages (Insights)
   ============================================ */
.breadcrumb { font-size: 12.5px; color: var(--slate); margin-bottom: 30px; }
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--navy-ink); }

.article-hero { padding-top: calc(var(--section-pad) + 56px); padding-bottom: 0; }
.article-header { max-width: 760px; }
.article-title { font-size: clamp(32px, 4.4vw, 50px); margin-bottom: 20px; }
.article-dek { font-size: 19px; color: var(--slate); margin-bottom: 32px; max-width: 640px; }
.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
  font-size: 13px;
  color: var(--slate);
}
.article-byline img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.article-byline b { color: var(--navy-ink); }
.article-byline .dot { opacity: 0.5; }

.article-body { max-width: 720px; margin: 0 auto; padding: 56px 0 0; }
.article-body h2 { font-size: clamp(24px, 2.6vw, 30px); margin: 48px 0 16px; }
.article-body > h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 19px; margin: 32px 0 12px; }
.article-body p { font-size: 16.5px; margin-bottom: 20px; line-height: 1.7; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; }
.article-body li { font-size: 16.5px; color: var(--slate); margin-bottom: 8px; line-height: 1.6; }
.article-body strong { color: var(--navy-ink); }
.article-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--navy-ink); }
.article-body blockquote {
  margin: 36px 0;
  padding: 2px 0 2px 24px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--navy-ink);
}

.article-cta {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 38px 36px;
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.article-cta h3 { font-size: 20px; margin-bottom: 10px; }
.article-cta p { font-size: 15px; margin-bottom: 22px; }

.article-more { background: var(--cream); }
.insights-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }

@media (max-width: 700px) {
  .insights-grid.cols-2 { grid-template-columns: 1fr; }
}

/* ============================================
   Diagnosis landing page
   ============================================ */
.landing-header { position: static; background: transparent; backdrop-filter: none; border: none; }
.landing-header .nav-inner { padding: 28px 32px 0; justify-content: flex-start; }

.diagnosis-hero { padding-top: calc(var(--section-pad) - 20px); padding-bottom: var(--section-pad); }

.diagnosis-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.diagnosis-includes { max-width: 560px; margin-top: 36px; }
.diagnosis-includes li { font-size: 15.5px; color: var(--slate); margin-bottom: 10px; }
.diagnosis-includes li b { color: var(--navy-ink); }

.diagnosis-form-card {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 30px 60px -35px rgba(14, 30, 46, 0.25);
}
.diagnosis-form-card h2 { font-size: 22px; margin: 10px 0 10px; }
.diagnosis-form-card > p { font-size: 15px; margin-bottom: 26px; }
.diagnosis-form { max-width: none; }
.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-ink); margin-bottom: 8px; }
.form-row .hint { font-size: 12.5px; color: var(--slate); font-weight: 400; }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy-ink);
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: 1.5px solid var(--gold); border-color: var(--gold); }
.diagnosis-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-fine { font-size: 12.5px; color: var(--slate); margin-top: 14px; }
.hp-field { position: absolute; left: -9999px; }

/* ============================================
   Work samples
   ============================================ */
.work-list { max-width: 780px; }
.work-item { padding: 36px 0; border-top: 1px solid var(--cream-line); }
.work-item:last-child { border-bottom: 1px solid var(--cream-line); }
.work-category {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.work-item h3 { font-size: 20px; margin-bottom: 16px; }
.work-item p { font-size: 15.5px; line-height: 1.65; margin-bottom: 14px; }
.work-item p strong { color: var(--navy-ink); }
.work-item p:last-of-type { margin-bottom: 0; }
.work-tools { font-size: 12.5px; color: var(--slate); opacity: 0.85; font-style: italic; }

/* ============================================
   Diagnosis-as-offer callout
   ============================================ */
.cta-diagnosis-note {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 15px;
  color: var(--slate-on-navy);
}

/* ============================================
   Final CTA
   ============================================ */
.cta-section {
  text-align: center;
}
.cta-section h2 { font-size: clamp(30px, 4vw, 46px); max-width: 720px; margin: 0 auto 20px; }
.cta-section p { font-size: 17px; max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.cta-fine { font-size: 13px; color: var(--slate-on-navy); }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--navy);
  color: var(--cream-on-navy);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(243, 243, 239, 0.12);
}
.footer-brand .brand-word { color: var(--cream-on-navy); }
.footer-brand p { max-width: 280px; margin-top: 16px; font-size: 14px; color: var(--slate-on-navy); }
.footer-col h3 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col p { font-size: 14px; color: var(--slate-on-navy); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12.5px;
  color: var(--slate-on-navy);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   Reveal animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .btn-primary { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .diagnosis-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .card-row { grid-template-columns: 1fr; }
  .symptom-grid { grid-template-columns: 1fr; }
  .decisions-grid { grid-template-columns: 1fr 1fr; }
  .value-tiles { grid-template-columns: 1fr 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 340px; }
  .section-media-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-photo-frame { order: -1; max-width: 420px; }
  .insights-grid { grid-template-columns: 1fr; }
  .example-row { grid-template-columns: 1fr; gap: 6px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 22px; }
  .nav-inner { padding: 16px 22px; }
  .hero { padding-top: 120px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
  .decisions-grid { grid-template-columns: 1fr; }
  .decision-item { border-right: none; }
  .value-loop { justify-content: flex-start; }
  .value-tiles { grid-template-columns: 1fr; }
  .studio-item { grid-template-columns: 1fr; gap: 8px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
