/* =============================================
   COW'S TOUCH — Main Stylesheet
   Palette: cream, warm gold, deep forest green, soft ivory
   Type: Cormorant Garamond (display) + Inter (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F7F2E8;
  --cream-deep:  #EDE5D4;
  --gold:        #B8924A;
  --gold-light:  #D4AE6A;
  --gold-pale:   #F0DFB8;
  --green:       #2C4A35;
  --green-mid:   #3D6647;
  --green-light: #5A8A60;
  --brown:       #6B4C2A;
  --text:        #2A2015;
  --text-mid:    #4A3C28;
  --text-light:  #7A6A50;
  --white:       #FDFAF4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w:   860px;
  --max-w-wide: 1100px;
  --gap:     clamp(2rem, 5vw, 4rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--gold); }

/* ── Typography ───────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green);
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 300; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 500; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

p { max-width: 68ch; color: var(--text-mid); margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.8rem 1.4rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--green);
  background: var(--gold-pale);
  border-radius: 0 4px 4px 0;
}
blockquote cite {
  display: block;
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-style: normal;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ── Decorative divider ───────────────────────── */
.divider {
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.5rem;
  margin: var(--gap) 0;
  opacity: 0.6;
}

.section-rule {
  border: none;
  border-top: 1px solid var(--cream-deep);
  margin: var(--gap) auto;
  max-width: var(--max-w);
}

/* ── Layout helpers ───────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--wide {
  max-width: var(--max-w-wide);
}

.section {
  padding: var(--gap) 1.5rem;
}

.section--green {
  background: var(--green);
  color: var(--cream);
}
.section--green h1,
.section--green h2,
.section--green h3,
.section--green p { color: var(--cream); }
.section--green .eyebrow { color: var(--gold-light); }

.section--gold-pale {
  background: var(--gold-pale);
}
.section--dark {
  background: var(--text);
  color: var(--cream);
}

/* ── NAVIGATION ───────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 1px solid rgba(184,146,74,0.3);
}

.nav-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream) !important;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(247,242,232,0.8);
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
  border-radius: 2px;
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: var(--green);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    width: 100%;
  }
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,74,53,0.35) 0%,
    rgba(42,32,21,0.60) 70%,
    rgba(42,32,21,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(2rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 { color: var(--white); }
.hero-content p { color: rgba(253,250,244,0.85); max-width: 55ch; }

/* ── Page hero (inner pages) ──────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,74,53,0.2) 0%,
    rgba(42,32,21,0.75) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem,5vw,4rem) 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.page-hero-content .eyebrow { color: var(--gold-light); }
.page-hero-content h1 { color: var(--white); margin-bottom: 0.3rem; }
.page-hero-content .page-subtitle {
  color: rgba(253,250,244,0.80);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* ── Breadcrumb ───────────────────────────────── */
.breadcrumb {
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── In-page nav tabs ─────────────────────────── */
.page-tabs {
  background: var(--cream-deep);
  border-bottom: 1px solid rgba(184,146,74,0.25);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: sticky;
  top: 60px;
  z-index: 50;
}
.page-tabs-inner {
  display: flex;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-tabs a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.page-tabs a:hover { color: var(--green); border-color: var(--gold); }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); color: var(--white); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-green {
  background: var(--green);
  color: var(--cream);
}
.btn-green:hover { background: var(--green-mid); color: var(--cream); }

/* ── Cards (gift cards on homepage) ──────────────*/
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: var(--max-w-wide);
  margin: 2.5rem auto 0;
}

.gift-card {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.gift-card:hover {
  box-shadow: 0 12px 40px rgba(44,74,53,0.12);
  transform: translateY(-4px);
}
.gift-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.gift-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gift-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.gift-card h3 { margin-bottom: 0.2rem; font-size: 1.5rem; }
.gift-card .gift-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}
.gift-card p { font-size: 0.9rem; flex: 1; }
.gift-card .card-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.gift-card .card-link:hover { color: var(--gold); }

/* ── Panchagavya ingredient chips ─────────────── */
.ingredient-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.chip {
  background: var(--green);
  color: var(--cream);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ── Panchagavya five elements grid ───────────── */
.five-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 2rem auto;
}
.five-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: 4px;
}
.five-item .icon { font-size: 2rem; margin-bottom: 0.5rem; }
.five-item h4 { color: var(--green); font-size: 1.1rem; margin-bottom: 0.1rem; }
.five-item small { color: var(--text-light); font-family: var(--font-display); font-style: italic; }

/* ── Quote / pull quote ───────────────────────── */
.pull-quote {
  text-align: center;
  max-width: 640px;
  margin: var(--gap) auto;
  padding: 0 1.5rem;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-style: italic;
  color: var(--green);
  line-height: 1.45;
  max-width: none;
  margin: 0;
}
.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.8rem;
}

/* ── Stat boxes ───────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 2rem auto;
}
.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(184,146,74,0.25);
  border-radius: 4px;
}
.stat-box .stat-icon {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.stat-box h4 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.stat-box p {
  font-size: 0.85rem;
  color: rgba(247,242,232,0.75);
  max-width: none;
  margin: 0;
}

/* ── Section with image aside ─────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w-wide);
  margin: 0 auto;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img { border-radius: 4px; width: 100%; }
@media (max-width: 700px) {
  .two-col {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    direction: ltr !important;
  }
  .two-col > * { direction: ltr; }
  .two-col img {
    width: 100% !important;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
  }
}

/* ── Mini link cards (bottom of homepage) ────── */
.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w-wide);
  margin: 2rem auto 0;
}
.link-card {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: 4px;
  padding: 2rem;
  transition: box-shadow 0.3s;
}
.link-card:hover { box-shadow: 0 8px 30px rgba(44,74,53,0.1); }
.link-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.link-card p { font-size: 0.9rem; }
.link-card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.link-card .card-link:hover { color: var(--gold); }

