/*
Theme Name: UpishiDishes
Theme URI: https://upishidishes.com/
Author: UpishiDishes
Description: Premium editorial recipe marketplace theme for digital recipe guides, meal plans, and cookbooks.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: upishidishes
*/
:root {
  --cream: #0f0b09;
  --paper: #fff8ed;
  --ink: #fff8ed;
  --muted: #d9c4ad;
  --tomato: #e24d35;
  --basil: #4ea66f;
  --honey: #f1b84b;
  --purple: #8c3dff;
  --orchid: #d8c7a4;
  --copper: #9b6a36;
  --berry: #a73556;
  --espresso: #17100d;
  --cocoa: #261814;
  --ivory: #fff8ed;
  --line: rgba(255, 248, 237, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(15, 11, 9, 0.84), rgba(15, 11, 9, 0.96)),
    url("assets/premium/spaghetti-puttanesca.webp") center top / cover fixed;
  color: var(--ink);
}

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

button,
input,
select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.82);
  box-shadow: 0 12px 40px rgba(33, 24, 20, 0.08);
  backdrop-filter: blur(24px) saturate(140%);
}

.brand,
.cart-button,
.nav-links,
.hero-actions,
.trust-strip,
.price-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 900;
  font-size: 1.1rem;
}

.brand img {
  width: 244px;
  height: 64px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--tomato);
  color: #fff;
  box-shadow: 0 10px 25px rgba(217, 77, 54, 0.25);
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-weight: 750;
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.cart-button {
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-weight: 850;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: center;
  min-height: min(840px, calc(100vh - 74px));
  padding: 88px 5vw 70px;
  overflow: hidden;
  background: #211814;
  color: #fff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background: url("assets/premium/production-kitchen.jpg") center / cover;
  transform: scale(1.04);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(33, 24, 20, 0.96), rgba(33, 24, 20, 0.72) 42%, rgba(33, 24, 20, 0.22)),
    linear-gradient(0deg, rgba(33, 24, 20, 0.72), transparent 42%),
    radial-gradient(circle at 72% 24%, rgba(241, 184, 75, 0.28), transparent 24rem);
}

.hero > * {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--tomato);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1b84b;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 { margin-bottom: 10px; }

p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero p {
  color: #f8eadb;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.button,
.add-cart,
.filter-button {
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 21px;
  font-weight: 900;
}

.button:hover,
.add-cart:hover,
.filter-button:hover { transform: translateY(-2px); }

.primary {
  background: var(--tomato);
  color: #fff;
  box-shadow: 0 16px 32px rgba(217, 77, 54, 0.26);
}

.secondary {
  border: 1px solid var(--line);
  background: var(--paper);
}

.hero .secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(14px);
}

.trust-strip {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.12);
  color: #f5e5d6;
  backdrop-filter: blur(14px);
}

.trust-strip strong { color: #fff; }

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-photo,
.plate-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero-photo {
  object-fit: cover;
  background: var(--paper);
  animation: floatPhoto 7s ease-in-out infinite;
}

.hero-photo-main {
  left: 4px;
  bottom: 28px;
  width: min(360px, 74vw);
  height: 420px;
  border-radius: 28px;
  transform: rotate(-4deg);
}

.hero-photo-top {
  top: 0;
  right: 0;
  width: min(300px, 60vw);
  height: 240px;
  border-radius: 24px;
  transform: rotate(5deg);
  animation-delay: -2s;
}

.hero-photo-bottom {
  right: 18px;
  bottom: 12px;
  width: min(280px, 58vw);
  height: 230px;
  border-radius: 24px;
  transform: rotate(3deg);
  animation-delay: -4s;
}

@keyframes floatPhoto {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

.plate-card {
  right: 34px;
  top: 50px;
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 15px;
  align-items: center;
  width: min(340px, 84vw);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(14px);
  animation: cardPulse 5.8s ease-in-out infinite;
}

@keyframes cardPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.plate-card img {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  object-fit: cover;
}

.plate-card strong { display: block; }
.plate-card small { color: var(--muted); }

.category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 24px 5vw;
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.photo-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(33, 24, 20, 0.08);
  padding: 18px 0;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 20px 60px rgba(33, 24, 20, 0.08);
}

.photo-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: photoDrift 34s linear infinite;
}

.photo-track img {
  width: 260px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(33, 24, 20, 0.14);
}

@keyframes photoDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.filter-button {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 17px;
  background: #f2e7d9;
  color: var(--muted);
  font-weight: 850;
}

.filter-button.active {
  background: var(--ink);
  color: #fff;
}

.section {
  padding: 88px 5vw;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.recipe-card,
.bundle-card,
.sample-card,
.reviews article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(69, 41, 24, 0.08);
}

.recipe-card {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.recipe-card.hidden { display: none; }

.recipe-card:hover,
.production-grid article:hover,
.sample-card:hover,
.info-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(69, 41, 24, 0.15);
}

.recipe-art {
  min-height: 230px;
  border-bottom: 1px solid var(--line);
}

.recipe-art img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.recipe-body { padding: 22px; }

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  background: #f4e1d5;
  color: var(--tomato);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-row {
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.price-row strong,
.bundle-price {
  font-size: 1.8rem;
  font-weight: 950;
}

.add-cart {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 17px;
  background: var(--basil);
  color: #fff;
  font-weight: 900;
}

.bundle-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 34px;
  align-items: center;
  background: #211814;
  color: #fff;
}

.bundle-section p { color: #e4d5c8; }

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bundle-card {
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    #2e211b;
  color: #fff;
}

.bundle-card p { color: #e4d5c8; }

.featured-bundle {
  border-color: rgba(241, 184, 75, 0.55);
  box-shadow: 0 24px 60px rgba(241, 184, 75, 0.12);
}

.bundle-price {
  margin: 20px 0;
}

.bundle-price small {
  color: #e4d5c8;
  font-size: 1rem;
}

.samples-section { background: var(--paper); }

.sample-layout,
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sample-card,
.reviews article {
  padding: 24px;
}

.sample-card span {
  color: var(--tomato);
  font-size: 2rem;
  font-weight: 950;
}

.reviews {
  background: #f4e6d7;
}

.reviews article p {
  color: var(--ink);
  font-size: 1.08rem;
}

.feature-story,
.contact-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 34px;
  align-items: center;
}

.feature-story {
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.86), rgba(255, 248, 237, 0.96)),
    url("assets/premium/delivery-team.jpg") right center / cover no-repeat;
}

.feature-story.reverse {
  grid-template-columns: minmax(420px, 1.14fr) minmax(0, 0.86fr);
}

.feature-story.reverse .feature-copy {
  order: 2;
}

.feature-collage,
.production-grid {
  display: grid;
  gap: 16px;
}

.feature-collage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-collage img,
.contact-showcase img,
.production-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(69, 41, 24, 0.12);
}

.feature-collage img {
  height: 250px;
}

.feature-collage .wide {
  grid-column: 1 / -1;
  height: 330px;
}

.production-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(244, 230, 215, 0.94)),
    url("assets/premium/meal-prep-line.jpeg") center / cover fixed;
}

.production-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.production-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(69, 41, 24, 0.08);
}

.production-grid img {
  height: 250px;
  border-radius: 0;
  box-shadow: none;
}

