:root {
  --cream:    #F5EFE4;
  --linen:    #EDE5D6;
  --navy:     #1B3252;
  --slate:    #8AAEBB;
  --brown:    #5C4A35;
  --muted:    #9B8E80;
  --rule:     rgba(91,74,53,0.15);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Jost', 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* ── Header ─────────────────────────────────────────────────────────────── */

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  max-height: 680px;
  overflow: hidden;
  margin-bottom: -1px;
}

.hero-img,
.hero-video {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  will-change: transform;
}






/* Full-video tint + centered tagline */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 140px; /* shift center up into visible area above card */
  pointer-events: none;
}

.hero-tagline {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  text-align: center;
  padding: 0 24px;
}

@media (max-width: 480px) {
  .hero { height: 55vh; min-height: 320px; }
    .hero-overlay { padding-bottom: 48px; }
  .hero-tagline { font-size: 13px; letter-spacing: 0.12em; }
}







/* ── Rule ───────────────────────────────────────────────────────────────── */

.rule {
  width: 100%;
  height: 1px;
  background: var(--rule);
}

.rule-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 24px;
}

.rule-ornament::before,
.rule-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.rule-ornament-dot {
  color: var(--slate);
  font-size: 18px;
  line-height: 1;
}

/* ── Floating search card ────────────────────────────────────────────────── */

.search-float {
  position: relative;
  z-index: 20;
  max-width: 960px;
  margin: -140px auto 64px;
  background: var(--cream);
  box-shadow: 0 8px 48px rgba(10,20,35,0.12);
  padding: 48px 56px 56px;
}

@media (max-width: 640px) {
  .search-float {
    margin: -48px auto 0;
    padding: 32px 28px 40px;
  }
}

/* ── Mode toggle ────────────────────────────────────────────────────────── */

.mode-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 0 24px;
}

.mode-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  background: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0 0 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.mode-btn.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.mode-divider {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* ── Search ─────────────────────────────────────────────────────────────── */

.search-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
}

.search-label {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}


.search-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--navy);
  align-items: center;
  padding-bottom: 4px;
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--navy);
  outline: none;
  padding: 10px 0;
}

.search-bar input::placeholder {
  color: var(--muted);
}

.search-bar button {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--navy);
  padding: 8px 0 8px 16px;
  font-size: 20px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.search-bar button:hover { color: var(--slate); }

/* ── Ingredient mode ────────────────────────────────────────────────────── */

.ingredient-hint {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.tag-field {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 10px;
  min-height: 48px;
}

.tag-field input {
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--navy);
  outline: none;
  flex: 1;
  min-width: 140px;
  padding: 4px 0;
}

.tag-field input::placeholder { color: var(--muted); }

.ingredient-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--linen);
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 10px;
  letter-spacing: 0.02em;
}

.ingredient-tag button {
  border: none;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

.ingredient-tag button:hover { color: var(--navy); }

.btn-craft {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 17px;
  border: none;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-craft:hover { background: var(--brown); }
.btn-craft:disabled { opacity: 0.4; cursor: default; }

#ingredientSection { padding-bottom: 80px; }

/* ── Ingredient results ──────────────────────────────────────────────────── */

.ingredient-results {
  max-width: 100%;
  margin: 40px 0 0;
  padding: 0 0 8px;
}

.results-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 32px;
}

.cocktail-card {
  border-top: 1px solid var(--rule);
  padding: 28px 0;
}

.cocktail-card:last-child {
  border-bottom: 1px solid var(--rule);
}

.card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.card-header-left { flex: 1; }

.card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.card-description {
  font-size: 14px;
  color: var(--brown);
  line-height: 1.55;
  margin-top: 8px;
}

.card-toggle {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  white-space: nowrap;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 0;
  flex-shrink: 0;
}

.card-body {
  display: none;
  margin-top: 28px;
}

.card-body.open { display: block; }

.card-body .recipe-columns {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
}

@media (max-width: 560px) {
  .card-body .recipe-columns { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Quick Picks ────────────────────────────────────────────────────────── */

.quick-picks {
  margin-top: 24px;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.quick-pick {
  border: 1px solid var(--rule);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.15s;
}

.quick-pick:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

/* ── Loading ────────────────────────────────────────────────────────────── */

.loading {
  text-align: center;
  padding: 64px 24px;
  max-width: 480px;
  margin: 0 auto;
}

.loading-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--slate);
  margin: 0 4px;
  animation: pulse 1.2s ease-in-out infinite;
}
.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
  0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

.loading p {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Recipe Card ────────────────────────────────────────────────────────── */

.recipe-section {
  max-width: 100%;
  margin: 40px 0 0;
  padding: 0 0 8px;
}

.recipe-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 16px;
}

.recipe-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.recipe-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown);
  max-width: 540px;
  margin-bottom: 40px;
}

