/* Latteria Nuti – design system
   Palette: navy #1B205D (brand) · oro burro #E8B33A (accent)
   Tipografia: display Georgia serif, corpo system sans */
:root {
  --brand: #1B205D;
  --brand-dark: #141743;
  --brand-deep: #0E1133;
  --brand-light: #E9EDF7;
  --brand-lighter: #F4F6FC;
  --accent: #E8B33A;
  --accent-dark: #C4941F;
  --accent-light: #FBF3DC;
  --ink: #23263B;
  --muted: #5C6077;
  --line: #E3E6F0;
  --white: #FFFFFF;
  --cream: #FBF9F4;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(27, 32, 93, 0.08);
  --font-head: Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--accent-dark); }
ul { list-style: none; }

/* ---------- Titoli: spaziature globali ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; }
h1 { margin-bottom: 16px; }
h2 { margin-bottom: 14px; }
h3 { margin-bottom: 10px; }
h4 { margin-bottom: 8px; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.header {
  background: var(--white);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
  font-family: var(--font-head);
}
.brand img { height: 44px; width: auto; }
.brand span { font-size: 1.45rem; font-weight: 700; letter-spacing: 0.5px; display: flex; flex-direction: column; line-height: 1.1; }
.brand small { font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }
.nav ul { display: flex; gap: 28px; align-items: center; }
.nav a { font-size: 0.95rem; font-weight: 600; color: var(--ink); padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a.active { color: var(--brand); border-bottom-color: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--brand); padding: 10px; font-size: 1.6rem; line-height: 1; min-width: 44px; min-height: 44px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 70%, var(--brand-dark) 100%);
  color: #fff;
  padding: 84px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 179, 58, 0.35) 0%, rgba(232, 179, 58, 0) 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.trustbar span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 179, 58, 0.35);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}
.trustbar b { color: var(--accent); font-size: 1rem; margin-right: 2px; }
.hero h1 { font-family: var(--font-head); font-size: 2.9rem; line-height: 1.15; margin-bottom: 18px; font-weight: 700; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p { font-size: 1.13rem; color: rgba(255, 255, 255, 0.85); max-width: 560px; margin-bottom: 30px; }
.hero-img { border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35); border: 4px solid rgba(232, 179, 58, 0.4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.2;
  vertical-align: middle;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn-accent { background: var(--accent); color: var(--brand-deep); }
.btn-accent:hover { background: #F4C95B; color: var(--brand-deep); }
.btn-outline { border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-dark); color: #fff; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section.alt { background: var(--brand-lighter); }
.section.cream { background: var(--cream); }
.section-narrow { max-width: 860px; margin: 0 auto; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 { font-family: var(--font-head); font-size: 2.1rem; color: var(--brand); margin-bottom: 12px; font-weight: 700; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head .kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

/* ---------- Card grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(27, 32, 93, 0.14); }
.card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--brand-light); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-family: var(--font-head); font-size: 1.18rem; color: var(--brand); line-height: 1.3; margin-bottom: 0; }
.card-body p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.card-body time, .card-meta { font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent-dark); }
.card-link { font-weight: 700; font-size: 0.93rem; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Feature / prodotto split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split h2 { font-family: var(--font-head); font-size: 2rem; color: var(--brand); margin-bottom: 16px; font-weight: 700; }
.split p { color: var(--muted); margin-bottom: 14px; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-list { margin-top: 18px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.feature-list b { color: var(--brand); display: block; }
.feature-list .ico {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}

/* ---------- Gallery prodotto ---------- */
.gallery { position: sticky; top: 110px; }
.gallery-main {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-main img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.gallery-main figcaption {
  padding: 12px 18px;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--brand-lighter);
  border-top: 1px solid var(--line);
  text-align: center;
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.gallery-thumb {
  border: 2px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.gallery-thumb img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--accent); }

/* ---------- Specifiche prodotto ---------- */
.spec { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 0.95rem; }
.spec th, .spec td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.spec th { background: var(--brand-light); color: var(--brand); width: 38%; font-weight: 700; }

/* ---------- Zone di consegna ---------- */
.towns-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 960px; margin: 0 auto; }
.towns-grid > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.towns-grid ul { display: grid; gap: 6px; color: var(--muted); font-size: 0.93rem; }
.towns-grid li::before { content: "• "; color: var(--accent-dark); }

