/* ═══════════════════════════════════════════════════════════════
   HONEYCOMB HOME — styles.css
   Still Waters aesthetic system
   Beehive minimalism. Architectural warmth. No illustration softness.
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --plaster:      #F2EDE4;
  --stone:        #C8BFAF;
  --stone-light:  #E0D8CC;
  --stone-dark:   #A89E90;
  --slate:        #3D4450;
  --slate-70:     rgba(61,68,80,0.70);
  --slate-50:     rgba(61,68,80,0.50);
  --slate-20:     rgba(61,68,80,0.20);
  --honey:        #C8902A;
  --honey-dark:   #A07020;
  --teal:         #5E7B74;
  --teal-light:   rgba(94,123,116,0.12);
  --linen:        #EAE3D6;
  --red-soft:     #F0E6E6;
  --red:          #943D3D;

  --ff-display: 'Cormorant Display', 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --fs-2xs:  0.6875rem;
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-hero: clamp(3.5rem, 6.5vw, 5rem);

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0px;
  --radius:    0px;
  --radius-lg: 0px;
  --radius-xl: 0px;

  --shadow-sm: 0 1px 6px rgba(61,44,28,0.06);
  --shadow:    0 2px 12px rgba(61,44,28,0.07);
  --shadow-md: 0 4px 24px rgba(61,44,28,0.08);
  --shadow-lg: 0 8px 40px rgba(61,44,28,0.10);

  --nav-h: 72px;
  --transition: 0.2s ease;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--plaster);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
  color: var(--slate);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 300;
  line-height: 1.75;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
p { max-width: 68ch; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1.1;
  color: var(--slate);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: var(--fs-lg); font-weight: 400; }
h5 { font-size: var(--fs-md); font-weight: 400; }

.text-center { text-align: center; }
.text-honey  { color: var(--honey); }
.text-teal   { color: var(--teal); }
.text-muted  { color: var(--slate-70); }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
.container--narrow { max-width: 820px; }
.section { padding: var(--space-24) 0; }
.section--sm { padding: var(--space-16) 0; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--plaster);
  display: flex;
  align-items: center;
  transition: border-bottom var(--transition);
}
.nav.scrolled { border-bottom: 1px solid var(--stone); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
.nav__brand { display: flex; align-items: center; gap: var(--space-4); }
.nav__wordmark {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: 0;
  line-height: 1;
}
.nav__wordmark span { color: var(--honey); }

/* Logo mark container — ensures the circle mark renders crisply */
.nav__brand svg {
  flex-shrink: 0;
  display: block;
}
.nav__links { display: flex; align-items: center; gap: 0; }
.nav__link {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-70);
  padding: var(--space-2) var(--space-4);
  transition: color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav__link:hover { color: var(--slate); }
