/* Very Good Pizza Co. — SEO Preview Styles
   Warm pizzeria: deep red / cream / charcoal. Mobile-first. */

:root {
  --red: #8B1A1A;
  --red-dark: #5C0F0F;
  --red-bright: #C41E1E;
  --cream: #FBF6EE;
  --cream-dark: #F0E6D4;
  --charcoal: #1F1A17;
  --charcoal-soft: #3D342E;
  --gold: #D4A017;
  --gold-soft: #E8C547;
  --white: #FFFFFF;
  --muted: #6B5E54;
  --border: #E5D9C8;
  --shadow: 0 4px 20px rgba(31, 26, 23, 0.12);
  --radius: 12px;
  --header-h: 64px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { color: var(--red-bright); }
ul { list-style: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Preview banner */
.preview-banner {
  background: var(--charcoal);
  color: var(--gold-soft);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Sticky header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 238, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(139, 26, 26, 0.06);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--charcoal);
  line-height: 1.15;
  flex-shrink: 0;
}
.logo:hover { color: var(--red); text-decoration: none; }
.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--red);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.nav {
  display: none;
  gap: 0.25rem;
  align-items: center;
}
.nav a {
  color: var(--charcoal-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--red);
  background: var(--cream-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(139, 26, 26, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--red);
  border-color: var(--red);
}
.btn-secondary:hover {
  background: var(--cream-dark);
  color: var(--red-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.header-cta { flex-shrink: 0; }
.header-cta .btn { min-height: 44px; padding: 0.55rem 1rem; font-size: 0.85rem; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 1px;
}
.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);
}
.nav-toggle span { transition: transform 0.2s, opacity 0.2s; }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  padding: 0.9rem 0.75rem;
  min-height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] {
  background: var(--cream-dark);
  color: var(--red);
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3rem 0;
}
.section-alt {
  background: var(--cream-dark);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.section-lead {
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 38rem;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(92, 15, 15, 0.92) 0%, rgba(139, 26, 26, 0.85) 45%, rgba(31, 26, 23, 0.88) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(212, 160, 23, 0.25), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 40%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 8px,
      rgba(0,0,0,0.04) 8px,
      rgba(0,0,0,0.04) 16px
    );
  color: var(--cream);
  padding: 3.25rem 0 3.5rem;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(212, 160, 23, 0.2);
  border: 1px solid rgba(232, 197, 71, 0.45);
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 6vw, 2.85rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.hero-sub {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 1.75rem;
  max-width: 28rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  font-size: 0.9rem;
  opacity: 0.85;
}
.hero-meta a {
  color: var(--gold-soft);
  font-weight: 600;
}

/* Intro */
.intro-grid {
  display: grid;
  gap: 1.5rem;
}
.intro-text p { margin-bottom: 1rem; color: var(--charcoal-soft); }
.intro-text p:last-child { margin-bottom: 0; }

/* Cards */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.card:hover { transform: translateY(-2px); }
.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Story teaser */
.story-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.25rem;
}
.story-box h2 { margin-bottom: 0.5rem; }
.story-box p { color: var(--charcoal-soft); margin-bottom: 1rem; }

/* NAP / Hours block */
.nap-grid {
  display: grid;
  gap: 1.5rem;
}
.nap-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.nap-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--red);
}
.nap-card p, .nap-card li {
  color: var(--charcoal-soft);
  margin-bottom: 0.4rem;
}
.nap-card a {
  font-weight: 600;
  text-decoration: none;
}
.nap-card a:hover { text-decoration: underline; }
.hours-list {
  display: grid;
  gap: 0.35rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--charcoal); }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--red-dark), var(--red) 60%, var(--charcoal));
  color: var(--cream);
  padding: 2.25rem 0;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.25rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.page-hero p {
  opacity: 0.9;
  max-width: 36rem;
  font-size: 1.05rem;
}

/* Menu page */
.menu-cat {
  margin-bottom: 2.5rem;
}
.menu-cat h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--red);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 1.25rem;
  display: inline-block;
}
.menu-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.menu-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
}
.menu-item .price {
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  font-size: 0.95rem;
}
.menu-item p {
  color: var(--muted);
  font-size: 0.92rem;
}
.menu-note {
  background: var(--cream-dark);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1rem 0 1.5rem;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

.sticky-order {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 90;
  box-shadow: 0 6px 24px rgba(139, 26, 26, 0.4);
}

/* Towns grid */
.towns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
}
.town-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  text-align: center;
}

