/* =========================================================
   Cantine Graziano — foglio di stile
   ========================================================= */
:root {
  --wine: #5a1220;
  --wine-deep: #360a13;
  --red: #9c1c1c;
  --gold: #b3894a;
  --gold-soft: #d8bf91;
  --cream: #f6f1e8;
  --paper: #fbf8f2;
  --white: #ffffff;
  --ink: #1d1714;
  --ink-soft: #5b504a;
  --line: #e4dccd;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --max: 1240px;
  --radius: 2px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; margin: 0 0 .5em; letter-spacing: .01em; }
p { margin: 0 0 1.1em; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: inline-block;
}
.section { padding: 120px 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--wine-deep); color: var(--cream); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(38px, 5vw, 58px); }
.section-head p { color: var(--ink-soft); }
.section--dark .section-head p { color: var(--gold-soft); }
.ornament { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--gold); margin: 6px 0 22px; }
.ornament::before, .ornament::after { content: ""; width: 48px; height: 1px; background: currentColor; }
.ornament span { width: 6px; height: 6px; transform: rotate(45deg); border: 1px solid currentColor; }

/* ---------- Bottoni ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px; border: 1px solid currentColor; border-radius: var(--radius);
  font-size: 12px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  background: transparent; color: inherit; transition: background .3s, color .3s, border-color .3s;
}
.btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--solid { background: var(--wine); border-color: var(--wine); color: var(--cream); }
.btn--solid:hover { background: var(--wine-deep); border-color: var(--wine-deep); }
.btn--light { color: var(--cream); }
.btn--light:hover { background: var(--cream); color: var(--wine-deep); border-color: var(--cream); }
.btn[disabled], .btn.is-disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }

/* ---------- Barra avviso ---------- */
.notice-bar {
  background: var(--wine-deep); color: var(--gold-soft); text-align: center;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; padding: 10px 16px;
}
.notice-bar strong { color: var(--cream); font-weight: 500; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(251, 248, 242, .94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 84px; }
.nav { display: flex; gap: 34px; }
.nav a {
  font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.brand img { width: auto; }
.brand .logo-wide { height: 54px; }
.brand .logo-compact { display: none; height: 44px; }
.brand--footer img { height: 64px; }
.brand--gate img { height: 78px; margin: 0 auto; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
.cart-btn {
  position: relative; background: none; border: 0; padding: 6px; color: var(--ink);
  display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
}
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: -2px; left: 20px; min-width: 18px; height: 18px; border-radius: 9px;
  background: var(--wine); color: var(--cream); font-size: 10px; letter-spacing: 0;
  display: grid; place-items: center; padding: 0 5px;
}
.cart-count:empty { display: none; }
.nav .close-nav { display: none; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); }
.menu-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: calc(100vh - 124px); min-height: calc(100svh - 124px);
  display: flex; align-items: flex-end; color: var(--cream); overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 8, 10, .15) 0%, rgba(20, 8, 10, .35) 45%, rgba(20, 8, 10, .82) 100%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: 96px; max-width: 760px; }
.hero h1 { font-size: clamp(48px, 7.5vw, 104px); font-weight: 400; line-height: .98; margin-bottom: 26px; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p { font-size: 19px; max-width: 540px; color: rgba(246, 241, 232, .88); margin-bottom: 36px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.scroll-cue {
  position: absolute; z-index: 2; right: 32px; bottom: 40px; writing-mode: vertical-rl;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-soft);
  display: flex; align-items: center; gap: 14px;
}
.scroll-cue::after { content: ""; width: 1px; height: 60px; background: var(--gold-soft); }

/* ---------- Page hero (pagine interne) ---------- */
.page-hero { position: relative; padding: 150px 0 110px; color: var(--cream); text-align: center; overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(28, 10, 12, .62); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(44px, 6vw, 80px); font-weight: 400; }
.page-hero p { max-width: 620px; margin: 0 auto; color: rgba(246, 241, 232, .85); }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero--plain { background: var(--wine-deep); padding: 110px 0 80px; }
.page-hero--plain::after { display: none; }

/* ---------- Split (testo + immagine) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split-media--wide img { aspect-ratio: 4 / 3; }
.split-media .frame {
  position: absolute; inset: 22px -22px -22px 22px; border: 1px solid var(--gold); z-index: -1;
}
.split-text h2 { font-size: clamp(36px, 4.4vw, 54px); }
.split-text .lead { font-family: var(--serif); font-size: 24px; line-height: 1.45; color: var(--wine); font-style: italic; }
.split-text p { color: var(--ink-soft); }
.signature { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink); margin-top: 26px; }

/* ---------- Numeri territorio ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(216, 191, 145, .3); border-bottom: 1px solid rgba(216, 191, 145, .3); }
.fact { padding: 54px 24px; text-align: center; }
.fact + .fact { border-left: 1px solid rgba(216, 191, 145, .3); }
.fact strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 54px; line-height: 1; color: var(--gold-soft); margin-bottom: 12px; }
.fact span { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: rgba(246, 241, 232, .75); }

/* ---------- Prodotti ---------- */
.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 56px; }
.chip {
  background: transparent; border: 1px solid var(--line); border-radius: 40px; padding: 10px 24px;
  font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft);
  transition: all .25s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active { background: var(--wine); border-color: var(--wine); color: var(--cream); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 36px 28px; }
