/* ============================================
   Balsamini Pizzeria — Heritage Bold
   ============================================ */

:root {
  --ink: #1F1B16;
  --ink-soft: #4A433A;
  --ink-line: #2A251D;
  --cream: #F4EDDF;
  --cream-deep: #E8DEC9;
  --cream-pale: #FBF7EE;
  --red: #B83D2D;
  --red-deep: #8E2C1E;
  --ochre: #C9A348;
  --ochre-soft: #D8B968;
  --line-soft: rgba(244,237,223,0.12);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

a { color: inherit; }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--ochre);
}

/* ============================================
   HEADER
   ============================================ */
header.site-header {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo .accent {
  color: var(--red);
  font-style: italic;
}
nav.primary {
  display: flex;
  gap: 36px;
  align-items: center;
}
nav.primary a {
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color .2s;
}
nav.primary a:hover { color: var(--ochre); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-cta {
  background: var(--red);
  color: var(--cream);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--red);
  text-decoration: none;
  display: inline-block;
  transition: background .2s, border-color .2s;
  cursor: pointer;
}
.btn-cta:hover { background: var(--red-deep); border-color: var(--red-deep); color: var(--cream); }

.btn-ghost {
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(244,237,223,0.4);
  padding: 12px 24px;
  display: inline-block;
  transition: all .2s;
}
.btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn-link {
  color: var(--ochre);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 4px;
}

/* ============================================
   HERO (homepage)
   ============================================ */
.hero {
  background: var(--ink);
  color: var(--cream);
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  overflow: hidden;
}
.hero-text {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.hero-text .eyebrow { margin-bottom: 32px; }
.hero h1 {
  font-size: clamp(48px, 5.8vw, 96px);
  color: var(--cream);
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--ochre); }
.hero p {
  font-size: 18px;
  color: rgba(244,237,223,0.75);
  margin-bottom: 48px;
  max-width: 460px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  overflow: hidden;
  background: #333;
}
.hero-image picture, .story-image picture, .story-image-full picture, .pizza-img picture, .find-image picture, .location-hero-image picture {
  width: 100%;
  height: 100%;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31,27,22,0.4) 0%, transparent 35%);
}
.hero-meta {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: var(--cream);
  color: var(--ink);
  padding: 16px 22px;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  line-height: 1.2;
}
.hero-meta small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 2px;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee {
  background: var(--red);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: scroll 30s linear infinite;
}
.marquee span { padding: 0 30px; }
.marquee em { color: var(--ochre); font-style: italic; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   PAGE INTRO (non-homepage)
   ============================================ */
.page-intro {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 48px 100px;
  text-align: center;
}
.page-intro .eyebrow { margin-bottom: 20px; display: inline-block; }
.page-intro h1 {
  font-size: clamp(48px, 5.5vw, 84px);
  color: var(--cream);
  margin-bottom: 24px;
}
.page-intro h1 em { font-style: italic; color: var(--ochre); }
.page-intro p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(244,237,223,0.75);
  line-height: 1.65;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story {
  padding: 120px 48px;
  background: var(--cream-deep);
  position: relative;
}
.story-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.story-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #aaa;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-text .eyebrow { margin-bottom: 24px; display: inline-block; }
.story h2 {
  font-size: clamp(42px, 4.5vw, 64px);
  margin-bottom: 32px;
}
.story h2 em { color: var(--red); font-style: italic; }
.story p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.7;
}
.story-signature {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-top: 24px;
  padding-left: 24px;
  border-left: 3px solid var(--red);
  line-height: 1.4;
}

/* ============================================
   FEATURED PIZZAS (homepage)
   ============================================ */
