/* =========================================
   THE CRAFT TABLE — Global Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background-color: #F7F3ED;
  color: #2D1E0F;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CSS Variables ---- */
:root {
  --espresso:   #1A0F07;
  --amber:      #C17D3C;
  --amber-dark: #A5631E;
  --sage:       #7A9068;
  --cream:      #F7F3ED;
  --cream-dark: #EDE5D8;
  --text:       #2D1E0F;
  --text-muted: #7A6552;
  --white:      #FFFFFF;
  --border:     #DDD3C4;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(26,15,7,.08);
  --shadow-md:  0 6px 24px rgba(26,15,7,.12);
  --shadow-lg:  0 16px 48px rgba(26,15,7,.16);

  --nav-h: 58px;
  --nav-top: 1rem;
  --section-py: clamp(60px, 8vw, 110px);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.18;
  color: var(--espresso);
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 600; }
h4 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
p  { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
}
.lead { font-size: 1.15rem; color: var(--text); line-height: 1.8; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--espresso);
  color: var(--white);
}
.btn-primary:hover { background: var(--amber); transform: translateY(-1px); }
.btn-amber {
  background: var(--amber);
  color: var(--white);
}
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--espresso);
  color: var(--espresso);
}
.btn-outline:hover { background: var(--espresso); color: var(--white); }
.btn-ghost {
  color: var(--amber);
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid transparent;
}
.btn-ghost:hover { border-bottom-color: var(--amber); }
.btn svg { width: 16px; height: 16px; }

/* ---- Layout Utilities ---- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.container-wide { max-width: 1440px; }
.section { padding: var(--section-py) 0; }
.section-sm { padding: calc(var(--section-py) * .6) 0; }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* =========================================
   NAVIGATION — Floating Pill
   ========================================= */
.nav {
  position: fixed;
  top: var(--nav-top);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: 1160px;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(247,243,237,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 100px;
  border: 1.5px solid rgba(221,211,196,.85);
  box-shadow: 0 2px 20px rgba(26,15,7,.07), 0 1px 4px rgba(26,15,7,.05);
  transition: box-shadow .35s, background .35s, border-color .35s;
}
.nav.scrolled {
  background: rgba(247,243,237,.98);
  box-shadow: 0 8px 36px rgba(26,15,7,.13), 0 2px 8px rgba(26,15,7,.06);
  border-color: rgba(193,125,60,.22);
}
.nav .container {
  max-width: none;
  padding: 0;
  height: 100%;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.75rem;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: -.02em;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo span { color: var(--amber); }
.nav-links {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: .45rem .9rem;
  border-radius: 100px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--cream-dark); color: var(--text); }
.nav-links a.active {
  background: var(--espresso);
  color: var(--white);
}
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.nav-search-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: background .2s, color .2s;
}
.nav-search-btn:hover { background: var(--cream-dark); color: var(--text); }
.nav-search-btn svg { width: 16px; height: 16px; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all .3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + var(--nav-top) + .5rem);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: 1160px;
  background: rgba(247,243,237,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 1.25rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: .75rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: .9rem;
  font-weight: 500;
  padding: .6rem .75rem;
  border-radius: 8px;
  color: var(--text);
  transition: background .2s;
}
.nav-mobile a:hover { background: var(--cream-dark); }
.page-offset { padding-top: calc(var(--nav-h) + var(--nav-top) + 1.25rem); }

/* =========================================
   HERO — Homepage
   ========================================= */
.hero {
  min-height: calc(100vh - var(--nav-h) - var(--nav-top) - 1.25rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 100px) clamp(24px, 5vw, 80px);
  background: var(--cream);
}
.hero-content .eyebrow { margin-bottom: 1rem; }
.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content .lead { max-width: 480px; margin-bottom: 2.5rem; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-meta-item { text-align: center; }
.hero-meta-item .number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
}
.hero-meta-item .label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-top: .3rem;
}
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.hero-visual:hover img { transform: scale(1.04); }
.hero-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--espresso);
  color: var(--white);
  padding: .9rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.3;
  max-width: 200px;
}
.hero-badge strong { display: block; font-style: normal; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: .3rem; }

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header { max-width: 640px; }
.section-header.centered { margin: 0 auto; text-align: center; }
.section-header h2 { margin-top: .5rem; margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }
.section-divider { width: 48px; height: 2px; background: var(--amber); margin-top: .8rem; }
.section-header.centered .section-divider { margin: .8rem auto 0; }