/* About */
.prose {
  max-width: 42rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin: 2rem 0 0.75rem;
}
.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.feature-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.feature-list .check {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* Map placeholder */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream-dark);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}
.map-embed a.btn { margin-top: 0.5rem; }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: #C9BDB2;
  padding: 2.5rem 0 1.5rem;
  margin-top: 1rem;
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.site-footer h3 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.site-footer a {
  color: var(--gold-soft);
  text-decoration: none;
}
.site-footer a:hover { text-decoration: underline; }
.site-footer p, .site-footer li {
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}
.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  text-align: center;
  color: #8A7E74;
}
.footer-preview {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--cream);
  padding: 2.5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  margin-bottom: 0.5rem;
}
.cta-band p {
  opacity: 0.9;
  margin-bottom: 1.25rem;
}
.cta-band .hero-ctas {
  justify-content: center;
  margin-bottom: 0;
}

/* Desktop */
@media (min-width: 768px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .header-cta .btn { min-height: 48px; padding: 0.7rem 1.25rem; font-size: 0.95rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .nap-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .intro-grid { grid-template-columns: 1.4fr 1fr; align-items: center; }
  .story-box { grid-template-columns: 1.5fr auto; align-items: center; }
  .hero { padding: 4.5rem 0 4.75rem; }
}

@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card { transition: none; }
}

/* Logo image */
.logo {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
}
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .logo-img { width: 56px; height: 56px; }
}

/* Hero with background photo */
.hero {
  position: relative;
  color: var(--white);
  background: var(--charcoal);
  overflow: hidden;
  padding: 3.5rem 0 3rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(31,26,23,0.92) 0%, rgba(31,26,23,0.72) 45%, rgba(139,26,26,0.45) 100%),
    url("images/hero-web.jpg") center/cover no-repeat;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.hero-sub { color: rgba(255,255,255,0.92); }
.hero-meta { color: rgba(255,255,255,0.85); }
.hero-meta a { color: var(--gold-soft); }
.hero .btn-ghost {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* Photo gallery strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .photo-strip { grid-template-columns: repeat(4, 1fr); }
}
.photo-strip figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-dark);
}
.photo-strip img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
@media (min-width: 700px) {
  .photo-strip img { height: 180px; }
}
.photo-strip figcaption {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0.4rem 0.6rem 0.55rem;
}

/* Menu item with price + optional thumb */
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.menu-price {
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  font-size: 0.95rem;
}
.menu-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0 1.75rem;
}
@media (min-width: 700px) {
  .menu-photo-grid { grid-template-columns: repeat(4, 1fr); }
}
.menu-photo-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}
.review-stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.review-card blockquote {
  font-style: italic;
  color: var(--charcoal-soft);
  margin: 0 0 0.75rem;
  quotes: "“" "”";
}
.review-card blockquote::before { content: open-quote; }
.review-card blockquote::after { content: close-quote; }
.review-meta {
  font-size: 0.82rem;
  color: var(--muted);
}
.review-source {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.35rem;
}
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.menu-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}
.menu-jump a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}
.menu-jump a:hover { background: var(--white); color: var(--red); }
.menu-variants {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}


/* StoryBrand framework layers */
.sb-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.hero-story {
  margin-top: 0.85rem;
  max-width: 36rem;
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
}
.sb-problem-grid,
.sb-guide-grid,
.sb-stakes-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .sb-problem-grid { grid-template-columns: repeat(3, 1fr); }
  .sb-guide-grid,
  .sb-stakes-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.sb-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}
.sb-card h3 {
  font-family: var(--font-display);
  color: var(--red);
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}
.sb-guide-grid h3 {
  font-family: var(--font-display);
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.sb-steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  counter-reset: none;
}
@media (min-width: 768px) {
  .sb-steps { grid-template-columns: repeat(3, 1fr); }
}
.sb-steps li {
  display: flex;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
}
.sb-step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.sb-steps h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
}
.sb-fail,
.sb-success {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
}
.sb-fail { border-top: 4px solid var(--charcoal-soft); }
.sb-success { border-top: 4px solid var(--gold); }
.cta-story {
  margin-top: 0.5rem;
  opacity: 0.95;
  font-size: 1.05rem;
}

.hero .hero-story {
  margin: 0.75rem auto 0;
  max-width: 38rem;
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  line-height: 1.45;
}
.sb-label { color: var(--red); }
.sb-guide-grid h3 { font-family: var(--font-display); margin-bottom: 0.35rem; }

.diff-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
}
.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
}
.diff-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
