/* ============================================================
   PROSE FOR PATIENTS — styles.css
   Literary journal aesthetic: warm, refined, editorial
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --crimson:    #9f1239;
  --crimson-dk: #7f0d2d;
  --blush:      #fdf2f5;
  --blush-mid:  #f9e4eb;
  --ink:        #1a1412;
  --ink-soft:   #4a3f3b;
  --ink-muted:  #7a6f6b;
  --cream:      #fdf8f4;
  --warm-white: #fffcf9;
  --gold:       #c9933a;
  --gold-lt:    #f4e4c4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(26,20,18,0.07);
  --shadow-md:  0 8px 24px rgba(26,20,18,0.10);
  --shadow-lg:  0 20px 48px rgba(159,18,57,0.12);

  --max-w: 1080px;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: #fffcf9;
  color: #1a1412;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}


/* Subtle warm paper texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(249,228,235,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(201,147,58,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
}

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

/* ── Header / Nav ───────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253,248,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(159,18,57,0.12);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #9f1239;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.logo em {
  font-style: italic;
  font-weight: 400;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a3f3b;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.01em;
}
.nav-link:hover {
  color: #9f1239;
  background: #fdf2f5;
}

.chevron {
  width: 10px;
  height: 10px;
  opacity: 0.6;
  transition: transform 0.2s;
}
.dropdown:hover .chevron {
  transform: rotate(180deg);
}

.nav-cta {
  margin-left: 0.75rem;
  padding: 0.45rem 1.1rem;
  background: #9f1239;
  color: #fff !important;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s, transform 0.15s;
}
.nav-cta:hover {
  background: #7f0d2d;
  transform: translateY(-1px);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 8px;
  left: 0;
  min-width: 168px;
  background: #fffcf9;
  border: 1px solid rgba(159,18,57,0.12);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(26,20,18,0.10);
  overflow: hidden;
  z-index: 300;
}

/* Invisible bridge fills the gap so moving the mouse into the dropdown doesn't break hover */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}
.dropdown:hover .dropdown-content { display: block; }

.dropdown-content a {
  display: block;
  padding: 0.7rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #4a3f3b;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  border-left: 2px solid transparent;
}
.dropdown-content a:hover {
  background: #fdf2f5;
  color: #9f1239;
  border-left-color: #9f1239;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.18s ease;
}

.btn-primary {
  background: #9f1239;
  color: #fff;
  box-shadow: 0 4px 14px rgba(159,18,57,0.25);
}
.btn-primary:hover {
  background: #7f0d2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(159,18,57,0.3);
}

.btn-ghost {
  color: #9f1239;
  background: transparent;
  padding-left: 0;
}
.btn-ghost:hover {
  color: #7f0d2d;
  letter-spacing: 0.04em;
}

/* ── Section shared ─────────────────────────────────────── */
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9933a;
  margin-bottom: 1rem;
}
.section-label.light { color: rgba(201,147,58,0.85); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  padding: 5rem 2rem 4rem;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.hero-rule {
  width: 48px;
  height: 3px;
  background: #c9933a;
  margin: 0 auto 3.5rem 0;
  border-radius: 2px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-kicker {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9933a;
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: #1a1412;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.hero h1 em {
  font-style: italic;
  color: #9f1239;
}

.hero-body {
  font-size: 1.05rem;
  color: #4a3f3b;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Hero image side */
.hero-image-wrap {
  position: relative;
}

.hero-ornament {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #f9e4eb;
  top: -24px;
  right: -24px;
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(159,18,57,0.12);
}

.hero-pull-quote {
  position: relative;
  z-index: 2;
  margin-top: 1.4rem;
  padding: 1rem 1.2rem 1rem 1.5rem;
  background: #fffcf9;
  border-left: 3px solid #9f1239;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 8px rgba(26,20,18,0.07);
}
.hero-pull-quote .quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  line-height: 0;
  color: #9f1239;
  opacity: 0.25;
  position: absolute;
  top: 1.2rem;
  left: 0.4rem;
}
.hero-pull-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #4a3f3b;
  margin: 0;
}

/* ── What We Do ─────────────────────────────────────────── */
.what-we-do {
  padding: 6rem 2rem;
  background: #fdf8f4;
  border-top: 1px solid rgba(159,18,57,0.07);
  border-bottom: 1px solid rgba(159,18,57,0.07);
  text-align: center;
}

.what-we-do h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #1a1412;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-body {
  font-size: 1.05rem;
  color: #7a6f6b;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: left;
  position: relative;
}

/* Connector line between steps */
.steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(to right, #9f1239 0%, #c9933a 50%, #9f1239 100%);
  opacity: 0.18;
}

