*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ivory: #FAF8F3; --ivory-dark: #F0EDE4; --black: #141412;
  --charcoal: #2A2A27; --gold: #B8965A; --gold-light: #D4B07A;
  --muted: #6B6860; --border: rgba(20,20,18,0.12);
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--ivory); color: var(--black); font-weight: 300; overflow-x: hidden; }

/* ── NAV ──────────────────────────────────────────────────────────────────── */
#main-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 1rem 3rem; background: rgba(250,248,243,0.93); backdrop-filter: blur(12px); border-bottom: 0.5px solid var(--border); }
.nav-logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { width: 42px; height: 42px; object-fit: contain; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; letter-spacing: 0.03em; color: var(--black); line-height: 1; }
.nav-logo-text em { font-style: italic; color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.75rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links .nav-cta { padding: 0.5rem 1.1rem; border: 0.5px solid var(--black); color: var(--black); transition: all 0.3s; }
.nav-links .nav-cta:hover { background: var(--black); color: var(--ivory); }

/* Hamburger */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 300; flex-shrink: 0; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--black); transition: transform 0.3s, opacity 0.3s, width 0.3s; transform-origin: center; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 250; width: min(80vw, 300px); background: var(--ivory); border-left: 0.5px solid var(--border); display: flex; flex-direction: column; padding: 6rem 2.5rem 3rem; transform: translateX(100%); transition: transform 0.38s cubic-bezier(0.4,0,0.2,1); box-shadow: -8px 0 32px rgba(20,20,18,0.1); }
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a { font-size: 1.4rem; font-family: 'Cormorant Garamond', serif; font-weight: 300; color: var(--black); text-decoration: none; letter-spacing: 0.04em; padding: 0.9rem 0; border-bottom: 0.5px solid var(--border); transition: color 0.25s, padding-left 0.25s; }
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--gold); padding-left: 0.5rem; }
.nav-drawer-cta { margin-top: auto; padding: 0.9rem 1.5rem !important; background: var(--gold); color: var(--ivory) !important; font-family: 'DM Sans', sans-serif; font-size: 0.78rem !important; letter-spacing: 0.14em; text-transform: uppercase; text-align: center; border-bottom: none !important; }
.nav-drawer-cta:hover { background: var(--charcoal) !important; padding-left: 0 !important; }
.nav-backdrop { position: fixed; inset: 0; z-index: 240; background: rgba(20,20,18,0.4); opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.nav-backdrop.open { opacity: 1; pointer-events: all; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 72px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--black); overflow: hidden; }
.hero-bg-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity 1.6s ease; display: block; pointer-events: none; }
.hero-bg-slide.active { opacity: 0.55; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(250,248,243,0.88) 35%, rgba(250,248,243,0.25) 75%, rgba(250,248,243,0.05) 100%); }
.hero-left { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 6rem 4rem; }
.hero-right { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-visual { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(184,150,90,0.22) 0%, transparent 70%); }
.hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; }
.hero-eyebrow::before { content: ''; display: block; width: 2.5rem; height: 0.5px; background: var(--gold); }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem,5vw,5rem); font-weight: 300; line-height: 1.05; margin-bottom: 2rem; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle { font-size: 0.95rem; line-height: 1.75; color: var(--muted); max-width: 26rem; margin-bottom: 3.5rem; font-weight: 300; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero plate */
.hero-plate { position: relative; z-index: 2; text-align: center; padding: 2rem; animation: floatPlate 7s ease-in-out infinite; }
@keyframes floatPlate { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.plate-circle { width: 340px; height: 340px; border-radius: 50%; border: 1.5px solid rgba(184,150,90,0.55); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; position: relative; box-shadow: 0 0 0 12px rgba(184,150,90,0.07), 0 0 0 28px rgba(184,150,90,0.04); }
.plate-circle::before { content: ''; position: absolute; inset: 18px; border-radius: 50%; border: 0.5px solid rgba(184,150,90,0.35); }
.plate-circle::after { content: ''; position: absolute; inset: -18px; border-radius: 50%; border: 0.5px dashed rgba(184,150,90,0.2); animation: spinSlow 30s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.plate-inner { width: 230px; height: 230px; border-radius: 50%; background: linear-gradient(145deg, rgba(250,248,243,0.95) 0%, rgba(232,226,212,0.9) 100%); box-shadow: inset 0 2px 12px rgba(184,150,90,0.15), 0 8px 32px rgba(20,20,18,0.18); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.6rem; }
.plate-icon { font-size: 4rem; line-height: 1; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15)); }
.plate-label { font-family: 'Cormorant Garamond', serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--charcoal); font-weight: 500; padding: 0 1rem; line-height: 1.4; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.tag { padding: 0.45rem 1.1rem; background: rgba(250,248,243,0.85); border: 1px solid var(--gold); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 400; box-shadow: 0 2px 8px rgba(20,20,18,0.1); }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2.25rem; background: var(--black); color: var(--ivory); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; transition: background 0.3s, gap 0.3s; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { background: var(--charcoal); gap: 1.25rem; }
.btn-gold { background: var(--gold) !important; color: var(--black) !important; }
.btn-gold:hover { background: var(--gold-light) !important; }
.btn-outline { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2.25rem; background: transparent; color: var(--black); border: 0.5px solid var(--black); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-outline:hover { background: var(--black); color: var(--ivory); }

/* ── UTILITIES ────────────────────────────────────────────────────────────── */
.section-eyebrow { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3.5vw,3.2rem); font-weight: 300; line-height: 1.1; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 4rem; padding-bottom: 2rem; border-bottom: 0.5px solid var(--border); }
.section-note { font-size: 0.85rem; color: var(--muted); max-width: 22rem; text-align: right; line-height: 1.65; }
.category-label { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; font-style: italic; margin-bottom: 1.5rem; color: var(--charcoal); display: flex; align-items: center; gap: 1.5rem; }
.category-label::after { content: ''; flex: 1; height: 0.5px; background: var(--border); }

/* ── BREADCRUMB ───────────────────────────────────────────────────────────── */
.breadcrumb { padding: 1rem 4rem; display: flex; gap: 0.5rem; align-items: center; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border-bottom: 0.5px solid var(--border); margin-top: 72px; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── PAGE HERO (inner pages) ──────────────────────────────────────────────── */
.page-hero { padding: 5rem 4rem 4rem; background: var(--black); color: var(--ivory); }
.page-hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.page-hero-eyebrow::before { content: ''; display: block; width: 2rem; height: 0.5px; background: var(--gold); }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem,5vw,5rem); font-weight: 300; line-height: 1.05; margin-bottom: 1.25rem; font-style: italic; }
.page-hero-sub { font-size: 0.95rem; color: rgba(250,248,243,0.6); max-width: 38rem; line-height: 1.75; }

