/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --ivory: #F3EFDD;
  --sand: #E7DBBC;
  --ink: #241F16;
  --ink-soft: #4B4335;
  --forest: #364A32;
  --forest-dk: #1D2A1A;
  --forest-mid: #48603F;
  --oxide: #7C4A2D;
  --oxide-dk: #5B3620;
  --gold: #B98B33;
  --gold-soft: #D6B36A;
  --line: rgba(36, 31, 22, 0.14);
  --line-lt: rgba(243, 239, 221, 0.22);

  --display: 'Fraunces', serif;
  --body: 'Manrope', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  margin: 0;
  color: var(--forest-dk);
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxide);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--oxide);
  display: inline-block;
}

.eyebrow.on-dark {
  color: var(--gold-soft);
}

.eyebrow.on-dark::before {
  background: var(--gold-soft);
}

/* =========================================================
   NAV
   ========================================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 239, 221, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark svg {
  width: 38px;
  height: 38px;
}

.brand-mark span {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--forest-dk);
  letter-spacing: 0.01em;
}

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

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest-dk);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--oxide);
  border-radius: 2px;
}

.nav-cta {
  background: var(--forest-dk);
  color: var(--ivory) !important;
  padding: 11px 22px !important;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background .25s ease, transform .25s ease;
}

.nav-cta:hover {
  background: var(--oxide-dk);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 34px;
  height: 34px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

@media (max-width:880px) {
  .nav-links {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px 32px;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest-dk);
}

.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--line-lt);
  color: var(--ivory);
}

.btn-outline:hover {
  background: var(--line-lt);
}

.btn-dark {
  background: var(--forest-dk);
  color: var(--ivory);
}

.btn-dark:hover {
  background: var(--oxide-dk);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform .25s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* =========================================================
   HERO (dark, shared pattern)
   ========================================================= */
.hero {
  position: relative;
  background: var(--forest-dk);
  color: var(--ivory);
  overflow: hidden;
  padding: 120px 0 90px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(185, 139, 51, 0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at -5% 110%, rgba(124, 74, 45, 0.22), transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--ivory);
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.04;
  font-weight: 600;
  max-width: 820px;
  margin-top: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}

.hero .lede {
  margin-top: 26px;
  max-width: 540px;
  font-size: 18px;
  color: rgba(243, 239, 221, 0.78);
}

.hero .actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   SEAL BADGES (signature element)
   ========================================================= */
.seal-row {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.seal-card {
  border: 1px solid var(--line-lt);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}

.seal-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
  background: rgba(243, 239, 221, 0.04);
}

.seal-card svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.seal-card h3 {
  color: var(--ivory);
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
}

.seal-card p {
  color: rgba(243, 239, 221, 0.62);
  font-size: 13.5px;
  margin-top: 4px;
}

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

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section {
  padding: 110px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-top: 16px;
  line-height: 1.12;
}

.section-head h2 em {
  font-style: italic;
  color: var(--oxide);
  font-weight: 500;
}

.section-head p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 520px;
}

.section.on-forest {
  background: var(--forest-dk);
  color: var(--ivory);
}

.section.on-forest h2 {
  color: var(--ivory);
}

.section.on-forest .section-head p {
  color: rgba(243, 239, 221, 0.7);
}

.section.on-sand {
  background: var(--sand);
}

/* =========================================================
   DIVIDER (botanical + flame linework, signature motif)
   ========================================================= */
.divider {
  display: flex;
  justify-content: center;
  padding: 0 0 6px;
}

.divider svg {
  width: 220px;
  height: auto;
  opacity: 0.8;
}

/* =========================================================
   OFFERING CARDS (label-card system)
   ========================================================= */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.offer-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(36, 31, 22, 0.28);
}

