/* =====================================================
   Crown Alfajores — Premium Boutique Bakery Stylesheet
   Palette: onyx black / ivory / warm cream / champagne
   Typography: Cormorant Garamond (serif) + Inter (sans)
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0b0b0b;
  --ink-soft:   #1a1a1a;
  --graphite:   #3a3a3a;
  --muted:      #6b665f;
  --line:       rgba(11, 11, 11, 0.09);
  --line-soft:  rgba(11, 11, 11, 0.05);

  --ivory:      #faf7f2;
  --cream:      #f3ece0;
  --paper:      #ffffff;

  --accent:     #b08a56;   /* champagne */
  --accent-ink: #8f6d3d;

  --shadow-sm:  0 1px 2px rgba(11,11,11,.05);
  --shadow-md:  0 10px 30px rgba(11,11,11,.08);
  --shadow-lg:  0 24px 60px rgba(11,11,11,.12);

  --serif: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);

  --maxw: 1240px;
  --maxw-narrow: 820px;

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease), opacity .3s var(--ease); }
a:hover { opacity: .7; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  padding: 0 32px;
  margin: 0 auto;
}
.container.narrow { max-width: var(--maxw-narrow); }
.center { text-align: center; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 .3em;
  line-height: 1.08;
}
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-ink);
  margin: 0 0 18px;
}
.section-title {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  font-weight: 500;
}
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head.center { margin-inline: auto; }
.section-lede {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm { padding: 11px 22px; font-size: 13px; }
.btn-lg { padding: 18px 38px; font-size: 15px; }
.btn-primary {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  opacity: 1;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  transition: color .35s var(--ease);
}
.site-header.is-scrolled .brand { color: var(--ink); }

/* Brand lockup — two images stacked, swapped by header state */
.brand-logo {
  height: 58px;
  width: auto;
  display: block;
  transition: opacity .35s var(--ease);
  will-change: opacity;
}
.brand-logo--on-light {
  opacity: 0;
}
.brand-logo--on-dark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 1;
  /* Line-art logo is black on transparent; invert to white for the dark hero */
  filter: invert(1);
}
.site-header.is-scrolled .brand-logo--on-light { opacity: 1; }
.site-header.is-scrolled .brand-logo--on-dark  { opacity: 0; }

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.brand-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .05em;
  opacity: .8;
  margin-top: 2px;
}

.site-nav {
  display: inline-flex;
  gap: 36px;
  justify-content: center;
  color: #fff;
  transition: color .35s var(--ease);
}
.site-header.is-scrolled .site-nav { color: var(--ink); }
.site-nav a {
  font-size: 13.5px;
  letter-spacing: .02em;
  font-weight: 400;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after { transform: scaleX(1); }

.header-cta { justify-self: end; }

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  position: relative;
  color: #fff;
  transition: color .35s var(--ease);
}
.site-header.is-scrolled .nav-toggle { color: var(--ink); }
.nav-toggle span {
  position: absolute;
  left: 7px; right: 7px;
  height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .3s var(--ease), top .35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 16px; }
.nav-toggle span:nth-child(3) { top: 21px; }
.nav-toggle.is-open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 24px 32px 32px;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: saturate(180%) blur(18px);
  border-top: 1px solid var(--line);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .3s var(--ease);
}
.mobile-nav a { font-size: 18px; color: var(--ink); }
.mobile-nav.is-open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 14s var(--ease) both;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.02); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.28) 40%, rgba(0,0,0,.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--header-h) + 40px) 32px 120px;
}
.hero .eyebrow { color: rgba(255,255,255,.82); }
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7.2vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.015em;
  max-width: 14ch;
  color: #fff;
}
.hero-sub {
  margin: 22px 0 36px;
  max-width: 46ch;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,.86);
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.hero-scroll span {
  width: 1.5px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollHint 1.8s var(--ease) infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(-6px); opacity: 0; }
  40%  { opacity: 1; }
  80%  { transform: translateY(6px); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Story ---------- */
.story {
  padding: clamp(96px, 14vw, 180px) 0;
  background: var(--ivory);
}
.story .section-title { margin-bottom: 40px; }
.story-body p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--graphite);
  margin: 0 0 1em;
}

/* ---------- Products ---------- */
.products {
  padding: clamp(96px, 14vw, 180px) 0;
  background: var(--paper);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.product-card {
  grid-column: span 6;
  background: var(--ivory);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.product-card--lg { grid-column: span 12; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.product-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}
.product-card--lg .product-media { aspect-ratio: 21 / 9; }
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.04); }

