/* ═══════════════════════════════════════════════════════════════════
   STYLED BY NANA YAA — MAIN STYLESHEET
   Design System: Bright Luxury Magazine · Cream · Blush · Gold
   ═══════════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Bright palette — no dark backgrounds on content sections */
  --mahogany-deep: #1e0a06;       /* darkest — footer */
  --mahogany:      #3d1510;       /* newsletter, dark accents */
  --mahogany-mid:  #5c2217;       /* hover tones, borders */
  --black:         #1e0a06;       /* alias → mahogany deep */
  --off-black:     #3d1510;       /* alias → mahogany */
  --charcoal:      #2c2825;       /* warm charcoal for body text */
  --charcoal-mid:  #5a5450;       /* muted warm mid tone */
  --warm-gray:     #8a8070;       /* captions, subtext */

  --white:         #ffffff;
  --off-white:     #fdfaf6;       /* section base */
  --cream:         #f8f2e8;       /* alternating cream sections */
  --blush:         #faf0ee;       /* light blush pink-cream */
  --gold-tint:     #fdf8f0;       /* very light gold wash */

  --gold:          #c4955a;       /* primary gold accent (per spec) */
  --gold-light:    #e8d5a3;       /* lighter gold for large decorative text */
  --gold-pale:     #f5ead0;       /* pale gold for watermarks */
  --gold-dark:     #9a7a45;       /* hover / darkened gold */

  --font-serif:    'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:     'Jost', 'Helvetica Neue', Arial, sans-serif;

  --nav-h:         80px;
  --max-w:         1280px;
  --gutter:        clamp(1.5rem, 5vw, 4rem);

  --ease-silk:     cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── SCROLL REVEAL ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.reveal--left {
  transform: translateX(-30px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.32s; }
.reveal.delay-4 { transition-delay: 0.44s; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(196,149,90,0.3);
}
.eyebrow-bracket {
  color: var(--gold);
  opacity: 0.4;
  font-weight: 300;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-top: 1rem;
  letter-spacing: 0.02em;
  max-width: 480px;
}
.section-header {
  text-align: left;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

/* Section numbers — hidden in editorial redesign */
.section-number,
.section-number--right {
  display: none;
}

/* Editorial rule — full-bleed section divider */
.editorial-rule {
  height: 1px;
  background: rgba(196,149,90,0.2);
  border: none;
  margin: 0;
}

/* Legacy ornament — hidden */
.section-ornament { display: none; }
.ornament-line, .ornament-diamond { display: none; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease-silk), transform 0.2s var(--ease-silk);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease-silk), color 0.3s;
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ── NAVIGATION ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease-silk), box-shadow 0.4s;
}
/* Starts transparent over bright hero; gains cream background on scroll */
.site-header.scrolled {
  background: rgba(253, 250, 246, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(196, 149, 90, 0.2);
}

/* Dark-hero variant: transparent nav over mahogany/dark page heroes.
   Links are white until scrolled, then revert to dark on cream bg. */
.site-header--dark-hero:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}
.site-header--dark-hero:not(.scrolled) .nav-link:hover {
  color: var(--gold-light);
}
.site-header--dark-hero:not(.scrolled) .nav-logo {
  color: rgba(255, 255, 255, 0.92);
}
.site-header--dark-hero:not(.scrolled) .nav-burger span {
  background: rgba(255, 255, 255, 0.85);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-left, .nav-right {
  display: flex;
  gap: 2.5rem;
}
/* Nav links start dark (hero is light), stay dark */
.nav-link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  color: var(--charcoal);
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--gold);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(253, 250, 246, 0.99);
  backdrop-filter: blur(12px);
  padding: 2rem var(--gutter);
  gap: 1.5rem;
  border-top: 1px solid rgba(196, 149, 90, 0.2);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--gold); }