.nav__link.active { color: var(--honey); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.nav__toggle span {
  display: block;
  width: 20px; height: 1px;
  background: var(--slate);
  transition: var(--transition);
}
.page-content { padding-top: var(--nav-h); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--honey {
  padding: 14px 28px;
  background: var(--honey);
  color: var(--plaster);
  border: 1px solid var(--honey);
}
.btn--honey:hover { background: var(--honey-dark); border-color: var(--honey-dark); }
.btn--outline {
  padding: 13px 28px;
  background: transparent;
  color: var(--slate);
  border: 1px solid var(--stone);
}
.btn--outline:hover { border-color: var(--honey); color: var(--honey); }
.btn--ghost {
  padding: 13px 28px;
  background: transparent;
  color: var(--slate-70);
  border: 1px solid var(--stone-light);
}
.btn--ghost:hover { border-color: var(--stone); color: var(--slate); }
.btn--sm { padding: 9px 18px; font-size: 0.625rem; letter-spacing: 0.12em; }
.btn--teal {
  padding: 14px 28px;
  background: var(--teal);
  color: var(--plaster);
  border: 1px solid var(--teal);
}
.btn--teal:hover { background: #4a6560; border-color: #4a6560; }
.btn--moss { background: var(--teal); color: var(--plaster); border: 1px solid var(--teal); padding: 14px 28px; }
.btn--moss:hover { background: #4a6560; border-color: #4a6560; }
.btn--danger {
  padding: 8px 16px;
  background: transparent;
  color: var(--red);
  border: 1px solid rgba(148,61,61,0.25);
  font-size: 0.625rem;
  letter-spacing: 0.10em;
}
.btn--danger:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ─── TAGS ───────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 0;
}
.tag--honey { background: rgba(200,144,42,0.08); color: var(--honey-dark); border: 1px solid rgba(200,144,42,0.2); }
.tag--teal  { background: var(--teal-light); color: var(--teal); border: 1px solid rgba(94,123,116,0.2); }
.tag--stone { background: transparent; color: var(--slate-70); border: 1px solid var(--stone-light); }
.tag--amber { background: rgba(200,144,42,0.06); color: var(--honey-dark); border: 1px solid rgba(200,144,42,0.15); }
.tag--red   { background: var(--red-soft); color: var(--red); border: 1px solid rgba(148,61,61,0.2); }
.tag--moss  { background: var(--teal-light); color: var(--teal); border: 1px solid rgba(94,123,116,0.2); }

/* ─── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--linen);
  border: 1px solid var(--stone-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  border-radius: 0;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--stone-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  position: relative;
}
.card__img-placeholder::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid var(--stone);
  opacity: 0.35;
  pointer-events: none;
}
.card__body { padding: var(--space-6); }
.card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.card__title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: var(--space-3);
  color: var(--slate);
  letter-spacing: -0.01em;
}
.card__desc {
  font-size: var(--fs-sm);
  color: var(--slate-70);
  line-height: 1.7;
  font-weight: 300;
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--stone-light);
  background: rgba(200,191,175,0.10);
}

/* ─── RECIPE CARD ────────────────────────────────────────────── */
.recipe-card { cursor: pointer; position: relative; }
.recipe-card__fav {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--plaster);
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
  z-index: 1;
  border: 1px solid var(--stone-light);
  cursor: pointer;
  border-radius: 0;
}
.recipe-card__fav:hover { border-color: var(--honey); }
.recipe-card__fav.active { color: var(--red); border-color: rgba(148,61,61,0.3); }
.recipe-card__link { display: block; text-decoration: none; color: inherit; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--plaster);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 44%;
  padding: var(--space-20) 0;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: var(--space-8);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--honey);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--slate);
  margin-bottom: var(--space-8);
}
.hero__title em { font-style: italic; color: var(--honey); }
.hero__subtitle {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--slate-70);
  margin-bottom: var(--space-10);
  max-width: 46ch;
  line-height: 1.75;
}
.hero__cta { display: flex; gap: var(--space-4); flex-wrap: wrap; align-items: center; }
.hero__grid {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 48%;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero__botanical {
  position: absolute;
  bottom: 18%; right: 7%;
  width: 54px;
  opacity: 0.5;
  pointer-events: none;
}

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.section-header { margin-bottom: var(--space-12); }
.section-header__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.section-header__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--honey);
  flex-shrink: 0;
}
.section-header__title { margin-bottom: var(--space-4); }
.section-header__desc { color: var(--slate-70); font-size: var(--fs-md); font-weight: 300; }
.section-header--center { text-align: center; }
.section-header--center .section-header__eyebrow { justify-content: center; }

