:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #806527;       /* WCAG AA on cream / warm-white */
  --dark-green: #1a2e1a;
  --mid-green: #2d4a2d;
  --cream: #f5f0e8;
  --warm-white: #faf7f2;
  --text-dark: #1c1c1c;
  --text-mid: #4a4a3a;
  --text-light: #8a8a7a;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}
/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(26, 46, 26, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(26, 46, 26, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 60px;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #fff;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  padding: 0;
  z-index: 102;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 21px; }
.nav-toggle.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99;
}
.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../imgs/houseofverdurehero_imgs.png') center/cover no-repeat;
  filter: brightness(0.55);
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,25,10,0.3) 0%, rgba(10,25,10,0.1) 50%, rgba(10,25,10,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-logo {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 28px;
}
.hero-eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 14px 32px;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--gold-light); background: rgba(201,168,76,0.12); transform: translateY(-1px); }
.hero-tagline {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}
/* ─── INTRO STRIP ─────────────────────────────────────── */
.intro-strip {
  background: var(--cream);
  padding: 80px 60px;
  text-align: center;
}
.intro-strip .leaf-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='50' rx='30' ry='48' fill='%232d4a2d' transform='rotate(-30 50 50)'/%3E%3Cline x1='50' y1='10' x2='50' y2='90' stroke='%23c9a84c' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}
.intro-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 21px);
  color: var(--text-mid);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}