/* ── HERO — EDITORIAL FULL-BLEED SPLIT ───────────────────────────── */
.hero {
  position: relative;
  min-height: 60vh;
  background: var(--white);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* ── Hero Decorative CSS Elements ── */
/* Large translucent background circle */
.hero-decor-circle {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: min(70vw, 700px);
  height: min(70vw, 700px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,149,90,0.07) 0%, rgba(196,149,90,0.03) 50%, transparent 70%);
  pointer-events: none;
}
.hero-decor-circle--sm {
  top: 10%;
  right: 30%;
  width: min(25vw, 220px);
  height: min(25vw, 220px);
  background: radial-gradient(circle, rgba(196,149,90,0.05) 0%, transparent 70%);
  transform: none;
}
/* Dot-grid ornament top-left */
.hero-decor-dots {
  position: absolute;
  top: 14%;
  left: 4%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(196,149,90,0.25) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  pointer-events: none;
  opacity: 0.7;
}
/* Thin gold horizontal line */
.hero-decor-line--h {
  position: absolute;
  top: 38%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 2%, rgba(196,149,90,0.12) 25%, rgba(196,149,90,0.12) 75%, transparent 98%);
  pointer-events: none;
}
/* Thin gold vertical line */
.hero-decor-line--v {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 5%, rgba(196,149,90,0.1) 30%, rgba(196,149,90,0.1) 70%, transparent 95%);
  pointer-events: none;
}
/* Corner bracket decorations */
.hero-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  pointer-events: none;
}
.hero-corner--tl {
  top: calc(var(--nav-h) + 2rem);
  left: 2rem;
  border-top: 1px solid rgba(196,149,90,0.5);
  border-left: 1px solid rgba(196,149,90,0.5);
}
.hero-corner--br {
  bottom: 2rem;
  right: 2rem;
  border-bottom: 1px solid rgba(196,149,90,0.5);
  border-right: 1px solid rgba(196,149,90,0.5);
}

/* ── Hero Split Inner ── */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* ── Hero Left: Text ── */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 5rem) clamp(2rem, 7vw, 6rem) 6rem;
  animation: heroFadeUp 1.1s var(--ease-out) both;
}
.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 2.5rem;
  display: block;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-tagline {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 3rem;
}

/* ── Hero Right: Full-bleed Portrait ── */
.hero-img-col {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  animation: heroFadeUp 1.2s var(--ease-out) 0.2s both;
}
.hero-img-col img {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: top center;
  display: block;
  will-change: transform;
  animation: kenBurns 14s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.0) translateY(0); }
  to   { transform: scale(1.06) translateY(-2%); }
}
.hero-portrait-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #f0e8dc 0%, #ddd0c0 100%);
}
.portrait-monogram {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.4;
  letter-spacing: 0.2em;
}

/* Floating label card near portrait */
.hero-label-card {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 0.65rem 1.1rem;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  box-shadow: 0 8px 32px rgba(44,40,37,0.12);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}
.label-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Small dot ornament glyphs */
.hero-dot-ornament {
  position: absolute;
  font-size: 0.65rem;
  color: var(--gold);
  opacity: 0.5;
  pointer-events: none;
  z-index: 3;
}
.hero-dot-ornament--a { top: 6%; right: 6%; }
.hero-dot-ornament--b { bottom: 20%; right: 4%; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: heroFadeUp 1.5s var(--ease-out) 0.6s both;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(196,149,90,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── INTRO STRIP ─────────────────────────────────────────────────── */
.intro-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem var(--gutter);
  background: var(--gold);
  text-align: center;
}
.intro-quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 700px;
  line-height: 1.55;
}
.intro-ref {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
}

/* ── PILLARS ─────────────────────────────────────────────────────── */
.pillars {
  display: flex;
  align-items: stretch;
  padding: 5rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 0;
  position: relative;
  background: var(--off-white);
}
.pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}
.pillar-icon {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.pillar-text {
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 260px;
}
.pillar-divider {
  width: 1px;
  background: rgba(196,149,90,0.2);
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

/* ── FEATURED — THE EDIT (cocobassey-style clean cards) ─────────── */
.featured {
  padding: 6rem 0 7rem;
  position: relative;
  background: var(--white);
}
.featured .section-header {
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

/* Grid container */
.the-edit-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Featured (first) post — wide landscape */
.edit-post--featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3.5rem;
  align-items: start;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(196,149,90,0.15);
}
.edit-post--featured .edit-post-img {
  aspect-ratio: 4/3;
}
.edit-post--featured .edit-post-title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.2;
}
.edit-post--featured .edit-post-excerpt { display: block; }

/* Secondary card row */
.the-edit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Base card */
.edit-post {
  text-decoration: none;
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out);
}
.edit-post:hover { transform: translateY(-3px); }

/* Image wrapper */
.edit-post-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 1.1rem;
}
.edit-post-img-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
  transition: transform 0.65s var(--ease-silk);
}
.edit-post:hover .edit-post-img-inner { transform: scale(1.04); }

/* Card text body */
.edit-post-body { display: flex; flex-direction: column; }
.edit-post--featured .edit-post-body { padding-top: 1rem; }