/* ─── FILTER BAR ─────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
  background: var(--linen);
  border: 1px solid var(--stone-light);
  padding: var(--space-4) var(--space-6);
}
.filter-bar__search {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.filter-bar__search input {
  width: 100%;
  padding: var(--space-3) var(--space-4) var(--space-3) var(--space-10);
  border: 1px solid var(--stone-light);
  background: var(--plaster);
  color: var(--slate);
  transition: border-color var(--transition);
  font-size: var(--fs-sm);
  font-weight: 300;
  border-radius: 0;
}
.filter-bar__search input:focus { outline: none; border-color: var(--honey); }
.filter-bar__search-icon {
  position: absolute;
  left: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  color: var(--stone-dark);
  font-size: 0.9rem;
  pointer-events: none;
}
.filter-bar__select {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--stone-light);
  background: var(--plaster);
  color: var(--slate);
  font-size: var(--fs-sm);
  cursor: pointer;
  border-radius: 0;
}
.filter-bar__select:focus { outline: none; border-color: var(--honey); }
.filter-bar__chips { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.filter-chip {
  padding: var(--space-2) var(--space-4);
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border: 1px solid var(--stone-light);
  color: var(--slate-70);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
  border-radius: 0;
}
.filter-chip:hover, .filter-chip.active {
  border-color: var(--honey);
  color: var(--honey);
  background: rgba(200,144,42,0.04);
}

/* ─── MODAL ──────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(61,68,80,0.45);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--plaster);
  border: 1px solid var(--stone);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.22s ease;
  border-radius: 0;
}
@keyframes modalIn {
  from { opacity:0; transform: translateY(8px); }
  to   { opacity:1; transform: translateY(0); }
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--stone-light);
  position: sticky;
  top: 0;
  background: var(--plaster);
  z-index: 1;
}
.modal__title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--slate);
  letter-spacing: -0.01em;
}
.modal__close {
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--slate-70);
  transition: all var(--transition);
  background: transparent;
  border: 1px solid var(--stone-light);
  cursor: pointer;
  border-radius: 0;
}
.modal__close:hover { border-color: var(--slate); color: var(--slate); }
.modal__body { padding: var(--space-6) var(--space-8); }
.modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-8);
  border-top: 1px solid var(--stone-light);
}

/* ─── FORMS ──────────────────────────────────────────────────── */
.form-group { margin-bottom: var(--space-5); }
.form-label {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: var(--space-2);
}
.form-label span { color: var(--honey); margin-left: 2px; }
.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--stone-light);
  background: var(--linen);
  color: var(--slate);
  transition: border-color var(--transition);
  font-size: var(--fs-sm);
  font-weight: 300;
  border-radius: 0;
}
.form-input:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 2px rgba(200,144,42,0.08);
}
.form-input.error { border-color: var(--red); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235A6272' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-error { font-size: var(--fs-xs); color: var(--red); margin-top: var(--space-1); }
.form-hint  { font-size: var(--fs-xs); color: var(--slate-50); margin-top: var(--space-1); font-weight: 300; }

/* ─── DIVIDERS ───────────────────────────────────────────────── */
.divider {
  border: none;
  height: 1px;
  background: var(--stone-light);
  margin: var(--space-24) 0;
}
.divider--honey {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  border: none;
  height: auto;
  margin: var(--space-16) 0;
}
.divider--honey::before, .divider--honey::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--stone-light);
}

/* ─── HOME — QUICK ACCESS ────────────────────────────────────── */
.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone-light);
  border: 1px solid var(--stone-light);
}
.quick-card {
  background: var(--linen);
  padding: var(--space-10) var(--space-8);
  text-align: left;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.quick-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--honey);
  transition: width 0.32s ease;
}
.quick-card:hover { background: var(--plaster); }
.quick-card:hover::after { width: 100%; }
.quick-card__icon {
  width: 40px; height: 40px;
  border: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  transition: border-color var(--transition);
}
.quick-card:hover .quick-card__icon { border-color: var(--honey); }
.quick-card__title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.quick-card__desc { font-size: var(--fs-sm); color: var(--slate-70); font-weight: 300; line-height: 1.65; }
.quick-card__arrow {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  font-size: 0.75rem;
  color: var(--stone-dark);
  transition: all var(--transition);
}
.quick-card:hover .quick-card__arrow { color: var(--honey); transform: translateX(3px); }