/* ── MANIFESTO ────────────────────────────────────────────────────────────── */
.manifesto { padding: 6rem 4rem; background: var(--black); color: var(--ivory); display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.manifesto-left { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 300; line-height: 1.3; font-style: italic; }
.manifesto-left strong { font-style: normal; color: var(--gold); font-weight: 400; }
.manifesto-right { display: flex; flex-direction: column; gap: 2rem; }
.pillar { display: flex; gap: 1.5rem; align-items: flex-start; }
.pillar-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; flex-shrink: 0; opacity: 0.4; }
.pillar-text h3 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.pillar-text p { font-size: 0.9rem; color: rgba(250,248,243,0.6); line-height: 1.65; }

/* ── PRODUCTS ─────────────────────────────────────────────────────────────── */
.products { padding: 7rem 4rem; }
.dishes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5px; background: var(--border); margin-bottom: 4rem; }
.snacks-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--border); }
.dish-card, .snack-card { background: var(--ivory); cursor: pointer; overflow: hidden; text-decoration: none; color: inherit; display: block; }
.dish-thumb { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--ivory-dark); }
.snack-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ivory-dark); }
.dish-thumb img, .snack-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s ease; }
.dish-card:hover .dish-thumb img, .snack-card:hover .snack-thumb img { transform: scale(1.06); }
.dish-thumb-overlay, .snack-thumb-overlay { position: absolute; inset: 0; background: rgba(14,12,10,0); transition: background 0.35s; display: flex; align-items: center; justify-content: center; }
.dish-card:hover .dish-thumb-overlay, .snack-card:hover .snack-thumb-overlay { background: rgba(14,12,10,0.32); }
.dish-see, .snack-see { opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s; border: 0.5px solid rgba(255,255,255,0.7); color: #fff; padding: 0.55rem 1.25rem; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; }
.dish-card:hover .dish-see, .snack-card:hover .snack-see { opacity: 1; transform: translateY(0); }
.dish-count { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(14,12,10,0.55); color: rgba(255,255,255,0.85); font-size: 0.62rem; padding: 0.22rem 0.55rem; letter-spacing: 0.1em; }
.dish-info, .snack-info { padding: 1.4rem 1.25rem; position: relative; overflow: hidden; }
.dish-info::after, .snack-info::after { content: ''; position: absolute; bottom: 0; left: 1.25rem; right: 1.25rem; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.dish-card:hover .dish-info::after, .snack-card:hover .snack-info::after { transform: scaleX(1); }
.dish-name, .snack-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; margin-bottom: 0.3rem; }
.dish-desc, .snack-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* ── PRODUCT DETAIL PAGE ──────────────────────────────────────────────────── */
.product-detail { display: grid; grid-template-columns: 1fr 420px; min-height: 80vh; }
.product-gallery { position: relative; background: var(--ivory-dark); overflow: hidden; }
.gallery-main { width: 100%; height: 520px; object-fit: cover; display: block; transition: opacity 0.25s; }
.gallery-main.fading { opacity: 0; }
.gallery-thumbs { display: flex; gap: 4px; padding: 1rem; background: var(--ivory); flex-wrap: wrap; }
.gallery-thumb { width: 72px; height: 72px; overflow: hidden; cursor: pointer; border: 1.5px solid transparent; opacity: 0.6; transition: all 0.2s; flex-shrink: 0; }
.gallery-thumb.active { border-color: var(--gold); opacity: 1; }
.gallery-thumb:hover { opacity: 0.9; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.gallery-nav-btns { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 1rem; pointer-events: none; }
.gallery-btn { width: 44px; height: 44px; background: rgba(250,248,243,0.88); border: 0.5px solid var(--border); cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; pointer-events: all; }
.product-gallery:hover .gallery-btn { opacity: 1; }
.gallery-btn:hover { background: var(--ivory-dark); }
.gallery-counter { position: absolute; top: 1rem; right: 1rem; background: rgba(10,9,8,0.5); color: rgba(255,255,255,0.9); font-size: 0.65rem; padding: 0.25rem 0.6rem; letter-spacing: 0.1em; }
.product-info { padding: 3.5rem 3rem; display: flex; flex-direction: column; border-left: 0.5px solid var(--border); overflow-y: auto; }
.product-category { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.product-category::before { content: ''; display: block; width: 1.5rem; height: 0.5px; background: var(--gold); }
.product-title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 400; line-height: 1.1; margin-bottom: 1rem; }
.product-sep { width: 2.5rem; height: 1px; background: var(--gold); margin-bottom: 1.5rem; }
.product-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.product-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 2rem; }
.product-tag { padding: 0.3rem 0.85rem; border: 0.5px solid var(--gold); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.product-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: auto; }
.product-note { font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem; font-style: italic; }

/* ── CONTACT BUTTONS ──────────────────────────────────────────────────────── */
.c-btn { display: flex; align-items: center; gap: 1.25rem; padding: 1.1rem 1.5rem; background: transparent; border: 0.5px solid var(--border); color: var(--black); text-decoration: none; font-size: 0.85rem; transition: all 0.3s; font-family: 'DM Sans', sans-serif; }
.c-btn:hover { border-color: var(--gold); background: rgba(184,150,90,0.06); }
.c-btn.wa:hover { border-color: #25D366; background: rgba(37,211,102,0.05); }
.c-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 0.5px solid var(--border); color: var(--gold); flex-shrink: 0; }
.c-btn.wa .c-icon { color: #25D366; border-color: rgba(37,211,102,0.3); }
.c-label { display: block; font-weight: 400; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.1rem; }
.c-val { font-size: 0.88rem; color: var(--black); }
.contact-methods { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-card { padding: 3rem; background: var(--ivory-dark); display: flex; flex-direction: column; justify-content: center; }
.contact-card blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; font-style: italic; line-height: 1.45; color: var(--charcoal); margin-bottom: 2rem; padding-left: 1.5rem; border-left: 2px solid var(--gold); }
.contact-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── DISTRIBUTION ─────────────────────────────────────────────────────────── */
.distribution { background: var(--ivory-dark); padding: 7rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.dist-list { list-style: none; display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }
.dist-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.dist-icon { width: 44px; height: 44px; border: 0.5px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.dist-item h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.3rem; }
.dist-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: var(--border); }
.stat-box { background: var(--ivory); padding: 2.5rem 2rem; text-align: center; }
.stat-box.dark { background: var(--black); }
.stat-box.dark .stat-n { color: var(--gold); }
.stat-box.dark .stat-l { color: rgba(250,248,243,0.5); }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; line-height: 1; margin-bottom: 0.5rem; }
.stat-l { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ── PARTNER ──────────────────────────────────────────────────────────────── */
.partner { padding: 7rem 4rem; text-align: center; background: var(--black); color: var(--ivory); position: relative; overflow: hidden; }
.partner::before { content: 'DOMINI'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Cormorant Garamond', serif; font-size: 18vw; font-weight: 300; color: rgba(255,255,255,0.03); pointer-events: none; white-space: nowrap; }
.partner-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.eyebrow-row { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.eyebrow-row::before,.eyebrow-row::after { content: ''; display: block; width: 2rem; height: 0.5px; background: var(--gold); }
.partner-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem,4vw,4rem); font-weight: 300; line-height: 1.1; font-style: italic; margin-bottom: 1.5rem; }
.partner-sub { font-size: 0.92rem; color: rgba(250,248,243,0.55); line-height: 1.75; margin-bottom: 3rem; }

/* ── CONTACT / ABOUT PAGES ────────────────────────────────────────────────── */
.contact-section { padding: 6rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.about-intro { padding: 6rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-values { padding: 6rem 4rem; background: var(--ivory-dark); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--border); margin-top: 3rem; }
.value-box { background: var(--ivory); padding: 2.5rem 2rem; }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; margin-bottom: 0.75rem; }
.value-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── RELATED ──────────────────────────────────────────────────────────────── */
.related { padding: 5rem 4rem; background: var(--ivory-dark); }

/* ── ANIMATIONS ───────────────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.d1 { animation-delay: 0.15s; } .d2 { animation-delay: 0.3s; } .d3 { animation-delay: 0.45s; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  #main-nav { padding: 0.9rem 1.25rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .breadcrumb { padding: 0.75rem 1.25rem; margin-top: 64px; }
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-right { display: none; }
  .hero-left { padding: 3.5rem 1.5rem; }
  .manifesto, .distribution, .contact-section, .about-intro { grid-template-columns: 1fr; padding: 3.5rem 1.5rem; gap: 3rem; }
  .products { padding: 3.5rem 1.5rem; }
  .dishes-grid { grid-template-columns: 1fr 1fr; }
  .snacks-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .section-note { text-align: left; max-width: 100%; }
  .product-detail { grid-template-columns: 1fr; }
  .product-info { padding: 2rem 1.25rem; border-left: none; border-top: 0.5px solid var(--border); }
  .gallery-main { height: 60vw; }
  .related, .about-values { padding: 3.5rem 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .partner { padding: 5rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { justify-content: center; }
}
@media (max-width: 560px) {
  .dishes-grid { grid-template-columns: 1fr; }
  .snacks-grid { grid-template-columns: 1fr; }
}

/* ── PRODUCT MODAL ────────────────────────────────────────────────────────── */
.pmodal-backdrop {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,9,8,0.82); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.pmodal-backdrop.open { opacity: 1; pointer-events: all; }
.pmodal {
  background: var(--ivory); width: 100%; max-width: 940px; max-height: 90vh;
  display: grid; grid-template-columns: 1fr 340px;
  position: relative; overflow: hidden;
  transform: translateY(18px); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.pmodal-backdrop.open .pmodal { transform: translateY(0); }
.pmodal-img-area { position: relative; background: var(--ivory-dark); overflow: hidden; min-height: 400px; }
.pmodal-main-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.25s; }
.pmodal-main-img.fading { opacity: 0; }
.pmodal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; background: rgba(250,248,243,0.9);
  border: 0.5px solid var(--border); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, opacity 0.2s; z-index: 2; opacity: 0;
}
.pmodal-img-area:hover .pmodal-arrow { opacity: 1; }
.pmodal-arrow:hover { background: var(--ivory-dark); }
.pmodal-arrow.prev { left: 1rem; }
.pmodal-arrow.next { right: 1rem; }
.pmodal-arrow svg { width: 18px; height: 18px; color: var(--black); pointer-events: none; }
.pmodal-thumbs {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; gap: 3px; padding: 0.75rem;
  background: linear-gradient(transparent, rgba(10,9,8,0.55));
}
.pmodal-thumb {
  width: 58px; height: 58px; flex-shrink: 0; overflow: hidden;
  border: 1.5px solid transparent; cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s; opacity: 0.65;
}
.pmodal-thumb.active { border-color: var(--gold); opacity: 1; }
.pmodal-thumb:hover { opacity: 0.9; }
.pmodal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.pmodal-counter {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(10,9,8,0.5); color: rgba(255,255,255,0.88);
  font-size: 0.65rem; padding: 0.25rem 0.6rem; letter-spacing: 0.1em; z-index: 2;
}
.pmodal-details {
  display: flex; flex-direction: column;
  padding: 2.5rem 2rem; border-left: 0.5px solid var(--border);
  overflow-y: auto;
}
.pmodal-eyebrow { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.pmodal-eyebrow::before { content:''; display:block; width:1.5rem; height:0.5px; background:var(--gold); }
.pmodal-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; line-height: 1.15; margin-bottom: 1.25rem; }
.pmodal-sep { width: 2.5rem; height: 1px; background: var(--gold); margin-bottom: 1.25rem; }
.pmodal-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.75; flex: 1; }
.pmodal-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.5rem; margin-bottom: 1.75rem; }
.pmodal-tag { padding: 0.28rem 0.75rem; border: 0.5px solid var(--gold); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.pmodal-cta {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.5rem; background: var(--black); color: var(--ivory);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: background 0.25s, gap 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.pmodal-cta:hover { background: var(--charcoal); gap: 0.9rem; }
.pmodal-cta svg { width: 14px; height: 14px; flex-shrink: 0; }
.pmodal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 38px; height: 38px; background: var(--ivory); border: 0.5px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--black); transition: background 0.2s;
}
.pmodal-close:hover { background: var(--ivory-dark); }