/* ---------- Prodotto page ---------- */
.product-hero { background: linear-gradient(135deg, var(--brand-deep), var(--brand)); color: #fff; padding: 64px 0; }
.product-hero h1 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 12px; }
.product-hero .lead { color: rgba(255,255,255,0.85); max-width: 640px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; padding: 6px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 600; }
.pill.gold { background: var(--accent); color: var(--brand-deep); border-color: var(--accent); }
.fact { text-align: center; padding: 26px 18px; }
.fact b { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--brand); }
.fact span { color: var(--muted); font-size: 0.9rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 18px 0; font-size: 0.85rem; color: var(--muted); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li::after { content: "›"; margin-left: 8px; color: var(--line); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb li[aria-current] { color: var(--brand); font-weight: 700; }

/* ---------- Prose ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h1, .prose h2 { font-family: var(--font-head); color: var(--brand); margin: 1.6em 0 0.5em; }
.prose h2 { font-size: 1.6rem; border-bottom: 2px solid var(--line); padding-bottom: 8px; }
.prose p { margin-bottom: 1.1em; color: #3D4157; }
.prose ul { list-style: disc; margin: 0 0 1.1em 1.4em; color: #3D4157; }
.prose strong { color: var(--brand); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 0.95rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.prose th { background: var(--brand-light); color: var(--brand); }

/* ---------- Recipe page ---------- */
/* ---------- Ricette: layout moderno ---------- */
.recipe-hero { background: linear-gradient(135deg, var(--brand-lighter), var(--white)); padding: 48px 0; border-bottom: 1px solid var(--line); }
.recipe-hero .kicker { margin-bottom: 14px; }
.recipe-hero h1 { font-family: var(--font-head); color: var(--brand); font-size: 2.3rem; margin-bottom: 16px; }
.recipe-hero .recipe-desc { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }
.recipe-grid { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: start; }
.ingredients { background: var(--accent-light); border: 1px solid #F0E3BD; border-radius: var(--radius); padding: 28px; position: sticky; top: 104px; }
.ingredients h2 { font-family: var(--font-head); color: var(--brand); font-size: 1.3rem; margin-bottom: 16px; }
.ingredients li { padding: 9px 0 9px 26px; position: relative; border-bottom: 1px dashed rgba(196, 148, 31, 0.3); font-size: 0.97rem; }
.ingredients li:last-child { border-bottom: 0; }
.ingredients li::before { content: ""; position: absolute; left: 2px; top: 18px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.post-photo { border-radius: var(--radius); box-shadow: var(--shadow); margin: 0 0 28px; width: 100%; }
.steps-list { list-style: none; display: grid; gap: 22px; counter-reset: step; }
.steps-list li { position: relative; padding-left: 58px; color: #3D4157; margin-bottom: 0; }
.steps-list li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: -2px; width: 38px; height: 38px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 0.95rem; }
.prose > h2:first-child { margin-top: 0; }
.post-body { max-width: 820px; }
.recipe-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.recipe-meta span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; background: var(--white); overflow: hidden; }
.faq summary { cursor: pointer; padding: 16px 20px; font-weight: 700; color: var(--brand); list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--accent-dark); font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 20px 18px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; padding: 64px 0; text-align: center; }
.cta h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 12px; color: #fff; }
.cta p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 26px; }

/* ---------- Contatti ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-card { background: var(--brand-lighter); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.contact-card h2 { font-family: var(--font-head); color: var(--brand); font-size: 1.35rem; margin-bottom: 14px; }
.contact-card ul { display: grid; gap: 10px; color: var(--ink); }
.contact-card b { color: var(--brand); }
.map-frame { border: 0; width: 100%; height: 340px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Footer ---------- */
.footer { background: var(--brand-deep); color: rgba(255,255,255,0.78); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 44px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand small { color: rgba(255,255,255,0.55); }
.footer p { font-size: 0.92rem; }
.footer-title { font-size: 0.78rem; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
.footer-title.sub { margin-top: 22px; }
.footer ul { display: grid; gap: 8px; font-size: 0.92rem; }
.footer a { color: rgba(255,255,255,0.78); }
.footer a:hover { color: var(--accent); }
.footer .contact-lines { color: rgba(255,255,255,0.7); }
.footer .contact-lines strong { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); }
.socials a:hover { background: var(--accent); color: var(--brand-deep); border-color: var(--accent); }
.group-links { display: flex; flex-wrap: wrap; gap: 8px; }
.group-links a { border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; padding: 5px 12px; font-size: 0.8rem; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.84rem; color: rgba(255,255,255,0.5); }

/* ---------- News list ---------- */
.post-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.tag { display: inline-block; background: var(--accent-light); color: var(--accent-dark); font-size: 0.74rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }

/* ---------- Filtri categorie ---------- */
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.chip { border: 1px solid var(--line); background: var(--white); color: var(--ink); border-radius: 999px; padding: 8px 18px; font-size: 0.88rem; font-weight: 600; }
.chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------- Page hero small ---------- */
.page-hero { background: linear-gradient(135deg, var(--brand-deep), var(--brand)); color: #fff; padding: 56px 0 44px; }
.page-hero h1 { font-family: var(--font-head); font-size: 2.4rem; color: #fff; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; margin-top: 10px; }

/* ---------- 404 ---------- */
.error { text-align: center; padding: 110px 0; }
.error h1 { font-family: var(--font-head); font-size: 5rem; color: var(--brand); }
.error p { color: var(--muted); margin: 10px 0 26px; }

/* ---------- Skip link ---------- */
.skip { position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--brand-deep); padding: 10px 18px; border-radius: 0 0 8px 0; z-index: 999; font-weight: 700; }
.skip:focus { left: 0; }

/* ---------- Regali aziendali ---------- */
.kicker { color: var(--accent-dark); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: .8rem; display: inline-block; }
.page-hero { text-align: center; }
.page-hero p { margin-left: auto; margin-right: auto; }
.page-hero .kicker { color: var(--accent); margin-bottom: 12px; }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 24px; }
.btn-row.center { justify-content: center; }
.btn-row .btn { margin: 0; }
.page-hero .btn-row { justify-content: center; margin-top: 26px; }
.cta .btn-row { justify-content: center; }
.gift-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.gift-card { display: flex; flex-direction: column; overflow: hidden; }
.gift-card > img, .gift-thumb img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.gift-thumb { position: relative; overflow: hidden; }
.badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: var(--brand-deep); font-size: .75rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; letter-spacing: .5px; }
.gift-formats { font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent-dark); }
.gift-items { display: grid; gap: 6px; font-size: .88rem; color: var(--muted); }
.gift-items li::before { content: "• "; color: var(--accent-dark); }
.gift-others { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 28px; max-width: 900px; margin: 0 auto; }
.gift-others li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .95rem; color: var(--muted); }
.gift-others strong { color: var(--brand); }
.gift-noprice { color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.steps li { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--accent); border-radius: var(--radius); padding: 24px; }
.steps h3 { font-family: var(--font-head); color: var(--brand); margin-bottom: 8px; font-size: 1.15rem; }
.steps p { color: var(--muted); font-size: .95rem; }
.two-col-form { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.two-col-form h2 { font-family: var(--font-head); font-size: 1.9rem; color: var(--brand); margin: 6px 0 14px; }
.two-col-form > div > p { color: var(--muted); margin-bottom: 12px; }
.gift-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.gift-form h3 { font-family: var(--font-head); color: var(--brand); font-size: 1.3rem; margin-bottom: 8px; }
.gift-form label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 12px; color: var(--ink); }
.gift-form input, .gift-form select, .gift-form textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font: inherit; font-weight: 400; margin-top: 6px; background: var(--white); color: var(--ink); }
.gift-form input:focus, .gift-form select:focus, .gift-form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light); }
.gift-form textarea { min-height: 110px; resize: vertical; }
.gift-form .btn { margin-top: 6px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-status { margin-top: 12px; font-size: .92rem; font-weight: 600; }
.form-status.ok { color: #1b7a3d; }
.form-status.err { color: #c03030; }
.form-privacy { font-size: .8rem; color: var(--muted); margin-top: 14px; }
.form-assure ul { display: grid; gap: 10px; margin-top: 18px; }
.form-assure li { padding: 12px 16px 12px 42px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; position: relative; font-weight: 600; color: var(--ink); font-size: .93rem; }
.form-assure li::before { content: "✓"; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: #fff; font-size: .75rem; display: grid; place-items: center; }
@media (max-width: 980px) { .two-col-form { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .gift-others { grid-template-columns: 1fr; } }

/* ---------- Responsive ---------- */
@media (max-width: 1160px) {
  .nav ul { gap: 14px; }
  .nav a { font-size: .88rem; white-space: nowrap; }
  .header .brand img { height: 34px; width: auto; }
}
@media (max-width: 980px) {
  .nav ul { display: none; position: absolute; top: 84px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 18px 24px; gap: 4px; border-bottom: 3px solid var(--accent); }
  .nav.open ul { display: flex; }
  .nav-toggle { display: grid; place-items: center; }
  .hero-grid, .split, .recipe-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery { position: static; }
  .towns-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 56px 0 44px; }
  .section { padding: 52px 0; }
  .header .brand img { height: 32px; }
}