/* ─── FEATURED RECIPE ────────────────────────────────────────── */
.featured-recipe {
  background: var(--linen);
  border: 1px solid var(--stone-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow);
}
.featured-recipe__img {
  background: var(--stone-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  min-height: 360px;
  position: relative;
}
.featured-recipe__img::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--stone);
  opacity: 0.3;
}
.featured-recipe__body {
  padding: var(--space-12) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--stone-light);
}
.featured-recipe__tag { margin-bottom: var(--space-5); }
.featured-recipe__title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}
.featured-recipe__desc {
  color: var(--slate-70);
  margin-bottom: var(--space-8);
  font-size: var(--fs-md);
  font-weight: 300;
  line-height: 1.75;
}
.featured-recipe__meta {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--stone-light);
  border-bottom: 1px solid var(--stone-light);
}
.featured-recipe__meta-item { display: flex; flex-direction: column; gap: 4px; }
.featured-recipe__meta-label {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-50);
}
.featured-recipe__meta-value {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--honey);
}

/* ─── RECIPE DETAIL ──────────────────────────────────────────── */
.recipe-hero {
  background: var(--plaster);
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--stone-light);
}
.recipe-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.recipe-hero__img {
  aspect-ratio: 4/3;
  background: var(--stone-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  box-shadow: var(--shadow-md);
}
.recipe-hero__img::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--stone);
  opacity: 0.25;
}
.recipe-hero__meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: var(--space-6) 0;
  background: var(--stone-light);
  border: 1px solid var(--stone-light);
}
.recipe-meta-box {
  background: var(--linen);
  padding: var(--space-4);
  text-align: center;
}
.recipe-meta-box__label {
  font-family: var(--ff-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-50);
  margin-bottom: var(--space-1);
}
.recipe-meta-box__value {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--honey);
}
.recipe-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-16);
  align-items: start;
  padding: var(--space-16) 0;
}
.ingredient-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--stone-light);
  font-size: var(--fs-sm);
  transition: opacity var(--transition);
  cursor: pointer;
  font-weight: 300;
}
.ingredient-item:last-child { border-bottom: none; }
.ingredient-item.checked { opacity: 0.38; text-decoration: line-through; }
.ingredient-checkbox {
  width: 15px; height: 15px;
  border: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 0.55rem;
  background: transparent;
  border-radius: 0;
}
.ingredient-item.checked .ingredient-checkbox {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--plaster);
}
.step-item {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
.step-item:last-child { margin-bottom: 0; }
.step-number {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--honey);
  margin-top: 2px;
}
.step-title {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  color: var(--slate);
}
.step-desc { color: var(--slate-70); font-size: var(--fs-sm); line-height: 1.75; font-weight: 300; }
.recipe-notes {
  background: var(--linen);
  padding: var(--space-6) var(--space-8);
  margin-top: var(--space-8);
  border-left: 2px solid var(--honey);
}
.recipe-notes__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--honey-dark);
  margin-bottom: var(--space-3);
}
.recipe-notes p { font-size: var(--fs-sm); color: var(--slate-70); max-width: none; font-weight: 300; }

