/* ─── CSS Variables ─────────────────────────────── */
:root {
  --cream:    #f7f3ec;
  --parchment:#ede7d9;
  --sage:     #7a8c6e;
  --sage-dark:#4e5f45;
  --clay:     #b07050;
  --gold:     #c8a85a;
  --charcoal: #2c2c2a;
  --text:     #1e1c18;
  --muted:    #2e2b27;
  --white:    #ffffff;
  --nav-h:    68px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset & Base ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 22px; }
body {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utility ───────────────────────────────────── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--sage-dark); }

/* ─── HERO LOGO (top-right overlay) ────────────── */
.hero-logo {
  position: absolute;
  top: 28px;
  right: 36px;
  z-index: 10;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  text-decoration: none;
  animation: heroFade 1.2s ease 0.2s both;
}

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none; border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: relative;
  background: var(--cream);
  padding: 28px;
  flex-direction: column;
  gap: 0;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(44,44,42,0.12);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--parchment);
  color: var(--text);
  font-weight: 400;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--sage-dark); }

/* ─── HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  max-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,24,18,0.72) 0%,
    rgba(28,24,18,0.18) 55%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 28px 60px;
  max-width: 720px;
  margin: 0 auto 0 0;
  padding-left: clamp(28px, 6vw, 100px);
  animation: heroFade 1.4s ease 0.3s both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: #e8d9b0;
}
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 14px 32px;
  border: 1px solid;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}
.btn-light {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-light:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-sage {
  border-color: var(--sage-dark);
  color: var(--sage-dark);
  background: transparent;
}
.btn-sage:hover {
  background: var(--sage-dark);
  color: var(--white);
}
.btn svg { width: 14px; height: 14px; }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroFade 1.4s ease 1.2s both;
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.35);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.35; transform: scaleY(1); }
  50%      { opacity: 1;    transform: scaleY(0.5); transform-origin: top; }
}

/* ─── GREEN NAV STRIP ───────────────────────────── */
.intro-strip {
  background: var(--sage-dark);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(44,44,42,0.15);
}
.strip-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}
.strip-nav-links li a {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 16px 16px;
  position: relative;
  transition: color var(--transition);
}
.strip-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.strip-nav-links li a:hover { color: var(--white); }
.strip-nav-links li a:hover::after { transform: scaleX(1); }


/* ─── ABOUT SPLIT ───────────────────────────────── */
.about {
  padding: clamp(24px, 3vw, 40px) 0 clamp(24px, 3vw, 40px);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center 30%;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: -12px; bottom: -12px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-text { padding-right: 24px; }
.about-title { font-size: clamp(1.4rem, 3vw, 2.1rem); }
.about-location {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-style: italic;
  margin-top: -10px;
  margin-bottom: 18px;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 1.02rem;
}

/* ─── FEATURES ROW ──────────────────────────────── */
.features {
  background: var(--parchment);
  padding: clamp(24px, 3vw, 40px) 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--cream);
  border-bottom: 2px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(44,44,42,0.09);
}
.feature-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.feature-card-link h3 {
  transition: color var(--transition);
  position: relative;
  display: inline-block;
}
.feature-card-link h3::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card-link:hover h3 { color: var(--sage-dark); }
.feature-card-link:hover h3::after { transform: scaleX(1); }
.feature-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin: -40px -28px 20px;
  width: calc(100% + 56px);
}
.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-card:hover .feature-img-wrap img { transform: scale(1.04); }
.feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 20px;
  color: var(--sage-dark);
}
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CONTENT NOTE (small italic note text used across pages) ── */
.content-note,
.content-section .content-note,
.content-section p.content-note {
  font-size: 0.78rem !important;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 8px;
}

/* ─── INLINE LINK ───────────────────────────────── */
.inline-link {
  color: var(--sage-dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  font-weight: 400;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.inline-link:hover {
  color: var(--clay);
  text-decoration-color: var(--clay);
}

/* ─── CASTOR OIL CONTENT ────────────────────────── */
.castor-oil-content { display: flex; flex-direction: column; gap: 28px; }
.castor-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 12px;
}
.castor-img-wrap {
  position: relative;
}
.castor-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 600px;
  display: block;
  object-fit: cover;
}
.castor-img-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: -12px; bottom: -12px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.castor-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.castor-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.castor-gallery-grid .gal-item { height: 220px; }

@media (max-width: 900px) {
  .castor-split-grid { grid-template-columns: 1fr; gap: 32px; }
  .castor-img-wrap::before { display: none; }
  .castor-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .castor-gallery-grid { grid-template-columns: 1fr; }
  .castor-gallery-grid .gal-item { height: 200px; }
}

