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

:root {
  --cream:      #faf6ef;
  --cream-dark: #f0e8d8;
  --parchment:  #e8d5b7;
  --gold:       #c9a84c;
  --gold-dark:  #a8893a;
  --charcoal:   #2c2417;
  --brown:      #5c3d1e;
  --mid:        #7a6248;
  --light-text: #9e8a72;
  --white:      #ffffff;
  --green:      #4a7c59;
  --rose:       #9b5c6b;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(44,36,23,.10);
  --shadow-lg:  0 12px 48px rgba(44,36,23,.16);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.link-arrow {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 500;
  font-size: .95rem;
  transition: gap var(--transition);
}
.link-arrow:hover { text-decoration: underline; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: var(--brown); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,239,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
}
.logo-dot { color: var(--gold); }
.logo-sub {
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
}
.main-nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--mid);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--cream-dark);
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(92,61,30,.4) 0%, transparent 60%),
    linear-gradient(135deg, #1e1609 0%, #2c2417 50%, #3a2e1e 100%);
}

/* Decorative cheese wheel illustration via CSS */
.hero-bg::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    #f5e6c8 0%,
    #e8d09a 30%,
    #c9a84c 55%,
    #a8893a 70%,
    #7a5c28 100%);
  opacity: .12;
  box-shadow: inset -20px -20px 60px rgba(0,0,0,.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 80px 24px;
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  margin-bottom: 24px;
  font-style: italic;
}

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section { background: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.intro-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.intro-text p {
  color: var(--mid);
  margin-bottom: 16px;
}
.intro-text .link-arrow { margin-top: 8px; }

.intro-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fact-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.fact-icon { font-size: 2rem; margin-bottom: 8px; }
.fact-value { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--charcoal); }
.fact-label { font-size: .8rem; color: var(--light-text); margin-top: 4px; }

/* ============================================================
   HISTORY / TIMELINE
   ============================================================ */
.history-section { background: var(--cream); }

.history-section h2 {
  font-size: 2.4rem;
  margin-bottom: 56px;
  max-width: 500px;
}

.timeline {
  position: relative;
  padding-left: 120px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--parchment));
}

.timeline-item {
  position: relative;
  margin-bottom: 56px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-year {
  position: absolute;
  left: -120px;
  top: 0;
  width: 90px;
  text-align: right;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 2px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -53px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 3px var(--gold);
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.timeline-content p { color: var(--mid); }

/* ============================================================
   ARTICLE CARDS
   ============================================================ */
.articles-section { background: var(--cream-dark); }
.articles-section h2 { font-size: 2.4rem; margin-bottom: 40px; }

.article-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.article-card-img { height: 180px; }

.article-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: #fef6e4;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  width: fit-content;
}

.article-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.article-card-body p {
  color: var(--mid);
  font-size: .9rem;
  flex: 1;
  margin-bottom: 16px;
}

/* ============================================================
   TIPS SECTION
   ============================================================ */
.tips-section { background: var(--white); }
.tips-section h2 { font-size: 2.4rem; margin-bottom: 48px; }

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

.tip-item {
  padding: 32px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tip-item:hover { border-color: var(--gold); box-shadow: var(--shadow); }

.tip-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--parchment);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.tip-item h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--charcoal); }
.tip-item p { font-size: .9rem; color: var(--mid); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--brown) 100%);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,.12) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 16px;
  font-style: italic;
}
.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-section { background: var(--cream); }

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 24px;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  font-size: .85rem;
  font-weight: 500;
  color: var(--mid);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.product-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.product-card-body { padding: 24px; }
