/* ========================================================================
   Necessary Choices — Roberta Rachel Omin, LCSW
   Design system: warm plum + cream, contemplative, sophisticated
   ======================================================================== */

:root {
  --plum: #6E2A4B;
  --plum-dark: #481B30;
  --plum-deep: #34101F;
  --plum-light: #9E4E78;
  --plum-soft: #D3A6BE;

  --cream: #FBF7F0;
  --cream-warm: #F5EDDF;
  --cream-deeper: #EFE5D2;

  --peach: #E8C9B8;
  --peach-soft: #F4E1D5;
  --gold: #C9A36A;

  /* Sunset sky — pure CSS gradient used as the fallback layer BENEATH the
     header.jpg sunset photo, so the sky never shows a hard edge or banding
     (the photo stays the hero; this just guarantees a seamless backdrop) */
  --sunset-sky: linear-gradient(180deg,
      #EAB4D0 0%,
      #EFB1C4 20%,
      #F4B6A6 46%,
      #F8C89B 68%,
      #F3BCB0 86%,
      #ECC9C6 100%);

  --ink: #2D1B2E;
  --ink-soft: #5C4A5A;
  --ink-mute: #8A7A88;
  --line: #E5DBC9;

  --white: #FFFFFF;

  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Caveat", "Dancing Script", cursive;

  --container: 1240px;
  --container-narrow: 920px;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-arch: 220px 220px 28px 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 40px -20px rgba(52, 16, 31, 0.18);
  --shadow-card: 0 20px 60px -30px rgba(52, 16, 31, 0.22);
  --shadow-deep: 0 30px 80px -30px rgba(52, 16, 31, 0.4);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Typography ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--plum-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 560px;
}

.script {
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--plum);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */

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

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

section { padding: 100px 0; position: relative; }

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .container, .container-narrow { padding: 0 22px; }
}

/* ---------- Marble background utility ---------- */

.bg-watercolor {
  background:
    url('marble.svg') center / cover no-repeat,
    var(--cream);
}

.bg-watercolor-soft {
  background:
    url('marble-soft.svg') center / cover no-repeat,
    var(--cream);
}

/* Home hero — sunset sky with a cream scrim (heavy left for readable headline) */
.hero-sky {
  background:
    linear-gradient(100deg, var(--cream) 0%, rgba(251,247,240,0.94) 26%, rgba(251,247,240,0.5) 54%, rgba(251,247,240,0.08) 100%),
    url('header.jpg') center center / cover no-repeat,
    var(--sunset-sky),
    var(--cream);
}
@media (max-width: 920px) {
  /* on stacked mobile, veil the whole sky more so text stays crisp full-width */
  .hero-sky {
    background:
      linear-gradient(180deg, rgba(251,247,240,0.88) 0%, rgba(251,247,240,0.7) 40%, rgba(251,247,240,0.45) 100%),
      url('header.jpg') center center / cover no-repeat,
      var(--sunset-sky),
      var(--cream);
  }
}

/* Treatment 2 — soft veil (uniform pastel haze, legible anywhere) */
.hero-sky-veil {
  background:
    linear-gradient(0deg, rgba(251,247,240,0.62), rgba(251,247,240,0.54)),
    url('header.jpg') center center / cover no-repeat,
    var(--sunset-sky),
    var(--cream);
}

/* Treatment 3 — dawn band (sky daybreak up top, settling to cream; cream kept at
   top too so short centered heroes stay readable) */
.hero-sky-dawn {
  background:
    linear-gradient(180deg, rgba(251,247,240,0.42) 0%, rgba(251,247,240,0.5) 38%, rgba(251,247,240,0.85) 78%, var(--cream) 100%),
    url('header.jpg') top center / cover no-repeat,
    var(--sunset-sky),
    var(--cream);
}
@media (max-width: 920px) {
  .hero-sky-dawn {
    background:
      linear-gradient(180deg, rgba(251,247,240,0.6) 0%, rgba(251,247,240,0.66) 45%, rgba(251,247,240,0.9) 100%),
      url('header.jpg') top center / cover no-repeat,
      var(--sunset-sky),
      var(--cream);
  }
}

.bg-cream-warm { background: var(--cream-warm); }
.bg-plum { background: var(--plum); color: var(--cream-warm); }
.bg-plum h1, .bg-plum h2, .bg-plum h3, .bg-plum h4 { color: var(--white); }
.bg-plum .eyebrow { color: var(--peach); }
.bg-plum .lead { color: rgba(255, 255, 255, 0.85); }