.edit-post-cat {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.45rem;
}
.edit-post-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.edit-post:hover .edit-post-title { color: var(--gold-dark); }
.edit-post-excerpt {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 0.85rem;
  display: none;
}
.edit-post-more {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  transition: color 0.2s, gap 0.2s;
}
.edit-post-more::after { content: '→'; transition: transform 0.2s; }
.edit-post:hover .edit-post-more { color: var(--gold); gap: 0.6rem; }
.edit-post:hover .edit-post-more::after { transform: translateX(3px); }

/* Legacy badge (kept for other pages) */
.post-badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid rgba(196,149,90,0.5);
  padding: 0.35rem 0.75rem;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
}
.post-link {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s;
}
.post-link:hover { color: var(--gold-dark); }

/* ── CATEGORY SECTIONS ───────────────────────────────────────────── */
.category-section {
  padding: 6rem var(--gutter);
  position: relative;
  overflow: hidden;
}
/* All section backgrounds are BRIGHT */
.bg-light    { background: var(--off-white); }
.bg-cream    { background: var(--cream); }
.bg-blush    { background: var(--blush); }
.bg-white    { background: var(--white); }
.bg-gold-tint { background: var(--gold-tint); }

/* Subtle dot-grid pattern for alternating sections */
.dot-grid {
  background-image: radial-gradient(circle, rgba(196,149,90,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  background-repeat: repeat;
}
.dot-grid.bg-blush {
  background-color: var(--blush);
}
.dot-grid.bg-cream {
  background-color: var(--cream);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.posts-grid--lifestyle {
  grid-template-columns: 1.5fr 1fr 1fr;
}
/* All cards are bright */
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.post-card--wide { grid-row: span 1; }

.card-image {
  height: 260px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-silk);
}
.post-card:hover .card-image { transform: scale(1.03); }
.card-image--tall { height: 320px; }
.card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid rgba(196,149,90,0.5);
  padding: 0.3rem 0.65rem;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
}
.card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-date {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  flex: 1;
  color: var(--charcoal);
}
.card-excerpt {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.card-link {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s;
}
.card-link:hover { color: var(--gold); }

.section-cta {
  text-align: center;
  margin-top: 3rem;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* ── LATEST IN FASHION ───────────────────────────────────────────── */
.fashion-posts-section {
  padding: 6rem var(--gutter);
  background: var(--white);
}

.fashion-posts-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* Card: image fills the block, text card floats above it */
.fashion-post-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.fashion-post-img-wrap {
  overflow: hidden;
  width: 60%;
}

.fashion-post-img {
  aspect-ratio: 4/3;
  width: 100%;
  background: var(--cream) center/cover no-repeat;
  display: block;
  transition: transform 0.7s ease;
}

.fashion-post-card:hover .fashion-post-img {
  transform: scale(1.04);
}

/* White text card: smaller, absolutely positioned, overlapping right side of image */
.fashion-post-body {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 46%;
  background: #fff;
  padding: 2.75rem 2.5rem;
  border: 1px solid rgba(196,149,90,0.35);
  box-shadow: 6px 6px 0 rgba(196,149,90,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  z-index: 2;
}

/* Even cards: image on right, text card on left */
.fashion-post-card:nth-child(even) .fashion-post-img-wrap {
  margin-left: auto;
}

.fashion-post-card:nth-child(even) .fashion-post-body {
  right: auto;
  left: 0;
}

.fashion-post-cat-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: var(--warm-gray);
}

.fashion-post-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin: 0;
}

.fashion-post-excerpt {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fashion-post-more {
  display: inline-block;
  margin-top: 0.25rem;
  border: 1px solid var(--gold);
  padding: 0.45rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--dark);
  transition: background 0.2s, color 0.2s;
  box-shadow: 3px 3px 0 rgba(196,149,90,0.28);
}

.fashion-post-card:hover .fashion-post-more {
  background: var(--gold);
  color: #fff;
}

.fashion-posts-footer {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  text-align: center;
}

.fashion-view-all {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.fashion-view-all:hover { opacity: 0.7; }

@media (max-width: 900px) {
  .fashion-posts-grid { gap: 4rem; }
  .fashion-post-img-wrap { width: 100%; margin-left: 0 !important; }
  .fashion-post-body {
    position: relative;
    top: auto; right: auto; left: auto;
    transform: none;
    width: calc(100% - 3rem);
    margin: -3rem auto 0;
    box-shadow: 4px 4px 0 rgba(196,149,90,0.22);
  }
}

@media (max-width: 600px) {
  .fashion-posts-grid { gap: 3rem; }
  .fashion-post-body {
    width: calc(100% - 2rem);
    padding: 1.75rem 1.5rem;
    margin: -2.5rem auto 0;
  }
  .fashion-posts-footer { text-align: center; }
}

/* ── FULL BLEED QUOTE — LIGHT (warm cream, not dark) ─────────────── */
.full-quote {
  position: relative;
  background: var(--cream);
  padding: 5rem var(--gutter);
  overflow: hidden;
}
/* Subtle warm texture lines */
.full-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 60px,
    rgba(196,149,90,0.03) 60px,
    rgba(196,149,90,0.03) 61px
  );
}
/* Decorative large circle ornament */
.full-quote::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 500px);
  height: min(60vw, 500px);
  border-radius: 50%;
  border: 1px solid rgba(196,149,90,0.1);
  pointer-events: none;
}
.quote-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 1rem;
}
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
cite {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── MY WORLD CARDS ──────────────────────────────────────────────── */
.worlds-section {
  padding: 6rem var(--gutter) 8rem;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.world-card {
  position: relative;
  height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.world-card-bg {
  position: absolute;
  inset: -15% 0;
  height: 130%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.7s var(--ease-silk);
}
.world-card:hover .world-card-bg {
  transform: scale(1.04) translateY(-2%);
}
.world-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 10, 6, 0.82) 0%,
    rgba(30, 10, 6, 0.25) 55%,
    transparent 100%
  );
  transition: opacity 0.4s;
}
.world-card:hover .world-card-overlay {
  background: linear-gradient(
    to top,
    rgba(30, 10, 6, 0.90) 0%,
    rgba(30, 10, 6, 0.35) 65%,
    transparent 100%
  );
}
.world-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.world-card-num {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  opacity: 0.75;
  text-transform: uppercase;
}
.world-card-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.world-card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 280px;
  margin-top: 0.25rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s, transform 0.35s;
}
.world-card:hover .world-card-desc {
  opacity: 1;
  transform: translateY(0);
}
.world-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.75rem;
  border-bottom: 1px solid rgba(196, 149, 90, 0.4);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: gap 0.25s, border-color 0.25s;
}
.world-card:hover .world-card-cta {
  gap: 0.85rem;
  border-color: var(--gold-light);
}
.world-card-cta span {
  display: inline-block;
  transition: transform 0.25s;
}
.world-card:hover .world-card-cta span {
  transform: translateX(4px);
}