.product-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.badge-french { background: #e8f0fe; color: #2b5ea8; }
.badge-norwegian { background: #e6f4ea; color: #1e6b38; }
.badge-specialty { background: #fce8f3; color: #8b1a5a; }
.badge-organic { background: #e8f5e9; color: #2e7d32; }

.product-card-body h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--charcoal); }
.product-card-body .product-origin { font-size: .8rem; color: var(--light-text); margin-bottom: 10px; }
.product-card-body .product-desc { font-size: .88rem; color: var(--mid); margin-bottom: 16px; }
.product-rating { display: flex; gap: 3px; color: var(--gold); font-size: .9rem; }
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--cream-dark);
}
.product-price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--charcoal); }
.product-where { font-size: .75rem; color: var(--light-text); }

/* ============================================================
   HOW TO MAKE BRIE PAGE
   ============================================================ */
.make-intro { background: var(--white); }
.make-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.make-intro h2 { font-size: 2.2rem; margin-bottom: 20px; }
.make-intro p { color: var(--mid); margin-bottom: 16px; }

.ingredients-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--cream-dark);
}
.ingredients-box h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.ingredient-list { list-style: none; }
.ingredient-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: .9rem;
  color: var(--mid);
}
.ingredient-list li:last-child { border-bottom: none; }
.ingredient-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.steps-section { background: var(--cream); }
.steps-section h2 { font-size: 2.2rem; margin-bottom: 48px; }

.steps-list { display: flex; flex-direction: column; gap: 0; }

.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: start;
}
.step-item:last-child { border-bottom: none; }

.step-num {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-body h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--charcoal); }
.step-body p { color: var(--mid); margin-bottom: 10px; }
.step-tip {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  background: #fff9ee;
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: .85rem;
  color: var(--brown);
  margin-top: 8px;
}

.science-section { background: var(--white); }
.science-section h2 { font-size: 2.2rem; margin-bottom: 40px; }
.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.science-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.science-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--charcoal); }
.science-card p { font-size: .9rem; color: var(--mid); }

/* ============================================================
   RECIPES PAGE
   ============================================================ */
.recipes-section { background: var(--cream); }

.recipe-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.recipe-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 340px 1fr;
}
.recipe-card:nth-child(even) { grid-template-columns: 1fr 340px; }
.recipe-card:nth-child(even) .recipe-img { order: 2; }
.recipe-card:nth-child(even) .recipe-body { order: 1; }

.recipe-img {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  flex-shrink: 0;
}

.recipe-body { padding: 40px 48px; }

.recipe-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.recipe-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--light-text);
}
.recipe-meta-item strong { color: var(--charcoal); font-size: .88rem; }