/* ─── GALLERY ───────────────────────────────────── */
.gallery {
  padding: clamp(24px, 3vw, 40px) 0;
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}
.gal-item {
  overflow: hidden;
  cursor: pointer;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gal-item:hover img { transform: scale(1.04); }
.gal-item:nth-child(1) { grid-column: 1 / 8; grid-row: 1; height: 340px; }
.gal-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1; height: 340px; }
.gal-item:nth-child(3) { grid-column: 1 / 5; grid-row: 2; height: 240px; }
.gal-item:nth-child(4) { grid-column: 5 / 9; grid-row: 2; height: 240px; }
.gal-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2; height: 240px; }

/* ─── QUOTE BANNER ──────────────────────────────── */
.quote-banner {
  background: var(--charcoal);
  padding: 16px 28px;
  text-align: center;
  position: relative;
  overflow: visible;
}
.quote-banner::before {
  content: '"';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.quote-banner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto 20px;
  line-height: 1.6;
  white-space: normal;
  word-wrap: break-word;
}
.quote-banner cite {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ─── NEWSLETTER ────────────────────────────────── */
.newsletter {
  padding: clamp(28px, 4vw, 48px) 0;
  background: var(--parchment);
  text-align: center;
}
.newsletter .section-title { margin-bottom: 14px; }
.newsletter p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 32px;
  font-size: 0.97rem;
}
.form-row {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.form-row input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #ccc4b4;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.form-row input:focus { border-color: var(--sage-dark); }
.form-row input::placeholder { color: var(--muted); }
.form-row button {
  padding: 14px 28px;
  background: var(--sage-dark);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.form-row button:hover { background: var(--clay); }

/* ─── FOOTER ────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 4fr 1fr 1fr 1fr;
  gap: 40px 32px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo {
  font-size: 1.2rem;
  color: var(--white);
  display: block;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; }
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.social-row { display: flex; gap: 18px; }

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
  .strip-nav-links { display: none; }
  .nav-toggle { display: flex; }
  .intro-strip { justify-content: flex-end; padding: 0 20px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 320px; }
  .about-text { padding-right: 0; }
  .about-img-wrap::before { display: none; }

  .features-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal-item:nth-child(1) { grid-column: 1/2; grid-row: auto; height: 220px; }
  .gal-item:nth-child(2) { grid-column: 2/3; grid-row: auto; height: 220px; }
  .gal-item:nth-child(3) { grid-column: 1/2; grid-row: auto; height: 200px; }
  .gal-item:nth-child(4) { grid-column: 2/3; grid-row: auto; height: 200px; }
  .gal-item:nth-child(5) { grid-column: 1/3; grid-row: auto; height: 200px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .form-row { flex-direction: column; }
  .form-row input, .form-row button { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-item:nth-child(n) { grid-column: 1; height: 220px; }
  .scroll-hint { display: none; }
  .footer-logo-img { width: 76px !important; height: 76px !important; }
}

/* ═══════════════════════════════════════════════
   CONTENT PAGE STYLES (castor-oil-packs + future pages)
   ═══════════════════════════════════════════════ */

/* ── PAGE HERO ── */
.page-hero {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78,95,69,0.35) 0%, rgba(200,168,90,0.1) 100%);
  z-index: 0;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  max-height: 720px;
}
.page-hero-content {
  padding: 48px 48px 48px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero-img {
  position: relative;
  overflow: hidden;
  max-height: 600px;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 280px;
  max-height: 600px;
}
.page-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--charcoal) 0%, transparent 30%);
}
.page-hero .tag { color: var(--gold); border-bottom-color: var(--gold); margin-bottom: 14px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero h1 em { font-style: italic; color: #e8d9b0; }
.page-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 440px;
}
.breadcrumb {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); transition: opacity 0.2s; text-decoration: none; }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb span { margin: 0 8px; }

/* ── CONTENT LAYOUT ── */
.content-page {
  background: var(--cream);
  padding: clamp(28px, 4vw, 48px) 0 0;
}
.content-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── INTRO BLOCK ── */
.intro-block { margin-bottom: 56px; }
.intro-block p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ── SECTION HEADINGS ── */
.content-section { margin-bottom: 60px; }
.content-section + .content-section { margin-top: -20px; }
.content-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
}
.content-section h2 em { font-style: italic; color: var(--sage-dark); }
.content-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 32px 0 10px;
}
.content-section p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
}
.content-section a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  font-weight: 400;
  transition: color 0.3s, text-decoration-color 0.3s;
}
.content-section a:hover {
  color: var(--clay);
  text-decoration-color: var(--clay);
}

