/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
:root {
  --ivory: #FAF7F0;
  --olive: #5C6B3C;
  --olive-light: #7A8F5E;
  --olive-dark: #3E4A28;
  --terracotta: #C67B5C;
  --terra-light: #D99A82;
  --brown: #2C1810;
  --brown-light: #4A3428;
  --sand: #E8E0D0;
  --cream: #F5F0E5;
  --white: #FFFFFF;
  --shadow: rgba(44,24,16,0.08);
  --shadow-md: rgba(44,24,16,0.12);
  --radius: 6px;
  --font-serif: Georgia, 'Times New Roman', 'Palatino Linotype', serif;
  --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --max-w: 1200px;
  --gutter: 1.5rem;
}

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font-serif);
  background-color: var(--ivory);
  color: var(--brown);
  line-height: 1.78;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--olive); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--terracotta); }

/* ===== HEADER ===== */
.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--sand);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: -1px;
  text-decoration: none;
}
.site-logo span { color: var(--terracotta); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brown-light);
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--terracotta); }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  margin: 5px 0;
  transition: 0.3s;
}
.nav-overlay { display: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--ivory);
    z-index: 999;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .nav-links.open a { font-size: 1.1rem; }
  .nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--brown);
  }
}

/* ===== HERO ===== */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem var(--gutter) 2rem;
  text-align: center;
  border-bottom: 2px solid var(--olive);
}
.hero-kicker {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--brown);
  max-width: 800px;
  margin: 0 auto 1.2rem;
  letter-spacing: -0.5px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--brown-light);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-style: italic;
  line-height: 1.6;
}
.hero-meta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@media (max-width: 768px) {
  .hero { padding: 2.5rem var(--gutter) 1.5rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero-subtitle { font-size: 1rem; }
}

/* ===== ARTICLE LAYOUT ===== */
.article-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}
.article-main { min-width: 0; }
.article-sidebar { position: relative; }

@media (max-width: 900px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem var(--gutter);
  }
}

/* ===== DROP CAP ===== */
.drop-cap::first-letter {
  float: left;
  font-size: 4.5rem;
  line-height: 0.75;
  padding-right: 0.15em;
  padding-top: 0.08em;
  color: var(--olive);
  font-weight: 700;
}

/* ===== ARTICLE CONTENT ===== */
.article-content p { margin-bottom: 1.3rem; text-align: justify; hyphens: auto; }
.article-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--olive-dark);
  line-height: 1.3;
  border-left: 3px solid var(--terracotta);
  padding-left: 0.8rem;
}
.article-content h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.8rem;
  color: var(--brown);
  font-style: italic;
}

/* ===== SIDEBAR ===== */
.sidebar-block {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border-top: 3px solid var(--olive);
}
.sidebar-block h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.sidebar-block ul { list-style: none; }
.sidebar-block li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--sand);
  font-size: 0.95rem;
}
.sidebar-block li:last-child { border-bottom: none; }
.sidebar-block li a { color: var(--brown); }
.sidebar-block li a:hover { color: var(--terracotta); }

.sidebar-quote {
  background: var(--olive);
  color: var(--ivory);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
}
.sidebar-quote::before {
  content: '\201E';
  font-size: 3rem;
  position: absolute;
  top: 0.3rem;
  left: 0.8rem;
  opacity: 0.3;
  line-height: 1;
}
.sidebar-quote p { padding-top: 1.2rem; }

.sidebar-sticky { position: sticky; top: 5rem; }

/* ===== PULL QUOTE ===== */
.pull-quote {
  max-width: var(--max-w);
  margin: 2rem auto;
  padding: 2rem var(--gutter);
  text-align: center;
}
.pull-quote-inner {
  border-top: 2px solid var(--olive);
  border-bottom: 2px solid var(--olive);
  padding: 2rem 1rem;
  max-width: 700px;
  margin: 0 auto;
}
.pull-quote blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--olive-dark);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.pull-quote cite {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--terracotta);
  font-style: normal;
}

/* ===== MARGIN NOTE ===== */
.margin-note {
  background: linear-gradient(135deg, var(--cream), var(--sand));
  border-left: 3px solid var(--terracotta);
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  font-style: italic;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.margin-note strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--terracotta);
  font-style: normal;
  margin-bottom: 0.3rem;
}