.product-card { display: flex; flex-direction: column; text-align: center; }
.product-card .media {
  position: relative; background: var(--white); aspect-ratio: 3 / 4; display: grid; place-items: center;
  padding: 30px 0; overflow: hidden; margin-bottom: 22px; border: 1px solid var(--line);
}
.product-card .media img { position: absolute; top: 8%; left: 0; right: 0; height: 84%; width: auto; max-width: 90%; margin: 0 auto; object-fit: contain; transition: transform .7s var(--ease); }
.product-card:hover .media img { transform: translateY(-8px) scale(1.03); }
.badge {
  position: absolute; top: 16px; left: 16px; font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  padding: 5px 10px; background: var(--paper); border: 1px solid var(--line); color: var(--ink-soft);
}
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.dot--rosso { background: #6d0f1d; }
.dot--bianco { background: #e3cf85; }
.dot--rosato { background: #e27a78; }
.product-card .line { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.product-card h3 { font-size: 30px; margin-bottom: 4px; }
.product-card .denom { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }
.product-card .price { font-family: var(--serif); font-size: 22px; color: var(--wine); margin-bottom: 16px; }
.price--tba { font-family: var(--sans) !important; font-size: 12px !important; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft) !important; }
.product-card .btn { margin-top: auto; align-self: center; padding: 12px 26px; }

/* ---------- Dettaglio prodotto ---------- */
.breadcrumb { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); padding: 28px 0 0; }
.breadcrumb a:hover { color: var(--wine); }
.breadcrumb span { margin: 0 10px; color: var(--gold); }
.product { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; padding: 48px 0 110px; align-items: start; }
.product-gallery { position: sticky; top: 112px; }
.product-stage {
  background: var(--white); border: 1px solid var(--line); aspect-ratio: 4 / 5;
  display: grid; place-items: center; padding: 48px 0; position: relative; overflow: hidden;
}
.product-stage::before {
  content: ""; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--cream) 0%, rgba(246, 241, 232, 0) 70%);
}
.product-stage img { position: absolute; top: 7%; left: 0; right: 0; height: 86%; width: auto; max-width: 90%; margin: 0 auto; object-fit: contain; }
.thumbs { display: flex; gap: 12px; margin-top: 14px; }
.thumbs button { width: 76px; height: 96px; background: var(--white); border: 1px solid var(--line); padding: 8px; }
.thumbs button.is-active { border-color: var(--wine); }
.thumbs img { height: 78px; width: auto; margin: 0 auto; object-fit: contain; }
.product-info h1 { font-size: clamp(44px, 5vw, 68px); font-weight: 400; margin-bottom: 8px; }
.product-info .denom { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--wine); margin-bottom: 26px; }
.product-info .tagline { font-size: 18px; color: var(--ink-soft); }
.meta-row { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 28px 0; }
.meta-row b { font-weight: 500; color: var(--ink); }
.buy-box { background: var(--cream); padding: 28px; margin-bottom: 40px; }
.buy-box .price { font-family: var(--serif); font-size: 38px; color: var(--wine); line-height: 1; margin-bottom: 18px; }
.buy-row { display: flex; gap: 12px; flex-wrap: wrap; }
.qty { display: flex; border: 1px solid var(--ink); }
.qty button { background: none; border: 0; width: 44px; font-size: 18px; }
.qty input { width: 44px; border: 0; background: transparent; text-align: center; font: inherit; font-size: 16px; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.buy-row .btn { flex: 1; min-width: 200px; }
.closed-note { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); margin: 0; }
.closed-note svg { flex: none; width: 22px; height: 22px; color: var(--wine); margin-top: 3px; }
.buy-box .closed-note { margin-top: 18px; }