/* ── INLINE IMAGE ── */
.inline-img { margin: 32px 0; position: relative; }
.inline-img img { width: 100%; height: 360px; object-fit: cover; display: block; }
.inline-img.float-right { float: right; width: 42%; margin: 8px 0 24px 36px; }
.inline-img.float-right img { height: 280px; }
.inline-img.float-left { float: left; width: 42%; margin: 8px 36px 24px 0; }
.inline-img.float-left img { height: 280px; }
.inline-img figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.clearfix::after { content: ''; display: table; clear: both; }

/* ── STORY CARD ── */
.story-card {
  background: var(--parchment);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin: 28px 0;
  position: relative;
}
.story-card h3 { margin-top: 0; font-size: 1.2rem; color: var(--sage-dark); }
.story-card p { font-size: 0.97rem; color: var(--text); margin-bottom: 12px; }
.story-card p:last-child { margin-bottom: 0; }

/* ── PACK METHOD GRID ── */
.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 28px 0; }
.pack-card {
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  padding: 28px 22px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pack-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(44,44,42,0.1); }
.pack-card h3 { font-size: 1.05rem; margin: 0 0 10px; color: var(--sage-dark); }
.pack-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin: 0; }
.pack-card a { color: var(--sage-dark); text-decoration: underline; font-size: 0.88rem; }

/* ── NOTE BOX ── */
.note-box {
  background: var(--charcoal);
  color: rgba(255,255,255,0.82);
  padding: 24px 32px;
  margin: 40px 0;
  font-size: 0.92rem;
  line-height: 1.75;
  border-left: 3px solid var(--gold);
}
.note-box strong { color: var(--gold); }

/* ── STEPS ROW WITH SIDE IMAGE ── */
.steps-row {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 28px;
  align-items: start;
}
.steps-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.steps-side-img {
  margin: 0;
}
.steps-side-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.steps-side-img figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .steps-row { grid-template-columns: 1fr; }
  .steps-cards { grid-template-columns: 1fr; }
}

/* ── STEPS WITH IMAGE ── */
.steps-with-image {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}
.steps-img {
  width: 260px;
  flex-shrink: 0;
}
.steps-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 900px) {
  .steps-with-image { grid-template-columns: 1fr; }
  .steps-img { width: 100%; }
}

/* ── RESOURCES TABLE ── */
.resources-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.resources-table tr { border-bottom: 1px solid var(--parchment); }
.resources-table tr:first-child { border-top: 1px solid var(--parchment); }
.resources-table td { padding: 14px 12px; vertical-align: top; font-size: 0.97rem; line-height: 1.7; }
.res-link { width: 36%; white-space: nowrap; padding-right: 24px !important; }
.res-link a {
  color: var(--sage-dark);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: color 0.3s, text-decoration-color 0.3s;
}
.res-link a:hover { color: var(--clay); text-decoration-color: var(--clay); }
.res-desc { color: var(--text); }

/* ── VIDEO ── */
.video-wrap { margin: 32px 0; }
.video-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.video-responsive { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-responsive iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ── AFFILIATE NOTE ── */
.affiliate-note,
.content-section .affiliate-note,
.content-section p.affiliate-note {
  font-size: 0.78rem !important;
  color: var(--muted);
  font-style: italic;
  margin-top: 4px;
  margin-bottom: 4px;
}

/* ── CONTENT PAGE RESPONSIVE ── */
@media (max-width: 700px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
  .page-hero-content { padding: 36px 28px; }
  .pack-grid { grid-template-columns: 1fr; }
  .inline-img.float-right, .inline-img.float-left { float: none; width: 100%; margin: 24px 0; }
}
@media (max-width: 600px) {
  .res-link { white-space: normal; width: 100%; display: block; }
  .resources-table, .resources-table tbody, .resources-table tr, .resources-table td { display: block; width: 100%; }
  .resources-table tr { margin-bottom: 12px; }
  .res-link { padding-bottom: 4px !important; }
}

/* ═══════════════════════════════════════════════
   REUSABLE CONTENT CLASSES
   ═══════════════════════════════════════════════ */

/* ── PAGE TITLE (hero h1 on content pages) ── */
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-title em { font-style: italic; color: #e8d9b0; }

/* ── PAGE SUBTITLE (hero paragraph on content pages) ── */
.page-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 440px;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  border: none;
  border-top: 1px solid var(--gold);
  margin: 40px 0;
  opacity: 0.5;
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--sage-dark);
  line-height: 1.5;
}

/* ── IMAGE CAPTION ── */
.image-caption {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ── TWO COLUMN TEXT ── */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 28px 0;
}
.two-col-text p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
}
@media (max-width: 700px) {
  .two-col-text { grid-template-columns: 1fr; gap: 0; }
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--sage-dark);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 888;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  border-radius: 0;
  line-height: 1;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--charcoal); transform: translateY(-2px); }