.recipe-rule {
  height: 1px;
  background: var(--rule);
  margin-bottom: 36px;
}

.recipe-columns {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
}

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

.accent {
  color: var(--slate);
}

/* ── Spirit links ───────────────────────────────────────────────────────── */

.spirit-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: inherit;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.spirit-link:hover {
  color: var(--slate);
}

/* ── Mobile ─────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  
  
  
  .search-section {
    margin-top: 32px;
    padding: 0 20px;
  }

  .search-label {
    font-size: 28px;
    margin-bottom: 10px;
  }

  
  .search-bar input {
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .quick-picks {
    gap: 6px;
    margin-top: 18px;
  }

  .quick-pick {
    font-size: 11px;
    padding: 6px 11px;
  }

  .recipe-section {
    padding: 0 20px 60px;
    margin-top: 36px;
  }

  .recipe-title {
    font-size: 36px;
    margin-bottom: 14px;
  }

  .recipe-description {
    font-size: 15px;
  }

  .spirit-note {
    padding: 18px 20px;
  }

  .btn-try {
    width: 100%;
    padding: 18px 24px;
  }
}

.recipe-col-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 600;
}

.ingredients-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ingredients-list li {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.45;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.ingredients-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ingredient-amount {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--slate);
  text-transform: uppercase;
  margin-bottom: 2px;
  font-weight: 600;
}

.instructions-list {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.instructions-list li {
  counter-increment: steps;
  display: flex;
  gap: 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--brown);
}

.instructions-list li::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--slate);
  min-width: 24px;
  padding-top: 2px;
  font-weight: 700;
}

/* ── Spirit swap note ───────────────────────────────────────────────────── */

.spirit-note {
  margin-top: 40px;
  background: var(--linen);
  padding: 24px 28px;
  border-left: 3px solid var(--slate);
}

.spirit-note-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
  font-weight: 600;
}

.spirit-note p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--brown);
}

/* ── Why This Works ─────────────────────────────────────────────────────── */
.why-this-works {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.why-this-works-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 16px;
}

.why-this-works p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--brown);
  margin-bottom: 14px;
}

.why-this-works p:last-child { margin-bottom: 0; }

/* ── Discover (ad landing) ──────────────────────────────────────────────── */
.discover-wrap { padding-bottom: 24px; }

/* Discover hero extends down behind the search card */
.section-hero.section-hero--discover {
  padding-bottom: 280px;
}

.search-float.search-float--flat {
  margin: -220px auto 24px;
}

@media (max-width: 640px) {
  .section-hero.section-hero--discover { padding-bottom: 210px; }
  .search-float.search-float--flat { margin: -170px auto 8px; }
}

.discover-grid-2 { grid-template-columns: 1fr 1fr; }

@media (max-width: 768px) {
  .discover-grid-2 { grid-template-columns: 1fr; }
}

/* ── News ───────────────────────────────────────────────────────────────── */
.news-meta {
  font-size: 13px;
  color: var(--muted);
  margin: -8px 0 16px;
  letter-spacing: 0.02em;
}

.news-article-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 32px;
}

.news-sponsor {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  border: 1px solid var(--rule);
  display: inline-block;
  margin-bottom: 24px;
}

.crafted-take {
  margin-top: 40px;
  background: var(--linen);
  border-left: 3px solid var(--navy);
  padding: 28px 32px;
}

.crafted-take-label {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.crafted-take p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--brown);
  margin-bottom: 14px;
}

.crafted-take p:last-child { margin-bottom: 0; }