.intro-strip p strong {
  font-weight: 600;
  color: var(--dark-green);
}
/* ─── SECTION TITLE ───────────────────────────────────── */
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark-green);
  margin-bottom: 50px;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto 0;
}
/* ─── PLANT STORIES ───────────────────────────────────── */
.plant-stories {
  background: var(--warm-white);
  padding: 80px 60px;
}
.plant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.plant-card {
  padding: 12px;
  height: 516px;
  background: linear-gradient(135deg, #a88a36 0%, #e8c97a 25%, #c9a84c 50%, #f1d98a 75%, #a88a36 100%);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.plant-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.plant-card-inner {
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}
.plant-card-image {
  background: #fff;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}
.plant-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s;
}
.plant-card:hover img { transform: scale(1.04); }
.plant-card-body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.plant-card-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.35;
  margin-bottom: 32px;
  max-width: 8ch;
}
.plant-card-body a {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--dark-green);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.plant-card-body a:hover { color: var(--gold); }
/* ─── GOLD DASH+DOTS DIVIDER (reusable) ───────────────── */
.gold-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.gold-divider .line {
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.gold-divider .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
/* ─── ORIGINS (editorial) ─────────────────────────────── */
.origins-section {
  background: var(--warm-white);
  padding: 100px 60px 80px;
}
.origins-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.origins-eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 22px;
  font-weight: 600;
}
.origins-headline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  color: var(--dark-green);
  line-height: 1.18;
  max-width: 1000px;
  margin: 0 auto 30px;
}
.origins-section .gold-divider { margin: 0 auto 44px; }
.origins-intro {
  max-width: 1100px;
  margin: 0 auto 60px;
  text-align: left;
}
.origins-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 18px;
}
.origins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
  text-align: left;
}
.origins-image img {
  width: 100%;
  height: auto;
  max-width: 516px;
  aspect-ratio: 103 / 102;
  object-fit: contain;
  display: block;
}
.origins-facts,
.origins-story {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fact-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.fact-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 10px;
}
.story-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--dark-green);
  margin-bottom: 12px;
}
.story-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 12px;
}
/* ─── DOSSIER CTA ──────────────────────────────────────── */
.dossier-section {
  background: #efe5d3;
  padding: 80px 60px 100px;
  border-top: 1px dotted #B59661;
}
.dossier-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.dossier-content { text-align: left; }
.dossier-eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 22px;
  font-weight: 600;
}
.dossier-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--dark-green);
  line-height: 1.2;
  margin-bottom: 24px;
}
.dossier-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 18px;
}
.dossier-subline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.btn-dossier {
  display: inline-block;
  padding: 16px 44px;
  font-size: 12px;
  letter-spacing: 0.22em;
}
.dossier-image {
  position: relative;
  z-index: 2;
  margin-top: -130px;
}
.dossier-image img {
  width: 100%;
  height: auto;
  max-width: 524px;
  aspect-ratio: 154 / 149;
  object-fit: contain;
  display: block;
  margin-left: auto;
}
/* ─── ABOUT US ────────────────────────────────────────── */
.about-us {
  background: var(--warm-white);
  padding: 100px 60px;
  text-align: center;
}
.about-eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 56px);
  color: var(--dark-green);
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 24px;
}
.about-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto 36px;
}
.about-divider::before,
.about-divider::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.about-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 80px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 100px;
  text-align: left;
  align-items: start;
}
.about-image {
  width: 100%;
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-col h3 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 18px;
}
.about-col p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.about-col ul li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
  margin-bottom: 4px;
}
.about-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}
.about-discover-title {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 0 0 56px;
  font-weight: 500;
}
/* ─── DISCOVER BAND ───────────────────────────────────── */
.discover-band {
  background: var(--cream);
  padding: 80px 60px;
  text-align: center;
}
.discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.discover-item { text-align: center; }
.discover-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.discover-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.discover-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 10px;
}
.discover-item p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}
/* ─── QUOTE BANNER ────────────────────────────────────── */
.quote-banner {
  position: relative;
  min-height: 778px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.quote-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../imgs/ladywarmth_bg.jpg') center/cover no-repeat;
  filter: brightness(0.78);
}
.quote-banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 60px 40px;
  text-align: center;
}
.quote-banner-content blockquote {
  font-family: 'Cinzel', serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* ─── COLLECTIONS ─────────────────────────────────────── */
.collections {
  background: var(--warm-white);
  padding: 80px 60px;
}
.collections-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  text-align: center;
  color: var(--text-mid);
  font-size: 18px;
  margin-bottom: 50px;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.collection-card {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  height: 220px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.collection-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}
.collection-card-content {
  flex: 1;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.collection-card-image {
  width: 38%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.collection-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 28px;
  line-height: 1.3;
}
.collection-card a {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--dark-green);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.collection-card a:hover { color: var(--gold); }
.collection-card a .arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.25s;
}
.collection-card a:hover .arrow { transform: translateX(4px); }
/* ─── ARCHIVE ─────────────────────────────────────────── */
.archive {
  background: var(--cream);
  padding: 100px 60px;
  text-align: center;
}
.archive-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 60px;
}
.archive-item { text-align: center; }
.archive-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #d5cfc3;
  margin: 0 auto 20px;
}
.archive-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--dark-green);
  margin-bottom: 10px;
}
.archive-item p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}
.archive-cta {
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.archive-share {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--dark-green);
  margin-bottom: 28px;
}
/* ─── CLOSING BANNER ──────────────────────────────────── */
.closing-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.closing-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../imgs/plantlibrary.jpg') center/cover no-repeat;
  filter: brightness(0.45);
}
.closing-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px;
}
.closing-banner-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4.5vw, 54px);
  font-style: italic;
  color: #fff;
  margin-bottom: 12px;
}
.closing-banner-content p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}
.closing-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}
/* Newsletter signup (closing banner) */
.newsletter-form-wrap.hidden { display: none; }
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.35);
  border-right: none;
  color: #fff;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input[type="email"]:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.14);
}
.newsletter-form button {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 14px 28px;
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); border-color: var(--gold-light); }
.newsletter-form button:disabled { opacity: 0.7; cursor: wait; }
.newsletter-error {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: #f5b8a8;
  margin-top: 14px;
}
.newsletter-thanks { display: none; max-width: 480px; margin: 0 auto; }
.newsletter-thanks.active { display: block; }
.newsletter-thanks h3 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.newsletter-thanks p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
}
@media (max-width: 580px) {
  .newsletter-form { flex-direction: column; gap: 12px; }
  .newsletter-form input[type="email"] { border-right: 1px solid rgba(255,255,255,0.35); }
}
/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--dark-green);
  padding: 60px 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
  margin-bottom: 18px;
}
.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-col h5 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  background: var(--dark-green);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}
.footer-bottom a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  margin-left: 20px;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
/* ─── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
/* ─── PLANT DETAIL PAGE ───────────────────────────────── */
/* Hero */
.plant-hero {
  position: relative;
  min-height: 720px;
  padding: 140px 60px 80px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.plant-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.5);
}
.plant-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,25,10,0.45) 0%, rgba(10,25,10,0.2) 50%, rgba(10,25,10,0.45) 100%);
}
.plant-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
}
.breadcrumb {
  position: absolute;
  top: 110px;
  left: 60px;
  z-index: 3;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}
.breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: var(--gold); margin: 0 10px; }
.plant-medallion {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.plant-medallion img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.plant-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.plant-info-table {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  gap: 0;
  background: var(--cream);
  border: 2px solid #E0D4C4;
  padding: 5px;
}
.plant-info-cell {
  padding: 18px 16px;
  text-align: center;
  background: #EEE3D0;
  border: none;
  border-right: 2px solid #E0D4C4;
}
.plant-info-cell:last-child {
  border-right: none;
}
.plant-info-cell h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--dark-green);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.plant-info-cell h5::after { content: ':'; }
.plant-info-cell p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--dark-green);
  line-height: 1.4;
}
.plant-info-cell em {
  font-style: italic;
}
/* Origins & History */
.plant-origins {
  background: #f7f2ed;
  padding: 40px;
}
.plant-origins-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}
.plant-origins-text {
  background: #fff;
  padding: 60px 50px;
}
.origins-block {
  margin-bottom: 70px;
  text-align: left;
}
.origins-block:last-child { margin-bottom: 0; }
.origins-block h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-green);
  text-align: center;
  margin-bottom: 0;
}
.origins-decoration {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.origins-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: var(--dark-green);
  margin-bottom: 14px;
}
.origins-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}
.plant-origins-image {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px;
}
.plant-origins-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
/* Wellbeing */
.plant-wellbeing {
  position: relative;
  padding: 100px 60px;
  overflow: hidden;
}
.plant-wellbeing-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.45);
  z-index: 0;
}
.plant-wellbeing-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.plant-wellbeing-content h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.plant-wellbeing-content .subtitle {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 50px;
}
.plant-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.benefit {
  width: calc((100% - 40px) / 3);
  background: rgba(45, 74, 45, 0.85);
  backdrop-filter: blur(8px);
  padding: 32px 28px;
  text-align: left;
  border: 1px solid rgba(201,168,76,0.25);
}
.benefit h4 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.benefit p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
}
/* ─── CONTACT MODAL ───────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 10, 0.75);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--warm-white);
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s ease;
  padding: 52px 52px 46px;
  border-top: 4px solid var(--gold);
}
.modal-backdrop.open .modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 28px;
  line-height: 1;
  transition: color 0.2s;
  padding: 0;
}
.modal-close:hover { color: var(--dark-green); }
.modal h2 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 0;
}
.modal h2::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-top: 12px;
}
.modal-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-mid);
  margin: 18px 0 28px;
  line-height: 1.5;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .field {
  margin-bottom: 18px;
}
.contact-form label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid #d8d2c4;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.modal-error {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: #a14a3a;
  margin-bottom: 14px;
}
.contact-form button[type="submit"] {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 14px 36px;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
  margin-top: 6px;
}
.contact-form button[type="submit"]:hover { background: var(--gold-light); transform: translateY(-1px); }
.modal-form.hidden { display: none; }
.modal-thanks {
  display: none;
  text-align: center;
  padding: 12px 0 4px;
}
.modal-thanks.active { display: block; }
.modal-thanks-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 26px;
}
.modal-thanks h2 { text-align: center; }
.modal-thanks h2::after { margin: 12px auto 0; }
.modal-thanks p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 18px 0 28px;
}
.modal-thanks button {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 14px 36px;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.25s;
}
.modal-thanks button:hover { background: var(--gold-light); }
@media (max-width: 580px) {
  .modal { padding: 44px 28px 32px; }
  .contact-form .row { grid-template-columns: 1fr; gap: 0; }
}
/* ─── PAGE HERO (compact) ─────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 380px;
  padding: 140px 60px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.45);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,25,10,0.45), rgba(10,25,10,0.6));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero .effective {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
/* ─── LEGAL CONTENT ───────────────────────────────────── */
.legal-content {
  background: var(--warm-white);
  padding: 80px 60px 100px;
}
.legal-content-inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-top: 50px;
  margin-bottom: 18px;
}
.legal-content h2::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-top: 12px;
}
.legal-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: var(--gold);
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: none;
  margin: 10px 0 18px;
  padding: 0;
}
.legal-content ul li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}
.legal-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.legal-content a:hover { border-color: var(--gold); }
.legal-contact {
  margin-top: 30px;
  padding: 24px 28px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.legal-contact p { margin-bottom: 4px; }
.legal-contact p:last-child { margin-bottom: 0; }
/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .about-us { padding: 70px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; max-width: 600px; margin-bottom: 80px; }
  .about-image { max-width: 420px; margin: 0 auto; }
  .origins-section { padding: 70px 24px 60px; }
  .origins-grid { grid-template-columns: 1fr; gap: 40px; }
  .origins-image { text-align: center; }
  .origins-image img { margin: 0 auto; }
  .dossier-section { padding: 60px 24px 80px; }
  .dossier-inner { grid-template-columns: 1fr; gap: 40px; }
  .dossier-image { margin-top: 0; }
  .dossier-image img { margin: 0 auto; }
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    max-width: 80vw;
    background: var(--dark-green);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    padding: 80px 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 101;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 14px; }
  .plant-grid, .discover-grid, .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; padding: 40px 24px 30px; }
  .plant-stories, .discover-band, .archive, .collections { padding: 60px 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; padding: 16px 24px; }
  .quote-banner-content blockquote { font-size: 28px; }
  .plant-hero, .plant-wellbeing { padding: 80px 24px; }
  .plant-origins { padding: 24px; }
  .page-hero { padding: 120px 24px 50px; min-height: 300px; }
  .legal-content { padding: 60px 24px 80px; }
  .plant-origins-inner { grid-template-columns: 1fr; gap: 24px; }
  .plant-origins-text { padding: 40px 28px; }
  .plant-origins-image { padding: 28px; }
  .plant-info-table {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .plant-info-cell {
    background: #EEE3D0;
    border: 2px solid #E0D4C4;
    border-right: 2px solid #E0D4C4;
  }
  .plant-info-cell:last-child { border-right: 2px solid #E0D4C4; }
  .breadcrumb { left: 24px; top: 90px; }
  .benefit { width: calc((100% - 20px) / 2); }
}
@media (max-width: 580px) {
  .discover-grid, .archive-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .hero-btns { flex-direction: column; align-items: center; }
  nav.scrolled { padding: 12px 20px; }
  .hero-logo { max-width: 160px; }
  .plant-info-table { grid-template-columns: 1fr; }
  .benefit { width: 100%; }
  /* Plant stories → horizontal swipe carousel */
  .plant-stories { padding: 60px 0 70px; }
  .plant-stories .section-title { padding: 0 24px; }
  .plant-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 24px 28px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .plant-grid::-webkit-scrollbar { display: none; }
  .plant-card {
    flex: 0 0 calc(100vw - 72px);
    max-width: 320px;
    scroll-snap-align: center;
  }
}