.product-copy {
  padding: 32px 32px 36px;
}
.product-copy h3 {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  margin-bottom: 10px;
}
.product-copy p {
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}

.section-cta { margin-top: 56px; display: flex; justify-content: center; }

/* ---------- Why ---------- */
.why {
  padding: clamp(96px, 14vw, 180px) 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
}
.why-item { text-align: center; }
.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  color: var(--ink);
  display: grid;
  place-items: center;
}
.why-icon svg {
  width: 100%;
  height: 100%;
}
.why-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.why-item p {
  color: var(--muted);
  font-size: .98rem;
  max-width: 30ch;
  margin: 0 auto;
}

/* ---------- Visit ---------- */
.visit {
  padding: clamp(96px, 14vw, 180px) 0;
  background: var(--ivory);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.visit .section-title { margin-bottom: 24px; }
.visit-copy > p {
  color: var(--graphite);
  max-width: 50ch;
  margin: 0 0 36px;
}
.visit-facts {
  display: grid;
  gap: 22px;
  margin: 0 0 40px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.visit-facts li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
}
.fact-label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  color: var(--muted);
  padding-top: 2px;
}
.fact-value { line-height: 1.6; }
.fact-value a { border-bottom: 1px solid var(--line); }

.visit-media {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
}
.visit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.visit-media:hover img { transform: scale(1.04); }

/* ---------- Showcase ---------- */
.showcase {
  padding: clamp(96px, 14vw, 180px) 0;
  background: var(--paper);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.showcase-tile {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--cream);
  position: relative;
}
.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter .6s var(--ease);
}
.showcase-tile:hover img { transform: scale(1.06); filter: brightness(1.02); }