/* gold-dust speckle texture overlay */
.speckle::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 25%, rgba(201, 163, 106, 0.5) 0.5px, transparent 1px),
    radial-gradient(circle at 65% 18%, rgba(201, 163, 106, 0.4) 0.5px, transparent 1px),
    radial-gradient(circle at 35% 80%, rgba(201, 163, 106, 0.5) 0.5px, transparent 1px),
    radial-gradient(circle at 82% 65%, rgba(201, 163, 106, 0.4) 0.5px, transparent 1px),
    radial-gradient(circle at 22% 50%, rgba(201, 163, 106, 0.35) 0.5px, transparent 1px),
    radial-gradient(circle at 92% 90%, rgba(201, 163, 106, 0.4) 0.5px, transparent 1px),
    radial-gradient(circle at 8% 8%, rgba(201, 163, 106, 0.4) 0.5px, transparent 1px),
    radial-gradient(circle at 48% 35%, rgba(201, 163, 106, 0.3) 0.5px, transparent 1px);
  background-size: 220px 220px;
  pointer-events: none;
  opacity: 0.9;
}
.speckle { position: relative; }
.speckle > * { position: relative; z-index: 1; }

/* ---------- Navbar ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(110, 42, 75, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  color: var(--plum-dark);
}

.brand-mark {
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-sub {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.2s var(--ease);
  position: relative;
}

.nav-links a:hover { color: var(--plum); }
.nav-links a.active { color: var(--plum-dark); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.show {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.show a { padding: 14px 32px; }
  .nav-toggle { display: block !important; }
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--plum-dark);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--plum);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-secondary {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn-secondary:hover {
  background: var(--plum);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--plum-dark);
}
.btn-ghost:hover { background: var(--white); transform: translateY(-2px); }

.btn-light {
  background: var(--white);
  color: var(--plum);
}
.btn-light:hover { background: var(--cream); }

.btn .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.85;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
}

/* ---------- Hero ---------- */

.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-headline { margin-bottom: 1.5rem; }
.hero-headline em { font-style: italic; color: var(--plum); font-weight: 400; }

.hero-media {
  position: relative;
}

.hero-cover {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  aspect-ratio: 3 / 4;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 60%, var(--plum-deep) 100%);
  box-shadow: var(--shadow-deep);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 60px 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(232, 201, 184, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(201, 163, 106, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cover-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--peach);
  font-weight: 600;
  margin-bottom: auto;
}

.cover-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.cover-author {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--peach-soft);
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(232, 201, 184, 0.3);
}

.hero-meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.hero-meta strong { color: var(--plum-dark); font-weight: 600; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-cover { margin: 0 auto; }
}

/* ---------- Two-column section (about) ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.image-right { grid-template-columns: 1fr 1fr; }

.portrait {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--peach-soft) 0%, var(--cream-warm) 100%);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--ink-mute);
  font-size: 0.85rem;
  padding-bottom: 24px;
}

.portrait[style*="url"] {
  background-size: cover;
  background-position: center;
}

.portrait-caption {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--ink-mute);
  text-align: center;
  padding: 0 12px;
}

.portrait-caption .script {
  display: block;
  font-size: 1.6rem;
  color: var(--plum);
  margin-top: 6px;
}

@media (max-width: 920px) {
  .two-col { grid-template-columns: 1fr; gap: 50px; }
  .portrait { margin: 0 auto; }
}

/* ---------- 4-Pillar Cards ---------- */

.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-head .lead { margin: 1rem auto 0; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid rgba(110, 42, 75, 0.06);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--plum);
}

.pillar-card h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
  line-height: 1.15;
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 18px; }
  .pillar-card { padding: 32px 24px; }
}

/* responsive column helpers — collapse on small screens (replaces inline grids
   that could not shrink below their content and overflowed on phones) */
.pillar-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.pillar-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.flex-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.flex-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) {
  .pillar-grid.cols-3, .flex-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pillar-grid.cols-2,
  .pillar-grid.cols-3,
  .flex-grid-2,
  .flex-grid-3 { grid-template-columns: 1fr; }
}

/* mobile hero polish — tighter padding, smaller cover/portrait so heroes
   are not excessively tall on phones */
@media (max-width: 600px) {
  .hero { padding: 44px 0 52px; }
  .hero-grid { gap: 36px; }
  /* shrink the book-cover + portrait ovals so heroes aren't excessively tall
     on a phone (inline max-width:460px on the elements needs overriding) */
  .hero-cover { max-width: 300px !important; padding: 70px 36px 44px; }
  .portrait { max-width: 280px !important; }
  /* let long buttons wrap instead of clipping out of their cards on phones */
  .btn { white-space: normal; }
}

/* ---------- "Who this is for" / list grid ---------- */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
  max-width: 920px;
  margin: 0 auto;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: var(--ink);
}

.audience-item:last-child { border-bottom: none; }

.audience-item .check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}

@media (max-width: 720px) {
  .audience-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Outcomes block (plum panel) ---------- */

.panel-plum {
  background: var(--plum);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

.panel-plum::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 201, 184, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.panel-plum h2 { color: var(--white); margin-bottom: 12px; }

.panel-plum .eyebrow { color: var(--peach); }

.numbered-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
  margin-top: 48px;
  max-width: 720px;
}

.numbered-item { position: relative; }

.numbered-item .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 14px;
}