/* ── ABOUT ───────────────────────────────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  max-width: var(--max-w);
  margin: 6rem auto;
  padding: 0 var(--gutter);
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Large decorative "N" watermark in background */
.about-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-serif);
  font-size: clamp(18rem, 35vw, 28rem);
  font-weight: 600;
  color: var(--gold-pale);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.05em;
  opacity: 0.7;
}

.about-image-col {
  position: relative;
  z-index: 1;
}
.about-image-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-image-inner {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #f0e8dc 0%, #ddd0c0 100%);
}
.about-image-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #f5ece0 0%, #e0d0bc 100%);
}
.about-image-placeholder span {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  letter-spacing: 0.2em;
}
.about-image-accent {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  right: -1.5rem; bottom: -1.5rem;
  border: 1px solid rgba(196,149,90,0.35);
  z-index: -1;
}
.about-text-col {
  position: relative;
  z-index: 1;
}
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
  color: var(--charcoal);
}
.about-title em {
  font-style: italic;
  color: var(--gold);
}
.about-bio {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.about-signature {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--charcoal);
  margin: 1.5rem 0 2rem;
}

/* ── INSTAGRAM ───────────────────────────────────────────────────── */
.instagram-section {
  padding: 6rem var(--gutter);
  background: var(--gold-tint);
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Setup banner — shown by default, hidden by JS when token is connected */
.ig-setup-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid rgba(196,149,90,0.3);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: left;
  flex-wrap: wrap;
}
.ig-setup-banner[hidden] { display: none !important; }
.ig-setup-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.ig-setup-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ig-setup-text strong {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.ig-setup-text span {
  font-size: 0.78rem;
  color: var(--warm-gray);
}
.ig-setup-text code {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  background: var(--cream);
  padding: 0.1rem 0.35rem;
  border-radius: 2px;
  color: var(--gold-dark);
}
.ig-setup-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.ig-setup-link:hover { color: var(--gold-dark); }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  grid-auto-rows: 1fr;
  gap: 3px;
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
}
.ig-tile {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  background-size: cover;
  background-position: center;
  background-color: #f0ebe4;
  transition: transform 0.35s var(--ease-silk);
}
.ig-tile:hover { transform: scale(1.03); }