.news-source {
  font-size: 13px;
  color: var(--slate);
  font-style: italic;
  margin-top: 24px;
}

.news-source a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

.news-related-articles { margin-top: 40px; }

.news-related-item {
  display: block;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
}

.news-related-cat {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.news-related-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.news-related-item:hover .news-related-title { color: var(--slate); }

/* News landing */
.news-controls {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  max-width: 520px;
}

.news-search {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--navy);
  background: #FBF8F2;
  border: 1px solid var(--rule);
  outline: none;
  min-width: 0;
}

.news-search-btn {
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--navy);
  border: none;
  cursor: pointer;
}

.news-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.news-cat-pill {
  font-size: 12px;
  text-decoration: none;
  color: var(--brown);
  padding: 5px 14px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  transition: all 0.15s;
}

.news-cat-pill:hover { border-color: var(--slate); color: var(--navy); }

.news-cat-pill.active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.news-filter-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
}

.news-filter-note a { color: var(--navy); }

.news-hero {
  display: block;
  margin-top: 36px;
  padding: 44px 40px;
  border: 1px solid var(--rule);
  background: var(--linen);
  text-decoration: none;
  transition: background 0.15s;
}

.news-hero:hover { background: #EAE0D0; }

.news-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin: 10px 0 14px;
  letter-spacing: -0.01em;
}

.news-hero-summary {
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown);
  max-width: 640px;
  margin-bottom: 18px;
}

/* Homepage latest news */
.home-news {
  padding: 64px 24px;
  border-top: 1px solid var(--rule);
}

.home-news-inner { max-width: 1100px; margin: 0 auto; }

.home-news-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .news-controls { flex-direction: column; }
  .news-hero { padding: 28px 22px; }
}

/* ── Recipe pages ───────────────────────────────────────────────────────── */
.content-header--stamped { position: relative; }

.recipe-stamp {
  position: absolute;
  bottom: -104px;
  right: -20px;
  width: 128px;
  height: auto;
  transform: rotate(-11deg);
  opacity: 0.4;
  pointer-events: none;
  z-index: 5;
}

@media (max-width: 768px) {
  .recipe-stamp {
    width: 92px;
    bottom: -88px;
    right: 0;
    opacity: 0.4;
  }
}

.recipe-page-ingredients {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.recipe-page-ingredients li {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  color: var(--brown);
  line-height: 1.5;
}

.recipe-page-amount {
  font-weight: 600;
  color: var(--navy);
  min-width: 80px;
  flex-shrink: 0;
}

.recipe-page-ingredients a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.recipe-page-shop-note {
  font-size: 13px;
  color: var(--slate);
  font-style: italic;
}

.recipe-page-shop-note a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-list--numbered {
  padding-left: 20px;
}

.content-list--numbered li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--brown);
}

/* ── Email me this recipe ───────────────────────────────────────────────── */
.email-recipe {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--navy);
  text-align: center;
}

.email-recipe-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 8px;
}

.email-recipe-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 400px;
  margin: 0 auto 20px;
}

.email-recipe-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.email-recipe-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--navy);
  background: var(--cream);
  border: none;
  outline: none;
  min-width: 0;
}