/* ===== INGREDIENT STRIP ===== */
.ingredient-strip {
  background: var(--olive-dark);
  color: var(--ivory);
  padding: 2.5rem 0;
  margin: 2rem 0;
  overflow: hidden;
}
.ingredient-strip-title {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--terra-light);
  margin-bottom: 1.5rem;
}
.ingredient-row {
  display: flex;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--olive-light) var(--olive-dark);
}
.ingredient-card {
  flex: 0 0 180px;
  text-align: center;
  padding: 1.2rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s, background 0.3s;
}
.ingredient-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}
.ingredient-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.ingredient-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.ingredient-desc {
  font-size: 0.78rem;
  opacity: 0.7;
  font-family: var(--font-sans);
}

/* ===== FULL-WIDTH SECTION ===== */
.section-fullwidth {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem var(--gutter);
}
.section-fullwidth h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--olive-dark);
  border-left: 3px solid var(--terracotta);
  padding-left: 0.8rem;
}
.section-fullwidth p { margin-bottom: 1.2rem; text-align: justify; }

/* ===== IMAGE BLOCK ===== */
.image-block {
  max-width: var(--max-w);
  margin: 2rem auto;
  padding: 0 var(--gutter);
}
.image-block img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px var(--shadow-md);
}
.image-block figcaption {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--brown-light);
  text-align: center;
  margin-top: 0.8rem;
  font-style: italic;
}

/* ===== TIP CARDS ===== */
.tip-cards {
  max-width: var(--max-w);
  margin: 2rem auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tip-card {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-bottom: 3px solid var(--olive);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--shadow);
}
.tip-card-num {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.tip-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--olive-dark);
}
.tip-card p { font-size: 0.9rem; color: var(--brown-light); }

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

/* ===== ARTICLE CARDS ===== */
.related-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem var(--gutter);
  border-top: 2px solid var(--sand);
}
.related-section > h2 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--olive-dark);
}
.article-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--brown);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-md);
  color: var(--brown);
}
.article-card-body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.article-card-cat {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.article-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.35; }
.article-card p {
  font-size: 0.85rem;
  color: var(--brown-light);
  flex: 1;
}
.article-card-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--olive);
  margin-top: 0.8rem;
  display: inline-block;
}

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

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--cream);
  padding: 3rem var(--gutter);
  margin: 2rem 0;
  text-align: center;
}
.newsletter h2 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--olive-dark); }
.newsletter p { margin-bottom: 1.5rem; font-size: 0.95rem; color: var(--brown-light); max-width: 500px; margin-left: auto; margin-right: auto; margin-bottom: 1.5rem; }
.newsletter-form {
  display: flex;
  gap: 0.8rem;
  max-width: 450px;
  margin: 0 auto;
  justify-content: center;
}
.newsletter-form input[type=email] {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--brown);
  min-height: 48px;
}
.newsletter-form input[type=email]:focus { outline: 2px solid var(--olive); border-color: var(--olive); }
.newsletter-form button {
  padding: 0.8rem 1.8rem;
  background: var(--olive);
  color: var(--ivory);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  min-height: 48px;
  min-width: 44px;
  transition: background 0.3s;
  font-weight: 600;
}
.newsletter-form button:hover { background: var(--terracotta); }

@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--brown);
  color: var(--sand);
  padding: 2.5rem var(--gutter) 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer-brand .site-logo { color: var(--ivory); }