.production-grid h3,
.production-grid p {
  padding-inline: 22px;
}

.production-grid h3 {
  padding-top: 22px;
}

.production-grid p {
  padding-bottom: 22px;
}

.contact-showcase img {
  min-height: 360px;
}

.atelier-section {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  gap: 38px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(15, 11, 9, 0.90), rgba(38, 24, 20, 0.92)),
    url("assets/premium/studio-team.jpg") center / cover fixed;
}

.atelier-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.atelier-copy {
  padding: 34px;
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 8px;
  background: rgba(15, 11, 9, 0.72);
  backdrop-filter: blur(18px);
}

.atelier-stats {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.atelier-stats span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 248, 237, 0.14);
  padding-top: 12px;
  color: #d9c4ad;
}

.atelier-stats strong {
  color: #f1b84b;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.faq-media {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.faq-media img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(69, 41, 24, 0.12);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 14px 34px rgba(69, 41, 24, 0.07);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 950;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.account-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.account-dashboard article {
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.08), rgba(255, 248, 237, 0.045)),
    rgba(23, 16, 13, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.account-dashboard img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.account-dashboard article > div {
  padding: 26px;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.account-grid article {
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.08), rgba(255, 248, 237, 0.045)),
    rgba(23, 16, 13, 0.94);
}

.account-grid span {
  color: #f1b84b;
  font-size: 2rem;
  font-weight: 950;
}

.page-hero {
  padding: 86px 5vw 62px;
  background:
    linear-gradient(120deg, rgba(255, 248, 237, 0.94), rgba(255, 248, 237, 0.78)),
    radial-gradient(circle at 82% 18%, rgba(217, 77, 54, 0.2), transparent 24rem),
    radial-gradient(circle at 14% 82%, rgba(39, 122, 82, 0.15), transparent 22rem);
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  font-size: 1.2rem;
}

.two-column,
.contact-grid,
.info-grid,
.trust-grid {
  display: grid;
  gap: 22px;
}

.two-column {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  align-items: center;
}

.feature-image {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-grid,
.contact-grid,
.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid article,
.contact-card,
.policy-panel,
.trust-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(69, 41, 24, 0.08);
}

.info-grid article,
.contact-card,
.trust-grid article {
  padding: 25px;
}

.info-grid a,
.policy-panel a {
  color: var(--tomato);
  font-weight: 900;
}

.contact-card span {
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-card h2 {
  margin-top: 10px;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1;
}

.policy-panel {
  max-width: 980px;
  margin-inline: 5vw;
  padding: 30px;
}

.policy-panel + .policy-panel {
  margin-top: 24px;
}

.policy-panel ul {
  color: var(--muted);
  line-height: 1.8;
}

.status-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--basil);
  box-shadow: 0 0 0 7px rgba(39, 122, 82, 0.12);
}

.status-dot.warning {
  background: var(--honey);
  box-shadow: 0 0 0 7px rgba(241, 184, 75, 0.18);
}

.checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 62px 5vw;
  background:
    linear-gradient(90deg, rgba(217, 77, 54, 0.96), rgba(143, 47, 82, 0.92)),
    url("assets/premium/spaghetti-puttanesca.webp") center / cover;
  color: #fff;
}

.checkout p,
.checkout .eyebrow { color: #fff4e9; }

.checkout .primary {
  background: #fff;
  color: var(--tomato);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 5vw;
  background: var(--ink);
  color: #fff;
}

.site-footer img {
  width: 230px;
  max-width: 100%;
  padding: 0;
  border-radius: 8px;
  background: transparent;
}

.site-footer p { margin: 0; color: #e4d5c8; }

.footer-address {
  margin-top: 12px;
  color: #fff8ed;
  font-style: normal;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 10px 18px;
  justify-content: flex-end;
  color: #f5e5d6;
  font-weight: 850;
}

.footer-links strong {
  grid-column: 1 / -1;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: #f5e5d6;
}

.footer-links a:hover {
  color: #f1b84b;
}

/* Production-grade final alignment layer */
:root {
  --site-max: 1700px;
  --page-pad: clamp(24px, 5vw, 96px);
  --deep: #100b08;
  --panel: #1d1410;
  --panel-2: #261813;
  --gold: #f1b84b;
  --ember: #e24d35;
  --wine: #a73556;
  --brand-purple: #8c3dff;
  --brand-orchid: #d8c7a4;
  --brand-copper: #9b6a36;
  --cream-text: #fff8ed;
  --soft-text: #decab4;
  --fine-line: rgba(255, 248, 237, 0.15);
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 8%, rgba(140, 61, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 86% 18%, rgba(255, 78, 122, 0.14), transparent 22rem),
    linear-gradient(180deg, #120c09 0%, #0a0705 100%);
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
select {
  -webkit-user-select: text;
  user-select: text;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 248, 237, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 237, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 78%, transparent);
}

.site-header {
  min-height: 96px;
  padding: 12px var(--page-pad);
  background:
    linear-gradient(90deg, rgba(17, 8, 28, 0.96), rgba(38, 19, 47, 0.92)),
    rgba(16, 11, 8, 0.94);
}

.brand img {
  width: clamp(222px, 18vw, 300px);
  height: 72px;
  display: block;
}

.nav-links {
  gap: clamp(16px, 2vw, 32px);
  font-size: clamp(0.92rem, 1vw, 1.02rem);
}

.cart-button {
  min-width: 136px;
  justify-content: center;
}

main > .section,
.hero,
.category-bar,
.photo-marquee,
.checkout,
.site-footer {
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.hero {
  min-height: calc(100vh - 96px);
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.82fr);
  max-width: none;
  isolation: isolate;
}

.hero::before {
  background: url("assets/premium/production-kitchen.jpg") center / cover no-repeat;
}

.hero-copy {
  max-width: 850px;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(4rem, 7.4vw, 8rem);
}

.trust-strip {
  width: fit-content;
  max-width: 100%;
  padding: 8px;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 999px;
  background: rgba(16, 11, 8, 0.42);
  backdrop-filter: blur(18px);
}

.trust-strip span {
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 248, 237, 0.08);
}

.hero-visual {
  min-height: 640px;
  transform: translateY(14px);
}

.hero-photo {
  border-radius: 26px;
  border: 1px solid rgba(255, 248, 237, 0.26);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.52);
}

.plate-card {
  border: 1px solid rgba(255, 248, 237, 0.22);
  background: rgba(255, 248, 237, 0.9);
  color: #21130f;
}

.plate-card small {
  color: #6b584b;
}

.photo-marquee {
  padding-top: 22px;
  padding-bottom: 22px;
}

.photo-track {
  gap: 18px;
}

.photo-track img {
  width: clamp(190px, 16vw, 290px);
  height: 142px;
  border-radius: 18px;
  border: 1px solid rgba(255, 248, 237, 0.16);
  object-fit: cover;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.section {
  padding-top: clamp(84px, 8vw, 140px);
  padding-bottom: clamp(84px, 8vw, 140px);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.feature-story {
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  align-items: center;
  gap: clamp(36px, 5vw, 90px);
  background:
    linear-gradient(120deg, rgba(16, 11, 8, 0.98), rgba(38, 24, 19, 0.82)),
    url("assets/premium/delivery-team.jpg") right center / cover no-repeat;
}

.feature-copy {
  max-width: 620px;
}

.feature-collage {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.feature-collage img {
  min-height: 260px;
  border-radius: 24px;
  border: 1px solid rgba(255, 248, 237, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.feature-collage .wide {
  min-height: 360px;
}

.atelier-section {
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
}

.atelier-media img,
.production-grid img,
.account-dashboard img {
  border-radius: 22px;
  border: 1px solid rgba(255, 248, 237, 0.15);
}

.category-bar {
  position: sticky;
  top: 96px;
  z-index: 30;
  justify-content: center;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
  backdrop-filter: blur(20px);
}

.filter-button {
  min-width: 112px;
  min-height: 42px;
  border: 1px solid rgba(255, 248, 237, 0.14);
}

.recipe-grid {
  max-width: var(--site-max);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: clamp(22px, 2.2vw, 34px);
  align-items: stretch;
}

.recipe-card {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.075), rgba(255, 248, 237, 0.035)),
    #1c120f;
  overflow: hidden;
}

.recipe-art {
  min-height: 0;
  aspect-ratio: 1.36 / 1;
  background: #0d0907;
}

.recipe-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.recipe-card:hover .recipe-art img {
  transform: scale(1.045);
}

.recipe-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 2.2vw, 34px);
}

.recipe-body h3 {
  margin: 18px 0 14px;
  font-size: clamp(1.32rem, 1.6vw, 1.72rem);
  line-height: 1.12;
}

.recipe-body p {
  margin-bottom: 24px;
}

.recipe-includes {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.recipe-includes li {
  position: relative;
  padding-left: 22px;
  color: #f3dfc8;
  font-size: 0.94rem;
  line-height: 1.45;
}

.recipe-includes li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(241, 184, 75, 0.13);
}

.tag {
  align-self: flex-start;
  border: 1px solid rgba(255, 138, 109, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.price-row {
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
}

.price-row strong,
.bundle-price {
  font-size: clamp(2rem, 2.6vw, 3rem);
  letter-spacing: 0;
}

.add-cart {
  min-width: 158px;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 950;
  white-space: nowrap;
}

.bundle-section {
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 84px);
  background:
    linear-gradient(120deg, rgba(16, 11, 8, 0.96), rgba(71, 29, 22, 0.78)),
    url("assets/premium/moody-dinner-table.webp") center / cover no-repeat;
}

.bundle-card {
  border-radius: 22px;
  padding: clamp(28px, 3vw, 42px);
}

.featured-bundle {
  border-color: rgba(241, 184, 75, 0.42);
  box-shadow: 0 34px 110px rgba(241, 184, 75, 0.1), 0 30px 90px rgba(0, 0, 0, 0.36);
}

.production-grid,
.sample-layout,
.info-grid,
.trust-grid,
.reviews,
.contact-grid,
.account-dashboard,
.account-grid {
  max-width: var(--site-max);
  margin-left: auto;
  margin-right: auto;
}

.production-grid article,
.sample-card,
.info-grid article,
.contact-card,
.policy-panel,
.trust-grid article,
.faq-list details,
.account-dashboard article,
.account-grid article {
  border-radius: 22px;
}

.production-grid article {
  overflow: hidden;
}

.production-grid img {
  height: 330px;
}

.samples-section {
  background:
    linear-gradient(180deg, rgba(16, 11, 8, 0.92), rgba(16, 11, 8, 0.98)),
    url("assets/premium/dark-editorial-sheet.webp") center / cover no-repeat;
}

.sample-layout {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 32px);
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 32px);
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: clamp(120px, 12vw, 190px) var(--page-pad) clamp(74px, 8vw, 118px);
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6.8rem);
}