.recipe-body h2 {
  font-size: 1.9rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.recipe-body .recipe-intro {
  color: var(--mid);
  margin-bottom: 28px;
  font-size: .95rem;
}

.recipe-cols {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  margin-top: 24px;
}

.recipe-ingredients h4,
.recipe-steps h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.recipe-ingredients ul { list-style: none; }
.recipe-ingredients li {
  font-size: .88rem;
  color: var(--mid);
  padding: 5px 0;
  border-bottom: 1px dotted var(--cream-dark);
}
.recipe-ingredients li:last-child { border-bottom: none; }

.recipe-steps ol { padding-left: 20px; }
.recipe-steps li {
  font-size: .9rem;
  color: var(--mid);
  padding: 6px 0;
}
.recipe-steps li::marker { color: var(--gold); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  padding: 56px 0 32px;
}
.footer-inner { text-align: center; }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 28px;
  letter-spacing: .05em;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .intro-grid,
  .make-intro .container { grid-template-columns: 1fr; gap: 48px; }

  .article-cards,
  .tips-grid,
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .recipe-card,
  .recipe-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .recipe-card:nth-child(even) .recipe-img,
  .recipe-card:nth-child(even) .recipe-body { order: unset; }
  .recipe-img { min-height: 220px; }
  .recipe-body { padding: 32px; }
  .recipe-cols { grid-template-columns: 1fr; gap: 20px; }

  .science-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 80px; }
  .timeline-year { left: -80px; width: 60px; font-size: .9rem; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }

  .article-cards,
  .tips-grid,
  .products-grid { grid-template-columns: 1fr; }

  .hero h1 { font-size: 2.8rem; }
  .hero-cta { flex-direction: column; }
  .btn { text-align: center; }

  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    padding: 16px 24px;
  }
  .main-nav.open ul { flex-direction: column; width: 100%; }
  .nav-toggle { display: flex; }

  .timeline { padding-left: 60px; }
  .timeline-year { left: -60px; width: 48px; font-size: .8rem; }
  .timeline-item::before { left: -37px; }
  .timeline::before { left: 52px; }

  .recipe-detail-grid { grid-template-columns: 1fr; }
  .recipe-sidebar { position: static; }
  .articles-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--cream-dark);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.breadcrumb a {
  color: var(--mid);
  font-size: .85rem;
  font-weight: 500;
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   ARTICLE DETAIL
   ============================================================ */
.article-detail { background: var(--white); padding: 80px 0; }

.article-body {
  max-width: 780px;
  margin: 0 auto;
}
.article-body .lead {
  font-size: 1.15rem;
  color: var(--brown);
  font-style: italic;
  margin-bottom: 36px;
  line-height: 1.8;
}
.article-body h2 {
  font-size: 1.85rem;
  margin: 52px 0 16px;
  color: var(--charcoal);
}
.article-body h3 {
  font-size: 1.35rem;
  margin: 36px 0 12px;
  color: var(--charcoal);
}
.article-body p {
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.85;
  font-size: 1.02rem;
}
.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li {
  color: var(--mid);
  margin-bottom: 8px;
  line-height: 1.75;
}
.article-body strong { color: var(--charcoal); }
.article-body blockquote {
  border-left: 4px solid var(--gold);
  margin: 32px 0;
  padding: 16px 24px;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--brown);
}

.article-meta-bar {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.article-meta-bar span {
  font-size: .82rem;
  color: var(--light-text);
}

.related-articles { background: var(--cream-dark); padding: 80px 0; }
.related-articles h2 { font-size: 2rem; margin-bottom: 36px; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================
   RECIPE DETAIL
   ============================================================ */
.recipe-detail-section { background: var(--white); padding: 80px 0; }

.recipe-detail-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

.recipe-sidebar { position: sticky; top: 100px; }

.recipe-sidebar-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  border: 1px solid var(--cream-dark);
}
.recipe-sidebar-box h3 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.recipe-sidebar-box ul { list-style: none; }
.recipe-sidebar-box li {
  padding: 8px 0;
  border-bottom: 1px dotted var(--cream-dark);
  font-size: .9rem;
  color: var(--mid);
}
.recipe-sidebar-box li:last-child { border-bottom: none; }

.recipe-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.recipe-meta-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--cream-dark);
}
.recipe-meta-box .meta-icon { font-size: 1.4rem; margin-bottom: 4px; }
.recipe-meta-box .meta-value { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--charcoal); }
.recipe-meta-box .meta-label { font-size: .7rem; color: var(--light-text); margin-top: 2px; }

.recipe-main-intro {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--cream-dark);
}

.recipe-steps-section h3 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 28px;
}
.recipe-step-list { list-style: none; padding: 0; }
.recipe-step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.recipe-step-num {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}
.recipe-step-text h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.recipe-step-text p {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.7;
  margin: 0;
}
.recipe-tip {
  display: flex;
  gap: 10px;
  background: #fff9ee;
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: .88rem;
  color: var(--brown);
  margin-top: 10px;
  line-height: 1.6;
}

/* Oppskrifter index – recipe listing cards */
.recipe-listing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.recipe-listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.recipe-listing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.recipe-listing-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.recipe-listing-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.recipe-listing-body h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--charcoal); }
.recipe-listing-body p { color: var(--mid); font-size: .9rem; flex: 1; margin-bottom: 16px; }
.recipe-listing-meta {
  display: flex;
  gap: 16px;
  font-size: .8rem;
  color: var(--light-text);
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}

@media (max-width: 640px) {
  .recipe-listing { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
}