@media (max-width: 900px) {
  .pmodal { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; }
  .pmodal-img-area { min-height: 55vw; }
  .pmodal-details { border-left: none; border-top: 0.5px solid var(--border); padding: 1.5rem; }
}


/* ── PRODUCT DETAIL PAGE v2 ───────────────────────────────────────────────── */
.pdp-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.pdp-gallery { position: relative; background: var(--ivory-dark); overflow: hidden; }
.pdp-main-img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 500px; transition: opacity 0.3s; }
.pdp-main-img.fading { opacity: 0; }
.pdp-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 1rem; pointer-events: none; }
.pdp-gallery-btn { width: 46px; height: 46px; background: rgba(250,248,243,0.88); border: 0.5px solid var(--border); cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s, background 0.2s; pointer-events: all; }
.pdp-gallery:hover .pdp-gallery-btn { opacity: 1; }
.pdp-gallery-btn:hover { background: var(--ivory-dark); }
.pdp-gallery-counter { position: absolute; top: 1.25rem; left: 1.25rem; background: rgba(10,9,8,0.52); color: rgba(255,255,255,0.9); font-size: 0.65rem; padding: 0.3rem 0.7rem; letter-spacing: 0.1em; z-index: 2; }
.pdp-thumbs-strip { position: absolute; bottom: 0; left: 0; right: 0; display: flex; gap: 3px; padding: 1rem; background: linear-gradient(transparent, rgba(10,9,8,0.6)); }
.pdp-thumb { width: 64px; height: 64px; flex-shrink: 0; overflow: hidden; border: 1.5px solid transparent; cursor: pointer; opacity: 0.6; transition: all 0.2s; }
.pdp-thumb.on { border-color: var(--gold); opacity: 1; }
.pdp-thumb:hover { opacity: 0.9; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; display: block; }
.pdp-info { padding: 3.5rem 3rem; display: flex; flex-direction: column; overflow-y: auto; background: var(--ivory); border-left: 0.5px solid var(--border); }
.pdp-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.pdp-badge::before { content:''; display:block; width:1.5rem; height:0.5px; background:var(--gold); }
.pdp-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3vw,2.8rem); font-weight: 400; line-height: 1.1; margin-bottom: 0.75rem; }
.pdp-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.pdp-tag { padding: 0.28rem 0.8rem; border: 0.5px solid var(--gold); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.pdp-sep { width: 2.5rem; height: 1px; background: var(--gold); margin-bottom: 1.5rem; }
.pdp-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.pdp-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--border); margin-bottom: 2rem; }
.pdp-fact { background: var(--ivory-dark); padding: 1rem 0.75rem; text-align: center; }
.pdp-fact-val { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--black); line-height: 1; margin-bottom: 0.25rem; }
.pdp-fact-label { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.pdp-cta-group { display: flex; flex-direction: column; gap: 0.6rem; margin-top: auto; padding-top: 1.5rem; }
.pdp-ingredients { padding: 5rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.ing-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 0.75rem; }
.ing-subtitle { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.ing-list { list-style: none; display: flex; flex-direction: column; }
.ing-item { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 0; border-bottom: 0.5px solid var(--border); font-size: 0.9rem; }
.ing-item:last-child { border-bottom: none; }
.ing-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.ing-name { color: var(--black); font-weight: 400; }
.ing-note { margin-left: auto; font-size: 0.75rem; color: var(--muted); font-style: italic; }
.allergen-box { background: var(--ivory-dark); padding: 1.75rem; border-left: 2px solid var(--gold); margin-top: 2rem; }
.allergen-title { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.allergen-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.allergen-chip { padding: 0.25rem 0.7rem; background: rgba(184,150,90,0.1); border: 0.5px solid rgba(184,150,90,0.3); font-size: 0.72rem; color: var(--charcoal); letter-spacing: 0.06em; }
.pdp-nutrition { padding: 0 4rem 5rem; }
.nutr-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; margin-bottom: 1.5rem; }
.nutr-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.nutr-table thead tr { background: var(--black); color: var(--ivory); }
.nutr-table th { padding: 0.75rem 1.25rem; text-align: left; font-weight: 400; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.nutr-table td { padding: 0.75rem 1.25rem; border-bottom: 0.5px solid var(--border); color: var(--muted); }
.nutr-table tr:nth-child(even) td { background: var(--ivory-dark); }
.nutr-table td:last-child { text-align: right; font-weight: 400; color: var(--black); }
.nutr-note { font-size: 0.72rem; color: var(--muted); margin-top: 0.75rem; font-style: italic; }
.pdp-prep { padding: 5rem 4rem; background: var(--black); color: var(--ivory); }
.prep-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: rgba(255,255,255,0.06); margin-top: 2.5rem; }
.prep-step { background: var(--charcoal); padding: 2rem 1.75rem; }
.prep-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--gold); opacity: 0.35; line-height: 1; margin-bottom: 0.75rem; }
.prep-step h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.prep-step p { font-size: 0.85rem; color: rgba(250,248,243,0.6); line-height: 1.65; }