.email-recipe-form button {
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: #a8c3cf;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.email-recipe-form button:hover { background: #bcd2dc; }
.email-recipe-form button:disabled { opacity: 0.6; cursor: default; }

.email-recipe-msg {
  font-size: 13px;
  margin-top: 12px;
  min-height: 0;
}

.email-recipe-msg--success { color: #a8c3cf; }
.email-recipe-msg--error { color: #e08a7d; }

@media (max-width: 768px) {
  .email-recipe { padding: 24px 20px; }
  .email-recipe-form { flex-direction: column; }
  .email-recipe-form button { width: 100%; padding: 14px; }
}

/* ── Try another ────────────────────────────────────────────────────────── */

.try-another {
  margin-top: 48px;
  margin-bottom: 80px;
  text-align: center;
}

.btn-try {
  border: none;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-try:hover { background: var(--brown); }

/* ── Footer ─────────────────────────────────────────────────────────────── */

.site-footer {
  padding: 64px 24px 48px;
  border-top: 1px solid var(--rule);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto 48px;
  text-align: left;
}

.footer-logo {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

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

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--brown);
  text-decoration: none;
  transition: color 0.15s;
}

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

@media (max-width: 700px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

.site-footer p {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: inherit;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--navy);
}

/* ── About page ──────────────────────────────────────────────────────────── */

.about-body {
  max-width: 680px;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.4;
}

.about-body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--brown);
  margin-bottom: 24px;
}

.about-body h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 20px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.about-link {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.about-link:hover { color: var(--slate); }

.about-closing {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}

.about-closing p {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 12px;
}

.about-welcome {
  font-size: 22px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  margin-top: 28px !important;
}

/* ── Newsletter ──────────────────────────────────────────────────────────── */

.newsletter {
  background: var(--navy);
  padding: 96px 24px;
  text-align: center;
}

.newsletter-inner {
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
  font-weight: 600;
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(245,239,228,0.5);
  padding-bottom: 4px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--cream);
  outline: none;
  padding: 10px 0;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(245,239,228,0.5);
}

.newsletter-form button {
  border: none;
  background: none;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 0 10px 16px;
  white-space: nowrap;
  transition: color 0.15s;
}

.newsletter-form button:hover { color: var(--slate); }
.newsletter-form button:disabled { opacity: 0.5; cursor: default; }

.newsletter-msg {
  margin-top: 16px;
  font-size: 13px;
  min-height: 18px;
}

.newsletter-msg--success { color: var(--slate); }
.newsletter-msg--error { color: #e08a7d; }

@media (max-width: 480px) {
  .newsletter { padding: 48px 20px; }
  .seo-peel { position: static; width: 220px; margin: 40px auto 0; mix-blend-mode: multiply; display: block; }
  .seo-section-inner { padding-bottom: 40px; }
  .newsletter-form { flex-direction: column; gap: 12px; border-bottom: none; }
  .newsletter-form input[type="email"] {
    border-bottom: 2px solid rgba(245,239,228,0.5);
    text-align: center;
  }
  .newsletter-form button {
    padding: 12px 0;
    background: var(--cream);
    color: var(--navy);
  }
}

/* ── Site Nav ────────────────────────────────────────────────────────────── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 32px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.nav-logo-text span { color: var(--slate); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

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

.nav-instagram {
  display: flex;
  align-items: center;
  opacity: 0.6;
}
.nav-instagram:hover { opacity: 1; }

.nav-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 20px;
  color: var(--navy);
  cursor: pointer;
  padding: 4px;
}

/* ── Nav dropdowns ──────────────────────────────────────────────────────── */
.nav-item-dropdown { position: relative; }

.nav-drop-trigger {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: default;
  transition: color 0.15s;
  outline: none;
}

.nav-item-dropdown:hover .nav-drop-trigger,
.nav-item-dropdown:focus-within .nav-drop-trigger { color: var(--navy); }

.nav-caret {
  font-size: 9px;
  opacity: 0.5;
  vertical-align: middle;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 180px;
  list-style: none;
  background: var(--cream);
  border: 1px solid var(--rule);
  box-shadow: 0 8px 24px rgba(92,74,53,0.12);
  padding: 8px 0;
  z-index: 200;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  display: block;
}

.nav-dropdown li { width: 100%; }

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid var(--rule);
  }

  /* Mobile: dropdowns render as always-visible indented items */
  .nav-item-dropdown { position: static; }
  .nav-caret { display: none; }
  .nav-drop-trigger {
    display: block;
    padding: 16px 24px 8px;
    font-size: 11px;
    color: var(--slate);
  }
  .nav-dropdown {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
  }
  .nav-dropdown a { padding-left: 44px; font-size: 14px; }
}

/* ── Footer (updated) ────────────────────────────────────────────────────── */

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}




/* ── Section hero ────────────────────────────────────────────────────────── */

.section-hero {
  background: var(--linen);
  padding: 64px 24px;
}

.section-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--brown);
  max-width: 600px;
}

/* ── Section grid ────────────────────────────────────────────────────────── */

.section-grid-wrap {
  max-width: 1100px;
  margin: 56px auto;
  padding: 0 24px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.section-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--cream);
  text-decoration: none;
  transition: background 0.15s;
}

.section-card:hover { background: var(--linen); }

