@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=IM+Fell+English:ital@0;1&family=Cinzel+Decorative:wght@400;700&display=swap');

:root {
  --parchment: #F2E0BB;
  --parchment-light: #FAF5E8;
  --parchment-dark: #E0CC98;
  --dark-brown: #1E0F05;
  --brown-mid: #3C1E0C;
  --crimson: #7B1818;
  --crimson-light: #9E2020;
  --gold: #B8871E;
  --gold-light: #D4A833;
  --text: #1A0C05;
  --text-medium: #4A2A1A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--parchment);
  color: var(--text);
  font-family: 'IM Fell English', Georgia, 'Times New Roman', serif;
  font-size: 20px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ─────────────────────────────────────────── */

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--dark-brown);
}

p + p { margin-top: 0.9em; }
strong { color: var(--dark-brown); }

/* ── Links ──────────────────────────────────────────────── */

a {
  color: var(--crimson);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--crimson-light); }

/* ── Site Header ────────────────────────────────────────── */

.site-header {
  background: var(--dark-brown);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
  color: inherit;
}

.logo-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  line-height: 1.2;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 0.94rem;
  color: var(--parchment-dark);
  letter-spacing: 0.03em;
  text-transform: none;
  margin-top: 0.12rem;
}

.site-nav { display: flex; align-items: center; }

.site-nav a {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--parchment-dark);
  padding: 0.5rem 0.9rem;
  min-height: 44px;
  border-left: 1px solid rgba(184, 135, 30, 0.25);
  transition: color 0.2s, background 0.2s;
}

.site-nav a:first-child { border-left: none; }

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-light);
  background: rgba(184, 135, 30, 0.08);
}

/* ── Page Banner ────────────────────────────────────────── */

.page-banner {
  background: linear-gradient(to bottom, var(--crimson) 0%, #550F0F 100%);
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 12px,
    rgba(0,0,0,0.04) 12px, rgba(0,0,0,0.04) 13px
  );
}

.page-banner > * { position: relative; }

.page-banner h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gold-light);
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}

.page-banner p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: rgba(240, 220, 170, 0.8);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Main Wrapper ───────────────────────────────────────── */

.main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* ── Ornamental Divider ─────────────────────────────────── */

.ornament {
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.6em;
  margin: 2rem 0;
  font-size: 1rem;
}

.ornament::before {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 1.2rem;
  opacity: 0.6;
}

.ornament::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-left: 1.2rem;
  opacity: 0.6;
}

/* ── Section headings ───────────────────────────────────── */

.section-heading {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(0.9rem, 2vw, 1.12rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  text-align: center;
  margin-bottom: 0.25rem;
}

.section-intro {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}

/* ── Bordered box ───────────────────────────────────────── */

.box-double {
  border: 2px solid var(--gold);
  outline: 1px solid rgba(184,135,30,0.4);
  outline-offset: -8px;
  padding: 2.5rem;
  background: var(--parchment-light);
}

/* ── Hero (home) ────────────────────────────────────────── */

.home-hero {
  background: linear-gradient(160deg, #1A0A04 0%, #2C1208 50%, #1A0A04 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 25px,
    rgba(184,135,30,0.03) 25px, rgba(184,135,30,0.03) 26px
  );
}

.home-hero > * { position: relative; }

.hero-eyebrow {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(212, 168, 51, 0.65);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  color: var(--gold-light);
  line-height: 1.05;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.65);
  margin-bottom: 1.5rem;
}

.hero-rule {
  width: 100px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  position: relative;
}

.hero-rule::before, .hero-rule::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-rule::before { left: -12px; }
.hero-rule::after  { right: -12px; }

.hero-tagline {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(0.78rem, 1.6vw, 1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--parchment-dark);
  line-height: 2.4;
}

.hero-sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: rgba(224, 204, 152, 0.55);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ── Buttons ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  min-height: 44px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--crimson);
  color: var(--parchment-light);
  border: 1px solid var(--crimson-light);
}

.btn-primary:hover {
  background: var(--crimson-light);
  color: var(--parchment-light);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(184,135,30,0.15);
  color: var(--gold-light);
}

/* ── Features grid ──────────────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  background: var(--parchment-light);
  border: 1px solid rgba(184,135,30,0.5);
  border-top: 3px solid var(--crimson);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 68px;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.65;
}

/* ── Label box (home) ───────────────────────────────────── */

.label-box {
  max-width: 620px;
  margin: 3rem auto;
  text-align: center;
}

/* ── Pull quote ─────────────────────────────────────────── */

.pull-quote {
  text-align: center;
  padding: 2.5rem 2rem;
  border-top: 2px solid rgba(184,135,30,0.45);
  border-bottom: 2px solid rgba(184,135,30,0.45);
  margin: 3rem 0;
}

.pull-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: var(--dark-brown);
  max-width: 760px;
  margin: 0 auto 0.75rem;
  line-height: 1.5;
}