.featured {
  padding: 120px 48px;
  background: var(--ink);
  color: var(--cream);
}
.featured-head {
  max-width: 1280px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 32px;
  gap: 24px;
}
.featured-head .eyebrow {
  margin-bottom: 12px;
  display: inline-block;
}
.featured-head h2 {
  font-size: clamp(42px, 4.5vw, 64px);
  color: var(--cream);
  max-width: 600px;
}
.pizza-list {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pizza-card {
  color: inherit;
  cursor: pointer;
  display: block;
  text-decoration: none;
  transition: transform .3s;
}
.pizza-card:hover { transform: translateY(-6px); }
.pizza-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 24px;
  background: #333;
}
.pizza-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.pizza-card:hover .pizza-img img { transform: scale(1.05); }
.pizza-card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ochre);
  font-weight: 600;
}
.pizza-card h3 {
  font-size: 32px;
  color: var(--cream);
  margin-bottom: 10px;
}
.pizza-card p {
  color: rgba(244,237,223,0.65);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.pizza-price {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--ochre);
}

/* ============================================
   FULL MENU (menu page)
   ============================================ */
.menu-section {
  padding: 100px 48px;
  background: var(--cream);
}
.menu-section.alt {
  background: var(--cream-deep);
}
.menu-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.menu-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(31,27,22,0.15);
  padding-bottom: 24px;
  gap: 24px;
  flex-wrap: wrap;
}
.menu-section-head .eyebrow {
  color: var(--red);
  margin-bottom: 8px;
  display: inline-block;
}
.menu-section-head h2 {
  font-size: clamp(40px, 4vw, 56px);
  color: var(--ink);
}
.menu-section-head h2 em { color: var(--red); font-style: italic; }
.menu-section-head .subtitle {
  text-align: right;
  font-size: 13px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px dashed rgba(31,27,22,0.18);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: none; }
.menu-item .item-name {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.1;
}
.menu-item .item-name em { color: var(--red); font-style: italic; font-size: 0.7em; padding-left: 8px; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.menu-item .item-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.menu-item .item-price {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--red);
  white-space: nowrap;
  text-align: right;
}
.menu-item .item-price small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-top: 2px;
}

/* Toppings strip */
.toppings {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 48px;
}
.toppings-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.toppings-head .eyebrow { color: var(--ochre); margin-bottom: 8px; display: inline-block; }
.toppings-head h2 {
  font-size: clamp(36px, 3.5vw, 48px);
  color: var(--cream);
  margin-bottom: 50px;
}
.toppings-head h2 em { color: var(--red); font-style: italic; }
.toppings-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}
.topping {
  border: 1px solid rgba(244,237,223,0.15);
  padding: 30px 24px;
  text-align: center;
  margin: -1px 0 0 -1px;
}
.topping .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ochre);
  font-weight: 600;
  margin-bottom: 8px;
}
.topping .price {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--cream);
}

