/* ============================================================
   CALI BONE BUILDERS — v3 Stylesheet
   California Open, Erewhon-inspired, photo-led
   ============================================================ */

:root {
  /* Palette — light, airy, sun-washed */
  --white:        #FFFFFF;
  --paper:        #FCFAF6;    /* primary background */
  --bone:         #F5F0E6;    /* alt section */
  --cream:        #EAE3D2;    /* warmer alt */
  --sage:         #8A9C7F;    /* secondary accent (refined, not heavy) */
  --sage-soft:    #C5D0B8;
  --clay:         #C26B47;    /* terracotta — primary accent / CTA */
  --clay-deep:    #9B4F30;
  --clay-soft:    #E8C4A8;
  --ink:          #1F1B16;    /* near-black, warm */
  --ink-soft:     #4A4239;
  --ink-mid:      #6B6358;
  --rule:         #E5DDC9;    /* hairline */
  --gold:         #B89968;

  /* Type */
  --font-display: 'Cormorant', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-ui:      'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;

  /* Rhythm */
  --pad-section:  clamp(80px, 11vw, 160px);
  --pad-x:        clamp(20px, 5vw, 80px);
  --maxw:         1440px;
  --maxw-content: 1240px;
  --maxw-narrow:  920px;
  --maxw-text:    720px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--clay-soft); color: var(--ink); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--clay); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
}
h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}
h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: -0.015em;
}
h4 {
  font-size: 0.74rem;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--clay);
  font-style: normal;
}

.italic-accent {
  font-style: italic;
  color: var(--clay);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.8rem;
  position: relative;
  padding-left: 0;
}

.subhead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  color: var(--ink-soft);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1.2rem;
  max-width: 60ch;
  color: var(--ink-soft);
  font-weight: 400;
}
p.lead {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: -0.005em;
}

strong { color: var(--ink); font-weight: 600; }
em { color: var(--clay); font-style: italic; }

/* Lists */
ul.list-clean { list-style: none; max-width: 58ch; }
ul.list-clean li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
ul.list-clean li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 16px; height: 1px;
  background: var(--clay);
}
ul.list-clean li strong { color: var(--ink); }

/* ---------- Layout ---------- */
.container { max-width: var(--maxw-content); margin: 0 auto; padding: 0 var(--pad-x); }
.container--wide { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.container--narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 var(--pad-x); }
.container--text { max-width: var(--maxw-text); margin: 0 auto; padding: 0 var(--pad-x); }

.section { padding: var(--pad-section) 0; position: relative; }
.section--paper { background: var(--paper); }
.section--bone { background: var(--bone); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}
.grid-2--center { align-items: center; }
.grid-2--narrow { gap: clamp(32px, 4vw, 64px); }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 4vw, 64px);
}

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 56px; }
}

.divider-rule {
  width: 56px; height: 1px;
  background: var(--clay);
  border: 0;
  margin: 2rem 0;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 250, 246, 0.85);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid rgba(229, 221, 201, 0.6);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__brand-mark {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-text small {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 5px;
}
.nav__links {
  display: flex;
  gap: 44px;
  align-items: center;
}
.nav__links a {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color .25s ease;
}
.nav__links a:hover { color: var(--clay); }
.nav__links a.active { color: var(--ink); }
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--clay);
  transition: width .35s cubic-bezier(.2,.7,.3,1);
}
.nav__links a:not(.btn):hover::after,
.nav__links a.active::after { width: 100%; }