.step {
  background: #fffcf9;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 8px rgba(26,20,18,0.07);
  border: 1px solid rgba(159,18,57,0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(26,20,18,0.10);
}

.step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #9f1239;
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.step-divider {
  width: 28px;
  height: 2px;
  background: #c9933a;
  border-radius: 1px;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1412;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.93rem;
  color: #7a6f6b;
  line-height: 1.65;
}

/* ── Get Involved ───────────────────────────────────────── */
.get-involved {
  padding: 6rem 2rem;
  background: #9f1239;
  position: relative;
  overflow: hidden;
}

.get-involved::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(201,147,58,0.15), transparent 60%),
    radial-gradient(ellipse 40% 60% at 5% 20%, rgba(255,255,255,0.06), transparent 50%);
  pointer-events: none;
}

.get-involved-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.get-involved-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.get-involved-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 380px;
}

.get-involved-text .btn-primary {
  background: #fff;
  color: #9f1239;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.get-involved-text .btn-primary:hover {
  background: #f4e4c4;
  color: #7f0d2d;
}

/* Decorative quote column */
.get-involved-deco {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.deco-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.25);
}

.get-involved-deco blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-align: center;
  line-height: 1.5;
  max-width: 320px;
  letter-spacing: 0.01em;
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: #1a1412;
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.4rem;
}
.footer-logo em {
  font-style: italic;
  font-weight: 400;
}

.footer-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ── Page Header (interior pages) ──────────────────────── */
.page-header {
  padding: 4.5rem 2rem 3.5rem;
  max-width: 1080px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(159,18,57,0.08);
  margin-bottom: 4rem;
}

.page-header .section-label { margin-bottom: 0.75rem; }

.page-header h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: #1a1412;
  letter-spacing: -0.01em;
}

.page-header h1 em {
  font-style: italic;
  color: #9f1239;
}

/* ── Prose content layout ───────────────────────────────── */
.prose-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.prose-section {
  margin-bottom: 3.5rem;
}

.prose-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1412;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(159,18,57,0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.prose-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.4rem;
  background: #9f1239;
  border-radius: 2px;
  flex-shrink: 0;
}

.prose-section p {
  font-size: 1.05rem;
  color: #4a3f3b;
  line-height: 1.8;
}

/* Pull quote */
.pull-quote {
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  background: #fdf2f5;
  border-left: 3px solid #9f1239;
  border-radius: 0 12px 12px 0;
}

.pull-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  color: #9f1239;
  line-height: 1.45;
  margin: 0;
}

/* Values list */
.values-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: #4a3f3b;
  line-height: 1.6;
}

.values-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9933a;
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.values-list li strong {
  color: #1a1412;
  font-weight: 500;
}

/* Image grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 3rem 0;
}

.image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(26,20,18,0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.image-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,20,18,0.10);
}

/* CTA band (reusable) */
.cta-band {
  padding: 5rem 2rem;
  background: #9f1239;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,147,58,0.15), transparent 60%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-band .btn-primary {
  background: #fff;
  color: #9f1239;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cta-band .btn-primary:hover {
  background: #f4e4c4;
  color: #7f0d2d;
}