/* CTA strip */
.cta-strip {
  background: var(--red);
  color: var(--cream);
  padding: 70px 48px;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--cream);
  margin-bottom: 24px;
}
.cta-strip h2 em { color: var(--ochre); font-style: italic; }
.cta-strip p {
  font-size: 17px;
  color: rgba(244,237,223,0.85);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip .btn-cta {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.cta-strip .btn-cta:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

/* ============================================
   FIND US (homepage + dedicated page)
   ============================================ */
.find {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.find-text {
  background: var(--red);
  color: var(--cream);
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.find-text .eyebrow { color: var(--ochre); margin-bottom: 28px; display: inline-block; }
.find-text h2 {
  font-size: clamp(42px, 4.5vw, 64px);
  color: var(--cream);
  margin-bottom: 40px;
}
.find-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(244,237,223,0.2);
}
.find-row:last-child { border-bottom: 1px solid rgba(244,237,223,0.2); }
.find-row strong {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--ochre);
}
.find-row div { font-size: 16px; line-height: 1.6; }
.find-image {
  background: #444;
  overflow: hidden;
}
.find-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% 50%;
}

/* ============================================
   LOCATION LANDING PAGES
   ============================================ */
.location-hero {
  background: var(--ink);
  color: var(--cream);
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  overflow: hidden;
}
.location-hero-copy {
  padding: 68px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid rgba(244,237,223,0.08);
}
.location-hero-copy .eyebrow {
  color: var(--ochre);
  display: inline-block;
  margin-bottom: 24px;
}
.location-hero h1 {
  color: var(--cream);
  font-size: clamp(46px, 5vw, 78px);
  margin-bottom: 24px;
  max-width: 760px;
  overflow-wrap: anywhere;
}
.location-hero h1 em {
  color: var(--ochre);
  font-style: italic;
}
.location-hero-copy p {
  color: rgba(244,237,223,0.76);
  font-size: 18px;
  line-height: 1.7;
  max-width: 610px;
  margin-bottom: 34px;
}
.location-hero-image {
  position: relative;
  min-height: 520px;
  background: #333;
  overflow: hidden;
}
.location-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.location-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31,27,22,0.48) 0%, transparent 44%);
}
.location-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(244,237,223,0.16);
  border-bottom: 1px solid rgba(244,237,223,0.16);
  margin-bottom: 34px;
  max-width: 680px;
}
.location-stat-row div {
  padding: 20px 18px 20px 0;
  border-right: 1px solid rgba(244,237,223,0.12);
}
.location-stat-row div + div { padding-left: 18px; }
.location-stat-row div:last-child { border-right: none; }
.location-stat-row span {
  display: block;
  color: var(--ochre);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.location-stat-row strong {
  display: block;
  color: var(--cream);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.1;
}
.location-hero .location-actions {
  margin-top: 0;
}
.location-overview {
  background: var(--cream);
  padding: 90px 48px;
}
.location-overview-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 60px;
  align-items: start;
}
.location-copy .eyebrow {
  color: var(--red);
  display: inline-block;
  margin-bottom: 16px;
}
.location-copy h2,
.location-route-card h2,
.location-faq h2,
.nearby-pages h2 {
  font-size: clamp(38px, 4vw, 58px);
  color: var(--ink);
  margin-bottom: 28px;
}
.location-copy h2 em,
.location-route-card h2 em,
.location-faq h2 em,
.nearby-pages h2 em {
  color: var(--red);
  font-style: italic;
}
.location-copy p,
.location-route-card p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
}
.location-actions .btn-link {
  color: var(--red);
  border-color: var(--red);
}
.location-facts {
  background: var(--ink);
  color: var(--cream);
  border-top: 4px solid var(--red);
}
.location-fact {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(244,237,223,0.12);
}
.location-fact:last-child { border-bottom: none; }
.location-fact span {
  display: block;
  color: var(--ochre);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.location-fact strong {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
}
.location-route {
  background: var(--cream-deep);
  padding: 90px 48px;
}
.location-route-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
}
.location-route-card .eyebrow,
.location-landmarks .eyebrow,
.location-faq .eyebrow,
.nearby-pages .eyebrow {
  color: var(--red);
  display: inline-block;
  margin-bottom: 14px;
}
.location-landmarks {
  background: var(--cream-pale);
  border: 1px solid rgba(31,27,22,0.12);
  padding: 40px;
}
.location-landmarks ul {
  list-style: none;
}
.location-landmarks li {
  border-top: 1px dashed rgba(31,27,22,0.18);
  color: var(--ink);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 25px;
  line-height: 1.2;
  padding: 18px 0;
}
.location-landmarks li:first-child { border-top: none; padding-top: 0; }
.location-landmarks li:last-child { padding-bottom: 0; }
.location-faq {
  background: var(--cream);
  padding: 90px 48px;
}
.location-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.location-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.location-faq-item {
  border: 1px solid rgba(31,27,22,0.14);
  margin: -1px 0 0 -1px;
  padding: 32px;
  background: var(--cream-pale);
}
.location-faq-item h3 {
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 12px;
}
.location-faq-item p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.nearby-pages {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 48px;
}
.nearby-pages-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.nearby-pages .eyebrow { color: var(--ochre); }
.nearby-pages h2 {
  color: var(--cream);
  margin-bottom: 32px;
}
.nearby-pages h2 em { color: var(--ochre); }
.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.nearby-links a {
  border: 1px solid rgba(244,237,223,0.22);
  color: var(--cream);
  padding: 12px 16px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}
.nearby-links a:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

/* ============================================
   FOOTER
   ============================================ */