@media (max-width: 900px) {
  .pdp-hero { grid-template-columns: 1fr; }
  .pdp-main-img { min-height: 60vw; }
  .pdp-info { padding: 2rem 1.25rem; border-left: none; border-top: 0.5px solid var(--border); }
  .pdp-ingredients { grid-template-columns: 1fr; padding: 3rem 1.25rem; gap: 3rem; }
  .pdp-nutrition { padding: 0 1.25rem 3rem; }
  .pdp-prep { padding: 3rem 1.25rem; }
  .prep-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER SOCIAL ────────────────────────────────────────────────────────── */
footer { padding: 2rem 4rem; border-top: 0.5px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; align-items: center; }
.footer-logo { display: flex; align-items: center; gap: 0.55rem; }
.footer-logo-img { width: 30px; height: 30px; object-fit: contain; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 400; letter-spacing: 0.03em; }
.footer-logo-text em { font-style: italic; color: var(--gold); }
.social-link {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 0.5px solid var(--border);
  color: var(--muted); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  white-space: nowrap;
}
.social-link:hover { color: var(--gold); border-color: var(--gold); background: rgba(184,150,90,0.06); }
.social-link svg { flex-shrink: 0; transition: color 0.25s; }
.footer-right { text-align: right; }
.footer-right p { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.08em; }
.footer-right a { color: var(--muted); text-decoration: none; }
.footer-right a:hover { color: var(--gold); }

@media (max-width: 900px) {
  footer { flex-direction: column; align-items: center; text-align: center; padding: 2rem 1.5rem; gap: 1.25rem; }
  .footer-socials { justify-content: center; flex-wrap: wrap; }
  .footer-right { text-align: center; }
}
@media (max-width: 560px) {
  .social-link span { display: none; }
  .social-link { padding: 0.6rem; }
}