.section-card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.section-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--brown);
  flex: 1;
  margin-bottom: 20px;
}

.section-card-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ── Feature blocks ──────────────────────────────────────────────────────── */


/* ── Feature rows (homepage alternating sections) ────────────────────────── */

.feature-rows {
  border-top: 1px solid rgba(92,74,53,0.25);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
  border-bottom: 1px solid rgba(92,74,53,0.25);
}

.feature-row--reverse .feature-row-image { order: -1; }
.feature-row--reverse .feature-row-text  { order: 1; }

.feature-row-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px 56px;
}

.feature-row-top { }

.feature-row-bottom { }

.feature-row-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 14px;
}

.feature-row-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.feature-row-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--brown);
  margin-bottom: 24px;
}

.feature-row-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  align-self: flex-start;
}
.feature-row-link:hover { color: var(--slate); }

.feature-row-image {
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 40px 48px;
  border-left: 1px solid rgba(92,74,53,0.25);
}

.feature-row--reverse .feature-row-image {
  padding: 0;
  border-left: none;
  border-right: 1px solid rgba(92,74,53,0.25);
}

/* ── Pour row — standalone, fills cell, left-aligned ── */
.feature-row-pour-image {
  border-left: 1px solid rgba(92,74,53,0.25);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  max-height: 560px;
}

.feature-row-pour-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  mix-blend-mode: multiply;
  display: block;
}

/* ── Tools row — standalone, shares nothing with other images ── */
.feature-row-tools-image {
  border-right: 1px solid rgba(92,74,53,0.25);
  overflow: hidden;
  position: relative;
  min-height: 560px;
}

.feature-row-tools-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: multiply;
  display: block;
}

.feature-row-img {
  width: auto;
  max-width: 200px;
  max-height: 320px;
  mix-blend-mode: multiply;
  display: block;
}

.feature-row-img--natural {
  mix-blend-mode: normal;
  max-width: 260px;
}

@media (max-width: 768px) {
  .feature-row,
  .feature-row--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .feature-row-image,
  .feature-row--reverse .feature-row-image { order: -1; min-height: 280px; padding-top: 32px; }
  .feature-row--reverse .feature-row-text { order: 1; }
  .feature-row-text { padding: 40px 24px; }
  .feature-row-img { width: 70%; }
  .feature-row-img--natural { width: 85%; }
  .feature-row-tools-image { display: none; }
  .feature-row-pour-image { display: none; }
  .feature-row-bottom { margin-top: 32px; }
}

/* ── Content pages (ingredient / tool / technique) ───────────────────────── */

.breadcrumb {
  max-width: 680px;
  margin: 24px auto 0;
  padding: 0 24px;
  font-size: 12px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb a:hover { color: var(--navy); }

.breadcrumb span { margin: 0 6px; }

/* Breadcrumb rendered inside a .content-page container */
.breadcrumb--in-page {
  max-width: 680px;
  margin: 0 auto 40px;
  padding: 0;
}

.content-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 0;
}

.content-body,
.content-page > .rule-ornament {
  max-width: 680px;
}

.content-header:not(.content-header--has-image) {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.content-header { margin-bottom: 40px; }

.content-header--has-image {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}

.content-header-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  mix-blend-mode: multiply;
  display: block;
}

@media (max-width: 640px) {
  .content-header--has-image {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-hero-img {
    max-width: 180px;
    margin: 0 auto;
  }
}

.content-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 7vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}

.content-intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--brown);
}

.content-body {
  max-width: 680px;
  margin: 40px auto 80px;
}

.content-section {
  margin-bottom: 48px;
}

.content-section h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.content-section h3 {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 600;
}

.content-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--brown);
}

.content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-list li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--brown);
  padding-left: 20px;
  position: relative;
}

.content-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--slate);
}

.content-callout {
  background: var(--linen);
  border-left: 3px solid var(--slate);
  padding: 24px 28px;
}

.callout-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}

.related-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 480px) {
  .related-links { grid-template-columns: 1fr; }
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recipe-tag {
  display: inline-block;
  border: 1px solid var(--rule);
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--brown);
  text-decoration: none;
  transition: all 0.15s;
}

.recipe-tag:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

