@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700;800&family=Playfair+Display+SC:wght@400;700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --color-primary: #E8B923;
  --color-primary-dark: #6B5310;
  --color-primary-darker: #3D2E08;
  --color-on-primary: #FFFFFF;
  --color-on-accent: #1C1408;
  --color-secondary: #F2CB5C;
  --color-accent: #B8860B;
  --color-accent-light: #E8C165;
  --color-background: #FFFBF5;
  --color-surface: #FFFFFF;
  --color-foreground: #2B1A12;
  --color-ink: #170D08;
  --color-ink-light: #2E1F0A;
  --color-muted: #6B5B52;
  --color-muted-bg: #FBEFE4;
  --color-border: #F0DCC9;
  --gold-gradient: linear-gradient(135deg, #B8860B 0%, #F0D27A 50%, #B8860B 100%);
  --shadow-sm: 0 2px 8px rgba(23, 13, 8, 0.07);
  --shadow-md: 0 10px 28px rgba(23, 13, 8, 0.12);
  --shadow-lg: 0 24px 64px rgba(23, 13, 8, 0.22);
  --shadow-gold: 0 8px 22px rgba(184, 134, 11, 0.28);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: 'Karla', sans-serif;
  color: var(--color-foreground);
  background: var(--color-background);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-primary-dark);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

section { padding: var(--space-6) 0; }

@media (max-width: 640px) {
  section { padding: var(--space-5) 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
  min-height: 44px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--color-accent-light); outline-offset: 2px; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-on-accent);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: var(--color-accent); box-shadow: var(--shadow-lg); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--color-on-primary);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-ghost {
  background: var(--color-surface);
  color: var(--color-foreground);
  border-color: var(--color-border);
}
.btn-ghost:hover { background: var(--color-muted-bg); border-color: var(--color-accent); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 200ms ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}
.brand-tagline {
  display: block;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: var(--space-4); }
.main-nav ul { list-style: none; display: flex; gap: var(--space-3); }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}
.main-nav a:hover { border-color: var(--color-accent); color: var(--color-primary-dark); }

.header-cta { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .main-nav ul { display: none; }
  .header-cta .btn-ghost-label { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-2) 0 var(--space-3);
  border-top: 1px solid var(--color-border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 15%, rgba(232,185,35,0.20) 0, transparent 38%),
    radial-gradient(circle at 88% 85%, rgba(232,185,35,0.14) 0, transparent 42%),
    linear-gradient(160deg, var(--color-ink) 0%, var(--color-ink-light) 50%, var(--color-ink) 100%);
  color: var(--color-on-primary);
  overflow: hidden;
  padding: var(--space-7) 0 var(--space-6);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 68px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0,0,0,0.35), transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-5);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-2);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(232,193,101,0.35);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.badge svg { width: 14px; height: 14px; }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: var(--space-2);
}
.hero h1 em {
  font-style: italic;
  color: #FFE4B5;
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 46ch;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--space-3);
}

.hero-stats {
  display: flex;
  gap: var(--space-4);
  margin: var(--space-4) 0;
  flex-wrap: wrap;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(232,193,101,0.22);
}
.hero-stat { position: relative; padding-right: var(--space-4); }
.hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 4px; bottom: 4px;
  width: 1px;
  background: rgba(255,255,255,0.16);
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FBEFE4;
}
.hero-stat .label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.stars { color: #E8C165; display: inline-flex; }
.stars svg { width: 18px; height: 18px; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.25)); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: var(--space-3); }