.account-dashboard article {
  display: grid;
  grid-template-rows: auto 1fr;
}

.account-dashboard img {
  height: 360px;
}

.account-portal {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(360px, 0.68fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}

.login-panel,
.portal-card,
.recovery-section {
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.09), rgba(255, 248, 237, 0.035)),
    rgba(18, 12, 9, 0.92);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
}

.login-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(28px, 4vw, 58px);
}

.login-panel-copy {
  display: grid;
  align-content: center;
}

.login-form,
.recovery-form {
  display: grid;
  align-content: center;
  gap: 14px;
}

.login-form label,
.recovery-form label {
  color: #fff8ed;
  font-size: 0.88rem;
  font-weight: 850;
}

.login-form input:not([type="checkbox"]),
.recovery-form input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 16px;
  padding: 0 16px;
  background: rgba(255, 248, 237, 0.08);
  color: #fff8ed;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.login-form input::placeholder,
.recovery-form input::placeholder {
  color: rgba(255, 248, 237, 0.48);
}

.login-form input:focus,
.recovery-form input:focus {
  border-color: rgba(241, 184, 75, 0.72);
  background: rgba(255, 248, 237, 0.12);
  box-shadow: 0 0 0 4px rgba(241, 184, 75, 0.12);
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 4px 0 12px;
  color: #decab4;
  font-size: 0.92rem;
}

.remember-me {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.remember-me input {
  width: 17px;
  height: 17px;
  accent-color: #f1b84b;
}

.login-options a {
  color: #f1b84b;
  font-weight: 850;
}

.portal-card {
  overflow: hidden;
}

.portal-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.portal-card > div {
  padding: clamp(24px, 3vw, 36px);
}

.portal-card h3 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.portal-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.portal-list li {
  position: relative;
  padding-left: 28px;
  color: #decab4;
  line-height: 1.5;
}

.portal-list li::before {
  content: "";
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1b84b, #e24d35);
}

.account-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  padding-top: 0;
}

.account-actions article {
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 22px;
  padding: clamp(24px, 2.4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.075), rgba(255, 248, 237, 0.035)),
    rgba(29, 20, 16, 0.94);
}