/* ── Product card ────────────────────────────────────────────────────────── */

.product-card {
  background: var(--linen);
  padding: 28px;
  margin-bottom: 16px;
}

.product-card-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-card-copy {
  font-size: 15px;
  line-height: 1.65;
  color: var(--brown);
  margin-bottom: 20px;
}

.product-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.btn-product {
  display: inline-block;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-product:hover { background: var(--brown); }

.btn-product--rhodes {
  background: var(--slate);
}

.btn-product--rhodes:hover { background: var(--navy); }


.affiliate-disclosure {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  font-style: italic;
}






.btn-cta {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--cream);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.btn-cta:hover {
  background: var(--cream);
  color: var(--navy);
}

/* ── Internal CTA (replaces journal CTA) ─────────────────────────────────── */

.internal-cta {
  background: var(--linen);
  padding: 56px 24px;
  text-align: center;
  margin-top: 0;
}

.internal-cta-inner {
  max-width: 520px;
  margin: 0 auto;
}

.internal-cta-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
  font-weight: 600;
}

.internal-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 28px;
}

.internal-cta-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-dark {
  display: inline-block;
  padding: 13px 24px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-cta-dark:hover { background: var(--brown); }

.btn-cta-outline {
  display: inline-block;
  padding: 13px 24px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.btn-cta-outline:hover {
  background: var(--navy);
  color: var(--cream);
}

/* ── FAQ accordion ───────────────────────────────────────────────────────── */

.faq-section { margin-top: 48px; }

.faq-item {
  border-top: 1px solid var(--rule);
  padding: 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--rule); }

.faq-question {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  padding: 20px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--slate);
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 15px;
  line-height: 1.75;
  color: var(--brown);
  padding-bottom: 20px;
}

/* ── Recipe related links ────────────────────────────────────────────────── */

.recipe-related { margin-top: 0; }

.recipe-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.recipe-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

/* ── SEO section (homepage) ──────────────────────────────────────────────── */

.seo-section {
  background: var(--linen);
  padding: 64px 24px 0;
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.seo-section-inner {
  max-width: 680px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.seo-peel {
  position: absolute;
  bottom: -20px;
  right: calc(50% - 560px);
  width: 280px;
  mix-blend-mode: multiply;
  pointer-events: none;
  display: block;
}

.seo-section h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 40px;
  letter-spacing: -0.01em;
}

.seo-section h2:first-child { margin-top: 0; }

.seo-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 16px;
}

.seo-section a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.seo-section a:hover { color: var(--slate); }

/* ── Lexicon ─────────────────────────────────────────────────────────────── */
.lexicon-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.lexicon-category {
  margin-top: 64px;
}

.lexicon-cat-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.lexicon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.lexicon-card {
  display: block;
  padding: 28px 24px;
  background: var(--cream);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.lexicon-card:hover {
  background: var(--linen);
}

.lexicon-card-term {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.lexicon-card-intro {
  font-size: 14px;
  line-height: 1.6;
  color: var(--brown);
  margin-bottom: 0;
}

.lexicon-card-also {
  font-size: 12px;
  color: var(--slate);
  margin-top: 10px;
  opacity: 0.7;
}

/* ── Lexicon term page ───────────────────────────────────────────────────── */
.lexicon-body .lexicon-section {
  margin-bottom: 32px;
}

.lexicon-section-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 40px 0 12px;
}

.lexicon-sub-entries {
  margin-top: 8px;
}

.lexicon-sub-entry {
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}

.lexicon-sub-term {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.lexicon-related {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.lexicon-related-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}

.lexicon-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lexicon-related-list li {
  margin-bottom: 8px;
}

.lexicon-related-list a {
  font-size: 14px;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-back {
  max-width: 680px;
  margin: 48px auto 0;
  padding: 0 0 64px;
}

.content-back-link {
  font-size: 14px;
  color: var(--slate);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.content-back-link:hover { color: var(--navy); }

@media (max-width: 768px) {
  .lexicon-grid { grid-template-columns: 1fr; }
  .lexicon-related { flex-direction: column; gap: 24px; }
}

/* ── Image lazy loading ──────────────────────────────────────────────────── */

img { loading: lazy; }