.ig-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,40,37,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-tile:hover .ig-tile-overlay {
  background: rgba(44,40,37,0.3);
}
.ig-tile:hover .ig-tile-overlay::after {
  content: '';
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='white' stroke='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
}

/* Tiles rendered by JS (live posts) */
.ig-tile--live {
  background-size: cover;
  background-position: center;
}
.ig-tile--live .ig-caption-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,40,37,0.0);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: background 0.3s;
  opacity: 0;
}
.ig-tile--live:hover .ig-caption-overlay {
  background: rgba(44,40,37,0.55);
  opacity: 1;
}
.ig-caption-text {
  font-size: 0.72rem;
  color: var(--white);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* "Connect Instagram" badge shown on placeholder tiles when api is not set */
.ig-connect-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(196,149,90,0.4);
  color: var(--charcoal);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

/* ── LATEST VIDEO ────────────────────────────────────────────────── */
.video-section {
  padding: 5rem var(--gutter) 4rem;
  background: var(--off-white);
}
.video-embed-wrap {
  max-width: 860px;
  margin: 0 auto 2.5rem;
}
.video-embed-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #111;
  box-shadow: 0 20px 60px rgba(44,40,37,0.15);
}
.video-embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-cta {
  text-align: center;
}

/* ── NEWSLETTER ──────────────────────────────────────────────────── */
/* Newsletter — rich mahogany for warm luxury contrast */
.newsletter-section {
  background: var(--mahogany);
  padding: 7rem var(--gutter);
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-ornament {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 1rem;
}
.newsletter-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 1rem;
}
.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-note {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}
.newsletter-section .section-eyebrow { color: var(--gold); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer {
  background: var(--mahogany-deep);
  border-top: 1px solid rgba(196,149,90,0.15);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem var(--gutter) 3rem;
  align-items: start;
}
.footer-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--white);
  display: block;
}
.footer-logo .logo-sub {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.25rem;
}
.footer-location {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 140px);
  gap: 3rem;
}
.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.footer-link {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
.footer-bottom-links a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── SCROLL ANIMATIONS ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SHARED: PRESS CAROUSEL ──────────────────────────────────────── */
.press-carousel-wrap {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.press-carousel {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: carousel-scroll 18s linear infinite;
}
.press-carousel:hover { animation-play-state: paused; }
@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.press-logo-item {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  opacity: 0.65;
  font-style: italic;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.25s, color 0.25s;
  padding: 1rem 0;
}
.press-logo-item:hover {
  opacity: 1;
  color: var(--gold-dark);
}

/* ── FEATURED IN (homepage carousel) ────────────────────────────── */
.home-featured-in {
  padding: 2.5rem var(--gutter);
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(196,149,90,0.12);
  border-bottom: 1px solid rgba(196,149,90,0.12);
}
.featured-in-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gray);
  opacity: 0.55;
  white-space: nowrap;
  flex-shrink: 0;
}
.home-featured-in .press-carousel-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.home-featured-in .press-carousel {
  gap: 5rem;
}
.home-featured-in .press-logo-item {
  font-size: 1.5rem;
  opacity: 0.45;
}
.home-featured-in .press-logo-item:hover { opacity: 0.85; }

/* ── FILLER IMAGES ───────────────────────────────────────────────── */
.filler-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Hero portrait — front */
.filler-img--hero-portrait {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(240,220,195,0.9) 0%, rgba(196,149,90,0.15) 60%, transparent 100%),
    linear-gradient(170deg, #f0e4d4 0%, #d4b090 35%, #b88860 65%, #8a6040 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
}
.filler-img--hero-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(255,240,220,0.6) 0%, transparent 50%),
    repeating-linear-gradient(
      -35deg,
      transparent 0px, transparent 18px,
      rgba(255,255,255,0.04) 18px, rgba(255,255,255,0.04) 19px
    );
}