.footer-brand .site-logo span { color: var(--terra-light); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links a:hover { color: var(--terra-light); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(232,224,208,0.6);
}
.footer-disclaimer {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(232,224,208,0.5);
  max-width: 600px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ===== COOKIE BANNER ===== */
.cookie-check { display: none; }
.cookie-check:checked ~ .cookie-banner { display: none; }
.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: var(--brown);
  color: var(--sand);
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  z-index: 999;
  max-width: 380px;
  font-size: 0.85rem;
  line-height: 1.5;
  animation: slideUp 0.5s ease;
}
@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { margin-bottom: 1rem; font-family: var(--font-sans); font-size: 0.82rem; }
.cookie-actions { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.cookie-actions label {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background 0.3s;
  font-weight: 600;
}
.btn-accept { background: var(--olive); color: var(--ivory); }
.btn-accept:hover { background: var(--olive-light); }
.btn-decline { background: transparent; color: var(--sand); border: 1px solid var(--sand); }
.btn-decline:hover { background: rgba(255,255,255,0.1); }
.cookie-actions a {
  color: var(--terra-light);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-decoration: underline;
}

@media (max-width: 500px) {
  .cookie-banner { left: 0.8rem; right: 0.8rem; max-width: none; bottom: 0.8rem; }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem var(--gutter);
}
.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--olive-dark);
}
.legal-date {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--brown-light);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.legal-page h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.8rem;
  color: var(--olive);
}
.legal-page p { margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.7; }

/* ===== SUCCESS PAGE ===== */
.success-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 5rem var(--gutter);
  text-align: center;
}
.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.success-page h1 {
  font-size: 2rem;
  color: var(--olive-dark);
  margin-bottom: 1rem;
}
.success-page p { color: var(--brown-light); margin-bottom: 2rem; font-size: 1.05rem; }
.btn-home {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--olive);
  color: var(--ivory);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.3s;
  min-height: 48px;
  font-weight: 600;
}
.btn-home:hover { background: var(--terracotta); color: var(--ivory); }

/* ===== 404 PAGE ===== */
.error-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 5rem var(--gutter);
  text-align: center;
}
.error-code {
  font-size: 7rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1rem;
}
.error-page h1 {
  font-size: 1.8rem;
  color: var(--olive-dark);
  margin-bottom: 1rem;
}
.error-page p { color: var(--brown-light); margin-bottom: 2rem; }
.error-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.error-links a {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--olive);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--olive);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.error-links a:hover { background: var(--olive); color: var(--ivory); }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, var(--cream), var(--ivory));
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
}
.highlight-box ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.highlight-box li {
  font-size: 0.92rem;
  padding-left: 1.2rem;
  position: relative;
}
.highlight-box li::before {
  content: '\2022';
  color: var(--olive);
  position: absolute;
  left: 0;
  font-weight: 700;
}

@media (max-width: 500px) {
  .highlight-box ul { grid-template-columns: 1fr; }
}

/* ===== TWO COLUMN TEXT ===== */
.two-col-text {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem var(--gutter);
  columns: 2;
  column-gap: 2.5rem;
  column-rule: 1px solid var(--sand);
}
.two-col-text p { margin-bottom: 1.2rem; text-align: justify; break-inside: avoid; }

@media (max-width: 768px) {
  .two-col-text { columns: 1; }
}

/* ===== CATEGORY TAGS ===== */
.category-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.cat-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.35rem 0.8rem;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 20px;
  color: var(--olive);
  transition: all 0.3s;
}
.cat-tag:hover { background: var(--olive); color: var(--ivory); border-color: var(--olive); }

/* ===== DIVIDER ===== */
.divider {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.divider hr {
  border: none;
  border-top: 1px solid var(--sand);
}
.divider-ornament {
  text-align: center;
  padding: 1rem 0;
  color: var(--olive);
  font-size: 1.2rem;
  letter-spacing: 8px;
}

/* ===== INLINE ARTICLE PAGE ===== */
.article-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem var(--gutter) 1.5rem;
}
.article-hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--brown);
  max-width: 750px;
  margin-bottom: 1rem;
}
.article-hero .hero-meta { text-align: left; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  max-width: var(--max-w);
  margin: 2rem auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--olive);
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.3s;
}
.feature-item:hover { transform: translateX(4px); }
.feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--olive-dark);
}
.feature-item p { font-size: 0.88rem; color: var(--brown-light); }

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

/* ===== BOOK QUOTE ===== */
.book-quote {
  max-width: 650px;
  margin: 2rem auto;
  padding: 2rem 2.5rem;
  position: relative;
  text-align: center;
}
.book-quote::before, .book-quote::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--olive), transparent);
}
.book-quote::before { top: 0; }
.book-quote::after { bottom: 0; }
.book-quote blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--olive-dark);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.book-quote cite {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  font-style: normal;
}