.nav__phone {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--ink);
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__inner { padding: 16px 20px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 18px 40px;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.7,.3,1);
  text-align: center;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary {
  background: var(--clay);
  color: #FFFFFF !important;
  border-color: var(--clay);
}
.btn--primary:hover {
  background: var(--clay-deep);
  border-color: var(--clay-deep);
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px -14px rgba(155, 79, 48, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--ghost-light {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost-light:hover {
  background: #FFFFFF;
  color: var(--ink);
  border-color: #FFFFFF;
}
.btn--small {
  padding: 12px 22px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}
.btn--text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  color: var(--clay);
  border: none;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: gap .3s ease;
}
.btn--text::after {
  content: '→';
  transition: transform .3s ease;
  font-size: 1.1em;
}
.btn--text:hover { color: var(--clay-deep); gap: 16px; }
.btn--text:hover::after { transform: translateX(4px); }

/* ============================================================
   FULL-BLEED HERO — California Open
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  max-height: 920px;
  overflow: hidden;
  background: var(--bone);
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__image::after {
  /* Subtle dark gradient for text legibility */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 27, 22, 0.05) 0%,
    rgba(31, 27, 22, 0.15) 40%,
    rgba(31, 27, 22, 0.65) 100%
  );
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 8vh, 120px);
  color: #FFFFFF;
}
.hero__content .eyebrow {
  color: #FFFFFF;
  opacity: 0.9;
  margin-bottom: 1.4rem;
}
.hero h1 {
  color: #FFFFFF;
  max-width: 16ch;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero h1 .italic-accent { color: var(--clay-soft); }
.hero .subhead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 38ch;
  margin-bottom: 2.4rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero loaded state (image fades in) */
.hero__image img {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__image img.loaded,
.hero__image img[src] { opacity: 1; }

@media (max-width: 700px) {
  .hero { height: 88vh; min-height: 600px; }
}

/* ============================================================
   FULL-BLEED PHOTO BAND — between sections, editorial punctuation
   ============================================================ */

.photo-band {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 720px;
  overflow: hidden;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-band--small {
  height: 50vh;
  min-height: 380px;
  max-height: 540px;
}
.photo-band__caption {
  position: absolute;
  bottom: 48px;
  left: var(--pad-x);
  right: var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  max-width: 28ch;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.photo-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 50%,
    rgba(0,0,0,0.45) 100%
  );
  pointer-events: none;
}
.photo-band__caption-wrap {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

/* ---------- Page Hero (inner pages) — lighter, image-led ---------- */
.page-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 520px;
  max-height: 680px;
  overflow: hidden;
  background: var(--bone);
}
.page-hero__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 27, 22, 0.1) 0%,
    rgba(31, 27, 22, 0.45) 100%
  );
  pointer-events: none;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(56px, 6vh, 80px);
  color: #FFFFFF;
}
.page-hero h1 {
  color: #FFFFFF;
  max-width: 18ch;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-hero .subhead {
  color: rgba(255, 255, 255, 0.95);
  max-width: 44ch;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.page-hero .eyebrow {
  color: var(--clay-soft);
}

/* ============================================================
   STAT STRIP
   ============================================================ */

.stats {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 500;
  color: var(--clay);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.8rem;
  display: block;
  font-style: italic;
}
.stat__label {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
}

@media (max-width: 800px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--rule); padding-bottom: 40px; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 40px; }
}

/* ============================================================
   FEATURE CARDS — what we do
   ============================================================ */

.feature-block {
  text-align: left;
  padding: 0;
  background: transparent;
  border: 0;
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.feature-block:hover { transform: translateY(-4px); }
.feature-block__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--clay);
  margin-bottom: 1.4rem;
  display: block;
  letter-spacing: 0;
}
.feature-block__image {
  aspect-ratio: 4 / 5;
  margin-bottom: 2rem;
  overflow: hidden;
  background: var(--bone);
}
.feature-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.feature-block:hover .feature-block__image img { transform: scale(1.04); }
.feature-block h3 {
  font-style: normal;
  color: var(--ink);
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
  margin-bottom: 0.8rem;
  letter-spacing: -0.015em;
}
.feature-block p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 38ch;
}

/* ============================================================
   PROCESS / NUMBERED STEPS
   ============================================================ */

.steps {
  counter-reset: step;
  max-width: 880px;
  margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.step:last-child { border-bottom: 0; }
.step__num {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 0.9;
  color: var(--clay);
  font-style: italic;
  letter-spacing: -0.02em;
}
.step h3 {
  font-style: normal;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--ink);
  margin-bottom: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.step p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.05rem;
  max-width: 58ch;
}

@media (max-width: 700px) {
  .step { grid-template-columns: 1fr; gap: 12px; padding: 36px 0; }
  .step__num { font-size: 3.6rem; }
}

/* ============================================================
   PULL QUOTE
   ============================================================ */

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.2;
  color: var(--ink);
  max-width: 22ch;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 auto;
}
.pull-quote-section {
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
  background: var(--bone);
}

/* ============================================================
   AUDIENCE CARDS — clean, no borders
   ============================================================ */

.audience-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px 56px;
  margin-top: 3rem;
}
.audience-card {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  border-top: 1px solid var(--clay);
  padding-top: 24px;
}
.audience-card strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.8rem;
  letter-spacing: -0.015em;
}

/* ============================================================
   BIO BLOCK
   ============================================================ */

.bio {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.bio__portrait {
  aspect-ratio: 4 / 5;
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.bio__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.bio__portrait--placeholder {
  background: linear-gradient(160deg, var(--cream), var(--bone));
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mid);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.bio__credentials {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.bio__credentials h4 {
  margin-bottom: 1.2rem;
}
.bio__credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bio__cred-tag {
  display: inline-block;
  padding: 9px 18px;
  background: var(--bone);
  border: 1px solid var(--rule);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .bio { grid-template-columns: 1fr; }
  .bio__portrait { max-width: 460px; }
}

/* ============================================================
   PHOTO GRID — editorial supporting images
   ============================================================ */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: clamp(48px, 7vw, 96px) 0;
}
.photo-grid__item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone);
}
.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.3,1);
}
.photo-grid__item:hover img { transform: scale(1.05); }