.account-actions span {
  display: inline-flex;
  margin-bottom: 20px;
  border: 1px solid rgba(241, 184, 75, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: #f1b84b;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recovery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid rgba(255, 248, 237, 0.14);
}

.site-footer > div {
  max-width: 470px;
}

.footer-links {
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 13px 22px;
}

.footer-links strong {
  grid-column: 1 / -1;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.policy-links a {
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 248, 237, 0.06);
}@media (max-width: 1180px) {
  .site-header {
    gap: 12px;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.92rem;
  }

  

  .hero,
  .feature-story,
  .bundle-section,
  .account-portal,
  .login-panel,
  .recovery-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .recipe-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .sample-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 82px;
  }

  .brand img {
    width: 206px;
    height: 58px;
  }

  body.nav-open .nav-links {
    top: 82px;
    background: rgba(18, 12, 9, 0.98);
  }

  .cart-button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .hero-visual {
    min-height: 430px;
  }

  .trust-strip {
    border-radius: 24px;
  }

  .trust-strip span {
    width: 100%;
  }
  .category-bar {
    position: static;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .recipe-grid,
  .sample-layout,
  .info-grid,
  .account-actions,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .login-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .recipe-card {
    min-height: auto;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .add-cart {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

/* Editorial production redesign */
:root {
  --ud-cream: #f8f1e7;
  --ud-paper: #fffaf3;
  --ud-ink: #221817;
  --ud-muted: #6d5d55;
  --ud-charcoal: #171313;
  --ud-purple: #6f35c7;
  --ud-plum: #3b165f;
  --ud-accent: #9b6a36;
  --ud-olive: #687448;
  --ud-copper: #b96d3b;
  --ud-line: rgba(34, 24, 23, 0.14);
  --ud-max: 1480px;
}

body {
  background: var(--ud-cream);
  color: var(--ud-ink);
  -webkit-user-select: text;
  user-select: text;
}

body::before { display: none; }

.site-header {
  min-height: 88px;
  border-bottom: 1px solid rgba(34, 24, 23, 0.12);
  background: rgba(248, 241, 231, 0.92);
  box-shadow: none;
}

.brand img {
  width: clamp(176px, 15vw, 230px);
  height: 54px;
}

.nav-links {
  color: #483b36;
  font-weight: 800;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--ud-plum);
}

.cart-button,
.menu-toggle {
  border-color: rgba(59, 22, 95, 0.18);
  background: #fffaf3;
  color: var(--ud-plum);
}

.editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.88fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  padding: clamp(84px, 10vw, 150px) var(--page-pad) clamp(64px, 8vw, 110px);
  background:
    radial-gradient(circle at 22% 24%, rgba(111, 53, 199, 0.22), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(198, 79, 109, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(40, 19, 37, 0.94), rgba(40, 19, 37, 0.72)),
    url("assets/premium/production-kitchen.jpg") center / cover no-repeat;
}

.editorial-hero .hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--ud-purple);
  letter-spacing: 0.13em;
}

.editorial-hero h1,
.cookbook-copy h2,
.category-copy h2,
.story-panel h2,
.guide-section h2,
.newsletter-section h2,
.checkout h2 {
  color: var(--ud-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.section-heading h2 {
  color: var(--ud-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.editorial-hero h1 {
  color: #fffaf3;
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 7vw, 7.4rem);
  line-height: 0.94;
}

.editorial-hero .eyebrow {
  color: #ead8a8;
}

.editorial-hero .hero-copy > p:not(.eyebrow) {
  color: #f4e8dc;
}

.editorial-hero p,
.section-heading p,
.cookbook-copy p,
.story-panel p,
.guide-section p,
.newsletter-section p,
.checkout p,
.product-tile p,
.cookbook-grid p,
.trend-list p {
  color: var(--ud-muted);
}

.editorial-hero .hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.editorial-hero .hero-proof span {
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 250, 243, 0.1);
  color: #f9ede1;
  font-size: 0.92rem;
}

.editorial-hero .hero-proof strong {
  color: #ead8a8;
}

.button.primary,
.add-cart {
  background: var(--ud-plum);
  color: #fffaf3;
  box-shadow: none;
}

.button.secondary {
  border-color: rgba(59, 22, 95, 0.2);
  background: #fffaf3;
  color: var(--ud-plum);
}

.hero-composition {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: end;
}

.hero-composition img {
  width: 100%;
  height: clamp(220px, 24vw, 410px);
  border: 1px solid rgba(255, 250, 243, 0.72);
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(34, 24, 23, 0.18);
  transform: rotate(-1.2deg);
}

.hero-composition-main {
  grid-row: span 2;
  height: clamp(480px, 45vw, 690px) !important;
  transform: rotate(1.4deg) !important;
}

.hero-composition img:nth-child(2) {
  transform: translateY(18px) rotate(2deg);
}

.hero-composition img:nth-child(3) {
  transform: translateY(-16px) rotate(-2deg);
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 34px var(--page-pad);
  border-block: 1px solid var(--ud-line);
  background: var(--ud-paper);
}

.editorial-intro p {
  max-width: 820px;
  margin: 0;
  color: var(--ud-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2vw, 2rem);
  line-height: 1.25;
}

.editorial-intro div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.editorial-intro span,
.tag {
  border: 1px solid rgba(111, 53, 199, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(111, 53, 199, 0.08);
  color: var(--ud-plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.kitchen-edit {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(54px, 6vw, 92px) var(--page-pad);
  background: #fffaf3;
  border-bottom: 1px solid var(--ud-line);
}

.kitchen-edit h2 {
  margin: 0;
  color: var(--ud-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1;
}

.kitchen-edit-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.kitchen-edit figure {
  margin: 0;
}

.kitchen-edit img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.18;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.kitchen-edit figure:hover img {
  transform: translateY(-6px);
}

.kitchen-edit figcaption {
  margin-top: 10px;
  color: var(--ud-plum);
  font-weight: 900;
}

.section {
  padding: clamp(76px, 8vw, 132px) var(--page-pad);
  background: var(--ud-cream);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.section-heading.align-left {
  margin-inline: 0 auto;
  text-align: left;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.82fr 0.82fr;
  gap: 22px;
  max-width: var(--ud-max);
  margin: 0 auto;
}

.product-tile,
.cookbook-grid article,
.trend-list article,
.guide-steps article {
  overflow: hidden;
  border: 1px solid var(--ud-line);
  border-radius: 14px;
  background: var(--ud-paper);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-tile:hover,
.cookbook-grid article:hover,
.trend-list article:hover,
.guide-steps article:hover {
  transform: translateY(-5px);
  border-color: rgba(111, 53, 199, 0.24);
  box-shadow: 0 18px 50px rgba(34, 24, 23, 0.08);
}

.product-tile img,
.cookbook-grid img,
.trend-list img {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.product-tile.large img {
  height: 430px;
}

.product-tile > div,
.cookbook-grid article,
.trend-list article > div,
.guide-steps article {
  padding: clamp(22px, 2.3vw, 34px);
}

.product-tile h3,
.cookbook-grid h3,
.trend-list h3,
.guide-steps h3 {
  color: var(--ud-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2.3rem);
  line-height: 1.08;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.product-meta strong {
  color: var(--ud-plum);
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  font-weight: 950;
}

.category-editorial {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 82px);
  background: #efe5d8;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-list a {
  display: grid;
  gap: 14px;
  color: var(--ud-ink);
  font-weight: 900;
}

.category-list img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  border-radius: 12px;
  object-fit: cover;
}

.cookbook-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.78fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
  background: var(--ud-charcoal);
}

.cookbook-showcase h2,
.cookbook-showcase h3,
.cookbook-showcase .eyebrow {
  color: #fffaf3;
}

.cookbook-showcase p {
  color: #d8c9bb;
}

.cookbook-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.cookbook-grid article {
  background: #211a18;
  border-color: rgba(255, 250, 243, 0.14);
}

.premium-product {
  transform: translateY(-22px);
}

.trending-section {
  background: var(--ud-paper);
}

.trend-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--ud-max);
  margin: 0 auto;
}

.trend-list article {
  display: grid;
  grid-template-rows: auto 1fr;
}

.trend-list span {
  color: var(--ud-purple);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 0.76fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

.market-moment {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.88fr);
  gap: clamp(34px, 5vw, 84px);
  background:
    linear-gradient(135deg, rgba(59, 22, 95, 0.94), rgba(34, 19, 30, 0.96)),
    url("assets/premium/moody-dinner-table.webp") center / cover;
}

.market-moment h2,
.market-moment .eyebrow {
  color: #fffaf3;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.moment-grid article {
  border: 1px solid rgba(255, 250, 243, 0.14);
  border-radius: 14px;
  padding: clamp(22px, 2.5vw, 34px);
  background: rgba(255, 250, 243, 0.08);
  backdrop-filter: blur(14px);
}

.moment-grid span {
  color: #ead8a8;
  font-weight: 950;
}

.moment-grid h3 {
  color: #fffaf3;
  font-family: Georgia, "Times New Roman", serif;
}

.moment-grid p {
  color: #eaded3;
}

.story-panel img {
  width: 100%;
  max-height: 620px;
  border-radius: 16px;
  object-fit: cover;
}

.guide-section {
  background: #efe5d8;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--ud-max);
  margin: 0 auto;
}

.guide-steps span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--ud-purple);
  font-size: 2.5rem;
  font-weight: 950;
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 0.52fr);
  gap: 34px;
  align-items: center;
  padding: clamp(64px, 7vw, 110px) var(--page-pad);
  background: var(--ud-plum);
}

.newsletter-section h2,
.newsletter-section .eyebrow {
  color: #fffaf3;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.newsletter-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter-form input {
  min-height: 56px;
  border: 1px solid rgba(255, 250, 243, 0.24);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 250, 243, 0.1);
  color: #fffaf3;
}

.newsletter-form input::placeholder {
  color: rgba(255, 250, 243, 0.66);
}

.form-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: inherit;
  font-size: 0.92rem;
}

.site-footer {
  background: var(--ud-charcoal);
}

.recipe-page,
.product-page {
  padding: clamp(74px, 9vw, 132px) var(--page-pad);
  background: var(--ud-cream);
}

.recipe-hero,
.product-page {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 0.72fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  max-width: var(--ud-max);
  margin: 0 auto;
}

.recipe-hero h1,
.product-page h1 {
  color: var(--ud-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  line-height: 0.96;
}

.recipe-hero img,
.product-page img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.recipe-hero img {
  max-height: 640px;
}

.recipe-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.recipe-facts span {
  border: 1px solid var(--ud-line);
  border-radius: 12px;
  padding: 14px;
  background: var(--ud-paper);
  color: var(--ud-muted);
}

.recipe-facts strong {
  display: block;
  color: var(--ud-plum);
}

.recipe-content {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.32fr);
  gap: clamp(30px, 5vw, 76px);
  max-width: 1180px;
  margin: clamp(54px, 7vw, 96px) auto 0;
}

.recipe-main,
.recipe-aside {
  border: 1px solid var(--ud-line);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 42px);
  background: var(--ud-paper);
}