/* ─── PLANNER ────────────────────────────────────────────────── */
.planner-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: var(--space-10);
  background: var(--stone-light);
  border: 1px solid var(--stone-light);
}
.planner-day { background: var(--linen); overflow: hidden; min-height: 300px; }
.planner-day__header {
  padding: var(--space-3) var(--space-4);
  background: var(--slate);
  color: rgba(242,237,228,0.8);
  text-align: center;
}
.planner-day__name {
  font-family: var(--ff-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
}
.planner-day__date {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.1;
  margin-top: 2px;
}
.planner-day--today .planner-day__header { background: var(--honey); }
.planner-day__slots { padding: var(--space-3); display: flex; flex-direction: column; gap: 2px; }
.planner-slot {
  border: 1px dashed var(--stone-light);
  padding: var(--space-3);
  min-height: 66px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  background: transparent;
}
.planner-slot:hover { border-color: var(--honey); border-style: solid; background: rgba(200,144,42,0.025); }
.planner-slot__label {
  font-family: var(--ff-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-dark);
  margin-bottom: var(--space-1);
}
.planner-slot__content { font-size: 0.78rem; color: var(--slate); font-weight: 300; }
.planner-slot--filled { border-style: solid; border-color: rgba(200,144,42,0.22); background: rgba(200,144,42,0.03); }
.planner-slot--filled .planner-slot__label { color: var(--honey-dark); }
.planner-slot__remove {
  position: absolute;
  top: 4px; right: 4px;
  font-size: 0.6rem;
  color: var(--stone-dark);
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition);
  background: none; border: none;
  padding: 2px;
}
.planner-slot:hover .planner-slot__remove { opacity: 1; }
.shopping-list {
  background: var(--linen);
  border: 1px solid var(--stone-light);
  padding: var(--space-10);
  box-shadow: var(--shadow);
}
.shopping-list__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--stone-light);
}
.shopping-list__category { margin-bottom: var(--space-8); }
.shopping-list__category-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--stone-light);
}
.shopping-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--fs-sm);
  cursor: pointer;
  border-bottom: 1px solid rgba(200,191,175,0.3);
  font-weight: 300;
}
.shopping-item:last-child { border-bottom: none; }
.shopping-item.checked { opacity: 0.38; text-decoration: line-through; }
.shopping-check {
  width: 15px; height: 15px;
  border: 1px solid var(--stone);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  transition: all var(--transition);
  border-radius: 0;
  background: transparent;
}
.shopping-item.checked .shopping-check { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ─── PANTRY ─────────────────────────────────────────────────── */
.pantry-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-10);
  align-items: start;
}
.pantry-sidebar__card {
  background: var(--linen);
  border: 1px solid var(--stone-light);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
}
.pantry-cat-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-70);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-left: 2px solid transparent;
}
.pantry-cat-btn:hover { color: var(--slate); background: rgba(200,191,175,0.12); }
.pantry-cat-btn.active { color: var(--honey); border-left-color: var(--honey); background: rgba(200,144,42,0.04); }
.pantry-cat-count {
  font-size: 0.6rem;
  font-weight: 500;
  padding: 2px 7px;
  border: 1px solid var(--stone-light);
  color: var(--slate-50);
  letter-spacing: 0.06em;
}
.pantry-cat-btn.active .pantry-cat-count { border-color: rgba(200,144,42,0.25); color: var(--honey-dark); }
.pantry-table {
  width: 100%;
  background: var(--linen);
  border: 1px solid var(--stone-light);
  overflow: hidden;
}
.pantry-table table { width: 100%; border-collapse: collapse; }
.pantry-table th {
  background: var(--plaster);
  padding: var(--space-3) var(--space-5);
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-50);
  text-align: left;
  border-bottom: 1px solid var(--stone-light);
}
.pantry-table td {
  padding: var(--space-4) var(--space-5);
  font-size: var(--fs-sm);
  border-bottom: 1px solid rgba(200,191,175,0.25);
  vertical-align: middle;
  font-weight: 300;
}
.pantry-table tr:last-child td { border-bottom: none; }
.pantry-table tr:hover td { background: rgba(200,191,175,0.07); }
.pantry-item-name { font-weight: 400; color: var(--slate); }
.pantry-low-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(200,144,42,0.07);
  color: var(--honey-dark);
  font-family: var(--ff-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid rgba(200,144,42,0.18);
}
.pantry-table input[type="number"],
.pantry-table input[type="text"] {
  width: 80px;
  padding: 4px 8px;
  border: 1px solid var(--stone-light);
  background: var(--plaster);
  font-size: var(--fs-xs);
  border-radius: 0;
  font-weight: 300;
}
.pantry-table input:focus { outline: none; border-color: var(--honey); }
.pantry-alert {
  background: rgba(200,144,42,0.05);
  border: 1px solid rgba(200,144,42,0.18);
  border-left: 2px solid var(--honey);
  padding: var(--space-4) var(--space-6);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--fs-sm);
  font-weight: 300;
}
.pantry-alert__icon { font-size: 0.9rem; flex-shrink: 0; }

