:root {
  --seo-green: #14351f;
  --seo-green-dark: #0d2616;
  --seo-wine: #8f1d2c;
  --seo-cream: #fff8ee;
  --seo-ink: #2d2824;
  --seo-muted: #6d625b;
  --seo-white: #fff;
  --seo-shadow: 0 20px 55px rgba(20, 53, 31, .16);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--seo-ink);
  background: var(--seo-cream);
  font-family: "Poppins", sans-serif;
}

.seo-local-page { overflow: hidden; }

.seo-local-hero {
  position: relative;
  display: flex;
  min-height: 82vh;
  align-items: center;
  color: var(--seo-white);
  background:
    linear-gradient(90deg, rgba(10, 28, 16, .9), rgba(10, 28, 16, .48), rgba(10, 28, 16, .78)),
    url("/img/hero/linguini-bogavante.webp") center / cover no-repeat;
}

.seo-local-hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 88px;
  background: linear-gradient(180deg, transparent, var(--seo-cream));
  content: "";
}

.seo-local-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.seo-local-hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 120px;
}

.seo-local-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  color: inherit;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
}

.seo-local-brand img {
  width: 72px;
  height: 72px;
  padding: 8px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
}

.seo-local-brand small {
  display: block;
  margin-top: 3px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
}

.seo-local-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.seo-local-hero h1 {
  max-width: 900px;
  margin: 18px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(43px, 7vw, 82px);
  line-height: .98;
  text-wrap: balance;
}

.seo-local-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.6;
}

.seo-local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.seo-local-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.seo-local-btn-primary { color: #fff; background: var(--seo-wine); }
.seo-local-btn-secondary { color: var(--seo-green); background: #fff; }

.seo-local-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 36px;
  align-items: center;
  margin-top: -55px;
  padding: 36px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--seo-shadow);
}

.seo-local-intro-image {
  min-height: 430px;
  border-radius: 18px;
  background: url("/img/interior-lafamiglia-poster.jpg") center / cover no-repeat;
}

.seo-local-page h2 {
  margin: 0 0 17px;
  color: var(--seo-green);
  font-family: "Playfair Display", serif;
  font-size: clamp(31px, 4.2vw, 48px);
  line-height: 1.08;
  text-wrap: balance;
}

.seo-local-page p {
  color: var(--seo-muted);
  font-size: 17px;
  line-height: 1.75;
}

.seo-local-page a:not(.seo-local-btn):not(.seo-local-brand) {
  color: var(--seo-wine);
  font-weight: 600;
}

.seo-local-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 76px 0;
}

.seo-local-feature {
  padding: 27px;
  border: 1px solid rgba(20, 53, 31, .1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 53, 31, .07);
}

.seo-local-feature h3 {
  margin: 0 0 9px;
  color: var(--seo-green);
  font-family: "Playfair Display", serif;
  font-size: 25px;
}

.seo-local-feature p { margin: 0; font-size: 15px; }

.seo-local-story { padding: 78px 0; background: #fff; }
.seo-local-story-copy { max-width: 850px; }

.seo-local-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
  padding: 82px 0;
}

.seo-local-facts { display: grid; gap: 14px; }

.seo-local-fact {
  padding: 18px 20px;
  border-left: 4px solid var(--seo-wine);
  border-radius: 0 14px 14px 0;
  background: #fff;
}

.seo-local-fact strong { display: block; color: var(--seo-green); }
.seo-local-fact p { margin: 4px 0 0; font-size: 15px; }

.seo-local-faq { padding: 78px 0; background: var(--seo-green); }
.seo-local-faq h2 { color: #fff; }
.seo-local-faq-list { display: grid; gap: 13px; }

.seo-local-faq details {
  padding: 19px 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.seo-local-faq summary { cursor: pointer; font-weight: 700; }
.seo-local-faq p { margin: 12px 0 0; color: rgba(255, 255, 255, .84); }

.seo-local-related { padding: 70px 0; text-align: center; }
.seo-local-related-links { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; }
.seo-local-related-links a { padding: 10px 15px; border-radius: 999px; background: #fff; text-decoration: none; }

.seo-local-cta {
  padding: 80px 16px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--seo-wine), #64111d);
}

.seo-local-cta h2 { color: #fff; }
.seo-local-cta p { max-width: 720px; margin: 0 auto; color: rgba(255, 255, 255, .88); }
.seo-local-cta .seo-local-actions { justify-content: center; }

.seo-local-footer {
  padding: 28px 16px;
  color: rgba(255, 255, 255, .78);
  background: var(--seo-green-dark);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.seo-local-footer a { color: #fff; }

@media (max-width: 780px) {
  .seo-local-hero { min-height: 740px; }
  .seo-local-intro, .seo-local-info { grid-template-columns: 1fr; }
  .seo-local-intro { padding: 24px; }
  .seo-local-intro-image { min-height: 480px; }
  .seo-local-features { grid-template-columns: 1fr; padding: 55px 0; }
  .seo-local-story, .seo-local-faq { padding: 58px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