/* =========================================
   RECIPE CARDS
   ========================================= */
.recipe-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.recipe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.recipe-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.recipe-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.recipe-card:hover .recipe-card-img img { transform: scale(1.06); }
.recipe-card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--amber);
  color: var(--white);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 3px;
}
.recipe-card-body { padding: 1.5rem; }
.recipe-card-body h4 { margin-bottom: .5rem; }
.recipe-card-body p { font-size: .875rem; margin-bottom: 1rem; }
.recipe-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  color: var(--text-muted);
}
.recipe-card-meta span {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.recipe-card-meta svg { width: 13px; height: 13px; }

/* Featured Recipe Card */
.recipe-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.recipe-featured-img { aspect-ratio: 1; overflow: hidden; }
.recipe-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.recipe-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
}
.recipe-featured-body .eyebrow { margin-bottom: 1rem; }
.recipe-featured-body h3 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); margin-bottom: 1rem; }
.recipe-featured-body p { margin-bottom: 2rem; }
.recipe-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 3px;
  background: var(--cream-dark);
  color: var(--text-muted);
}

/* =========================================
   CATEGORY STRIP
   ========================================= */
.category-strip { background: var(--espresso); padding: 2rem 0; }
.categories-scroll {
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: .5rem;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.category-pill {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  transition: opacity .2s;
}
.category-pill:hover { opacity: .75; }
.category-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  border: 1.5px solid rgba(255,255,255,.2);
  transition: background .2s, border-color .2s;
}
.category-pill:hover .category-icon,
.category-pill.active .category-icon {
  background: var(--amber);
  border-color: var(--amber);
}
.category-pill span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.category-pill.active span { color: var(--white); }

/* =========================================
   TECHNIQUE CARDS
   ========================================= */
.technique-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color .3s, box-shadow .3s;
}
.technique-card:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); }
.technique-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--amber);
}
.technique-card h4 { margin-bottom: .4rem; }
.technique-card p { font-size: .875rem; }

/* =========================================
   BLOG / NEWS CARDS
   ========================================= */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .75rem;
}
.blog-card-body h4 { margin-bottom: .75rem; font-size: 1.25rem; line-height: 1.3; }
.blog-card-body p { font-size: .875rem; flex: 1; margin-bottom: 1.25rem; }
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--text-muted);
}
.blog-card-author { display: flex; align-items: center; gap: .5rem; }
.author-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* Hero blog card (large) */
.blog-hero-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
}
.blog-hero-card .blog-card-img { aspect-ratio: unset; }
.blog-hero-card .blog-card-body { padding: 3rem; justify-content: center; }
.blog-hero-card h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 1rem; }
.blog-hero-card p { margin-bottom: 1.5rem; }

/* =========================================
   NEWSLETTER SECTION
   ========================================= */
.newsletter-section {
  background: var(--espresso);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,125,60,.2) 0%, transparent 70%);
}
.newsletter-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner .eyebrow { color: var(--amber); margin-bottom: 1rem; }
.newsletter-inner h2 { color: var(--white); margin-bottom: 1rem; }
.newsletter-inner p { color: rgba(255,255,255,.65); margin-bottom: 2.5rem; }
.newsletter-form {
  display: flex;
  gap: .75rem;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: .85rem 1.2rem;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--amber); }
.newsletter-note { font-size: .78rem; color: rgba(255,255,255,.35); margin-top: 1rem; }

/* =========================================
   QUOTE / PULL SECTION
   ========================================= */
.quote-section { background: var(--cream-dark); padding: var(--section-py) 0; text-align: center; }
.quote-mark { font-family: var(--font-serif); font-size: 6rem; line-height: .8; color: var(--amber); opacity: .4; }
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--espresso);
  max-width: 740px;
  margin: .5rem auto;
  line-height: 1.5;
}
.quote-attribution {
  margin-top: 1.5rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =========================================
   INGREDIENT / FEATURE STRIP
   ========================================= */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
}
.ingredient-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color .25s, transform .25s;
}
.ingredient-item:hover { border-color: var(--amber); transform: translateY(-3px); }
.ingredient-emoji { font-size: 2.4rem; margin-bottom: .75rem; }
.ingredient-item h5 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: .3rem;
}
.ingredient-item p { font-size: .78rem; }

/* =========================================
   PAGE HERO (Inner Pages)
   ========================================= */
.page-hero {
  background: var(--espresso);
  padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}
.page-hero .eyebrow { color: var(--amber); margin-bottom: 1rem; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.65); max-width: 580px; margin: 0 auto; }

