/* =========================================================
   Mel's Sweets & Treats — site stylesheet
   Brand: upscale home bakery, Potlatch, ID. Plum/wine + gold-foil
   + cream/blush. Fonts: Jost (body), Bodoni Moda (display serif),
   Pinyon Script (signature/accent). Hero is a procedurally-drawn
   engraved-plate emblem ported from the client's own reference file.
========================================================= */

:root {
  --plum-0: #1A0E13;
  --plum-1: #2B1620;
  --plum-2: #3E1F2B;
  --wine: #6E2839;
  --gold-hi: #F7E6B4;
  --gold: #C9A227;
  --gold-lo: #8C6A1C;
  --blush: #E6A9A2;
  --cream: #F6EEE2;
  --cream-dim: #C9B8A8;
  --ink: #2B1620;
  --ink-soft: #6b4a54;
  --gold-grad: linear-gradient(135deg, var(--gold-lo), var(--gold) 55%, var(--gold-hi));
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  width: 100%;
  font-family: 'Jost', system-ui, sans-serif;
  background: var(--cream);
  overflow-x: hidden;
  color: var(--ink);
}

img { max-width: 100%; display: block; }
section { position: relative; }
section[id] { scroll-margin-top: 92px; }

.wrap { max-width: 1180px; margin: 0 auto; padding-inline: 2rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  [data-parallax] { transform: none !important; }
  .stage *, .revolve, .bot, .hair, .wm, .beneath { animation: none !important; transition: none !important; }
  .bot, .hair { stroke-dashoffset: 0 !important; }
  .wm, .beneath { opacity: 1 !important; transform: none !important; }
}

/* ---------- shared motifs ---------- */

.section-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: 'Jost', sans-serif;
  font-weight: 600; font-size: 0.76rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-lo);
}
.section-tag::before { content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: 0.6; display: inline-block; }
.section-tag.on-dark { color: var(--gold); }

.heading {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
}
.heading .accent {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  color: var(--wine);
  font-size: 1.35em;
  line-height: 1;
}
.heading.on-dark { color: var(--cream); }
.heading.on-dark .accent { color: var(--gold); }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="left"].is-visible { transform: none; }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="right"].is-visible { transform: none; }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="scale"].is-visible { transform: none; }

/* photo frame — soft elevation, thin gold hairline, no hard border */
.photo-frame {
  position: relative;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px -18px rgba(26,14,19,0.45);
}
.photo-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(201,162,39,0.35);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.btn {
  position: relative;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-weight: 600; font-size: 0.96rem; letter-spacing: 0.03em;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-block;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn-primary {
  background: var(--gold-grad); color: var(--plum-0);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 14px 26px -12px rgba(140,106,28,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 18px 30px -10px rgba(140,106,28,0.55); filter: brightness(1.05); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: transparent; color: var(--wine);
  border: 1.5px solid var(--wine);
}
.btn-secondary:hover { transform: translateY(-2px); background: rgba(110,40,57,0.06); }
.btn-secondary:active { transform: translateY(0); }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(246,238,226,0.5);
}
.btn-outline:hover { transform: translateY(-2px); background: rgba(246,238,226,0.08); border-color: var(--gold); color: var(--gold-hi); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; border-radius: 4px; }

.tag-chip {
  display: inline-block; background: #fff; border: 1px solid var(--cream-dim);
  color: var(--ink-soft); padding: 0.35rem 0.85rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
}

/* =========================================================
   NAV — always dark/jewel-toned to match the brand
========================================================= */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.8rem; background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.site-nav.scrolled { background: var(--plum-1); box-shadow: 0 1px 0 rgba(201,162,39,0.18); padding: 0.75rem 1.8rem; }
.nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo-orb {
  width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1.5px solid var(--gold);
}
.nav-logo-orb img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand span { font-family: 'Pinyon Script', cursive; font-weight: 400; color: var(--cream); font-size: 1.7rem; }
.nav-links { display: flex; gap: 1.9rem; list-style: none; }
.nav-links a { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.88rem; letter-spacing: 0.03em; color: var(--cream); text-decoration: none; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.nav-cart { position: relative; display: inline-flex; align-items: center; text-decoration: none; }
.nav-cart svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute; top: -8px; right: -10px; background: var(--gold); color: var(--plum-0);
  font-size: 0.66rem; font-weight: 700; border-radius: 999px; min-width: 18px; height: 18px;
  align-items: center; justify-content: center; display: none; padding: 0 4px; border: 2px solid var(--plum-1);
}
.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-block; padding: 0.55rem 1.3rem; font-size: 0.86rem; } }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem; z-index: 101; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--cream); border-radius: 2px; }
@media (min-width: 900px) { .nav-toggle { display: none; } }
@media (max-width: 899px) { .nav-links { display: none; } }
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--plum-0);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.7rem;
  transform: translateY(-100%); transition: transform 0.35s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: 'Bodoni Moda', serif; font-size: 1.5rem; color: var(--cream); text-decoration: none; }