/* Hero portrait — back (second image, different mood) */
.filler-img--hero-portrait-2 {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 45% 25%, rgba(232,215,190,0.8) 0%, transparent 55%),
    linear-gradient(155deg, #c8a880 0%, #9a7858 35%, #705038 65%, #4a3020 100%);
}
.filler-img--hero-portrait-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    40deg,
    transparent 0px, transparent 22px,
    rgba(255,255,255,0.03) 22px, rgba(255,255,255,0.03) 23px
  );
}

/* Portrait section */
.filler-img--portrait {
  background:
    linear-gradient(160deg, #f5ead8 0%, #d8b888 40%, #b89060 75%, #8a6840 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
}
.filler-img--portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 15%, rgba(255,240,210,0.55) 0%, transparent 55%);
}
.filler-monogram {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em;
}

/* World card fillers */
.world-card-filler {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.world-card-filler--fashion {
  background-image: url('/assets/img/nanayaa_asos_cinchedwaistblazer.jpg');
  background-position: center top;
}
.world-card-filler--faith {
  background-image: url('/assets/img/jessica-mangano-eI_bxQQINRE-unsplash (1).jpg');
  background-position: center center;
}
.world-card-filler--lifestyle {
  background-image: url('/assets/img/nanayaa_lifestyle_booksandvase.jpg');
  background-position: center center;
}

/* Post images */
.post-image { position: relative; overflow: hidden; }
.filler-img--fashion-hero {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(255,235,200,0.4) 0%, transparent 50%),
    linear-gradient(145deg, #d4a878 0%, #a07050 35%, #6a3820 65%, #3d1510 100%);
}
.filler-img--fashion-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 25px,
    rgba(255,255,255,0.025) 25px, rgba(255,255,255,0.025) 26px
  );
}
.filler-img--faith {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #d8c8a0 0%, #a89060 40%, #706040 75%, #403828 100%);
}
.filler-img--lifestyle {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #c8b8d8 0%, #9080a8 40%, #504068 75%, #28183a 100%);
}

/* Shop card fillers */
.filler-img--shop-fashion {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/nana_yaa_in_asos_design_cinched_waist_blazer_dress_in_buttermilk.jpg');
  background-size: cover;
  background-position: center top;
}
.filler-img--shop-beauty {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/NanaYaa_Ansah_JoMaloneGingerBiscuit.jpg');
  background-size: cover;
  background-position: center;
}
.filler-img--shop-home {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/nanayaa_lifestyle_booksandvase.jpg');
  background-size: cover;
  background-position: center;
}
.filler-img--shop-wellness {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/gaelle-marcel-Qtt9KbJrPK8-unsplash.jpg');
  background-size: cover;
  background-position: center;
}

/* ── HOME WORKSHEET SECTION ─────────────────────────────────────── */
.home-worksheet-section {
  background: var(--cream);
  padding: 9rem var(--gutter);
  border-bottom: 1px solid rgba(196,149,90,0.2);
}

.home-worksheet-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 6rem;
  align-items: center;
}

.home-worksheet-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin: 0.5rem 0 1.25rem;
}

.home-worksheet-title em {
  font-style: italic;
  color: var(--gold);
}

.home-worksheet-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin: 0 0 1.5rem;
  max-width: 52ch;
}

.home-worksheet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.home-worksheet-list li {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  padding-left: 1.25rem;
  position: relative;
}

.home-worksheet-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.2em;
}

.home-worksheet-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.home-worksheet-email {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(196,149,90,0.4);
  background: #fff;
  color: var(--dark);
  flex: 1;
  min-width: 220px;
  outline: none;
  transition: border-color 0.2s;
}

.home-worksheet-email:focus {
  border-color: var(--gold);
}

.home-worksheet-note {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--warm-gray);
  margin: 0;
  letter-spacing: 0.05em;
}

/* Worksheet paper mockup */
.home-worksheet-visual {
  display: flex;
  justify-content: center;
}

