/* =========================================================
   Wood Fired Pizzeria — Stylesheet
   Premium, minimal, warm restaurant brand
   ========================================================= */

/* -------------------- Design Tokens -------------------- */
:root {
  /* Color palette — warm off-white, espresso text, fire accents */
  --bg:            #faf6f0;   /* warm off-white */
  --bg-alt:        #f3ece2;   /* soft secondary surface */
  --surface:       #ffffff;   /* cards */
  --ink:           #221a14;   /* deep espresso text */
  --ink-soft:      #5c4f44;   /* muted body text */
  --ink-faint:     #8a7c6e;   /* captions / meta */
  --line:          #e7ddd0;   /* hairline borders */

  --amber:         #c8631f;   /* fire amber accent */
  --amber-deep:    #a84a13;   /* hover / pressed */
  --clay:          #9c3b1b;   /* muted clay-red */
  --ember:         #d98324;   /* warm glow highlight */
  --gold:          #e7a44a;

  /* Typography */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing & shape */
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(60, 40, 20, 0.06);
  --shadow:    0 14px 40px rgba(60, 40, 20, 0.10);
  --shadow-lg: 0 28px 70px rgba(60, 40, 20, 0.16);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -------------------- Reset -------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.4em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* -------------------- Layout helpers -------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 10vw, 128px); }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 60ch; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }

h2.title { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.45rem; }

/* -------------------- Buttons -------------------- */
.btn {
  --btn-bg: var(--amber);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.8em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  box-shadow: 0 10px 24px rgba(168, 74, 19, 0.22);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); background: var(--amber-deep); box-shadow: 0 16px 32px rgba(168, 74, 19, 0.30); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
  box-shadow: none;
  background: var(--surface);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--amber); color: var(--amber-deep); box-shadow: var(--shadow-sm); }

.btn--light {
  --btn-bg: rgba(255,255,255,0.12);
  --btn-fg: #fff;
  border-color: rgba(255,255,255,0.35);
  box-shadow: none;
  backdrop-filter: blur(4px);
}
.btn--light:hover { background: rgba(255,255,255,0.22); border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row.center { justify-content: center; }

/* Icon inside button */
.btn svg { width: 1.05em; height: 1.05em; }

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-text span {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5em 0.95em;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--bg-alt); }
.nav-links a.active { color: var(--amber-deep); }

/* The in-list Order Online CTA is only for the mobile dropdown */
.nav-links .nav-cta { display: none; }

.nav-right { display: flex; align-items: center; gap: 16px; }

/* Open/closed status badge */
.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4em 0.85em;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--ink-soft);
  white-space: nowrap;
}
.status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink-faint);
  position: relative;
}
.status.is-open { color: #2f6b3a; background: #e7f2e8; }
.status.is-open .dot { background: #3a9d4e; box-shadow: 0 0 0 0 rgba(58,157,78,0.5); animation: pulse 2.2s infinite; }
.status.is-closed { color: var(--clay); background: #f6e7e1; }
.status.is-closed .dot { background: var(--clay); }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(58,157,78,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(58,157,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(58,157,78,0); }
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  margin-inline: auto;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding-block: clamp(56px, 9vw, 110px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 580px; }
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  margin-bottom: 0.35em;
}
.hero h1 em { font-style: italic; color: var(--amber); }
.hero .lead { margin-bottom: 1.8em; }

.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  font-size: 0.9rem;
  color: var(--ink-faint);
}
.trust-line svg { width: 18px; height: 18px; color: var(--amber); }

/* Hero image stack */
.hero-media { position: relative; }
.hero-media .photo-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero-media .photo-main img { width: 100%; height: 100%; object-fit: cover; }

.hero-media .photo-float {
  position: absolute;
  bottom: -28px;
  left: -34px;
  width: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--bg);
  aspect-ratio: 1 / 1;
}
.hero-media .photo-float img { width: 100%; height: 100%; object-fit: cover; }

.hero-media .badge-float {
  position: absolute;
  top: 22px;
  right: -18px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.hero-media .badge-float .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--amber); line-height: 1; }
.hero-media .badge-float .lbl { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }

/* glow accent behind hero */
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(217,131,36,0.16), rgba(217,131,36,0) 62%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* =========================================================
   Intro
   ========================================================= */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.intro-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}
.intro-figure img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   Feature cards
   ========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 40px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #f0e2d2; }
.card .icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(150deg, #fff1e3, #ffe1c4);
  color: var(--amber-deep);
  margin-bottom: 20px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.4rem; margin-bottom: 0.35em; }
.card p { margin: 0; font-size: 0.98rem; }

/* =========================================================
   Menu preview
   ========================================================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.dish {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.dish img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.dish::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(34,26,20,0.78) 0%, rgba(34,26,20,0.12) 45%, rgba(34,26,20,0) 70%);
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dish:hover img { transform: scale(1.06); }
.dish figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px;
  color: #fff;
}
.dish figcaption strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; display: block; }
.dish figcaption span { font-size: 0.82rem; color: rgba(255,255,255,0.82); }

/* =========================================================
   Hours
   ========================================================= */
.hours-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hours-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.2vw, 40px);
  box-shadow: var(--shadow-sm);
}
.hours-card .status { margin-bottom: 22px; font-size: 0.85rem; }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li.today { font-weight: 600; color: var(--ink); }
.hours-list li.today .day::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  margin-right: 9px;
  vertical-align: middle;
}
.hours-list .day { color: var(--ink-soft); }
.hours-list li.today .day { color: var(--ink); }
.hours-list .time { color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.hours-list li.today .time { color: var(--amber-deep); }

/* =========================================================
   Final CTA banner
   ========================================================= */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.cta-banner .bg {
  position: absolute; inset: 0; z-index: -2;
}
.cta-banner .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(40,20,10,0.88) 0%, rgba(120,45,15,0.74) 55%, rgba(168,74,19,0.66) 100%);
}
.cta-banner .inner {
  padding: clamp(48px, 7vw, 96px) var(--gutter);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.cta-banner h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.3rem); }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 1.8em; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-hero { padding-block: clamp(48px, 7vw, 92px); }
.contact-hero .lead { max-width: 56ch; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.info-list { list-style: none; margin: 0 0 28px; padding: 0; }
.info-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.info-list li:last-child { border-bottom: 0; }
.info-list .ico {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--amber-deep);
}
.info-list .ico svg { width: 20px; height: 20px; }
.info-list .meta { display: flex; flex-direction: column; }
.info-list .meta .k { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 3px; }
.info-list .meta .v { font-size: 1.05rem; color: var(--ink); font-weight: 500; }
.info-list .meta a.v:hover { color: var(--amber-deep); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; }

.location-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px);
  margin-top: 22px;
}
.location-card h3 { font-size: 1.6rem; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #1c1510;
  color: #d9cdbf;
  padding-block: clamp(52px, 6vw, 80px) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 34ch; margin-top: 14px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a, .footer-col p { color: rgba(255,255,255,0.72); font-size: 0.96rem; transition: color 0.25s var(--ease); margin: 0; }
.footer-col a:hover { color: #fff; }

.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.socials a:hover { background: var(--amber); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: #fff; }

/* =========================================================
   Delivery Areas (hub grid + town pages)
   ========================================================= */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.area-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.8vw, 32px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #f0e2d2; }
.area-card .region {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.area-card h3 { font-size: 1.5rem; margin-bottom: 0.3em; }
.area-card p { font-size: 0.95rem; margin-bottom: 1.2em; }
.area-card .go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber-deep);
}
.area-card .go svg { width: 1em; height: 1em; transition: transform 0.3s var(--ease); }
.area-card:hover .go svg { transform: translateX(4px); }

/* Local highlights — checkmark list */
.highlight-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.highlight-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; color: var(--ink-soft); }
.highlight-list .tick {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, #fff1e3, #ffe1c4);
  color: var(--amber-deep);
  margin-top: 2px;
}
.highlight-list .tick svg { width: 14px; height: 14px; }

/* Delivery facts row */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.fact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
  box-shadow: var(--shadow-sm);
}
.fact .ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(150deg, #fff1e3, #ffe1c4);
  color: var(--amber-deep);
  margin-bottom: 16px;
}
.fact .ico svg { width: 24px; height: 24px; }
.fact h3 { font-size: 1.25rem; margin-bottom: 0.25em; }
.fact p { margin: 0; font-size: 0.95rem; }