/* toast */
.toast {
  position: fixed; left: 50%; bottom: 2rem; transform: translateX(-50%) translateY(20px);
  background: var(--plum-0); color: var(--cream); padding: 0.8rem 1.4rem; border-radius: 6px;
  font-weight: 600; font-size: 0.9rem; box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5);
  border: 1px solid rgba(201,162,39,0.4);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; z-index: 999;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================================
   HERO — engraved guilloche plate + botanical monogram emblem,
   ported near-verbatim from the client-supplied reference file
   (canvas layers drawn procedurally, not traced). The reference's
   own top bar is replaced by the shared fixed .site-nav above it.
========================================================= */
.stage {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  isolation: isolate;
  background: radial-gradient(120% 90% at 50% 34%, #4A2432 0%, #2B1620 46%, #1A0E13 100%);
}
#plate, #dust { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
#dust { z-index: 4; }
.vignette {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background: radial-gradient(115% 85% at 50% 38%, transparent 42%, rgba(12,6,9,.55) 100%);
}
.grain {
  position: absolute; inset: 0; z-index: 6; pointer-events: none; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* engraved frame + corner flourishes */
.frame { position: absolute; inset: clamp(12px,2.1vw,26px); z-index: 7; pointer-events: none; }
.frame .r1, .frame .r2 { position: absolute; inset: 0; border: 1px solid rgba(201,162,39,.42); }
.frame .r2 { inset: 7px; border-color: rgba(201,162,39,.17); }
.corner { position: absolute; width: clamp(38px,4.4vw,76px); height: auto; stroke: rgba(201,162,39,.55); fill: none; stroke-width: 1.1; stroke-linecap: round; }
.corner.tl { top: -1px; left: -1px; }
.corner.tr { top: -1px; right: -1px; transform: scaleX(-1); }
.corner.bl { bottom: -1px; left: -1px; transform: scaleY(-1); }
.corner.br { bottom: -1px; right: -1px; transform: scale(-1,-1); }

/* emblem */
.middle {
  position: relative; z-index: 8; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(6.5rem,10vw,8.5rem) clamp(1.2rem,4vw,2rem) clamp(.8rem,1.6vw,1.2rem);
  text-align: center;
}
.emblem-wrap { position: relative; width: max(268px, min(87vw, 60vh, 470px)); aspect-ratio: 1; }
.emblem { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }

.bot { fill: none; stroke: url(#foilStroke); stroke-width: 1.05; stroke-linecap: round; stroke-linejoin: round; opacity: .92; }
.hair { fill: none; stroke: rgba(201,162,39,.5); stroke-width: 1; }
.hair.faint { stroke: rgba(201,162,39,.22); }
.ringtype { font-family: 'Jost', sans-serif; font-size: 11.6px; font-weight: 400; fill: var(--blush); }
.revolve { transform-origin: 420px 420px; animation: turn 120s linear infinite; }
@keyframes turn { to { transform: rotate(360deg); } }

.bot, .hair { stroke-dasharray: 2600; stroke-dashoffset: 0; }
.hair { animation: pipe 2.2s cubic-bezier(.35,.05,.25,1) both; }
.bot { animation: pipe 1.6s cubic-bezier(.35,.05,.25,1) both; animation-delay: .55s; }
@keyframes pipe { from { stroke-dashoffset: 2600; } to { stroke-dashoffset: 0; } }

.wm-script { font-family: 'Pinyon Script', cursive; font-size: 132px; letter-spacing: -.018em; fill: url(#foil); }
.wm-shadow { font-family: 'Pinyon Script', cursive; font-size: 132px; letter-spacing: -.018em; fill: #120A0E; opacity: .55; }
.wm-caps { font-family: 'Bodoni Moda', Didot, serif; font-weight: 500; font-size: 23px; letter-spacing: .42em; fill: var(--cream); }
.wm-place { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 12px; letter-spacing: .34em; fill: var(--cream-dim); }
.orn { fill: none; stroke: rgba(230,169,162,.75); stroke-width: 1; }
.wm { animation: rise 1.1s ease both; animation-delay: 1.3s; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* copy beneath emblem */
.beneath {
  margin-top: clamp(1.2rem,2.4vw,1.9rem);
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  animation: rise 1s ease both; animation-delay: 1.55s;
}
.beneath p {
  font-family: 'Bodoni Moda', Didot, serif;
  font-size: clamp(1rem,1.75vw,1.2rem); line-height: 1.6; max-width: 37ch; color: var(--cream);
}
.acts { display: flex; align-items: center; gap: clamp(1rem,2.2vw,1.7rem); flex-wrap: wrap; justify-content: center; }
.order {
  position: relative; display: inline-block; text-decoration: none; overflow: hidden;
  background: linear-gradient(103deg,var(--gold-lo) 0%,var(--gold) 26%,var(--gold-hi) 50%,var(--gold) 74%,var(--gold-lo) 100%);
  background-size: 220% 100%; background-position: 18% 0;
  color: #241218; font-weight: 500;
  font-size: .71rem; letter-spacing: .24em; text-transform: uppercase;
  padding: 1.02rem 2rem;
  box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 10px 26px -14px rgba(0,0,0,.9);
  transition: background-position .55s ease, transform .22s ease;
}
.order:hover { background-position: 82% 0; transform: translateY(-1px); }
.mailto {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  color: var(--cream-dim); border-bottom: 1px solid rgba(201,162,39,.4); padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.mailto:hover { color: var(--gold-hi); border-bottom-color: var(--gold); }

/* footline */
.footline {
  position: relative; z-index: 9;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 0 clamp(3.4rem,7vw,6rem) clamp(1.5rem,2.8vw,2.1rem);
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--cream-dim); font-weight: 300;
}
.footline .mid { display: flex; align-items: center; gap: 9px; opacity: .85; }
.footline .mid i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); display: block; }
.footline .mid span.hr { width: clamp(24px,5vw,60px); height: 1px; background: rgba(201,162,39,.4); display: block; }

@media (max-width: 600px) {
  .wm-script, .wm-shadow { font-size: 126px; }
  .wm-caps { font-size: 25px; letter-spacing: .32em; }
  .wm-place { font-size: 13.5px; }
  .ringtype { font-size: 13px; }
  .footline { justify-content: center; gap: .55rem; padding-inline: clamp(3rem,13vw,4rem); }
  .footline .mid { display: none; }
  .footline span:not(.mid)::after { content: " \00b7"; opacity: .6; }
  .footline span:last-child::after { content: ""; }
}

/* =========================================================
   STORY — split, editorial
========================================================= */
.story { background: #fff; padding: 6.5rem 0; }
.story .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: center; }
.story-media { position: relative; }
.story-media .photo-frame { aspect-ratio: 4/5; }
.story-media .photo-frame.accent { position: absolute; width: 48%; aspect-ratio: 1/1; right: -1.6rem; bottom: -1.8rem; border: 5px solid var(--cream); }
.story-text p { margin-top: 1.1rem; color: var(--ink-soft); line-height: 1.75; max-width: 54ch; font-size: 1.02rem; }
.story-stats { display: flex; gap: 2.2rem; margin-top: 2rem; flex-wrap: wrap; }
.story-stat b { font-family: 'Bodoni Moda', serif; font-size: 1.9rem; color: var(--wine); display: block; }
.story-stat span { font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }

@media (max-width: 860px) {
  .story .wrap { grid-template-columns: 1fr; }
  .story-media { max-width: 380px; margin: 0 auto 3rem; }
}

/* =========================================================
   MENU / CREATIONS preview — asymmetric
========================================================= */
.menu-preview { background: var(--cream); padding: 6.5rem 0; }
.menu-head { max-width: 620px; margin-bottom: 3rem; }
.menu-head p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.02rem; }
.menu-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: stretch; }
.menu-layout .photo-frame { aspect-ratio: 1/1; }
.menu-list { display: flex; flex-direction: column; gap: 1.1rem; }
.menu-row {
  background: #fff; border-radius: 6px; padding: 1.2rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 10px 26px -18px rgba(26,14,19,0.35);
  border: 1px solid rgba(201,162,39,0.12);
}
.menu-row img { width: 62px; height: 62px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.menu-row .info { flex: 1; }
.menu-row .info h3 { font-family: 'Bodoni Moda', serif; font-size: 1.05rem; }
.menu-row .info p { font-size: 0.86rem; color: var(--ink-soft); margin-top: 0.2rem; }
.menu-row .price { font-family: 'Bodoni Moda', serif; color: var(--wine); font-weight: 600; }
.menu-note { margin-top: 2rem; color: var(--ink-soft); font-size: 0.92rem; }
.menu-note a { color: var(--wine); font-weight: 600; }

@media (max-width: 860px) { .menu-layout { grid-template-columns: 1fr; } }

/* =========================================================
   GALLERY — masonry wall
========================================================= */
.gallery { background: #fff; padding: 6.5rem 0; }
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }
.gallery-head p { color: var(--ink-soft); max-width: 40ch; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 1.1rem; }
.gallery-grid .photo-frame { width: 100%; height: 100%; }
.g-a { grid-column: span 2; grid-row: span 2; }
.g-b { grid-column: span 2; grid-row: span 1; }
.g-c { grid-column: span 1; grid-row: span 1; }
.g-d { grid-column: span 1; grid-row: span 2; }
.g-e { grid-column: span 2; grid-row: span 2; }
.g-f { grid-column: span 2; grid-row: span 1; }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-grid > div { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* =========================================================
   REELS
========================================================= */
.reels-section { background: var(--plum-1); padding: 6rem 0; position: relative; overflow: hidden; }
.reels-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,162,39,0.14) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}
.reels-section .wrap { position: relative; z-index: 2; }
.reels-head { max-width: 620px; margin-bottom: 2.4rem; }
.reels-head p { color: rgba(246,238,226,0.72); margin-top: 1rem; }
.reel-card {
  position: relative;
  background: var(--plum-0); border: 2px solid var(--gold-lo); border-radius: 6px;
  overflow: hidden; box-shadow: 0 16px 30px -16px rgba(0,0,0,0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reel-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.reel-card:hover { transform: translateY(-4px); box-shadow: 0 20px 36px -14px rgba(0,0,0,0.6); }
.reels-grid-small { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.reels-grid-small .reel-card { aspect-ratio: 9/16; }
.reels-cta { margin-top: 2.4rem; }

@media (max-width: 860px) {
  .reels-grid-small { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   WHY — alternating rows
========================================================= */
.why { background: var(--cream); padding: 6.5rem 0; }
.why-head { max-width: 620px; margin-bottom: 3rem; }
.why-head p { color: var(--ink-soft); margin-top: 1rem; }
.why-row { display: flex; align-items: center; gap: 2.2rem; padding: 1.6rem 0; border-bottom: 1px solid var(--cream-dim); }
.why-row:last-child { border-bottom: none; }
.why-row:nth-child(even) { flex-direction: row-reverse; }
.why-thumb { flex: 0 0 auto; width: 88px; height: 88px; border-radius: 50%; overflow: hidden; box-shadow: 0 10px 24px -14px rgba(26,14,19,0.45); border: 2px solid var(--gold); }
.why-thumb img { width: 100%; height: 100%; object-fit: cover; }
.why-copy h3 { font-family: 'Bodoni Moda', serif; font-size: 1.25rem; color: var(--wine); margin-bottom: 0.35rem; }
.why-copy p { color: var(--ink-soft); max-width: 52ch; }
@media (max-width: 640px) { .why-row, .why-row:nth-child(even) { flex-direction: column; text-align: center; gap: 0.9rem; } }

/* =========================================================
   PROCESS
========================================================= */
.process { background: #fff; padding: 6.5rem 0; }
.process-head { max-width: 620px; margin-bottom: 3rem; }
.process-head p { color: var(--ink-soft); margin-top: 1rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-steps::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 1px; background: var(--cream-dim); }
.process-step { text-align: center; position: relative; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 1.1rem;
  background: var(--gold-grad); color: var(--plum-0); font-family: 'Bodoni Moda', serif; font-weight: 600; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 2;
}
.process-step h3 { font-family: 'Bodoni Moda', serif; font-size: 1.05rem; margin-bottom: 0.4rem; }
.process-step p { color: var(--ink-soft); font-size: 0.9rem; }
@media (max-width: 760px) { .process-steps { grid-template-columns: 1fr 1fr; gap: 2.4rem; } .process-steps::before { display: none; } }

/* =========================================================
   LOCATION / TRUST band
========================================================= */
.trust { background: var(--plum-1); padding: 5rem 0; }
.trust .wrap { display: flex; flex-wrap: wrap; gap: 3rem; align-items: center; justify-content: space-between; }
.trust-copy { max-width: 420px; }
.trust-copy h2 { color: var(--cream); font-size: clamp(1.6rem, 3.2vw, 2.2rem); }
.trust-copy p { color: rgba(246,238,226,0.7); margin-top: 1rem; }
.trust-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-stat { background: rgba(246,238,226,0.06); border: 1px solid rgba(201,162,39,0.25); border-radius: 6px; padding: 1.3rem 1.6rem; text-align: center; min-width: 120px; }
.trust-stat b { font-family: 'Bodoni Moda', serif; font-size: 2rem; color: var(--gold); display: block; }
.trust-stat span { font-size: 0.76rem; color: rgba(246,238,226,0.6); text-transform: uppercase; letter-spacing: 0.05em; }

.location { background: var(--cream); padding: 6.5rem 0; }
.location .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.location-card { background: #fff; border-radius: 6px; padding: 2.1rem; box-shadow: 0 14px 34px -20px rgba(26,14,19,0.4); border: 1px solid rgba(201,162,39,0.12); }
.location-card h3 { font-family: 'Bodoni Moda', serif; color: var(--wine); font-size: 1.2rem; margin-bottom: 0.8rem; }
.location-card p, .location-card a { color: var(--ink-soft); line-height: 1.7; text-decoration: none; font-weight: 500; }
.location-card a { color: var(--gold-lo); }
.location-card ul { list-style: none; margin-top: 0.4rem; }
.location-card li { padding: 0.2rem 0; }
@media (max-width: 760px) { .location .wrap { grid-template-columns: 1fr; } }

/* =========================================================
   FINAL CTA
========================================================= */
.final-cta { background: var(--plum-0); padding: 6rem 2rem; text-align: center; }
.final-cta .content { max-width: 640px; margin: 0 auto; }
.final-cta h2 { color: var(--cream); font-size: clamp(2rem, 4.6vw, 3rem); }
.final-cta p { color: rgba(246,238,226,0.68); margin-top: 1.1rem; font-size: 1.05rem; }
.final-cta .cta-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }

/* =========================================================
   FOOTER
========================================================= */
footer.site-footer { background: var(--plum-0); color: var(--cream); padding: 3.2rem 0 2rem; border-top: 1px solid rgba(201,162,39,0.18); }
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.4rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand span { font-family: 'Pinyon Script', cursive; font-size: 1.6rem; }
.footer-cols { display: flex; gap: 3.2rem; flex-wrap: wrap; }
.footer-col h4 { font-family: 'Jost', sans-serif; color: var(--gold); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.footer-col a, .footer-col p { display: block; color: rgba(246,238,226,0.65); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { max-width: 1180px; margin: 2.2rem auto 0; padding: 1.3rem 2rem 0; border-top: 1px solid rgba(201,162,39,0.15); font-size: 0.8rem; color: rgba(246,238,226,0.45); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; }
@media (max-width: 640px) { footer .wrap { flex-direction: column; } }

/* =========================================================
   PAGE HERO (inner pages)
========================================================= */
.page-hero { background: var(--plum-1); padding: 8.5rem 2rem 3.5rem; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--cream); }
.page-hero p { margin-top: 0.8rem; color: rgba(246,238,226,0.68); }
.page-hero .section-tag { justify-content: center; color: var(--gold); }
.breadcrumb { margin-top: 1rem; font-size: 0.85rem; color: var(--ink-soft); }
.breadcrumb a { color: var(--wine); text-decoration: underline; }

/* =========================================================
   SHOP
========================================================= */
.shop-section { background: var(--cream); padding: 3rem 0 6rem; }
.shop-note { max-width: 62ch; margin: 0 auto 2.4rem; text-align: center; color: var(--ink-soft); font-size: 0.94rem; }
.shop-filters { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  background: #fff; border: 1.5px solid var(--cream-dim); border-radius: 999px; padding: 0.5rem 1.2rem;
  font-weight: 600; font-size: 0.84rem; cursor: pointer; transition: all 0.15s ease;
}
.filter-btn.active, .filter-btn:hover { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.8rem; }
.product-card {
  background: #fff; border-radius: 6px; overflow: hidden;
  box-shadow: 0 14px 30px -20px rgba(26,14,19,0.35);
  border: 1px solid rgba(201,162,39,0.1);
  display: flex; flex-direction: column; transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 38px -18px rgba(26,14,19,0.4); }
.product-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.product-card .cat-tag { font-size: 0.7rem; font-weight: 700; color: var(--gold-lo); text-transform: uppercase; letter-spacing: 0.06em; }
.product-card h3 { font-family: 'Bodoni Moda', serif; font-size: 1.1rem; }
.product-card h3 a { color: var(--ink); text-decoration: none; }
.product-card p.tag { font-size: 0.86rem; color: var(--ink-soft); flex: 1; }
.product-card .price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.product-card .price { font-family: 'Bodoni Moda', serif; font-size: 1.08rem; color: var(--wine); }

/* =========================================================
   PRODUCT DETAIL
========================================================= */
.product-detail { background: var(--cream); padding: 3rem 0 6rem; }
.product-detail .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.product-detail .photo-frame { aspect-ratio: 4/5; }
.product-info .cat-tag { font-size: 0.76rem; font-weight: 700; color: var(--gold-lo); text-transform: uppercase; letter-spacing: 0.06em; }
.product-info h1 { font-family: 'Bodoni Moda', serif; font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin: 0.4rem 0 0.7rem; color: var(--ink); }
.product-info .price { font-family: 'Bodoni Moda', serif; font-size: 1.55rem; color: var(--wine); margin-bottom: 1rem; }
.product-info p.desc { color: var(--ink-soft); line-height: 1.7; max-width: 48ch; }
.qty-row { display: flex; align-items: center; gap: 1rem; margin: 1.6rem 0; flex-wrap: wrap; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--cream-dim); border-radius: 4px; overflow: hidden; }
.qty-control button { width: 36px; height: 36px; background: var(--cream); border: none; font-size: 1.05rem; font-weight: 700; cursor: pointer; color: var(--ink); }
.qty-control input { width: 44px; text-align: center; border: none; font-weight: 700; font-size: 1rem; }
.related-heading { margin: 4rem 0 1.5rem; font-family: 'Bodoni Moda', serif; font-size: 1.4rem; }
@media (max-width: 760px) { .product-detail .wrap { grid-template-columns: 1fr; } }

/* =========================================================
   CART
========================================================= */
.cart-section { background: var(--cream); padding: 3rem 0 6rem; min-height: 40vh; }
.cart-table { width: 100%; border-collapse: separate; border-spacing: 0 0.9rem; }
.cart-row td { background: #fff; padding: 1rem; vertical-align: middle; }
.cart-row td:first-child { border-radius: 6px 0 0 6px; }
.cart-row td:last-child { border-radius: 0 6px 6px 0; }
.cart-item { display: flex; align-items: center; gap: 1rem; }
.cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; }
.cart-item span { font-weight: 600; }
.cart-remove { background: none; border: none; color: var(--wine); font-weight: 600; cursor: pointer; font-size: 0.85rem; }
.cart-summary { max-width: 380px; margin-left: auto; background: #fff; border-radius: 6px; padding: 1.6rem; box-shadow: 0 14px 30px -20px rgba(26,14,19,0.35); margin-top: 2rem; border: 1px solid rgba(201,162,39,0.12); }
.cart-summary .row { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 0.6rem; }
.cart-summary .total { font-family: 'Bodoni Moda', serif; font-size: 1.3rem; color: var(--wine); }
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state p { color: var(--ink-soft); margin-bottom: 1.4rem; }
@media (max-width: 760px) {
  .cart-table, .cart-table tbody, .cart-row { display: block; width: 100%; }
  .cart-table thead { display: none; }
  .cart-row { margin-bottom: 1rem; box-shadow: 0 10px 24px -18px rgba(26,14,19,0.35); border-radius: 6px; overflow: hidden; }
  .cart-row td { display: block; border-radius: 0 !important; }
}

/* =========================================================
   CHECKOUT
========================================================= */
.checkout-section { background: var(--cream); padding: 3rem 0 6rem; }
.checkout-section .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.checkout-form { background: #fff; border-radius: 6px; padding: 2rem; box-shadow: 0 14px 34px -20px rgba(26,14,19,0.35); border: 1px solid rgba(201,162,39,0.12); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid var(--cream-dim); border-radius: 4px;
  font-family: 'Jost', sans-serif; font-size: 0.95rem; background: var(--cream);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.payment-note { background: var(--cream); border-radius: 4px; padding: 1rem 1.2rem; font-size: 0.88rem; color: var(--ink-soft); margin-top: 1.4rem; border-left: 3px solid var(--gold); }
.checkout-summary { background: #fff; border-radius: 6px; padding: 1.6rem; box-shadow: 0 14px 34px -20px rgba(26,14,19,0.35); position: sticky; top: 6rem; border: 1px solid rgba(201,162,39,0.12); }
.checkout-summary h3 { font-family: 'Bodoni Moda', serif; margin-bottom: 1rem; }
.checkout-line { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--ink-soft); }
.checkout-summary .total-row { display: flex; justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--cream-dim); font-family: 'Bodoni Moda', serif; font-size: 1.2rem; color: var(--wine); }
@media (max-width: 860px) { .checkout-section .wrap { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .checkout-summary { position: static; } }

.order-confirm { text-align: center; padding: 4rem 1rem; max-width: 560px; margin: 0 auto; }
.order-confirm .check-badge { width: 80px; height: 80px; border-radius: 50%; background: var(--gold-grad); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem; }
.order-confirm .check-badge svg { width: 38px; height: 38px; }
.order-confirm h1 { font-family: 'Bodoni Moda', serif; font-size: 1.8rem; margin-bottom: 0.8rem; }
.order-confirm p { color: var(--ink-soft); margin-bottom: 0.6rem; }

/* =========================================================
   ABOUT extras
========================================================= */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.about-card { background: #fff; border-radius: 6px; padding: 1.6rem; box-shadow: 0 12px 28px -20px rgba(26,14,19,0.35); border: 1px solid rgba(201,162,39,0.1); }
.about-card h3 { font-family: 'Bodoni Moda', serif; color: var(--wine); margin-bottom: 0.5rem; font-size: 1.1rem; }
.about-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* =========================================================
   CONTACT
========================================================= */
.contact-section { background: var(--cream); padding: 3rem 0 6rem; }
.contact-section .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.contact-form { background: #fff; border-radius: 6px; padding: 2rem; box-shadow: 0 14px 34px -20px rgba(26,14,19,0.35); border: 1px solid rgba(201,162,39,0.12); }
.contact-info-card { background: var(--plum-1); color: var(--cream); border-radius: 6px; padding: 2rem; }
.contact-info-card h3 { font-family: 'Bodoni Moda', serif; color: var(--gold); margin-bottom: 1rem; }
.contact-info-card p, .contact-info-card a { color: rgba(246,238,226,0.82); text-decoration: none; display: block; margin-bottom: 0.7rem; }
.contact-info-card a:hover { color: var(--gold-hi); }
@media (max-width: 860px) { .contact-section .wrap { grid-template-columns: 1fr; } }