.worksheet-mockup {
  background: #fff;
  width: 320px;
  padding: 2.5rem 2rem;
  box-shadow: 8px 8px 0 rgba(196,149,90,0.2), 0 20px 60px rgba(0,0,0,0.08);
  border-top: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.worksheet-mockup-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.worksheet-mockup-header span {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.worksheet-mockup-line {
  height: 1px;
  background: rgba(196,149,90,0.3);
}

.worksheet-mockup-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.worksheet-mockup-rows {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.5rem 0;
}

.worksheet-mockup-row {
  height: 10px;
  background: var(--cream);
  border-radius: 2px;
}

.worksheet-mockup-row.short {
  width: 60%;
}

.worksheet-mockup-check {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-align: center;
  margin-top: 0.5rem;
}

/* Strip section-eyebrow divider when used inside content (not a section header) */
.home-worksheet-text .section-eyebrow {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0.6rem;
}

@media (max-width: 900px) {
  .home-worksheet-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .home-worksheet-visual { display: none; }
}

/* ── HOME EBOOK SECTION ──────────────────────────────────────────── */
.home-ebook-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196,149,90,0.12) 0%, transparent 60%),
    linear-gradient(160deg, var(--mahogany) 0%, var(--mahogany-deep) 100%);
  padding: 6rem var(--gutter) 7rem;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.home-ebook-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(196,149,90,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(196,149,90,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.home-ebook-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.home-ebook-eyebrow { color: var(--gold-light) !important; opacity: 0.75; }

/* Centered stage: book + stats */
.home-ebook-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3rem;
  margin: 1rem 0;
}
.home-ebook-cover {
  position: relative;
  perspective: 1000px;
  flex-shrink: 0;
}
.home-ebook-book {
  width: 220px;
  aspect-ratio: 3/4;
  overflow: hidden;
  transform: rotateY(-7deg) rotateX(2deg);
  transform-style: preserve-3d;
  box-shadow:
    -10px 0 0 rgba(10,2,0,0.6),
    0 24px 60px rgba(10,2,0,0.5);
  position: relative;
}
/* Photo fills the mini cover */
.home-ebook-book-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* Gradient overlay */
.home-ebook-book-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,4,2,0.25) 0%,
    rgba(10,4,2,0.05) 30%,
    rgba(10,4,2,0.6) 65%,
    rgba(10,4,2,0.9) 100%
  );
}
/* Text content */
.home-ebook-book-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.home-book-deco-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.home-book-eyebrow {
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.75;
  position: absolute;
  top: 0.85rem; left: 1.25rem; right: 1.25rem;
  z-index: 2;
}
.home-book-title {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
}
.home-book-title em { font-style: italic; color: var(--gold-light); display: block; }
.home-book-ed {
  font-size: 0.46rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 0.15rem;
}
.home-ebook-spine {
  position: absolute;
  top: 0; left: 0;
  width: 18px;
  height: 100%;
  background: linear-gradient(to right, rgba(5,3,2,0.95), rgba(20,10,5,0.7));
  transform: rotateY(90deg) translateX(-50%);
  transform-origin: left;
}
.home-ebook-shadow {
  position: absolute;
  bottom: -20px;
  left: 5%;
  right: 5%;
  height: 36px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.4) 0%, transparent 70%);
  filter: blur(8px);
}