@media (max-width: 800px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid__item:nth-child(3) { grid-column: span 2; aspect-ratio: 16 / 10; }
}

/* ============================================================
   COMPARISON BLOCK
   ============================================================ */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 2.8rem;
}
.compare__col h4 {
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.compare__col--not h4 { color: var(--ink-mid); }
.compare__col--is h4 { color: var(--clay); }
.compare__col ul { list-style: none; }
.compare__col li {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.compare__col li:last-child { border-bottom: 0; }
.compare__col--not li { text-decoration: line-through; text-decoration-color: var(--ink-mid); opacity: 0.65; }
.compare__col--is li { color: var(--ink); }

@media (max-width: 700px) {
  .compare { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   CTA BAND — light, photo-led
   ============================================================ */

.cta-band {
  position: relative;
  padding: clamp(96px, 12vw, 160px) var(--pad-x);
  text-align: center;
  background: var(--bone);
  overflow: hidden;
}
.cta-band__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  z-index: 2;
}
.cta-band h2 {
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto 1.2rem;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.cta-band p {
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 auto 2.8rem;
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  font-weight: 300;
}
.cta-band__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band__phone {
  margin-top: 2.2rem;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}
.cta-band__phone strong {
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

/* CTA band with photo background variant */
.cta-band--photo {
  background: var(--ink);
  color: #FFFFFF;
}
.cta-band--photo .cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cta-band--photo .cta-band__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.cta-band--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 27, 22, 0.2), rgba(31, 27, 22, 0.7));
  z-index: 1;
}
.cta-band--photo h2 { color: #FFFFFF; }
.cta-band--photo p { color: rgba(255, 255, 255, 0.92); }
.cta-band--photo .eyebrow { color: var(--clay-soft); }
.cta-band--photo .cta-band__phone { color: rgba(255, 255, 255, 0.7); }
.cta-band--photo .cta-band__phone strong { color: #FFFFFF; }

/* ============================================================
   ARTICLE CARDS
   ============================================================ */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 5vw, 64px);
  margin-top: 4rem;
}
.article-card {
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.article-card:hover { transform: translateY(-6px); }
.article-card__image {
  aspect-ratio: 4 / 3;
  background: var(--bone);
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}
.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.3,1);
}
.article-card:hover .article-card__image img { transform: scale(1.06); }
.article-card__category {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
}
.article-card h3 {
  font-style: normal;
  font-size: clamp(1.6rem, 2.2vw, 1.9rem);
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.article-card p {
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  font-size: 1rem;
}
.article-card__meta {
  margin-top: auto;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--ink-mid);
  letter-spacing: 0.08em;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .articles-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ============================================================
   LEAD MAGNET
   ============================================================ */

.lead-magnet {
  background: var(--cream);
  padding: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lead-magnet__copy h3 {
  font-style: normal;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.lead-magnet__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-magnet input[type="email"] {
  width: 100%;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
  border-radius: 0;
}
.lead-magnet input[type="email"]:focus {
  outline: 2px solid var(--clay);
  outline-offset: -1px;
}

@media (max-width: 800px) {
  .lead-magnet { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 96px var(--pad-x) 32px;
  font-size: 0.94rem;
  font-weight: 300;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(252, 250, 246, 0.12);
}
.footer h4 {
  color: var(--clay-soft);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  margin-bottom: 1.4rem;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.footer p,
.footer a {
  color: rgba(252, 250, 246, 0.7);
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}
.footer a:hover { color: var(--clay-soft); }
.footer__col p { max-width: 36ch; }
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--clay-soft) !important;
  margin-top: 1.4rem !important;
}
.footer__bottom {
  max-width: var(--maxw);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  color: rgba(252, 250, 246, 0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__parent {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(252, 250, 246, 0.5) !important;
  margin-top: 0.8rem !important;
}

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(.2,.7,.3,1), transform 1s cubic-bezier(.2,.7,.3,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MISC
   ============================================================ */

.disclaimer {
  font-size: 0.78rem;
  color: var(--ink-mid);
  font-style: italic;
  max-width: 62ch;
  margin: 2rem 0 0;
  line-height: 1.55;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 4rem;
}
.section-intro--center {
  text-align: center;
  margin: 0 auto 4rem;
}

/* Print */
@media print {
  .nav, .footer, .hero, .cta-band, .lead-magnet, .photo-band { display: none; }
  body { background: white; color: black; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