/* ── Begin Anywhere CTA links ─────────────────── */
.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ── Numbered steps ───────────────────────────── */
.steps-list {
  list-style: none;
  counter-reset: steps;
  max-width: var(--max-w);
  margin: 1.5rem auto;
}
.steps-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--cream-deep);
  align-items: start;
}
.steps-list li::before {
  content: counter(steps);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-top: 0.1rem;
}
.steps-list li:last-child { border-bottom: none; }
.steps-list strong { display: block; color: var(--green); font-weight: 500; margin-bottom: 0.2rem; }

/* ── Essential oil ranked list ────────────────── */
.ranked-list {
  list-style: none;
  max-width: var(--max-w);
  margin: 1.5rem auto;
}
.ranked-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-deep);
  align-items: start;
  counter-increment: rank;
}
.ranked-list li:last-child { border-bottom: none; }
.rank-num {
  background: var(--green);
  color: var(--cream);
  width: 2rem; height: 2rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  flex-shrink: 0;
}

/* ── Table ────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1.5rem 0;
}
.data-table th {
  background: var(--green);
  color: var(--cream);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.data-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--cream-deep);
  color: var(--text-mid);
  vertical-align: top;
}
.data-table tr:nth-child(even) td { background: var(--white); }

/* ── Photo grid ───────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: var(--max-w);
  margin: 2rem auto;
}
.photo-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.photo-grid img {
  width: 100%; height: 220px;
  object-fit: cover;
  border-radius: 3px;
}
@media (max-width: 600px) {
  .photo-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .photo-grid img { height: 160px; }
}

/* ── Disclaimer / note box ────────────────────── */
.note-box {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.4rem;
  border-radius: 0 4px 4px 0;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.note-box p { font-size: inherit; margin: 0; max-width: none; }

/* ── Warning / disclaimer ─────────────────────── */
.warning-box {
  background: #fff8e6;
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.88rem;
}

/* ── References list ──────────────────────────── */
.ref-list {
  list-style: none;
  counter-reset: ref;
  max-width: var(--max-w);
  margin: 1rem 0;
}
.ref-list li {
  counter-increment: ref;
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--cream-deep);
  font-size: 0.88rem;
  align-items: start;
}
.ref-list li::before {
  content: counter(ref);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}
.ref-list li:last-child { border-bottom: none; }
.ref-list strong { display: block; color: var(--green); margin-bottom: 0.15rem; }

/* ── External link list ───────────────────────── */
.link-list {
  list-style: none;
  max-width: var(--max-w);
  margin: 1rem 0;
}
.link-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-deep);
  font-size: 0.9rem;
}
.link-list li:last-child { border-bottom: none; }
.link-list a { color: var(--green); font-weight: 500; }
.link-list a:hover { color: var(--gold); }
.link-list span { display: block; color: var(--text-light); font-size: 0.82rem; margin-top: 0.1rem; }

/* ── Story sections ───────────────────────────── */
.story-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--gap) 1.5rem;
}
.story-section h2 { margin-bottom: 1.2rem; }
.story-section p { max-width: 70ch; }

.story-part-label {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}

/* ── Contact info ─────────────────────────────── */
.contact-block {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contact-block h3 { margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.contact-detail .icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail a { color: var(--green); }
.contact-detail a:hover { color: var(--gold); }

/* ── Protection table ─────────────────────────── */
.protection-card {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.protection-card-header {
  background: var(--green);
  color: var(--cream);
  padding: 1rem 1.5rem;
}
.protection-card-header h3 { color: var(--cream); font-size: 1.2rem; }
.protection-card-header .eyebrow { color: var(--gold-light); }
.protection-card-body { padding: 1.5rem; }
.protection-detail { margin-bottom: 0.6rem; font-size: 0.9rem; color: var(--text-mid); }
.protection-detail strong { color: var(--green); }

/* ── Damar Tantra timeline ────────────────────── */
.timeline {
  max-width: var(--max-w);
  margin: 2rem auto;
  position: relative;
  padding-left: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  padding: 0 0 2rem 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: 0.4rem;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
}
.timeline-item .time-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.timeline-item h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.88rem; margin: 0; }

/* ── FOOTER ───────────────────────────────────── */
.site-footer {
  background: var(--green);
  color: rgba(247,242,232,0.8);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand h3 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(247,242,232,0.65);
  max-width: 26ch;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(247,242,232,0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: var(--max-w-wide);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184,146,74,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(247,242,232,0.45);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-mantra {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(184,146,74,0.6);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── Scroll reveal ────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
}

/* ── Mobile body text fix ─────────────────────── */
@media (max-width: 480px) {
  body { font-size: 15px; }
  p { line-height: 1.65; }
  .two-col img { max-height: 260px; }
}
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.gold { color: var(--gold); }
.italic { font-style: italic; }
.font-display { font-family: var(--font-display); }

/* ── Grid cell paragraph fix ──────────────────── */
/* Prevents global max-width:68ch from squeezing text inside grid columns */
.apply-steps p,
.oil-list p,
.method-card p,
.blend-box p,
.veda-entry p,
.gift-item p,
.science-item p,
.usage-card p,
.usage-card-p p,
.quality-item p,
.five-el p,
.contact-block p,
.protection-card-body p {
  max-width: none !important;
}
