/* =====================================================
   RIFKA'S HOUSE · SHARED STYLES
   ===================================================== */

:root {
  --cream:        #FBF7EE;
  --cream-deep:   #F4ECD8;
  --ink:          #14201A;
  --ink-soft:     #3B4A41;
  --muted:        #6B7A71;
  --line:         #E4DBC4;
  --line-dark:    rgba(251, 247, 238, 0.12);
  --forest:       #0E2A1F;
  --forest-soft:  #1E4434;
  --mango:        #D9701A;
  --mango-deep:   #B85A12;
  --gold:         #E8B23A;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); line-height: 1.2; }
h4 { font-size: 1.1rem; line-height: 1.3; }
p { margin: 0 0 1em; }

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.narrow { max-width: 760px; }
.medium { max-width: 920px; }

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mango);
  font-weight: 600;
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
}
.eyebrow.gold { color: var(--gold); }

em.accent {
  font-style: italic;
  color: var(--mango);
  font-weight: 400;
}
.on-dark em.accent { color: var(--gold); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--forest);
}
.brand span {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mango);
  margin-right: 10px;
  transform: translateY(-2px);
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover,
.nav-links a.active { color: var(--mango); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover { background: var(--mango); transform: translateY(-1px); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--mango);
  color: white;
  box-shadow: 0 10px 30px -10px rgba(217, 112, 26, 0.55);
}
.btn-primary:hover { background: var(--mango-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--cream-deep); }
.on-dark .btn-ghost,
.hero .btn-ghost,
.cta-band .btn-ghost { color: var(--cream); border-color: rgba(251, 247, 238, 0.35); }
.on-dark .btn-ghost:hover,
.hero .btn-ghost:hover { background: rgba(251, 247, 238, 0.08); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mango);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--mango);
  padding-bottom: 4px;
  transition: gap 0.15s ease;
}
.text-link:hover { gap: 14px; }