/* Stats column beside book */
.home-ebook-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
}
.home-ebook-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-left: 1px solid rgba(196,149,90,0.25);
  padding-left: 1.25rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-num small { font-size: 0.9em; }
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.home-ebook-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.15;
}
.home-ebook-title em { font-style: italic; color: var(--gold-light); }
.home-ebook-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.9;
  max-width: 520px;
}
.home-ebook-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
}
.home-price-was {
  font-size: 1rem;
  color: rgba(255,255,255,0.28);
  text-decoration: line-through;
}
.home-price-now {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.home-price-save {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.home-ebook-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.home-ebook-outline {
  border-color: rgba(196,149,90,0.5) !important;
  color: rgba(255,255,255,0.6) !important;
}
.home-ebook-outline:hover {
  border-color: var(--gold-light) !important;
  color: var(--gold-light) !important;
}
.home-ebook-note {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  margin-top: -0.25rem;
}

/* ── HOME SHOP SECTION ───────────────────────────────────────────── */
.home-shop-section {
  padding: 6rem var(--gutter);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.home-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
}
.home-shop-card {
  position: relative;
  aspect-ratio: 3/4;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.home-shop-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,10,6,0.55) 0%, transparent 60%);
  transition: opacity 0.3s ease;
}
.home-shop-card:hover .home-shop-card-overlay { opacity: 0.7; }
.home-shop-card-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.home-shop-cat {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.home-shop-cta {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: letter-spacing 0.3s;
}
.home-shop-card:hover .home-shop-cta { letter-spacing: 0.25em; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .edit-post--featured {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .edit-post--featured .edit-post-img { aspect-ratio: 16/9; }
  .hero-inner { gap: 2.5rem; }
}
@media (max-width: 800px) {
  .the-edit-row { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}

@media (max-width: 900px) {
  .worlds-grid { grid-template-columns: 1fr; }
  .world-card { height: 360px; }
  .world-card-desc { opacity: 1; transform: none; }
  .nav-left, .nav-right { display: none; }
  .nav-burger { display: flex; }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-text {
    order: 2;
    text-align: left;
    padding: 4rem clamp(1.5rem, 5vw, 3rem) 5rem;
  }
  .hero-img-col {
    order: 1;
    min-height: 70vw;
  }
  .hero-img-col img {
    position: absolute;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-col { max-width: 420px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .about-watermark { opacity: 0.3; }
}

@media (max-width: 720px) {
  .home-ebook-stage { flex-direction: column; align-items: center; gap: 2rem; }
  .home-ebook-stats { flex-direction: row; gap: 2rem; }
  .home-shop-grid { grid-template-columns: repeat(2, 1fr); }
  .home-featured-in { flex-direction: column; gap: 1rem; padding: 2rem var(--gutter); }
  .featured-in-label { text-align: center; }
}
@media (max-width: 480px) {
  .home-shop-grid { grid-template-columns: 1fr; }
  .home-ebook-book { width: 170px; }
  .home-ebook-stats { gap: 1.25rem; }
  .featured-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --nav-h: 64px; }
  .pillars { flex-direction: column; }
  .pillar-divider { width: 60px; height: 1px; margin: 0 auto; }
  .posts-grid,
  .posts-grid--lifestyle { grid-template-columns: 1fr; }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form { flex-direction: column; }
  .newsletter-input {
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: none;
  }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-decor-line--v,
  .hero-decor-line--h { display: none; }
  .ig-setup-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3rem, 13vw, 5rem); }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { grid-template-columns: 1fr; }
  .hero-img-col { min-height: 85vw; }
}

/* ── RESOURCES PAGE ──────────────────────────────────────────────── */

/* resources-card-eyebrow has its own class; ensure no inherited divider */
.resources-card-eyebrow {
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 0.5rem;
}

.resources-card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.resources-row-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}

.resources-services-header .resources-card-title,
.resources-row-text .resources-card-title,
.resources-card-body .resources-card-title {
  margin-bottom: 1rem;
}

.resources-section {
  padding: 6rem var(--gutter);
  background: var(--white);
}

.resources-section--alt {
  background: var(--off-white);
}

.resources-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Featured worksheet card */
.resources-card--featured {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(196,149,90,0.25);
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem;
}

.resources-card-badge {
  position: absolute;
  top: -1px;
  left: 3rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
}

.resources-card-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.resources-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.resources-card-title em { font-style: italic; color: var(--gold); }

.resources-card-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin: 0 0 1.5rem;
  max-width: 56ch;
}

.resources-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.resources-card-list li {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  padding-left: 1.1rem;
  position: relative;
}

.resources-card-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 0.25em;
}

.resources-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.resources-email {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(196,149,90,0.4);
  background: #fff;
  color: var(--dark);
  flex: 1;
  min-width: 220px;
  outline: none;
  transition: border-color 0.2s;
}

.resources-email:focus { border-color: var(--gold); }

.resources-note {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--warm-gray);
  margin: 0;
}

/* Ebook row */
.resources-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 6rem;
  align-items: center;
}

.resources-book-mockup {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.resources-book-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resources-book-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(60,30,10,0.7) 0%, transparent 60%);
}

.resources-book-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.resources-book-label span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.resources-book-label strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
}

.resources-ebook-stats {
  display: flex;
  gap: 2.5rem;
  margin: 1.5rem 0;
}

.resources-stat { display: flex; flex-direction: column; gap: 0.2rem; }

.resources-stat-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
}

.resources-stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.resources-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.resources-price-was {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--warm-gray);
  text-decoration: line-through;
}

.resources-price-now {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark);
  font-weight: 400;
}

.resources-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

/* Services grid */
.resources-services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.resources-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.resources-service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resources-service-icon {
  color: var(--gold);
  font-size: 0.9rem;
}

.resources-service-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin: 0;
}

.resources-service-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.resources-service-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s;
}

.resources-service-link:hover { color: var(--dark); }

@media (max-width: 900px) {
  .resources-card--featured { padding: 2.5rem 2rem; }
  .resources-card-list { grid-template-columns: 1fr; }
  .resources-row { grid-template-columns: 1fr; gap: 3rem; }
  .resources-book-mockup { max-width: 320px; }
  .resources-services-grid { grid-template-columns: 1fr; gap: 2px; }
}