footer.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 48px 30px;
  border-top: 4px solid var(--red);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ochre);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col p, .footer-col a {
  color: rgba(244,237,223,0.7);
  font-size: 15px;
  line-height: 1.7;
  text-decoration: none;
  display: block;
  transition: color .2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-col .logo { font-size: 36px; margin-bottom: 14px; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(244,237,223,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(244,237,223,0.4);
  letter-spacing: 0.05em;
}
.footer-bottom a {
  color: rgba(244,237,223,0.64);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--cream); }

/* ============================================
   ANALYTICS CONSENT
   ============================================ */
.analytics-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: 880px;
  margin: 0 auto;
  background: var(--cream-pale);
  color: var(--ink);
  border: 1px solid rgba(31,27,22,0.18);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(31,27,22,0.28);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.analytics-consent p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.analytics-consent a {
  color: var(--red-deep);
  font-weight: 700;
}
.analytics-consent-actions {
  display: flex;
  gap: 10px;
}
.analytics-btn,
.text-link {
  font: inherit;
  cursor: pointer;
}
.analytics-btn {
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.analytics-btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
}
.analytics-btn-secondary {
  background: transparent;
  color: var(--ink);
}
.text-link {
  border: none;
  background: none;
  color: var(--red-deep);
  font-weight: 800;
  text-decoration: underline;
  padding: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-text {
    padding: 60px 28px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .hero-image { aspect-ratio: 4/3; }
  .hero-meta { right: 20px; bottom: 20px; }
  .location-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .location-hero-copy {
    padding: 60px 28px;
    border-right: none;
    border-bottom: 1px solid rgba(244,237,223,0.08);
  }
  .location-hero h1 {
    font-size: clamp(42px, 8.5vw, 56px);
    max-width: 11ch;
  }
  .location-hero-copy p {
    max-width: 36rem;
  }
  .location-hero-image {
    min-height: 0;
    aspect-ratio: 4/3;
  }
  .location-stat-row {
    grid-template-columns: 1fr;
  }
  .location-stat-row div {
    border-right: none;
    border-bottom: 1px solid rgba(244,237,223,0.12);
    padding: 18px 0;
  }
  .location-stat-row div + div { padding-left: 0; }
  .location-stat-row div:last-child { border-bottom: none; }

  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .pizza-list { grid-template-columns: 1fr; gap: 30px; }
  .find { grid-template-columns: 1fr; }
  .find-text { padding: 60px 28px; }

  .menu-grid { grid-template-columns: 1fr; gap: 0 0; }
  .menu-section, .toppings, .cta-strip { padding: 70px 28px; }
  .menu-section-head { flex-direction: column; align-items: flex-start; }
  .menu-section-head .subtitle { text-align: left; }

  nav.primary { display: none; }
  nav.primary.cta-only { display: flex; }
  nav.primary.cta-only a:not(.btn-cta) { display: none; }
  header.site-header { padding: 16px 24px; }

  .story, .featured { padding: 80px 28px; }
  .featured-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .page-intro { padding: 60px 28px 70px; }
  .location-overview,
  .location-route,
  .location-faq,
  .nearby-pages {
    padding: 70px 28px;
  }
  .location-overview-inner,
  .location-route-inner,
  .location-faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .location-landmarks {
    padding: 30px 24px;
  }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .analytics-consent {
    grid-template-columns: 1fr;
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .analytics-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 16px;
  }
  header.site-header {
    padding: 14px 20px;
    gap: 16px;
    justify-content: flex-start;
  }
  .logo {
    font-size: 22px;
    flex: 0 0 auto;
  }
  nav.primary.cta-only {
    margin-left: 6px;
    min-width: 0;
  }
  nav.primary .btn-cta {
    padding: 10px 14px;
    font-size: 12px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
  .location-hero-copy {
    padding: 54px 24px 48px;
    max-width: 390px;
    width: 100%;
  }
  .location-hero h1 {
    font-size: 38px;
    max-width: 330px;
    margin-bottom: 20px;
  }
  .location-hero-copy p {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 330px;
  }
  .location-stat-row {
    margin-bottom: 28px;
  }
  .location-stat-row strong {
    font-size: 24px;
  }
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  .location-actions .btn-cta,
  .location-actions .btn-ghost {
    width: 100%;
    text-align: center;
    padding-inline: 16px;
  }
  .location-hero-image {
    aspect-ratio: 1 / 0.78;
  }
  .footer-inner { grid-template-columns: 1fr; }
}