.tile-1 { grid-column: span 3; grid-row: span 2; }
.tile-2 { grid-column: span 3; grid-row: span 1; }
.tile-3 { grid-column: span 2; grid-row: span 1; }
.tile-4 { grid-column: span 2; grid-row: span 2; }
.tile-5 { grid-column: span 4; grid-row: span 1; }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: clamp(96px, 14vw, 170px) 0;
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
}
.final-cta .section-title { color: #fff; }
.final-cta .eyebrow { color: var(--accent); }
.final-cta p {
  color: rgba(255,255,255,.78);
  max-width: 56ch;
  margin: 20px auto 40px;
}
.final-cta .btn-primary {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.final-cta .btn-primary:hover {
  background: #fff;
  border-color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-logo svg {
  width: 24px;
  height: 24px;
}
.footer-logo-img {
  height: 96px;
  width: auto;
  display: block;
  /* Line-art light logo → white outlines on the dark footer */
  filter: invert(1);
}
.footer-tag {
  margin: 14px 0 0;
  font-style: italic;
  font-family: var(--serif);
  font-size: 18px;
  color: rgba(255,255,255,.6);
}
.footer-col h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col p, .footer-col li {
  font-size: 14.5px;
  line-height: 1.75;
}
.footer-col a { color: rgba(255,255,255,.78); }
.footer-col a:hover { color: #fff; opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 26px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom small {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }

/* Hero reveals are always animated slightly later */
.hero .reveal { transition-duration: 1.2s; }
.hero .hero-title   { transition-delay: .15s; }
.hero .hero-sub     { transition-delay: .3s; }
.hero .hero-ctas    { transition-delay: .45s; }

/* ---------- Contact page ---------- */
.contact-hero {
  min-height: 58vh;
  min-height: 58svh;
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.contact-hero .section-title { color: #fff; font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
.contact-hero .eyebrow { color: var(--accent); }
.contact-hero p { color: rgba(255,255,255,.78); max-width: 58ch; margin: 18px 0 0; font-size: 1.1rem; }

.contact-info {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--ivory);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.contact-card {
  padding: 36px 32px;
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.contact-card p { color: var(--graphite); margin: 0; line-height: 1.7; }
.contact-card a { border-bottom: 1px solid var(--line); }

.map-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
}
.map-wrap {
  margin-top: 48px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 8;
  background: var(--ivory);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.25) contrast(1.02);
}

.form-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--ivory);
}
.contact-form {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin-inline: auto;
}
.field { display: flex; flex-direction: column; }
.field.full { grid-column: span 2; }
.field label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}
.field input, .field textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 14px;
  transition: border-color .3s var(--ease);
  border-radius: 0;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
.form-submit {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.form-status {
  grid-column: span 2;
  text-align: center;
  color: var(--accent-ink);
  font-size: 14px;
  min-height: 1.3em;
}

/* ---------- Feedback page ---------- */
.feedback-section {
  padding: calc(var(--header-h) + 80px) 0 clamp(80px, 12vw, 140px);
  background: var(--ivory);
  min-height: 70vh;
}
.feedback-section emr-collect-review-form {
  display: block;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Order-Direct / Compare pages ---------- */
.direct-hero {
  min-height: 72vh;
  min-height: 72svh;
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.direct-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 85% 20%, rgba(176,138,86,.18), transparent 70%),
    radial-gradient(600px 400px at 10% 80%, rgba(176,138,86,.08), transparent 70%);
  pointer-events: none;
}
.direct-hero > .container { position: relative; z-index: 1; }
.direct-hero .hero-title {
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  color: #fff;
  max-width: 18ch;
}
.direct-hero .eyebrow { color: var(--accent); }
.direct-hero p.lede {
  color: rgba(255,255,255,.82);
  max-width: 58ch;
  margin: 18px 0 34px;
  font-size: 1.1rem;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-bottom: 28px;
}
.platform-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

.why-direct {
  padding: clamp(96px, 14vw, 170px) 0;
  background: var(--ivory);
}
.why-direct .section-head { max-width: 820px; margin-inline: auto; }
.why-direct .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.stat-card {
  padding: 40px 32px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  text-align: left;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.6vw, 3.8rem);
  line-height: 1;
  color: var(--accent-ink);
  margin-bottom: 14px;
  font-weight: 500;
}
.stat-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.stat-card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* Compare table */
.compare {
  padding: clamp(96px, 14vw, 170px) 0;
  background: var(--cream);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.compare-col {
  background: var(--paper);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid var(--line-soft);
  position: relative;
}
.compare-col.good {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.compare-col.good .compare-title { color: #fff; }
.compare-col.good li::before { color: var(--accent); content: "✓"; }
.compare-col.bad li::before   { color: var(--muted); content: "✕"; }
.compare-col .eyebrow {
  margin-bottom: 10px;
}
.compare-col.good .eyebrow { color: var(--accent); }
.compare-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 500;
  margin-bottom: 24px;
}
.compare-col ul { display: grid; gap: 14px; }
.compare-col li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  font-size: 15px;
  line-height: 1.55;
}
.compare-col.good li { color: rgba(255,255,255,.86); }
.compare-col.bad  li { color: var(--graphite); }
.compare-col li::before {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
}
.compare-col .btn { margin-top: 28px; }

.local-economy {
  padding: clamp(96px, 14vw, 170px) 0;
  background: var(--ivory);
}
.local-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.local-copy .section-title { margin-bottom: 24px; }
.local-copy p {
  color: var(--graphite);
  max-width: 54ch;
  margin: 0 0 20px;
  font-size: 1.05rem;
}
.local-copy .pullquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 2px solid var(--accent);
  background: rgba(176,138,86,.06);
  border-radius: 0 12px 12px 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}
.local-media {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--cream);
}
.local-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.local-media:hover img { transform: scale(1.04); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-card { grid-column: span 12; }
  .product-card--lg { grid-column: span 12; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .visit-media { aspect-ratio: 16 / 10; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-auto-rows: 180px; }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .header-inner { padding: 0 22px; grid-template-columns: auto 1fr auto; }
  .brand-logo { height: 48px; }
  .footer-logo-img { height: 78px; }
  .site-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-block; }

  .hero-content { padding: calc(var(--header-h) + 20px) 22px 100px; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 4.4rem); }
  .hero-sub { font-size: 1rem; }

  .section-head { margin-bottom: 40px; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .visit-facts li { grid-template-columns: 1fr; gap: 6px; }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .tile-1, .tile-4 { grid-column: span 2; grid-row: span 1; }
  .tile-2, .tile-3, .tile-5 { grid-column: span 1; grid-row: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 48px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }

  .contact-form { grid-template-columns: 1fr; }
  .field.full, .form-submit, .form-status { grid-column: span 1; }

  .why-direct .stats { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: 1fr; gap: 40px; }
  .local-media { aspect-ratio: 16 / 10; }
}

@media (max-width: 1024px) {
  .why-direct .stats { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