/* ---------- HOMEPAGE HERO ---------- */
.hero {
  position: relative;
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(232, 178, 58, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(217, 112, 26, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, #0E2A1F 0%, #143828 100%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle at center, rgba(232, 178, 58, 0.22), transparent 60%);
  border-radius: 50%;
  z-index: -1;
}
.hero-inner {
  padding: 140px 0 160px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1 {
  color: var(--cream);
  font-weight: 300;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-lede {
  margin-top: 28px;
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(251, 247, 238, 0.78);
  max-width: 540px;
}
.hero-ctas {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-card {
  background: rgba(251, 247, 238, 0.06);
  border: 1px solid rgba(251, 247, 238, 0.14);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(8px);
}
.hero-card .eyebrow { color: var(--gold); margin-bottom: 18px; }
.hero-card .quote {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--cream);
  font-weight: 300;
}
.hero-card .attribution {
  margin-top: 22px;
  font-size: 0.86rem;
  color: rgba(251, 247, 238, 0.65);
  line-height: 1.5;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; padding: 100px 0 120px; }
}

/* ---------- SUBPAGE HEADER ---------- */
.page-header {
  position: relative;
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  padding: 140px 0 110px;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(232, 178, 58, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 100%, rgba(217, 112, 26, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, #0E2A1F 0%, #143828 100%);
  z-index: -1;
}
.page-header .eyebrow { color: var(--gold); }
.page-header h1 {
  color: var(--cream);
  font-weight: 300;
  max-width: 920px;
}
.page-header h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.page-header .lede {
  margin-top: 28px;
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(251, 247, 238, 0.78);
  max-width: 680px;
}

/* ---------- MISSION STRIP ---------- */
.mission {
  background: var(--cream-deep);
  padding: 100px 0;
  text-align: center;
}
.mission h2 {
  font-weight: 300;
  max-width: 880px;
  margin: 0 auto;
}

/* ---------- STATS ---------- */
.stats { padding: 120px 0; background: var(--cream); }
.stats-head { max-width: 720px; margin-bottom: 80px; }
.stats-head p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-top: 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.stat {
  padding: 48px 36px 48px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.stat:nth-child(3n) { border-right: none; padding-right: 0; }
.stat:nth-child(n+4) { padding-left: 36px; padding-right: 36px; }
.stat:nth-child(3n+1) { padding-left: 0; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
  color: var(--forest);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.stat-label {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 320px;
}
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3n) { border-right: 1px solid var(--line); padding-right: 36px; }
  .stat:nth-child(2n) { border-right: none; padding-right: 0; }
  .stat:nth-child(2n+1) { padding-left: 0; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; padding: 36px 0 !important; }
}

/* ---------- DARK NARRATIVE BAND ---------- */
.dark-band {
  background: var(--forest);
  color: var(--cream);
  padding: 140px 0;
}
.dark-band .eyebrow { color: var(--gold); }
.dark-band h2 { color: var(--cream); font-weight: 300; }
.dark-band h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.dark-band p {
  color: rgba(251, 247, 238, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}
.dark-band p + p { margin-top: 18px; }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
@media (max-width: 880px) {
  .split-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- PILLARS / CARD GRID ---------- */
.pillars { padding: 140px 0; background: var(--cream); }
.pillars-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.pillars-head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-top: 22px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillars-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.pillars-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar {
  background: var(--cream-deep);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -30px rgba(20, 32, 26, 0.25);
}
.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  color: var(--mango);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pillar h3 { margin-bottom: 18px; color: var(--forest); }
.pillar p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 880px) {
  .pillars-grid,
  .pillars-grid.cols-2,
  .pillars-grid.cols-4 { grid-template-columns: 1fr; }
}

/* ---------- TWO COLUMN SECTION ---------- */
.two-col {
  padding: 140px 0;
  background: var(--cream-deep);
}
.two-col.light { background: var(--cream); }
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col h2 { font-weight: 300; }
.two-col p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 24px;
}
.two-col .features {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}
.two-col .features li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  align-items: start;
}
.two-col .features li:last-child { border-bottom: 1px solid var(--line); }
.two-col .features svg { margin-top: 4px; }
.two-col .features strong {
  display: block;
  color: var(--forest);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}
.two-col .features span {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}
.image-slot {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232, 178, 58, 0.35), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(217, 112, 26, 0.4), transparent 55%),
    linear-gradient(135deg, #1E4434 0%, #0E2A1F 100%);
}
.image-slot[data-caption]::after {
  content: attr(data-caption);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(251, 247, 238, 0.45);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 32px;
  font-style: italic;
}
.image-slot.wide { aspect-ratio: 16/10; }
.image-slot.square { aspect-ratio: 1/1; }
@media (max-width: 880px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- PROSE BLOCK ---------- */
.prose {
  padding: 120px 0;
  background: var(--cream);
}
.prose .narrow { margin: 0 auto; }
.prose h2 { font-weight: 300; margin-top: 64px; margin-bottom: 24px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { color: var(--forest); margin-top: 40px; margin-bottom: 16px; font-size: 1.4rem; }
.prose p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol {
  color: var(--ink-soft);
  padding-left: 24px;
  margin: 0 0 24px;
}
.prose li { margin-bottom: 10px; line-height: 1.65; }
.prose blockquote {
  border-left: 3px solid var(--mango);
  margin: 40px 0;
  padding: 8px 0 8px 32px;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--forest);
  font-weight: 400;
  line-height: 1.5;
}
.prose blockquote cite {
  display: block;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  color: var(--muted);
  font-style: normal;
}

/* ---------- PERSON CARDS ---------- */
.people {
  padding: 140px 0;
  background: var(--cream);
}
.people-head { max-width: 720px; margin-bottom: 80px; }
.people-head p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 24px; }

.person {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.person:last-child { border-bottom: 1px solid var(--line); }
.person-portrait {
  aspect-ratio: 4/5;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232, 178, 58, 0.3), transparent 55%),
    linear-gradient(135deg, #1E4434 0%, #0E2A1F 100%);
  position: relative;
}
.person-portrait::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.person-name {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.1;
}
.person-role {
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--mango);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.person-title {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.96rem;
}
.person-bio {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.person-bio p + p { margin-top: 14px; }
.person-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.person-tags span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  background: var(--cream-deep);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 500;
}
@media (max-width: 880px) {
  .person { grid-template-columns: 1fr; gap: 32px; }
  .person-portrait { max-width: 260px; }
}

/* compact version for committee/board */
.person.compact {
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 48px 0;
}
.person.compact .person-name { font-size: 1.5rem; }
.person.compact .person-portrait { aspect-ratio: 1/1; border-radius: 12px; }
.person.compact .person-portrait::after { font-size: 2rem; }
@media (max-width: 880px) {
  .person.compact { grid-template-columns: 1fr; }
  .person.compact .person-portrait { max-width: 180px; }
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--mango);
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: -200px; bottom: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -200px; top: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 178, 58, 0.4), transparent 60%);
}
.cta-band-inner {
  text-align: center;
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.cta-band h2 { color: white; font-weight: 300; }
.cta-band h2 em { font-style: italic; color: var(--cream); }
.cta-band p {
  margin-top: 24px;
  color: rgba(255,255,255,0.92);
  font-size: 1.12rem;
}
.cta-band-buttons {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band .btn-primary {
  background: white;
  color: var(--mango-deep);
  box-shadow: 0 14px 40px -10px rgba(0,0,0,0.25);
}
.cta-band .btn-primary:hover { background: var(--cream); }
.cta-band .btn-ghost { color: white; border-color: rgba(255,255,255,0.5); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ---------- LIGHT CTA STRIP ---------- */
.cta-strip {
  padding: 100px 0;
  background: var(--cream-deep);
  text-align: center;
}
.cta-strip h2 { font-weight: 300; max-width: 720px; margin: 0 auto; }
.cta-strip h2 em { font-style: italic; color: var(--mango); font-weight: 400; }
.cta-strip p {
  margin: 24px auto 0;
  color: var(--ink-soft);
  max-width: 600px;
  font-size: 1.05rem;
}
.cta-strip .buttons {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- CARD GRID (generic) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.flat-card {
  background: var(--cream-deep);
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.flat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -30px rgba(20,32,26,0.25);
}
.flat-card h3 {
  color: var(--forest);
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.flat-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0 0 18px;
}
.flat-card a.text-link {
  font-size: 0.88rem;
}

/* ---------- STORY CARDS (threads of the heart) ---------- */
.stories {
  padding: 120px 0;
  background: var(--cream);
}
.stories-group { margin-top: 80px; }
.stories-group:first-of-type { margin-top: 60px; }
.stories-group-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.stories-group-head h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--forest);
}
.stories-group-head .meta {
  color: var(--muted);
  font-size: 0.9rem;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.story-card {
  background: var(--cream-deep);
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid var(--line);
}
.story-tag {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--mango);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.story-card h3 {
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 18px;
  font-weight: 400;
}
.story-card p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.65;
  margin: 0 0 14px;
}
.story-card p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .stories-grid { grid-template-columns: 1fr; }
}

/* ---------- PRODUCT CARDS ---------- */
.products { padding: 140px 0; background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.product {
  background: var(--cream-deep);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.product-image {
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232, 178, 58, 0.4), transparent 55%),
    linear-gradient(135deg, #1E4434 0%, #0E2A1F 100%);
  position: relative;
}
.product-image::after {
  content: attr(data-name);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 247, 238, 0.5);
  font-style: italic;
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}
.product-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mango);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.product h3 {
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 8px;
}
.product .tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 18px;
}
.product p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0 0 24px;
}
.product .footnote {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 980px) { .products-grid { grid-template-columns: 1fr; } }