.hero-card {
  position: relative;
  background: var(--color-surface);
  color: var(--color-foreground);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3) var(--space-3);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(232,193,101,0.4);
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0; left: var(--space-3); right: var(--space-3);
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 0 0 4px 4px;
}
.hero-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-card h3 svg { color: var(--color-accent); }
.hero-card-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.93rem;
}
.hero-card-row:last-of-type { border-bottom: none; }
.hero-card-row .d { font-weight: 700; }
.hero-card-row .h { color: var(--color-muted); }
.hero-card-status {
  margin-top: var(--space-2);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #16803C;
  font-size: 0.9rem;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #16803C; }

/* Section headers */
.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--space-5); }
.section-head .eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 4px;
}
.section-head .eyebrow-row::before,
.section-head .eyebrow-row::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-gradient);
}
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 8px 0 12px; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; }

/* Ornamental divider between sections */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--color-accent);
}
.ornament-divider::before,
.ornament-divider::after {
  content: "";
  height: 1px;
  width: 100px;
  max-width: 22vw;
  background: linear-gradient(90deg, transparent, var(--color-accent-light));
}
.ornament-divider::after { background: linear-gradient(90deg, var(--color-accent-light), transparent); }

/* Gold top strip */
.gold-strip { height: 4px; background: var(--gold-gradient); background-size: 200% 100%; }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(.22,.61,.36,1), transform 700ms cubic-bezier(.22,.61,.36,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* MENU — main focus */
.menu-section { background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }

.menu-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 14px;
  margin-bottom: var(--space-4);
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.menu-tabs::-webkit-scrollbar { height: 6px; }
.menu-tabs::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 999px; }

.menu-tab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 11px 20px;
  border-radius: 999px;
  border: 2px solid var(--color-border);
  background: var(--color-background);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 180ms ease;
  min-height: 44px;
  color: var(--color-foreground);
}
.menu-tab:hover { border-color: var(--color-accent); }
.menu-tab.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-color: var(--color-accent);
  color: var(--color-on-accent);
  box-shadow: var(--shadow-gold);
}
.menu-tab:focus-visible { outline: 3px solid var(--color-accent-light); outline-offset: 2px; }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 320ms ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 6;
  background: var(--color-muted-bg);
}
.menu-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23,13,8,0.55) 0%, transparent 35%);
  pointer-events: none;
}
.menu-banner figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  background: rgba(23,13,8,0.35);
  padding: 3px 10px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}
.menu-banner figcaption a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

.menu-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}
.menu-panel-head h3 { font-size: 1.6rem; color: var(--color-primary-dark); }
.menu-panel-note { color: var(--color-muted); font-size: 0.9rem; max-width: 42ch; }

.menu-size-legend {
  display: flex;
  gap: var(--space-3);
  font-size: 0.78rem;
  color: var(--color-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.menu-item {
  position: relative;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 20px 18px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}
.menu-item:hover {
  transform: translateY(-3px);
  background: var(--color-surface);
  border-color: var(--color-accent-light);
  box-shadow: 0 10px 28px rgba(184, 134, 11, 0.14), var(--shadow-sm);
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.menu-item-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.08rem; }
.menu-item-name .num { color: var(--color-accent); font-weight: 800; margin-right: 6px; font-family: 'Karla', sans-serif; font-size: 0.85rem; }
.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--color-primary-dark);
  font-size: 1.08rem;
  white-space: nowrap;
}
.menu-item-desc { color: var(--color-muted); font-size: 0.88rem; }

.menu-item-prices {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.menu-item-prices span {
  background: var(--color-muted-bg);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.menu-highlight {
  border-color: var(--color-accent);
  background: linear-gradient(180deg, #FFF7E9, var(--color-background));
  position: relative;
}
.menu-highlight::after {
  content: "Popular";
  position: absolute;
  top: -11px; right: 16px;
  background: var(--gold-gradient);
  color: var(--color-ink);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.menu-cta {
  margin-top: var(--space-5);
  text-align: center;
  padding: var(--space-4);
  background: var(--color-muted-bg);
  border-radius: var(--radius-lg);
}
.menu-cta p { color: var(--color-muted); margin-bottom: var(--space-2); }
.menu-cta .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Build your own pizza */
.self-pizza-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-2);
  font-size: 0.92rem;
}
.self-pizza-table th, .self-pizza-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border);
}
.self-pizza-table th { color: var(--color-muted); text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.05em; }
.self-pizza-table td:last-child, .self-pizza-table th:last-child { text-align: right; font-weight: 700; color: var(--color-primary-dark); white-space: nowrap; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }

.about-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.about-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.about-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--color-muted-bg);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-2);
  border: 1px solid var(--color-accent-light);
  box-shadow: var(--shadow-sm);
}
.about-icon svg { width: 28px; height: 28px; }
.about-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.about-card p { color: var(--color-muted); font-size: 0.93rem; }

/* Info: hours / location / contact */
.info-section { background: var(--color-muted-bg); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: start;
}
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.info-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; margin-bottom: var(--space-3); color: var(--color-primary-dark); }
.info-card h3 svg { width: 22px; height: 22px; color: var(--color-accent); }

.hours-table { width: 100%; }
.hours-table tr td { padding: 8px 0; border-bottom: 1px solid var(--color-border); font-size: 0.95rem; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 700; }
.hours-table td:last-child { text-align: right; color: var(--color-muted); }
.hours-table tr.today td { color: var(--color-primary-dark); }
.hours-table tr.today td:first-child::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-right: 8px;
}

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-2); }
.service-tag {
  background: var(--color-muted-bg);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-tag svg { width: 15px; height: 15px; color: var(--color-accent); }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-list .ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-muted-bg); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-list .ic svg { width: 18px; height: 18px; }
.contact-list .t { font-weight: 700; }
.contact-list .s { color: var(--color-muted); font-size: 0.9rem; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-3);
  border: 1px solid var(--color-border);
}
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }

/* Reviews */
.reviews-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  box-shadow: var(--shadow-md);
}
.rating-badge .score {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--color-primary-dark);
  padding: 6px 16px;
  border: 2px solid var(--color-accent-light);
  border-radius: 14px;
  background: linear-gradient(180deg, #FFF7E9, transparent);
}
.rating-badge .meta { font-size: 0.85rem; color: var(--color-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-3);
}
.review-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3) var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 4px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--color-muted-bg);
  line-height: 1;
  z-index: 0;
}
.review-card > * { position: relative; z-index: 1; }
.review-stars { color: #FFB020; display: flex; gap: 2px; margin-bottom: 10px; }
.review-stars svg { width: 16px; height: 16px; }
.review-card p.txt { font-size: 0.94rem; color: var(--color-foreground); margin-bottom: var(--space-2); }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-on-accent); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.review-author .name { font-weight: 700; font-size: 0.9rem; }
.review-author .when { font-size: 0.78rem; color: var(--color-muted); }

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(232,185,35,0.18), transparent 45%),
    linear-gradient(160deg, var(--color-ink), var(--color-ink-light) 55%, var(--color-ink));
  color: white;
  text-align: center;
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-3);
  margin: 0 var(--space-3);
  border: 1px solid rgba(232,193,101,0.3);
}
.final-cta h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: var(--space-2); }
.final-cta p { color: rgba(255,255,255,0.9); max-width: 50ch; margin: 0 auto var(--space-3); }
.final-cta .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.75);
  padding: var(--space-5) 0 var(--space-3);
  margin-top: var(--space-6);
  border-top: 3px solid;
  border-image: var(--gold-gradient) 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-logo { height: 44px; width: auto; }
footer h4 { color: white; font-family: 'Karla', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-2); }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 0.9rem; }
footer a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: white;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* WhatsApp floating order button */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
  z-index: 90;
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 20px 40px rgba(37, 211, 102, 0.35); }
.whatsapp-fab:focus-visible { outline: 3px solid var(--color-accent-light); outline-offset: 3px; }
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.5;
  animation: whatsapp-pulse 2.2s ease-out infinite;
}
@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab::after { animation: none; display: none; }
}