.numbered-item h4 {
  color: var(--white);
  margin-bottom: 6px;
  font-size: 1.2rem;
  font-weight: 500;
}

.numbered-item p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .panel-plum { padding: 50px 30px; }
  .numbered-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Reflective questions ---------- */

.questions {
  max-width: 760px;
  margin: 0 auto;
}

.question {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.question:last-child { border-bottom: none; }

.question .q-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--plum);
  flex-shrink: 0;
  width: 44px;
}

.question p {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--plum-dark);
  line-height: 1.35;
  font-weight: 500;
}

/* ---------- Quote block ---------- */

.pull-quote {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0;
}

.pull-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: var(--plum-dark);
}

.pull-quote .attribution {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 20px;
  display: block;
}

.pull-quote .ornament {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

/* ---------- Quote band (pampas grass behind a reflective quote) ---------- */
.quote-band {
  position: relative;
  width: 100%;
  min-height: clamp(190px, 24vw, 260px);
  padding: 52px 32px;
  background: url('pompus-web.webp') center 42% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(52,16,31,0.38) 0%, rgba(52,16,31,0.30) 45%, rgba(52,16,31,0.58) 100%);
}
.quote-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}
.quote-band .ornament {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 30px;
  opacity: 0.9;
}
.quote-band p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  line-height: 1.32;
  text-shadow: 0 2px 30px rgba(52,16,31,0.45);
}
.quote-band .attribution {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-top: 26px;
}

/* ---------- Booking / Interest list form ---------- */

.book-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.book-form-image {
  background:
    linear-gradient(135deg, var(--peach-soft) 0%, var(--cream-warm) 100%);
  min-height: 480px;
  position: relative;
}

.book-form-panel {
  background: var(--plum);
  color: var(--white);
  padding: 70px 56px;
}

.book-form-panel .eyebrow { color: var(--peach); }
.book-form-panel h2 { color: var(--white); margin-bottom: 10px; }
.book-form-panel .lead { color: rgba(255, 255, 255, 0.8); max-width: none; }

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  width: 100%;
  padding: 16px 22px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-pill);
  color: var(--white);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease);
}

.form-fields textarea {
  border-radius: var(--radius);
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}

.form-fields input::placeholder,
.form-fields textarea::placeholder { color: rgba(255, 255, 255, 0.6); }

.form-fields input:focus,
.form-fields select:focus,
.form-fields textarea:focus {
  outline: none;
  border-color: var(--peach);
}

.form-fields button {
  margin-top: 8px;
  padding: 18px;
  background: var(--white);
  color: var(--plum);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease);
}

.form-fields button:hover { background: var(--cream); }

@media (max-width: 860px) {
  .book-form-grid { grid-template-columns: 1fr; }
  .book-form-image { min-height: 260px; }
  .book-form-panel { padding: 50px 32px; }
}

/* ---------- Final CTA strip ---------- */

.cta-strip {
  background: var(--plum);
  color: var(--white);
  padding: 70px 0;
}

.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 4px;
}

.cta-strip .lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .cta-strip-inner { grid-template-columns: 1fr; text-align: left; padding: 0 22px; }
}

/* ---------- Footer ---------- */

.footer {
  background: var(--plum-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-brand h3 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col a, .footer-col p {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  margin-bottom: 8px;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: var(--peach); }

.footer-base {
  max-width: var(--container);
  margin: 50px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 22px; }
  .footer-base { padding: 24px 22px 0; }
}

/* ---------- Featured-in strip ---------- */

.featured-in {
  padding: 60px 0 40px;
  text-align: center;
}

.featured-in .label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}

.featured-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0.7;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* ---------- Article cards ---------- */

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid rgba(110, 42, 75, 0.06);
  text-decoration: none;
  color: inherit;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.article-card .article-meta {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
  font-weight: 600;
}

.article-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--plum-dark);
  line-height: 1.2;
}

.article-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}

.article-card .article-link {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  section[class*="bg-cream-warm"] .container > div[style*="grid-template-columns: repeat(2"] {
    grid-template-columns: 1fr !important;
  }
}

/* ---------- Teaser cards (for slimmer index) ---------- */

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.teaser-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid rgba(110, 42, 75, 0.06);
  text-decoration: none;
  color: inherit;
  min-height: 280px;
}

.teaser-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.teaser-card .teaser-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 14px;
  font-weight: 600;
}

.teaser-card h3 {
  font-size: 1.65rem;
  margin-bottom: 14px;
  line-height: 1.15;
}

.teaser-card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 20px;
}

.teaser-card .teaser-link {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.teaser-card:hover .teaser-link { color: var(--plum-dark); }

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

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Anchor offset for sticky nav ---------- */

section[id] {
  scroll-margin-top: 80px;
}