.pull-quote cite {
  font-size: 0.84rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── Disclaimer bar ─────────────────────────────────────── */

.disclaimer-bar {
  background: rgba(42, 24, 16, 0.05);
  border-top: 1px solid rgba(184,135,30,0.3);
  border-bottom: 1px solid rgba(184,135,30,0.3);
  padding: 1.25rem 2rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.86rem;
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.6;
}

.disclaimer-bar .inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ── Ingredient cards ───────────────────────────────────── */

.ingredient-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--parchment-light);
  border: 1px solid rgba(184,135,30,0.5);
  border-left: 4px solid var(--crimson);
  padding: 2rem;
  margin-bottom: 2rem;
}

.ingredient-numeral {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3rem;
  color: var(--crimson);
  opacity: 0.22;
  line-height: 1;
  text-align: center;
  padding-top: 0.4rem;
}

.ingredient-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--crimson);
  margin-bottom: 0.2rem;
}

.ingredient-alt {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.drk-note {
  background: rgba(123, 24, 24, 0.05);
  border-left: 3px solid var(--crimson);
  padding: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.drk-note::before {
  content: 'Dr. K writes: ';
  font-style: normal;
  font-weight: 700;
  color: var(--crimson);
  font-family: 'Playfair Display', serif;
}

/* ── Testimonials ───────────────────────────────────────── */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.t-card {
  background: var(--parchment-light);
  border: 1px solid rgba(184,135,30,0.4);
  padding: 1.75rem 1.5rem 1.25rem;
  position: relative;
}

.t-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: -1.5rem;
  left: 0.5rem;
  line-height: 1;
  pointer-events: none;
}

.t-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.5rem; }

.t-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 1rem;
  position: relative;
  font-size: 0.98rem;
  line-height: 1.7;
}

.t-author {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark-brown);
}

.t-location {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.press-section {
  background: var(--dark-brown);
  padding: 3rem 2rem;
  margin-top: 3rem;
  text-align: center;
  border: 1px solid var(--gold);
}

.press-section h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.press-item {
  max-width: 620px;
  margin: 0 auto 2rem;
}

.press-item:last-child { margin-bottom: 0; }

.press-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--parchment-dark);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.press-source {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── FAQ ────────────────────────────────────────────────── */

.faq-category { margin-bottom: 3rem; }

.faq-cat-header {
  background: var(--dark-brown);
  border: 1px solid var(--gold);
  padding: 0.75rem 1.5rem;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.faq-items {
  border: 1px solid rgba(184,135,30,0.4);
  border-top: none;
}

.faq-item {
  padding: 1.5rem;
  background: var(--parchment-light);
  border-top: 1px solid rgba(184,135,30,0.25);
}

.faq-item:first-child { border-top: none; }

.faq-q {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.faq-q::before {
  content: 'Q. ';
  color: var(--crimson);
  font-size: 1rem;
}

.faq-a {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.72;
}

.faq-a::before {
  content: 'A. ';
  font-weight: 700;
  color: var(--gold);
}

/* ── About page ─────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.portrait-frame {
  background: var(--parchment-light);
  border: 2px solid var(--gold);
  padding: 1rem;
  text-align: center;
  position: sticky;
  top: 80px;
}

.portrait-caption {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-medium);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.bio-section + .bio-section { margin-top: 2.5rem; }

.bio-section h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.96rem;
  letter-spacing: 0.12em;
  color: var(--crimson);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(184,135,30,0.3);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  border-left: 2px solid rgba(184,135,30,0.4);
  padding-left: 1.75rem;
}

.timeline li {
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline li::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--crimson);
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: absolute;
  left: -2.2rem;
  top: 0.35rem;
}

.timeline-year {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.2rem;
}

.timeline li p { font-size: 0.92rem; color: var(--text-medium); }

.kevin-box {
  background: rgba(42, 24, 16, 0.04);
  border: 1px solid rgba(184,135,30,0.4);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  margin-top: 2rem;
}

.kevin-box h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ── Site Footer ────────────────────────────────────────── */

.site-footer {
  background: var(--dark-brown);
  border-top: 3px solid var(--gold);
  padding: 2.5rem 2rem;
  text-align: center;
}

.site-footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--parchment-dark);
  padding: 0.25rem 1rem;
  border-left: 1px solid rgba(184,135,30,0.3);
  transition: color 0.2s;
}

.footer-nav a:first-child { border-left: none; }
.footer-nav a:hover { color: var(--gold-light); }

.footer-divider {
  color: rgba(184,135,30,0.35);
  letter-spacing: 0.8em;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(224, 204, 152, 0.4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-legal {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.82rem;
  color: rgba(224, 204, 152, 0.28);
  font-style: italic;
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 800px) {
  .features-grid         { grid-template-columns: 1fr; }
  .testimonials-grid     { grid-template-columns: 1fr; }
  .about-grid            { grid-template-columns: 1fr; }
  .portrait-frame        { position: static; }
  .ingredient-card       { grid-template-columns: 1fr; }
  .ingredient-numeral    { font-size: 2rem; text-align: left; }

  .site-header-inner {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
  }

  .site-nav { flex-wrap: wrap; justify-content: center; }
  .site-nav a { font-size: 0.82rem; padding: 0.5rem 0.75rem; }

  .home-hero { padding: 3rem 1.25rem 2.5rem; }
  .hero-title { font-size: 2.6rem; }

  .main-content { padding: 2rem 1.25rem; }
}