.offer-media {
  aspect-ratio: 4/3.2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.offer-media svg {
  width: 64%;
  height: 64%;
}

.offer-body {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.offer-tag {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oxide);
}

.offer-body h3 {
  font-size: 25px;
  font-style: italic;
  font-weight: 500;
}

.offer-body p {
  color: var(--ink-soft);
  font-size: 15px;
  flex: 1;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--forest-dk);
  padding-top: 6px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.offer-link svg {
  width: 14px;
  height: 14px;
  transition: transform .25s ease;
}

.offer-card:hover .offer-link svg {
  transform: translateX(4px);
}

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

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
  background: var(--oxide-dk);
  color: var(--ivory);
  padding: 64px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-item svg {
  width: 34px;
  height: 34px;
}

.trust-item h4 {
  color: var(--ivory);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--body);
}

.trust-item p {
  color: rgba(243, 239, 221, 0.65);
  font-size: 13.5px;
}

@media (max-width:900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   PRODUCT GRID (used on brand pages)
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-media {
  aspect-ratio: 1/1.02;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-media svg {
  width: 56%;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--forest-dk);
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

.product-info {
  padding: 22px 22px 26px;
}

.product-info h4 {
  font-size: 19px;
  font-weight: 600;
  font-family: var(--body);
  color: var(--ink);
}

.product-info .size {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
  display: block;
}

.product-info p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 10px;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-price .amount {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--forest-dk);
}

.product-price button {
  background: none;
  border: 1px solid var(--forest-dk);
  color: var(--forest-dk);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  transition: background .25s ease, color .25s ease;
}

.product-price button:hover {
  background: var(--forest-dk);
  color: var(--ivory);
}

@media (max-width:900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* =========================================================
   STORY / SPLIT SECTION
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.split-media {
  aspect-ratio: 1/1;
  background: var(--sand);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.split-media svg {
  width: 60%;
}

.split-text .section-head {
  margin-bottom: 0;
}

.ritual-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ritual-item {
  display: flex;
  gap: 18px;
}

.ritual-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ritual-item h5 {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--body);
  color: var(--ink);
}

.ritual-item p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}

@media (max-width:900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}

.testimonial .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial p {
  margin-top: 16px;
  font-size: 15px;
  color: var(--ink-soft);
  font-style: italic;
}

.testimonial .who {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--oxide);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width:900px) {
  .testimonial-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: var(--forest-dk);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 90% 20%, rgba(185, 139, 51, 0.18), transparent 60%);
}

.cta-band>* {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--ivory);
  font-size: clamp(26px, 3.4vw, 38px);
  max-width: 480px;
}

.cta-band .cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width:760px) {
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 32px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--forest-dk);
  color: rgba(243, 239, 221, 0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-lt);
}

.footer-brand .brand-mark span {
  color: var(--ivory);
}

.footer-brand p {
  margin-top: 18px;
  font-size: 14px;
  max-width: 280px;
  color: rgba(243, 239, 221, 0.6);
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14.5px;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: var(--ivory);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(243, 239, 221, 0.45);
  flex-wrap: wrap;
  gap: 12px;
}

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

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

/* =========================================================
   PAGE HERO (secondary pages, non-home)
   ========================================================= */
.page-hero {
  background: var(--forest-dk);
  color: var(--ivory);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 500px at 80% 0%, rgba(185, 139, 51, 0.14), transparent 60%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--ivory);
  font-size: clamp(38px, 5.4vw, 64px);
  margin-top: 18px;
  max-width: 700px;
}

.page-hero p {
  margin-top: 22px;
  max-width: 520px;
  color: rgba(243, 239, 221, 0.75);
  font-size: 17px;
}

.crumb {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(243, 239, 221, 0.5);
  letter-spacing: 0.08em;
}

.crumb a:hover {
  color: var(--gold-soft);
}

/* =========================================================
   INGREDIENT PILLS
   ========================================================= */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  font-family: var(--mono);
  font-size: 12.5px;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 16px;
  color: var(--ink-soft);
}

/* =========================================================
   FORM (contact page)
   ========================================================= */
.form-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s ease, background .25s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--oxide);
  background: var(--ivory);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width:600px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  color: var(--oxide);
  flex-shrink: 0;
}

.contact-info-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.contact-info-item p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   UTILITIES
   ========================================================= */
.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.mt-0 {
  margin-top: 0;
}

.stack {
  display: flex;
  flex-direction: column;
}