@media (max-width: 600px) {
  .back-to-top { bottom: 18px; right: 18px; width: 40px; height: 40px; }
}

/* ══════════════════════════════════════════════
   CINEMATIC HERO — category landing pages
   (Natural Remedies, Vibrant Living, Botanicals, Adventures)
   ══════════════════════════════════════════════ */
.cinematic-hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 860px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cinematic-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: slowzoom 14s ease forwards;
  z-index: 0;
}
@keyframes slowzoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,44,42,0.2) 0%,
    rgba(44,44,42,0.55) 40%,
    rgba(44,44,42,0.82) 80%,
    rgba(44,44,42,0.95) 100%
  );
}
.cinematic-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 28px;
  max-width: 860px;
}
.cinematic-content .breadcrumb {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  margin-bottom: 28px;
}
.cinematic-content .breadcrumb a { color: var(--gold); text-decoration: none; }
.cinematic-content .breadcrumb a:hover { opacity: 0.8; }
.cinematic-content .breadcrumb span { margin: 0 10px; }
.breadcrumb-bottom {
  position: absolute;
  bottom: 84px;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.breadcrumb-bottom a { color: var(--gold); text-decoration: none; }
.breadcrumb-bottom a:hover { opacity: 0.8; }
.breadcrumb-bottom span { margin: 0 10px; color: rgba(255,255,255,0.5); }
.cinematic-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.cinematic-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
  letter-spacing: -0.01em;
}
.cinematic-content h1 em { font-style: italic; color: #e8d9b0; display: block; }
.cinematic-gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.cinematic-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto 36px;
}
.cinematic-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.cinematic-scroll svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.45); }
@media (max-width: 700px) {
  .cinematic-hero { height: 70vh; }
}

/* ── CATEGORY INTRO ── */
.category-intro {
  background: var(--parchment);
  padding: 48px 28px;
  text-align: center;
}
.category-intro p {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
}

/* ── CATEGORY CARDS ── */
.category-section {
  background: var(--cream);
  padding: clamp(40px, 6vw, 80px) 0;
}
.category-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
.category-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
}
.category-header h2 em { font-style: italic; color: var(--sage-dark); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.category-card {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44,44,42,0.12);
}
.category-card-img-wrap { overflow: hidden; }
.category-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.category-card:hover .category-card-img { transform: scale(1.04); }
.category-card-body { padding: 28px 28px 32px; }
.category-card-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  display: inline-block;
  margin-bottom: 14px;
}
.category-card-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 8px;
}
.category-card-body h2 em { font-style: italic; color: var(--sage-dark); }
.category-card-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 16px;
}
.category-card-body p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}
.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  border: 1px solid var(--sage-dark);
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.category-card-link:hover { background: var(--sage-dark); color: var(--white); }
.category-card-link svg { width: 12px; height: 12px; }
.category-card.coming-soon { opacity: 0.65; border-bottom-color: var(--muted); }
.category-card.coming-soon .category-card-img { filter: grayscale(40%); }
.coming-soon-badge {
  display: inline-block;
  background: var(--charcoal);
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 12px;
}
@media (max-width: 700px) {
  .category-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .category-header { padding: 0 20px; }
}

/* ── REMEDY CARDS — natural-remedies, adventures, botanicals ── */
.remedies-section {
  background: var(--cream);
  padding: clamp(40px, 6vw, 80px) 0;
}
.remedies-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
.remedies-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
}
.remedies-header h2 em { font-style: italic; color: var(--sage-dark); }
.remedies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.remedy-card {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.remedy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44,44,42,0.12);
}
.remedy-card-img-wrap { overflow: hidden; }
.remedy-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.remedy-card:hover .remedy-card-img { transform: scale(1.04); }
.remedy-card-body { padding: 28px 28px 32px; }
.remedy-card-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  display: inline-block;
  margin-bottom: 14px;
}
.remedy-card-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 8px;
}
.remedy-card-body h2 em { font-style: italic; color: var(--sage-dark); }
.remedy-card-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 16px;
}
.remedy-card-body p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}
.remedy-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  border: 1px solid var(--sage-dark);
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.remedy-card-link:hover { background: var(--sage-dark); color: var(--white); }
.remedy-card-link svg { width: 12px; height: 12px; }
.remedy-card.coming-soon { opacity: 0.65; border-bottom-color: var(--muted); }
.remedy-card.coming-soon .remedy-card-img { filter: grayscale(40%); }
@media (max-width: 700px) {
  .remedies-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .remedies-header { padding: 0 20px; }
}