.tabs { border-bottom: 1px solid var(--line); display: flex; gap: 30px; margin-bottom: 28px; overflow-x: auto; }
.tabs button {
  background: none; border: 0; padding: 14px 0; font-size: 12px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-soft); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap;
}
.tabs button.is-active { color: var(--wine); border-color: var(--wine); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade .4s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.spec { width: 100%; border-collapse: collapse; font-size: 15px; }
.spec th, .spec td { text-align: left; vertical-align: top; padding: 12px 0; border-bottom: 1px solid var(--line); }
.spec th { width: 38%; font-weight: 500; color: var(--wine); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; padding-right: 16px; padding-top: 15px; }
.spec td { color: var(--ink-soft); }
.serve { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.serve div { border: 1px solid var(--line); padding: 18px 20px; }
.serve small { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.serve strong { font-family: var(--serif); font-weight: 500; font-size: 22px; }
.pending { padding: 26px; border: 1px dashed var(--gold); color: var(--ink-soft); font-style: italic; }

/* ---------- Galleria ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 14px; }
.gallery figure { margin: 0; overflow: hidden; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 14px; color: var(--cream);
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  background: linear-gradient(transparent, rgba(0, 0, 0, .6));
}
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

/* ---------- Banner negozio chiuso ---------- */
.closed-banner { position: relative; overflow: hidden; color: var(--cream); text-align: center; padding: 130px 0; }
.closed-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.closed-banner::after { content: ""; position: absolute; inset: 0; background: rgba(54, 10, 19, .8); }
.closed-banner .container { position: relative; z-index: 2; max-width: 760px; }
.closed-banner h2 { font-size: clamp(38px, 5vw, 60px); font-weight: 400; }
.closed-banner p { color: rgba(246, 241, 232, .85); font-size: 18px; margin-bottom: 34px; }
.closed-banner .eyebrow { color: var(--gold-soft); }

/* ---------- Contatti ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 70px; align-items: stretch; }
.contact-card { background: var(--cream); padding: 48px; }
.contact-card h3 { font-size: 30px; }
.contact-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item small { display: block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-item p { margin: 0; font-size: 17px; }
.map { min-height: 460px; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; filter: grayscale(.35) sepia(.12); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(246, 241, 232, .72); padding: 88px 0 28px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(246, 241, 232, .12); }
.site-footer .brand { align-items: flex-start; color: var(--cream); margin-bottom: 20px; }
.site-footer h4 { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 20px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 26px; font-size: 12px; letter-spacing: .06em; color: rgba(246, 241, 232, .5); }
.drink-resp { font-size: 12px; font-style: italic; }

/* ---------- Carrello (drawer) ---------- */
.overlay { position: fixed; inset: 0; background: rgba(20, 10, 10, .5); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .35s; }
.overlay.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100%); background: var(--paper); z-index: 100;
  transform: translateX(100%); transition: transform .45s var(--ease); display: flex; flex-direction: column;
}
.drawer.is-open { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 26px 28px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { margin: 0; font-size: 28px; }
.icon-btn { background: none; border: 0; padding: 6px; color: var(--ink); }
.icon-btn svg { width: 22px; height: 22px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.drawer-foot { padding: 24px 28px; border-top: 1px solid var(--line); }
.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-line img { height: 80px; max-width: 64px; object-fit: contain; width: auto; margin: 0 auto; }
.cart-line h4 { font-size: 20px; margin: 0; }
.cart-line small { color: var(--ink-soft); }
.cart-line .rm { background: none; border: 0; font-size: 12px; text-decoration: underline; color: var(--ink-soft); padding: 0; }
.cart-total { display: flex; justify-content: space-between; font-family: var(--serif); font-size: 24px; margin-bottom: 16px; }
.drawer-foot .btn { width: 100%; }
.empty { text-align: center; color: var(--ink-soft); padding: 60px 0; }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 16px;
  background: rgba(30, 8, 12, .9); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.age-gate[hidden] { display: none; }
.age-box { background: var(--paper); max-width: 480px; width: 100%; padding: 56px 40px 44px; text-align: center; border-top: 3px solid var(--gold); }
.age-box .brand { margin-bottom: 28px; }
.age-box h2 { font-size: 34px; }
.age-box p { color: var(--ink-soft); font-size: 15px; }
.age-actions { display: flex; gap: 12px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.age-denied { color: var(--red) !important; margin-top: 18px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 30px); opacity: 0; z-index: 150;
  background: var(--ink); color: var(--cream); padding: 14px 24px; font-size: 14px; transition: all .35s var(--ease);
  max-width: calc(100% - 32px);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .split { gap: 56px; }
  .product { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .section { padding: 84px 0; }
  .header-inner { grid-template-columns: auto 1fr auto; height: 72px; }
  .menu-toggle { display: block; }
  .brand { justify-self: center; }
  .brand .logo-wide { display: none; }
  .brand .logo-compact { display: block; }
  .cart-btn .label { display: none; }
  .nav {
    position: fixed; top: 0; left: 0; bottom: 0; width: min(320px, 85%); background: var(--paper); z-index: 110;
    flex-direction: column; gap: 0; padding: 90px 32px 32px; transform: translateX(-100%); transition: transform .4s var(--ease);
  }
  .nav.is-open { transform: none; }
  .nav a { font-size: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav .close-nav { display: block; position: absolute; top: 22px; right: 18px; }
  .split, .product, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .split-media .frame { inset: 14px -10px -14px 10px; }
  .product-gallery { position: static; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid rgba(216, 191, 145, .3); }
  .fact strong { font-size: 42px; }
  .scroll-cue { display: none; }
  .hero-content { padding-bottom: 64px; }
  .contact-card { padding: 32px 24px; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }
  .product-card h3 { font-size: 22px; }
  .product-card .denom { font-size: 12px; }
  .product-card .btn { padding: 10px 14px; font-size: 10px; letter-spacing: .14em; }
  .badge { display: none; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-wide { grid-column: auto; }
  .g-tall { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .serve { grid-template-columns: 1fr; }
  .spec th { width: 42%; }
  .age-box { padding: 44px 22px 34px; }
}