/* ── Blog Page ──────────────────────────────────────────── */
.blog-intro {
  max-width: 640px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.blog-intro p {
  font-size: 1.05rem;
  color: #4a3f3b;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Article/post content — mirrors page-header container exactly */
.blog-post-body {
  max-width: 1080px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
  text-align: left;
}

.blog-post-body > * {
  max-width: 680px;
  margin-right: auto;
}

.blog-post-body p {
  font-size: 1.05rem;
  color: #4a3f3b;
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.blog-post-body .poem {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 2;
  color: #1a1412;
  border-left: 3px solid #9f1239;
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.blog-post-body .reflection-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9933a;
  margin-bottom: 1rem;
  display: block;
}

.blog-post-body .reflection {
  background: #fdf8f4;
  border-radius: 12px;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(159,18,57,0.07);
}

.blog-post-body .reflection p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.blog-post-body .reflection p:last-child {
  margin-bottom: 0;
}

.blog-post-body ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-post-body ul li {
  font-size: 0.97rem;
  color: #4a3f3b;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.65;
}

.blog-post-body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #c9933a;
}

/* Featured post — large card at top */
.blog-featured {
  max-width: 1080px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(159,18,57,0.12);
  background: #fffcf9;
  border: 1px solid rgba(159,18,57,0.08);
}

.blog-featured-image {
  background: linear-gradient(135deg, #f9e4eb 0%, #f4e4c4 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-featured-image::after {
  content: '"';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18rem;
  color: rgba(159,18,57,0.08);
  position: absolute;
  top: -2rem;
  left: 1rem;
  line-height: 1;
  pointer-events: none;
}

.blog-featured-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: #9f1239;
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  z-index: 1;
}

.blog-featured-body {
  padding: 2.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-meta {
  font-size: 0.78rem;
  color: #c9933a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.blog-featured-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1412;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.blog-featured-body h2 em {
  font-style: italic;
  color: #9f1239;
}

.blog-featured-body p {
  font-size: 0.97rem;
  color: #4a3f3b;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Post grid */
.blog-section-label {
  max-width: 1080px;
  margin: 0 auto 1.5rem;
  padding: 0 2rem;
}

.blog-grid {
  max-width: 1080px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  background: #fffcf9;
  border: 1px solid rgba(159,18,57,0.07);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,20,18,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(26,20,18,0.10);
}

.blog-card-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem;
  color: rgba(159,18,57,0.12);
  position: relative;
  overflow: hidden;
}

.blog-card-thumb.blush  { background: linear-gradient(135deg, #fdf2f5, #f9e4eb); }
.blog-card-thumb.cream  { background: linear-gradient(135deg, #fdf8f4, #f4e4c4); }
.blog-card-thumb.ink    { background: linear-gradient(135deg, #e8e2df, #d4ccc8); }

.blog-card-type {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.85);
  color: #9f1239;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
}

.blog-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 0.72rem;
  color: #7a6f6b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.blog-card-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1412;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: #7a6f6b;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.blog-card-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: #9f1239;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: letter-spacing 0.18s;
}

.blog-card-link:hover {
  letter-spacing: 0.05em;
}

/* Interview / schedule section */
.blog-interview {
  background: #fdf8f4;
  border-top: 1px solid rgba(159,18,57,0.07);
  border-bottom: 1px solid rgba(159,18,57,0.07);
  padding: 6rem 2rem;
}

.blog-interview-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.blog-interview-text .section-label { margin-bottom: 0.75rem; }

.blog-interview-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 600;
  color: #1a1412;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-interview-text h2 em {
  font-style: italic;
  color: #9f1239;
}

.blog-interview-text p {
  font-size: 1rem;
  color: #4a3f3b;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.blog-interview-form {
  background: #fffcf9;
  border: 1px solid rgba(159,18,57,0.08);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(26,20,18,0.07);
}

.blog-interview-form h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1412;
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(159,18,57,0.08);
}

@media (max-width: 860px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-image { min-height: 200px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-interview-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

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

/* ── Newsletter Page ────────────────────────────────────── */
.newsletter-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.newsletter-card {
  background: #fdf8f4;
  border: 1px solid rgba(159,18,57,0.08);
  border-radius: 12px;
  padding: 1.6rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.newsletter-card-icon {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #9f1239;
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
  padding-top: 0.15rem;
}

.newsletter-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1412;
  margin-bottom: 0.4rem;
}

.newsletter-card p {
  font-size: 0.97rem;
  color: #4a3f3b;
  line-height: 1.75;
  margin: 0;
}

.newsletter-subscribe {
  background: #fdf8f4;
  border: 1px solid rgba(159,18,57,0.08);
  border-top: 3px solid #9f1239;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.newsletter-subscribe h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1412;
  margin-bottom: 0.5rem;
}

.newsletter-subscribe p {
  font-size: 0.97rem;
  color: #7a6f6b;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #1a1412;
  background: #fffcf9;
  border: 1px solid rgba(159,18,57,0.18);
  border-radius: 6px;
  padding: 0.7rem 1rem;
  min-width: 260px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.newsletter-form input[type="email"]:focus {
  border-color: #9f1239;
  box-shadow: 0 0 0 3px rgba(159,18,57,0.08);
}

.newsletter-form input::placeholder {
  color: #7a6f6b;
}

.newsletter-form button {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.7rem 1.6rem;
  background: #9f1239;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(159,18,57,0.25);
  transition: background 0.18s, transform 0.15s;
}

.newsletter-form button:hover {
  background: #7f0d2d;
  transform: translateY(-2px);
}

/* ── Contact Page ───────────────────────────────────────── */
.contact-simple-card {
  background: #fffcf9;
  border: 1px solid rgba(159,18,57,0.08);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 8px rgba(26,20,18,0.07);
  margin-bottom: 1.5rem;
}

.contact-simple-card h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #1a1412;
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(159,18,57,0.08);
}

.contact-simple-card p {
  font-size: 1rem;
  color: #4a3f3b;
  line-height: 1.7;
}

.contact-simple-card a {
  color: #9f1239;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a3f3b;
}

.form-field input,
.form-field textarea {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #1a1412;
  background: #fdf8f4;
  border: 1px solid rgba(159,18,57,0.15);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.18s, box-shadow 0.18s;
  resize: vertical;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #9f1239;
  box-shadow: 0 0 0 3px rgba(159,18,57,0.08);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7a6f6b;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.8rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: #9f1239;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(159,18,57,0.25);
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
}

.form-submit:hover {
  background: #7f0d2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(159,18,57,0.3);
}

/* ── Policies Page ──────────────────────────────────────── */
.policy-summary {
  background: #fdf2f5;
  border: 1px solid rgba(159,18,57,0.12);
  border-left: 4px solid #9f1239;
  border-radius: 0 12px 12px 0;
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}

.policy-summary .section-label {
  margin-bottom: 0.75rem;
}

.policy-summary .values-list {
  margin-top: 0.75rem;
}

.policy-notice {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #7a6f6b;
  font-style: italic;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-card {
  background: #fffcf9;
  border: 1px solid rgba(159,18,57,0.08);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(26,20,18,0.07);
}

.policy-card h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1412;
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(159,18,57,0.1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.policy-card h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.1rem;
  background: #9f1239;
  border-radius: 2px;
  flex-shrink: 0;
}

.policy-card h3 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9933a;
  margin: 1.25rem 0 0.5rem;
}

.policy-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.policy-card ul li {
  font-size: 0.93rem;
  color: #4a3f3b;
  line-height: 1.65;
  padding-left: 1rem;
  position: relative;
}

.policy-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #c9933a;
  font-weight: 500;
}

.policy-card p {
  font-size: 0.93rem;
  color: #4a3f3b;
  line-height: 1.65;
}

.policy-card .policy-notice {
  margin-top: 1rem;
  font-size: 0.83rem;
  color: #7a6f6b;
  font-style: italic;
}

.policy-card .policy-muted {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #7a6f6b;
}

.policy-card a {
  color: #9f1239;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #f9e4eb;
  color: #9f1239;
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.policy-card-full {
  grid-column: 1 / -1;
}

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

/* ── Apply Page ─────────────────────────────────────────── */
.apply-deadline {
  margin: 2.5rem 0;
  padding: 2rem 2.25rem;
  background: #fdf8f4;
  border: 1px solid rgba(159,18,57,0.12);
  border-left: 4px solid #c9933a;
  border-radius: 0 12px 12px 0;
}

.deadline-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9933a;
  margin-bottom: 0.4rem;
}

.deadline-date {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1412;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.deadline-note {
  font-size: 0.9rem;
  color: #7a6f6b;
}

/* ── Team Page ──────────────────────────────────────────── */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.team-member {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.team-member.reverse {
  grid-template-columns: 1fr 200px;
}

.team-member.reverse .team-photo { order: 2; }
.team-member.reverse .team-info  { order: 1; }

.team-photo {
  position: relative;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(26,20,18,0.10);
  display: block;
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 8px -8px -8px 8px;
  border: 2px solid rgba(159,18,57,0.15);
  border-radius: 12px;
  pointer-events: none;
  z-index: -1;
}

.team-info {
  padding-top: 0.5rem;
}

.team-info h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #1a1412;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9f1239;
  margin-bottom: 1rem;
  display: block;
}

.team-info p {
  font-size: 1rem;
  color: #4a3f3b;
  line-height: 1.8;
}

.team-divider {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 4rem;
  border: none;
  border-top: 1px solid rgba(159,18,57,0.1);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 820px) {
  .hero-inner,
  .get-involved-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-rule { margin: 0 auto 3rem; }
  .hero-body { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-ornament { display: none; }

  .steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .steps::before { display: none; }

  .get-involved-text p { max-width: 100%; }
  .get-involved-deco { display: none; }
}

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

@media (max-width: 600px) {
  .nav-inner { padding: 0 1rem; }
  .menu { gap: 0; }
  .nav-link { padding: 0.4rem 0.5rem; font-size: 0.82rem; }
  .nav-cta { padding: 0.4rem 0.8rem; margin-left: 0.4rem; font-size: 0.82rem; }
  .image-grid { grid-template-columns: 1fr; }
  .pull-quote { padding: 1.5rem; }
  .team-member,
  .team-member.reverse {
    grid-template-columns: 1fr;
  }
  .team-member.reverse .team-photo,
  .team-member.reverse .team-info { order: unset; }
  .team-photo { max-width: 200px; }
  .team-photo::after { display: none; }
}