/* ---------- CONTACT / FORM ---------- */
.contact-section { padding: 140px 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info p { color: var(--ink-soft); font-size: 1.05rem; }
.contact-info .info-block {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.contact-info .info-block:first-of-type {
  border-top: none;
  margin-top: 40px;
  padding-top: 0;
}
.contact-info .info-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mango);
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-info .info-block a {
  color: var(--ink);
  font-size: 1.05rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.contact-info .info-block a:hover { border-color: var(--mango); }

.form-card {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px;
}
.form-card h3 { color: var(--forest); margin-bottom: 8px; }
.form-card .subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--mango);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 18px 0 28px;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-card { padding: 36px 28px; }
}

/* ---------- POLICIES LIST ---------- */
.policies { padding: 120px 0; background: var(--cream); }
.policies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.policy-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.policy-row:hover { border-color: var(--mango); transform: translateY(-2px); }
.policy-row h4 { color: var(--forest); margin-bottom: 4px; font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 500; }
.policy-row p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }
.policy-row .arrow { color: var(--mango); font-size: 1.4rem; }
@media (max-width: 720px) {
  .policies-grid { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--forest);
  color: var(--cream);
  padding: 100px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer-grid.cols-4 {
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}
.footer-brand .brand { color: var(--cream); font-size: 1.5rem; }
.footer-brand p {
  margin-top: 20px;
  color: rgba(251, 247, 238, 0.6);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(251, 247, 238, 0.75);
  font-size: 0.93rem;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--mango); }
.footer-bottom {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(251, 247, 238, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legal a { margin-left: 24px; }
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