/* "Other areas" chip links */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chips a {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5em 1.05em;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.area-chips a:hover { color: var(--amber-deep); border-color: var(--amber); transform: translateY(-2px); }
.area-chips a.is-current { background: var(--amber); color: #fff; border-color: var(--amber); }

/* =========================================================
   Order-direct comparison (third-party vs direct)
   ========================================================= */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
}
.compare-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 42px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.compare-card .ctag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.compare-card .big {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  font-size: clamp(2.6rem, 7vw, 4rem);
  margin-bottom: 6px;
}
.compare-card .cap { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 24px; }
.compare-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.compare-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; color: var(--ink-soft); }
.compare-card li .m {
  flex: none;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  margin-top: 1px;
}
.compare-card li .m svg { width: 13px; height: 13px; }

.compare-card.is-bad { background: #f8ebe4; border-color: #eed7cb; }
.compare-card.is-bad .ctag,
.compare-card.is-bad .big { color: var(--clay); }
.compare-card.is-bad li .m { background: rgba(156, 59, 27, 0.12); color: var(--clay); }

.compare-card.is-good { background: #ecf4ea; border-color: #d4e7cf; }
.compare-card.is-good .ctag,
.compare-card.is-good .big { color: #2f6b3a; }
.compare-card.is-good li .m { background: rgba(58, 157, 78, 0.16); color: #2f6b3a; }

.compare-card .pick {
  position: absolute;
  top: -13px; right: 20px;
  background: var(--amber);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45em 0.95em;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.compare-card .btn { margin-top: 24px; align-self: flex-start; }

/* =========================================================
   FAQ (accessible accordion + FAQ rich-result content)
   ========================================================= */
.faq-list {
  max-width: 840px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow); border-color: #f0e2d2; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 26px);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  background:
    linear-gradient(currentColor, currentColor) center/100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 100% no-repeat;
  color: var(--amber);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; border-radius: var(--radius); }
.faq-item .faq-a {
  padding: 0 clamp(18px, 2.4vw, 26px) clamp(20px, 2.6vw, 26px);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-item .faq-a a { color: var(--amber-deep); font-weight: 500; }

/* =========================================================
   Reviews carousel (homepage social proof)
   ========================================================= */
.review-carousel {
  margin-top: clamp(28px, 4vw, 48px);
}

/* Compact avatars social-proof inside hero sections */
.hero-reviews {
  margin-top: 26px;
  min-height: 46px;
}
.hero-reviews emr-avatars {
  display: block;
  font-family: var(--font-body);
  color: var(--ink);
}
.review-carousel emr-simple-carousel {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  color: var(--ink);
}
.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.review-stars .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }

/* =========================================================
   Feedback / review form
   ========================================================= */
.review-wrap {
  max-width: 760px;
  margin-inline: auto;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.4vw, 44px);
  box-shadow: var(--shadow);
}
/* Give the embedded review form room to breathe and inherit our type */
.review-card emr-collect-review-form {
  display: block;
  font-family: var(--font-body);
  color: var(--ink);
}
.review-note {
  text-align: center;
  margin-top: 22px;
  font-size: 0.92rem;
  color: var(--ink-faint);
}
.review-alt {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 640px; }
  .hero-media { max-width: 460px; margin-inline: auto; margin-top: 30px; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-figure { order: -1; }
  .feature-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .status--nav { display: none; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    z-index: 90;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    padding: 16px var(--gutter) 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 0.85em 1em; font-size: 1.05rem; }
  .nav-links .nav-cta { display: block; margin-top: 8px; }
  .nav-links .nav-cta a { background: var(--amber); color: #fff; text-align: center; }
  .nav-right .btn--nav { display: none; }

  .hero-media .photo-float { left: -12px; width: 42%; }
  .hero-media .badge-float { right: 6px; }
}

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row .btn { flex: 1 1 auto; }
  .brand-text span { display: none; }
}