/* =========================================
   BREADCRUMB
   ========================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb-sep { opacity: .4; }

/* =========================================
   FILTER BAR
   ========================================= */
.filter-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: .5rem 1.1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: all .2s;
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(193,125,60,.06);
}

/* =========================================
   SIDEBAR
   ========================================= */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}
.sidebar-widget h5 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-post { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.sidebar-post:last-child { margin-bottom: 0; }
.sidebar-post-img { width: 72px; height: 64px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-title { font-family: var(--font-serif); font-size: .95rem; line-height: 1.3; margin-bottom: .3rem; }
.sidebar-post-date { font-size: .75rem; color: var(--text-muted); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }

/* =========================================
   BLOG POST PAGE
   ========================================= */
.post-header { padding: clamp(40px, 6vw, 80px) 0 2rem; }
.post-cover { width: 100%; aspect-ratio: 16/7; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 3rem; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-body { max-width: 720px; }
.post-body h2, .post-body h3 { margin: 2rem 0 1rem; }
.post-body p { margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.85; color: var(--text); }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.post-body li { margin-bottom: .5rem; color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; }
.post-body blockquote {
  border-left: 3px solid var(--amber);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--cream-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--espresso);
}
.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}
.post-share span { font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.share-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: background .2s, color .2s;
}
.share-btn:hover { background: var(--amber); color: var(--white); }
.share-btn svg { width: 15px; height: 15px; }

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--espresso);
}
.legal-content h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 .75rem;
}
.legal-content p { margin-bottom: 1.25rem; font-size: .975rem; line-height: 1.8; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.legal-content li { margin-bottom: .5rem; color: var(--text-muted); font-size: .975rem; line-height: 1.75; }
.legal-content a { color: var(--amber); }
.legal-content a:hover { text-decoration: underline; }
.legal-updated {
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: .75rem 1.25rem;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--amber);
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2rem; }
.team-card { text-align: center; }
.team-img {
  width: 150px; height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--cream-dark);
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin-bottom: .3rem; }
.team-card .role { font-size: .8rem; color: var(--amber); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem; }
.team-card p { font-size: .875rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.value-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
}
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { margin-bottom: .5rem; }
.value-card p { font-size: .9rem; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-form-group { margin-bottom: 1.5rem; }
.contact-form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus { border-color: var(--amber); }
.contact-form-group textarea { min-height: 140px; resize: vertical; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-info-item h5 { font-size: .9rem; margin-bottom: .3rem; }
.contact-info-item p { font-size: .875rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--espresso);
  color: rgba(255,255,255,.65);
  padding: clamp(50px, 7vw, 90px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: .75rem;
}
.footer-brand h3 span { color: var(--amber); }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .75rem; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: background .2s, border-color .2s, color .2s;
}
.footer-social:hover { background: var(--amber); border-color: var(--amber); color: var(--white); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col a { font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8rem; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--amber); }

/* =========================================
   SCROLL TO TOP
   ========================================= */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  z-index: 900;
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top svg { width: 18px; height: 18px; }

/* =========================================
   UTILITIES & HELPERS
   ========================================= */
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-espresso { background: var(--espresso); }
.bg-white { background: var(--white); }
.text-amber { color: var(--amber); }
.text-white { color: var(--white); }
.divider { height: 1px; background: var(--border); margin: 3rem 0; }
.badge {
  display: inline-block;
  padding: .3rem .8rem;
  border-radius: 3px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge-amber { background: rgba(193,125,60,.12); color: var(--amber); }
.badge-sage  { background: rgba(122,144,104,.12); color: var(--sage); }
.badge-dark  { background: var(--espresso); color: var(--white); }
.sticky-sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeup { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar-layout .sticky-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav {
    top: .6rem;
    width: calc(100% - 1.5rem);
    height: 52px;
    border-radius: 100px;
  }
  .nav-inner { padding: 0 1.25rem; }
  .page-offset { padding-top: calc(52px + .6rem + 1.25rem); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 320px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .recipe-featured { grid-template-columns: 1fr; }
  .recipe-featured-img { aspect-ratio: 16/9; }
  .blog-hero-card { grid-template-columns: 1fr; }
  .blog-hero-card .blog-card-img { min-height: 260px; }
  .newsletter-form { flex-direction: column; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile {
    top: calc(52px + .6rem + .5rem);
    width: calc(100% - 1.5rem);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-meta { gap: 1rem; }
}