/* ─── EMPTY STATE ────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: var(--space-24) var(--space-8);
}
.empty-state__icon { font-size: 3rem; margin-bottom: var(--space-6); opacity: 0.25; }
.empty-state__title {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: var(--space-4);
  color: var(--stone-dark);
  letter-spacing: -0.01em;
}
.empty-state__desc { color: var(--slate-50); margin: 0 auto var(--space-6); font-size: var(--fs-md); font-weight: 300; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--slate);
  color: rgba(242,237,228,0.5);
  padding: var(--space-16) 0 var(--space-10);
  position: relative;
  overflow: hidden;
}
.footer__hex-bg { position: absolute; inset: 0; opacity: 0.025; pointer-events: none; }
.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(242,237,228,0.07);
}
.footer__wordmark {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(242,237,228,0.82);
  margin-bottom: var(--space-3);
}
.footer__wordmark span { color: var(--honey); }
.footer__tagline {
  font-style: italic;
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.4;
  margin-bottom: var(--space-5);
}
.footer__col-title {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.45);
  margin-bottom: var(--space-5);
}
.footer__links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__link {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: rgba(242,237,228,0.42);
  transition: color var(--transition);
}
.footer__link:hover { color: rgba(242,237,228,0.82); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  opacity: 0.32;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── PAGE BANNER ────────────────────────────────────────────── */
.page-banner {
  background: var(--plaster);
  padding: var(--space-16) 0 var(--space-12);
  border-bottom: 1px solid var(--stone-light);
  position: relative;
  overflow: hidden;
}
.page-banner__hex {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  opacity: 0.045;
  width: 280px;
}
.page-banner__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.page-banner__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--honey);
  flex-shrink: 0;
}
.page-banner__title { margin-bottom: var(--space-4); }
.page-banner__desc { color: var(--slate-70); font-size: var(--fs-md); font-weight: 300; max-width: 56ch; }

/* ─── TOAST ──────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.toast {
  background: var(--slate);
  color: rgba(242,237,228,0.88);
  padding: var(--space-4) var(--space-5);
  font-size: var(--fs-sm);
  font-weight: 300;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 240px;
  border-left: 2px solid var(--honey);
  animation: toastIn 0.22s ease;
  border-radius: 0;
}
.toast--honey { border-left-color: var(--honey); }
.toast--moss  { border-left-color: var(--teal); }
@keyframes toastIn {
  from { opacity:0; transform: translateX(12px); }
  to   { opacity:1; transform: translateX(0); }
}

/* ─── PRINT ──────────────────────────────────────────────────── */
@media print {
  .nav, .footer, .btn, .filter-bar,
  .recipe-card__fav, .no-print { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .page-content { padding-top: 0; }
  .recipe-body { grid-template-columns: 1fr; }
  .recipe-hero__inner { grid-template-columns: 1fr; }
  .card { box-shadow: none; border: 1px solid #ddd; break-inside: avoid; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .quick-access-grid { grid-template-columns: 1fr 1fr; }
  .featured-recipe { grid-template-columns: 1fr; }
  .featured-recipe__body { border-left: none; border-top: 1px solid var(--stone-light); }
  .featured-recipe__img { min-height: 240px; }
  .planner-grid { grid-template-columns: repeat(4, 1fr); }
  .pantry-layout { grid-template-columns: 1fr; }
  .hero__content { width: 56%; }
  .hero__grid { width: 42%; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 var(--space-5); }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--plaster);
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--stone-light);
    gap: var(--space-1);
    box-shadow: var(--shadow-md);
  }
  .nav__toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .quick-access-grid { grid-template-columns: 1fr; gap: 1px; }
  .hero__grid { display: none; }
  .hero__content { width: 100%; padding: var(--space-12) 0; }
  .featured-recipe { grid-template-columns: 1fr; }
  .recipe-hero__inner { grid-template-columns: 1fr; }
  .recipe-body { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .planner-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .footer__inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
  .modal__body, .modal__header, .modal__footer { padding-left: var(--space-5); padding-right: var(--space-5); }
}
@media (max-width: 480px) {
  .quick-access-grid { grid-template-columns: 1fr; }
  .planner-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
}