.recipe-main h2,
.recipe-aside h2 {
  color: var(--ud-ink);
  font-family: Georgia, "Times New Roman", serif;
}

.recipe-main li {
  margin-bottom: 12px;
  color: var(--ud-muted);
  line-height: 1.7;
}

.recipe-aside {
  align-self: start;
  position: sticky;
  top: 120px;
}

@media (max-width: 1120px) {
  .editorial-hero,
  .editorial-intro,
  .kitchen-edit,
  .category-editorial,
  .cookbook-showcase,
  .story-panel,
  .market-moment,
  .newsletter-section,
  .recipe-hero,
  .product-page,
  .recipe-content {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .kitchen-edit-track,
  .trend-list,
  .guide-steps,
  .moment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-tile.large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .editorial-hero {
    padding-top: 58px;
  }

  .editorial-hero h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .hero-composition,
  .collection-grid,
  .kitchen-edit-track,
  .category-list,
  .cookbook-grid,
  .trend-list,
  .guide-steps,
  .moment-grid,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .recipe-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recipe-aside {
    position: static;
  }

  .hero-composition-main,
  .hero-composition img,
  .product-tile.large img {
    height: 320px !important;
  }

  .premium-product {
    transform: none;
  }

  .hero-composition img,
  .hero-composition-main {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .hero,
  .bundle-section,
  .feature-story,
  .feature-story.reverse,
  .contact-showcase,
  .faq-layout,
  .atelier-section {
    grid-template-columns: 1fr;
  }

  .faq-media {
    position: static;
  }

  .feature-story.reverse .feature-copy {
    order: 0;
  }

  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual { min-height: 520px; }
  .recipe-grid,
  .sample-layout,
  .reviews,
  .info-grid,
  .contact-grid,
  .trust-grid,
  .production-grid,
  .account-dashboard,
  .account-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-toggle {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 12px;
    background: var(--paper);
    color: var(--ink);
  }

  body.nav-open .nav-links {
    position: absolute;
    top: 74px;
    right: 5vw;
    left: 5vw;
    display: grid;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .cart-button { padding-inline: 11px; }
  .brand img { width: 190px; }
  .hero { padding-top: 52px; }
  .hero-visual { min-height: 450px; }
  .plate-card { right: 0; top: 36px; }
  .recipe-grid,
  .sample-layout,
  .reviews,
  .info-grid,
  .contact-grid,
  .trust-grid,
  .production-grid,
  .account-dashboard,
  .account-grid {
    grid-template-columns: 1fr;
  }
  .checkout,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

/* Dark luxury finish */
.site-header {
  border-bottom-color: rgba(255, 248, 237, 0.12);
  background: rgba(15, 11, 9, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.brand img,
.site-footer img {
  background: transparent;
}

.nav-links {
  color: #e8d5bf;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: #fff8ed;
}

.cart-button,
.menu-toggle {
  border-color: rgba(255, 248, 237, 0.22);
  background: rgba(255, 248, 237, 0.1);
  color: #fff8ed;
}

.hero::before {
  background: url("assets/premium/production-kitchen.jpg") center / cover;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(15, 11, 9, 0.98), rgba(15, 11, 9, 0.74) 44%, rgba(15, 11, 9, 0.28)),
    linear-gradient(0deg, rgba(15, 11, 9, 0.86), transparent 48%),
    radial-gradient(circle at 74% 24%, rgba(140, 61, 255, 0.28), transparent 23rem),
    radial-gradient(circle at 88% 62%, rgba(255, 78, 122, 0.18), transparent 18rem);
}

.hero,
.bundle-section,
.site-footer {
  background-color: var(--espresso);
}

.photo-marquee,
.category-bar {
  border-color: rgba(255, 248, 237, 0.12);
  background: rgba(23, 16, 13, 0.92);
}

.filter-button {
  background: rgba(255, 248, 237, 0.09);
  color: #e8d5bf;
}

.filter-button.active {
  background: linear-gradient(135deg, #8c3dff, #9b6a36);
  color: #fff8ed;
}

.section {
  background:
    linear-gradient(180deg, rgba(15, 11, 9, 0.90), rgba(23, 16, 13, 0.96));
}

.feature-story {
  background:
    linear-gradient(135deg, rgba(23, 16, 13, 0.92), rgba(38, 24, 20, 0.84)),
    url("assets/premium/delivery-team.jpg") right center / cover no-repeat;
}

.feature-story.reverse,
.samples-section,
.production-section {
  background:
    linear-gradient(180deg, rgba(23, 16, 13, 0.90), rgba(15, 11, 9, 0.96)),
    url("assets/premium/meal-prep-line.jpeg") center / cover fixed;
}

.page-hero {
  color: #fff8ed;
  background:
    linear-gradient(90deg, rgba(15, 11, 9, 0.94), rgba(15, 11, 9, 0.68)),
    url("assets/premium/spaghetti-puttanesca.webp") center / cover;
}

.page-hero p:not(.eyebrow) {
  color: #e8d5bf;
}

.recipe-card,
.bundle-card,
.sample-card,
.reviews article,
.production-grid article,
.info-grid article,
.contact-card,
.policy-panel,
.trust-grid article,
.faq-list details {
  border-color: rgba(255, 248, 237, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.08), rgba(255, 248, 237, 0.045)),
    rgba(23, 16, 13, 0.94);
  color: #fff8ed;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.recipe-card:hover,
.production-grid article:hover,
.sample-card:hover,
.info-grid article:hover {
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.42);
}

.recipe-card p,
.bundle-card p,
.sample-card p,
.production-grid p,
.info-grid p,
.contact-card p,
.policy-panel p,
.trust-grid p,
.faq-list p,
.policy-panel ul {
  color: #d9c4ad;
}

.tag {
  background: rgba(140, 61, 255, 0.16);
  color: #d8c7a4;
}

.price-row strong,
.bundle-price,
.sample-card span,
.contact-card span,
.info-grid a,
.policy-panel a {
  color: #d8c7a4;
}

.add-cart {
  background: linear-gradient(135deg, #8c3dff, #9b6a36);
  color: #fff;
}

.primary {
  background: linear-gradient(135deg, #8c3dff, #9b6a36);
  color: #fff8ed;
}

.secondary {
  border-color: rgba(255, 248, 237, 0.22);
  background: rgba(255, 248, 237, 0.08);
  color: #fff8ed;
}

.checkout {
  background:
    linear-gradient(90deg, rgba(15, 11, 9, 0.94), rgba(82, 24, 19, 0.82)),
    url("assets/premium/moody-dinner-table.webp") center / cover;
}

.checkout .primary {
  background: #fff8ed;
  color: #17100d;
}

.footer-links a:hover {
  color: #d8c7a4;
}

/* Final readability and mature brand correction */
:root {
  --ud-cream: #f8f1e7;
  --ud-paper: #fffaf3;
  --ud-ink: #221817;
  --ud-muted: #5f524d;
  --ud-charcoal: #171313;
  --ud-purple: #4b2a67;
  --ud-plum: #2b163a;
  --ud-accent: #9b6a36;
  --ud-olive: #687448;
  --ud-line: rgba(34, 24, 23, 0.14);
}

body {
  background: var(--ud-cream);
  color: var(--ud-ink);
}

.site-header {
  min-height: 88px;
  border-bottom: 1px solid rgba(34, 24, 23, 0.12);
  background: rgba(248, 241, 231, 0.94);
  box-shadow: 0 10px 30px rgba(34, 24, 23, 0.06);
}

.brand img {
  width: clamp(178px, 15vw, 236px);
  height: 54px;
  background: transparent;
}

.nav-links {
  color: #4c403b;
}

.nav-links a[aria-current="page"],
.nav-links a:hover,
.cart-button {
  color: var(--ud-plum);
}

.cart-button,
.menu-toggle {
  border-color: rgba(43, 22, 58, 0.18);
  background: #fffaf3;
}

.editorial-hero {
  background:
    linear-gradient(90deg, rgba(32, 18, 31, 0.88), rgba(32, 18, 31, 0.62)),
    url("assets/premium/production-kitchen.jpg") center / cover no-repeat;
}

.editorial-hero h1,
.editorial-hero .hero-copy > p:not(.eyebrow),
.editorial-hero .hero-proof span {
  color: #fffaf3;
}

.editorial-hero .eyebrow,
.editorial-hero .hero-proof strong,
.market-moment .eyebrow,
.moment-grid span {
  color: #f3c97d;
}

.button.primary,
.add-cart {
  background: var(--ud-plum);
  color: #fffaf3;
}

.button.secondary {
  border-color: rgba(43, 22, 58, 0.22);
  background: #fffaf3;
  color: var(--ud-plum);
}

.eyebrow,
.product-meta strong,
.trend-list span,
.guide-steps span,
.category-list figcaption,
.kitchen-edit figcaption {
  color: var(--ud-purple);
}

.tag {
  border-color: rgba(104, 116, 72, 0.28);
  background: rgba(104, 116, 72, 0.11);
  color: #46522c;
}

.cookbook-showcase,
.market-moment,
.newsletter-section,
.checkout,
.site-footer {
  background: var(--ud-charcoal);
  color: #fffaf3;
}

.cookbook-showcase h2,
.cookbook-showcase h3,
.cookbook-showcase .eyebrow,
.market-moment h2,
.market-moment h3,
.newsletter-section h2,
.newsletter-section .eyebrow,
.checkout h2,
.checkout .eyebrow,
.site-footer,
.site-footer strong {
  color: #fffaf3;
}

.cookbook-showcase p,
.market-moment p,
.newsletter-section p,
.checkout p,
.site-footer p,
.footer-address,
.footer-links a {
  color: #e8dacc;
}

.cookbook-grid article,
.moment-grid article {
  border-color: rgba(255, 250, 243, 0.16);
  background: rgba(255, 250, 243, 0.07);
}

.checkout .primary {
  background: #fffaf3;
  color: var(--ud-plum);
}

.site-footer img {
  filter: brightness(0) invert(1);
}

.footer-links a:hover {
  color: #f3c97d;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(32, 18, 31, 0.9), rgba(32, 18, 31, 0.64)),
    url("assets/premium/spaghetti-puttanesca.webp") center / cover;
}

.page-hero h1,
.page-hero .eyebrow,
.page-hero p {
  color: #fffaf3;
}

.login-panel,
.portal-card,
.recovery-section,
.account-actions article,
.recipe-main,
.recipe-aside,
.product-tile,
.trend-list article,
.guide-steps article {
  background: var(--ud-paper);
  color: var(--ud-ink);
}

.login-panel p,
.portal-card p,
.account-actions p,
.recipe-main li,
.recipe-aside p,
.product-tile p,
.trend-list p,
.guide-steps p {
  color: var(--ud-muted);
}

.login-form label,
.recovery-form label {
  color: var(--ud-ink);
}

.login-form input:not([type="checkbox"]),
.recovery-form input {
  border-color: rgba(43, 22, 58, 0.18);
  background: #fffaf3;
  color: var(--ud-ink);
}

.login-options,
.portal-list li {
  color: var(--ud-muted);
}

/* WordPress-ready refinement: readable panels and aligned commerce cards */
.collection-grid,
.cookbook-grid,
.trend-list,
.guide-steps,
.moment-grid {
  align-items: stretch;
}

.product-tile,
.cookbook-grid article,
.trend-list article,
.guide-steps article,
.moment-grid article {
  min-width: 0;
}

.product-tile,
.cookbook-grid article {
  display: flex;
  flex-direction: column;
}

.product-tile > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.cookbook-grid article .product-meta,
.product-tile .product-meta {
  margin-top: auto;
}

.product-meta {
  min-height: 58px;
}

.product-meta .button,
.product-meta .add-cart,
.price-row .add-cart {
  flex: 0 0 auto;
  min-width: 138px;
}

.product-meta strong,
.price-row strong,
.bundle-price {
  white-space: nowrap;
}

.cookbook-showcase,
.market-moment,
.newsletter-section,
.checkout {
  position: relative;
}

.cookbook-showcase::before,
.market-moment::before,
.newsletter-section::before,
.checkout::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.08);
}

.cookbook-showcase > *,
.market-moment > *,
.newsletter-section > *,
.checkout > * {
  position: relative;
  z-index: 1;
}

.cookbook-showcase .tag {
  border-color: rgba(255, 250, 243, 0.24);
  background: rgba(255, 250, 243, 0.12);
  color: #f3c97d;
}

.newsletter-form input {
  background: rgba(255, 250, 243, 0.14);
}

@media (max-width: 720px) {
  .product-meta,
  .price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .product-meta .button,
  .product-meta .add-cart,
  .price-row .add-cart {
    width: 100%;
  }
}

/* Final contrast QA: every editorial band must read clearly */
.category-editorial {
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(239, 229, 216, 0.98)),
    var(--ud-paper);
  color: var(--ud-ink);
}

.category-editorial .eyebrow {
  color: var(--ud-purple);
}

.category-editorial h2,
.category-list a,
.category-list span {
  color: var(--ud-ink);
}

.category-list a {
  text-decoration: none;
}

.category-list span {
  display: block;
  min-height: 2.6em;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.3;
}

.cookbook-showcase,
.market-moment,
.newsletter-section,
.checkout {
  color: #fffaf3;
}

.cookbook-showcase h2,
.cookbook-showcase h3,
.market-moment h2,
.market-moment h3,
.newsletter-section h2,
.checkout h2 {
  color: #fffaf3;
}

.cookbook-showcase p,
.market-moment p,
.newsletter-section p,
.checkout p {
  color: #eadfce;
}

/* Production-grade finish: global readability, rhythm, and premium food-store polish */
:root {
  --ud-cream: #f6efe4;
  --ud-paper: #fffaf2;
  --ud-ink: #211816;
  --ud-muted: #65564d;
  --ud-soft: #efe3d3;
  --ud-charcoal: #171110;
  --ud-cocoa: #251815;
  --ud-plum: #2b163a;
  --ud-purple: #553278;
  --ud-copper: #b1783d;
  --ud-saffron: #dca94c;
  --ud-olive: #697047;
  --ud-line: rgba(33, 24, 22, 0.14);
  --ud-light-line: rgba(255, 250, 242, 0.16);
}

html {
  background: var(--ud-cream);
}

body {
  background:
    linear-gradient(180deg, #f6efe4 0%, #fbf5ed 42%, #f3eadc 100%);
  color: var(--ud-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.brand {
  letter-spacing: 0;
}

h1,
h2 {
  text-wrap: balance;
}

p,
li,
summary,
address,
label {
  color: var(--ud-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  padding: 22px var(--page-pad);
  min-height: 92px;
  background: rgba(246, 239, 228, 0.96);
  border-bottom: 1px solid rgba(43, 22, 58, 0.13);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: clamp(190px, 15vw, 250px);
  height: auto;
}

.nav-links {
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.nav-links a,
.cart-button {
  color: #463934;
  font-size: 0.98rem;
  font-weight: 850;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ud-purple);
}

.cart-button,
.menu-toggle {
  border: 1px solid rgba(43, 22, 58, 0.16);
  background: #fffaf2;
  color: var(--ud-plum);
  box-shadow: 0 12px 30px rgba(43, 22, 58, 0.06);
}

.button,
.add-cart {
  min-height: 52px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: none;
}

.button.primary,
.add-cart {
  background: linear-gradient(135deg, var(--ud-plum), var(--ud-purple));
  color: #fffaf2;
}

.button.secondary {
  background: #fffaf2;
  color: var(--ud-plum);
}

.section,
main > .section,
.editorial-intro,
.kitchen-edit,
.newsletter-section,
.checkout {
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.section h2,
.section h3,
.section-heading h2,
.category-copy h2,
.story-panel h2,
.guide-section h2,
.two-column h2,
.feature-story h2,
.info-grid h3,
.faq-list summary,
.policy-panel h2,
.policy-panel h3,
.account-actions h3,
.portal-card h3,
.login-panel h2,
.recovery-section h2,
.recipe-main h2,
.recipe-aside h2 {
  color: var(--ud-ink);
}

.section p,
.section li,
.section address,
.section summary + p,
.two-column p,
.feature-story p,
.info-grid p,
.faq-list p,
.policy-panel p,
.policy-panel li,
.portal-card p,
.portal-list li,
.account-actions p,
.login-panel p,
.recovery-section p,
.recipe-main li,
.recipe-aside p {
  color: var(--ud-muted);
}

.eyebrow,
.trend-list span,
.guide-steps span,
.account-actions span,
.recipe-facts span,
.tag {
  color: var(--ud-purple);
}

.editorial-hero {
  min-height: calc(100vh - 92px);
  background:
    linear-gradient(90deg, rgba(25, 15, 16, 0.9) 0%, rgba(25, 15, 16, 0.66) 58%, rgba(25, 15, 16, 0.44) 100%),
    url("assets/premium/production-kitchen.jpg") center / cover no-repeat;
}

.editorial-hero h1,
.editorial-hero .hero-copy > p:not(.eyebrow),
.editorial-hero .hero-proof span {
  color: #fffaf2;
}

.editorial-hero .eyebrow,
.editorial-hero .hero-proof strong {
  color: var(--ud-saffron);
}

.hero-composition img,
.product-tile,
.cookbook-grid article,
.trend-list article,
.guide-steps article,
.moment-grid article,
.info-grid article,
.policy-panel,
.faq-list details,
.login-panel,
.portal-card,
.recovery-section,
.account-actions article,
.recipe-main,
.recipe-aside {
  border: 1px solid var(--ud-line);
  box-shadow: 0 24px 70px rgba(55, 35, 23, 0.08);
}

.editorial-intro,
.kitchen-edit,
.collection-feature,
.trending-section,
.guide-section,
.two-column,
.feature-story,
.faq-layout,
.account-portal,
.account-actions,
.recovery-section,
.recipe-content,
.product-page,
.recipe-page {
  background: var(--ud-cream);
}

.kitchen-edit,
.collection-feature,
.trending-section,
.guide-section,
.two-column,
.feature-story,
.faq-layout,
.account-portal,
.account-actions,
.recipe-content {
  border-top: 1px solid rgba(33, 24, 22, 0.08);
}

.product-tile,
.trend-list article,
.guide-steps article,
.info-grid article,
.policy-panel,
.faq-list details,
.login-panel,
.portal-card,
.recovery-section,
.account-actions article,
.recipe-main,
.recipe-aside {
  background: rgba(255, 250, 242, 0.96);
}

.product-tile img,
.cookbook-grid article img,
.trend-list img,
.feature-image,
.faq-media img,
.portal-card img,
.recipe-hero img,
.product-page img {
  background: #e8d9c8;
}

.product-meta,
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 22px;
}

.product-meta strong,
.price-row strong,
.bundle-price {
  color: var(--ud-copper);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.category-editorial {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(238, 226, 211, 0.98));
}

.category-list a {
  padding: 14px;
  border: 1px solid rgba(43, 22, 58, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.76);
  transition: transform 180ms ease, border-color 180ms ease;
}

.category-list a:hover {
  border-color: rgba(85, 50, 120, 0.35);
  transform: translateY(-3px);
}

.category-list img {
  aspect-ratio: 4 / 3.25;
  border-radius: 14px;
}

.cookbook-showcase,
.market-moment,
.newsletter-section,
.checkout,
.site-footer {
  background:
    radial-gradient(circle at 78% 12%, rgba(177, 120, 61, 0.14), transparent 28rem),
    linear-gradient(135deg, #171110, #241715);
  color: #fffaf2;
}

.cookbook-showcase h2,
.cookbook-showcase h3,
.market-moment h2,
.market-moment h3,
.newsletter-section h2,
.checkout h2,
.site-footer strong,
.site-footer {
  color: #fffaf2;
}

.cookbook-showcase p,
.market-moment p,
.newsletter-section p,
.checkout p,
.site-footer p,
.footer-address,
.footer-links a {
  color: #e9dccd;
}

.cookbook-showcase .eyebrow,
.market-moment .eyebrow,
.newsletter-section .eyebrow,
.checkout .eyebrow,
.moment-grid span {
  color: var(--ud-saffron);
}

.cookbook-grid article,
.moment-grid article {
  background: rgba(255, 250, 242, 0.075);
  border-color: var(--ud-light-line);
}

.cookbook-grid article h3,
.moment-grid article h3 {
  color: #fffaf2;
}

.cookbook-grid article p,
.moment-grid article p {
  color: #e9dccd;
}

.story-panel {
  background: #fffaf2;
}

.story-panel > div {
  background: transparent;
}

.page-hero {
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(25, 15, 16, 0.9), rgba(25, 15, 16, 0.58)),
    url("assets/premium/spaghetti-puttanesca.webp") center / cover no-repeat;
}

.page-hero h1,
.page-hero p,
.page-hero .eyebrow {
  color: #fffaf2;
}

.page-hero .eyebrow {
  color: var(--ud-saffron);
}

.newsletter-form input,
.login-form input:not([type="checkbox"]),
.recovery-form input,
textarea {
  border: 1px solid rgba(43, 22, 58, 0.18);
  background: #fffaf2;
  color: var(--ud-ink);
}

.newsletter-form label {
  color: #fffaf2;
}

.newsletter-form input {
  background: rgba(255, 250, 242, 0.12);
  color: #fffaf2;
}

.newsletter-form input::placeholder {
  color: rgba(255, 250, 242, 0.66);
}

.site-footer img {
  filter: brightness(0) invert(1);
  width: clamp(180px, 16vw, 250px);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .cart-button {
    justify-self: end;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 78px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand img {
    width: 178px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links,
  .cart-button {
    display: none;
  }

  .nav-open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    gap: 6px;
    width: 100%;
    padding: 14px 0 4px;
  }

  .nav-open .nav-links a {
    display: block;
    padding: 12px 0;
    border-top: 1px solid rgba(43, 22, 58, 0.12);
  }

  .editorial-hero {
    min-height: auto;
    padding-top: 68px;
  }

  .editorial-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .product-meta,
  .price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .product-meta .button,
  .product-meta .add-cart,
  .price-row .add-cart {
    width: 100%;
  }

  .category-list span {
    min-height: auto;
  }
}

/* Final inner-page readability repair */
.two-column,
.feature-story,
.feature-story.reverse,
.faq-layout,
.contact-showcase,
.contact-grid,
.trust-grid,
.account-portal,
.account-actions,
.recovery-section,
.info-grid,
.policy-panel,
.recipe-content,
.product-page {
  background: var(--ud-cream) !important;
  color: var(--ud-ink) !important;
}

.feature-story,
.feature-story.reverse {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.feature-story.reverse .feature-copy,
.feature-copy,
.two-column > div,
.faq-list,
.contact-card,
.trust-grid article,
.policy-panel,
.login-panel,
.portal-card,
.recovery-section,
.recipe-main,
.recipe-aside {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--ud-line);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.97) !important;
  box-shadow: 0 24px 70px rgba(55, 35, 23, 0.08);
}

.feature-story h1,
.feature-story h2,
.feature-story h3,
.feature-story.reverse h1,
.feature-story.reverse h2,
.feature-story.reverse h3,
.contact-showcase h1,
.contact-showcase h2,
.contact-showcase h3,
.contact-grid h1,
.contact-grid h2,
.contact-grid h3,
.trust-grid h1,
.trust-grid h2,
.trust-grid h3,
.two-column h1,
.two-column h2,
.two-column h3,
.faq-layout h1,
.faq-layout h2,
.faq-layout h3,
.info-grid h1,
.info-grid h2,
.info-grid h3,
.policy-panel h1,
.policy-panel h2,
.policy-panel h3,
.account-portal h1,
.account-portal h2,
.account-portal h3,
.account-actions h1,
.account-actions h2,
.account-actions h3,
.recipe-content h1,
.recipe-content h2,
.recipe-content h3,
.product-page h1,
.product-page h2,
.product-page h3 {
  color: var(--ud-ink) !important;
}

.feature-story p,
.feature-story li,
.feature-story.reverse p,
.feature-story.reverse li,
.contact-showcase p,
.contact-showcase li,
.contact-grid p,
.contact-grid li,
.trust-grid p,
.trust-grid li,
.two-column p,
.two-column li,
.faq-layout p,
.faq-layout li,
.info-grid p,
.info-grid li,
.policy-panel p,
.policy-panel li,
.account-portal p,
.account-portal li,
.account-actions p,
.account-actions li,
.recipe-content p,
.recipe-content li,
.product-page p,
.product-page li {
  color: var(--ud-muted) !important;
}

.feature-story .eyebrow,
.feature-story.reverse .eyebrow,
.contact-showcase .eyebrow,
.contact-grid span,
.trust-grid .eyebrow,
.two-column .eyebrow,
.faq-layout .eyebrow,
.info-grid .eyebrow,
.policy-panel .eyebrow,
.account-portal .eyebrow,
.account-actions span {
  color: var(--ud-purple) !important;
}

.feature-collage {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 18px;
}

.feature-collage img,
.feature-image,
.faq-media img,
.contact-showcase img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(33, 24, 22, 0.12);
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(55, 35, 23, 0.1);
}

.feature-collage .wide {
  grid-column: 1 / -1;
  min-height: 320px;
}

.info-grid article,
.faq-list details,
.account-actions article,
.contact-card,
.trust-grid article {
  background: rgba(255, 250, 242, 0.97) !important;
  color: var(--ud-ink) !important;
}

@media (max-width: 1120px) {
  .feature-story,
  .feature-story.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .feature-story.reverse .feature-copy,
  .feature-copy,
  .two-column > div,
  .faq-list,
  .policy-panel,
  .login-panel,
  .portal-card,
  .recovery-section,
  .recipe-main,
  .recipe-aside {
    padding: 24px;
    border-radius: 18px;
  }

  .feature-collage {
    grid-template-columns: 1fr;
  }

  .feature-collage .wide {
    min-height: 260px;
  }
}


