/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #c0171a;
  --red-dk:     #961215;
  --red-light:  #e8201f;
  --gold:       #e8a020;
  --dark:       #111111;
  --charcoal:   #1e1e1e;
  --text:       #1c1c1c;
  --text-light: #5a5a5a;
  --bg-light:   #fafafa;
  --bg-warm:    #f7f3ee;
  --cream:      #fdf8f2;
  --white:      #ffffff;
  --radius:     10px;
  --shadow:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.16);
  --trans:      .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 0;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}
.navbar.scrolled {
  background: rgba(17,17,17,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
  padding: 8px 0;
}
.nav-container { max-width: 1260px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--white); }
.logo-slice { font-size: 1.8rem; }
.logo-words { display: flex; flex-direction: column; line-height: 1.1; }
.logo-louies { font-family: 'Dancing Script', cursive; font-size: 1.4rem; color: var(--gold); }
.logo-pizza { font-family: 'Oswald', sans-serif; font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.7); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.82); font-size: .84rem; font-weight: 500; padding: 7px 10px; border-radius: 6px; transition: color var(--trans); }
.nav-links a:hover { color: var(--gold); }
.nav-order-group { display: flex; gap: 6px; margin-left: 6px; }

.btn-order {
  display: inline-block;
  background: var(--red) !important;
  color: var(--white) !important;
  font-size: .8rem !important; font-weight: 600 !important;
  padding: 8px 14px !important;
  border-radius: 50px !important;
  transition: background var(--trans), transform var(--trans) !important;
  white-space: nowrap;
}
.btn-order:hover { background: var(--red-dk) !important; transform: translateY(-1px); }
.btn-order-2 { background: var(--charcoal) !important; border: 1px solid rgba(255,255,255,.2) !important; }
.btn-order-2:hover { background: #333 !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }

/* ===========================
   HERO
=========================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }

.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 10s ease forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.6) 0%, rgba(0,0,0,.42) 40%, rgba(0,0,0,.78) 100%); z-index: 1; }

.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 820px; padding: 0 24px; animation: fadeUp .9s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.hero-title { font-family: 'Oswald', sans-serif; font-size: clamp(3.5rem, 10vw, 7rem); font-weight: 700; line-height: .95; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .02em; }
.hero-title span { color: var(--red-light); display: block; }
.hero-tagline-script { font-family: 'Dancing Script', cursive; font-size: clamp(1.4rem, 3.5vw, 2.2rem); color: var(--gold); margin-bottom: 12px; }
.hero-subtitle { font-size: clamp(.9rem, 2vw, 1.1rem); color: rgba(255,255,255,.78); margin-bottom: 24px; }

.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 32px; }
.badge { background: rgba(255,255,255,.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); color: var(--white); font-size: .78rem; font-weight: 500; padding: 6px 14px; border-radius: 50px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 50px;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 4px 20px rgba(192,23,26,.45);
}
.btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,23,26,.55); }
.btn-alt { background: var(--charcoal); box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.btn-alt:hover { background: #333; }

.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; text-align: center; z-index: 2; }
.scroll-arrow { margin: 8px auto 0; width: 18px; height: 18px; border-right: 2px solid rgba(255,255,255,.4); border-bottom: 2px solid rgba(255,255,255,.4); transform: rotate(45deg); animation: bounce 1.6s infinite; }
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(-3px);} 50%{transform:rotate(45deg) translateY(3px);} }

/* ===========================
   PROMO BANNER
=========================== */
.promo-banner { background: var(--gold); color: var(--dark); padding: 12px 0; text-align: center; }
.promo-inner { font-size: .9rem; font-weight: 500; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; }
.promo-fire { font-size: 1.1rem; }
.promo-inner a { font-weight: 700; text-decoration: underline; color: var(--dark); }
.promo-inner a:hover { opacity: .75; }

/* ===========================
   INFO STRIP
=========================== */
.info-strip { background: var(--charcoal); color: rgba(255,255,255,.8); padding: 14px 0; }
.info-strip-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 24px; font-size: .85rem; }
.info-item { display: flex; align-items: center; gap: 8px; }
.info-icon { font-size: 1rem; }
.info-sep { width: 1px; height: 20px; background: rgba(255,255,255,.2); }
.info-sep-sm { opacity: .4; }
.info-item a { color: var(--gold); }
.info-item a:hover { text-decoration: underline; }

/* ===========================
   SECTIONS
=========================== */
.section { padding: 96px 0; }
.section-label { font-size: .73rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }
.center-label { text-align: center; }
.section-title { font-family: 'Oswald', sans-serif; font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 600; line-height: 1.15; color: var(--dark); margin-bottom: 20px; text-transform: uppercase; }
.section-title.center { text-align: center; }
.section-sub { font-size: 1rem; color: var(--text-light); text-align: center; max-width: 560px; margin: 0 auto 48px; }

/* ===========================
   ABOUT
=========================== */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.img-stack { position: relative; }
.about-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.main-img { width: 100%; height: 420px; }
.float-img { position: absolute; bottom: -28px; right: -28px; width: 200px; height: 200px; border-radius: var(--radius); border: 4px solid var(--white); box-shadow: var(--shadow-lg); }
.about-pillars { display: flex; gap: 12px; margin-top: 48px; }
.pillar { flex: 1; background: var(--white); border-radius: var(--radius); padding: 16px 12px; text-align: center; box-shadow: var(--shadow); font-size: .82rem; font-weight: 600; color: var(--text); }
.pillar-icon { display: block; font-size: 1.6rem; margin-bottom: 6px; }

.about-text p { color: var(--text-light); margin-bottom: 16px; }
.about-badges-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.about-badge { background: var(--bg-warm); border: 1px solid #e8ddd0; color: var(--text); font-size: .8rem; font-weight: 500; padding: 5px 12px; border-radius: 50px; }
.about-features { list-style: none; margin: 0 0 28px; display: flex; flex-direction: column; gap: 9px; }
.about-features li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: .95rem; }
.check { color: var(--red); font-weight: 700; }
.about-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===========================
   PIZZA STYLES STRIP
=========================== */
.styles-strip { background: var(--dark); padding: 72px 0; }
.styles-strip .section-label { color: var(--gold); }
.styles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.style-card { background: #1e1e1e; border-radius: var(--radius); overflow: hidden; transition: transform var(--trans), box-shadow var(--trans); }
.style-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.style-card img { height: 180px; width: 100%; transition: transform .4s ease; }
.style-card:hover img { transform: scale(1.06); }
.style-info { padding: 16px; }
.style-info h3 { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--white); margin-bottom: 4px; }
.style-info p { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 8px; }
.style-price { font-size: .88rem; font-weight: 700; color: var(--gold); }

/* ===========================
   MENU
=========================== */
.menu-section { background: var(--bg-warm); }
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.tab-btn {
  background: var(--white); border: 2px solid transparent; color: var(--text-light);
  font-family: 'Oswald', sans-serif; font-size: .88rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 50px; cursor: pointer; transition: all var(--trans);
}
.tab-btn:hover { border-color: var(--red); color: var(--red); }
.tab-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.menu-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--trans), box-shadow var(--trans); }
.menu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.menu-card.featured { border: 2px solid var(--gold); }
.menu-img-wrap { position: relative; height: 195px; overflow: hidden; }
.menu-img-wrap img { width: 100%; height: 100%; transition: transform .4s ease; }
.menu-card:hover .menu-img-wrap img { transform: scale(1.07); }
.menu-tag { position: absolute; top: 10px; left: 10px; background: var(--red); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; }
.menu-info { padding: 16px 18px 20px; }
.menu-info h3 { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--dark); margin-bottom: 6px; }
.menu-info p { font-size: .84rem; color: var(--text-light); line-height: 1.5; margin-bottom: 10px; }
.price { font-size: .95rem; font-weight: 700; color: var(--red); }

.menu-cta { text-align: center; margin-top: 52px; }
.menu-cta p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 18px; }
.menu-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   GALLERY
=========================== */
.gallery-section { background: var(--dark); padding: 96px 0 0; }
.gallery-section .section-label { color: var(--gold); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-sub { color: rgba(255,255,255,.5); }
.gallery-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 5px; }
.g-item { position: relative; overflow: hidden; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.1); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%); opacity: 0; transition: opacity var(--trans); display: flex; align-items: flex-end; padding: 16px; }
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span { color: var(--white); font-weight: 600; font-size: .88rem; font-family: 'Oswald', sans-serif; letter-spacing: .06em; text-transform: uppercase; }

/* ===========================
   LOCATIONS
=========================== */
.locations-section { background: var(--cream); }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.location-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); transition: transform var(--trans); }
.location-card:hover { transform: translateY(-4px); }
.location-img { position: relative; height: 220px; overflow: hidden; }
.location-img img { width: 100%; height: 100%; transition: transform .4s ease; }
.location-card:hover .location-img img { transform: scale(1.05); }
.location-badge { position: absolute; top: 14px; left: 14px; background: var(--red); color: var(--white); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; }
.loc-badge-2 { background: var(--charcoal); }
.location-body { padding: 24px 26px 28px; }
.location-body h3 { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--dark); margin-bottom: 14px; }
.loc-deal-badge { background: #fff3cd; border: 1px solid #e8c840; color: #7a5800; font-size: .78rem; font-weight: 700; padding: 6px 14px; border-radius: 50px; margin-bottom: 16px; display: inline-block; }
.loc-detail { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.loc-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.loc-detail p { font-size: .9rem; color: var(--text-light); margin: 0; }
.loc-detail a { color: var(--red); font-weight: 500; }
.loc-detail a:hover { text-decoration: underline; }
.hours-table { border-collapse: collapse; }
.hours-table td { padding: 3px 12px 3px 0; font-size: .88rem; color: var(--text-light); }
.hours-table td:first-child { font-weight: 500; color: var(--text); white-space: nowrap; }
.loc-btn { margin-top: 8px; display: inline-block; }

/* ===========================
   MAPS ROW
=========================== */
.maps-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.map-block { position: relative; }
.map-label { position: absolute; top: 14px; left: 14px; z-index: 10; background: var(--red); color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; }
.map-block iframe { display: block; }

/* ===========================
   REVIEWS
=========================== */
.reviews-section { background: var(--bg-light); }
.rating-summary { text-align: center; margin-bottom: 44px; }
.rating-stars-big { font-size: 2.6rem; color: var(--gold); margin-bottom: 6px; }
.rating-count { font-size: .88rem; color: var(--text-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); transition: transform var(--trans); border-top: 3px solid var(--red); }
.review-card:hover { transform: translateY(-4px); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: var(--white); font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Oswald', sans-serif; }
.review-header strong { display: block; font-size: .92rem; }
.review-stars { font-size: .82rem; color: var(--gold); }
.review-source { margin-left: auto; font-size: .68rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .1em; flex-shrink: 0; }
.review-card > p { font-size: .9rem; color: var(--text-light); line-height: 1.72; font-style: italic; }

/* ===========================
   CATERING
=========================== */
.catering-section { position: relative; min-height: 440px; display: flex; align-items: center; }
.catering-bg { position: absolute; inset: 0; overflow: hidden; }
.catering-bg img { width: 100%; height: 100%; object-fit: cover; }
.catering-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.9) 40%, rgba(0,0,0,.4) 100%); }
.catering-content { position: relative; z-index: 1; color: var(--white); max-width: 560px; padding: 80px 24px; }
.catering-content h2 { font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; text-transform: uppercase; margin-bottom: 14px; }
.catering-content p { font-size: .97rem; color: rgba(255,255,255,.75); margin-bottom: 26px; line-height: 1.7; }
.catering-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.section-label.light { color: var(--gold); }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: .88rem; line-height: 1.65; margin-bottom: 8px; }
.footer-tagline-script { font-family: 'Dancing Script', cursive; font-size: 1.1rem; color: var(--gold) !important; }
.footer-links h4, .footer-col h4 { font-family: 'Oswald', sans-serif; font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }
.footer-col p { font-size: .85rem; margin-bottom: 8px; line-height: 1.6; }
.footer-col a { color: var(--gold); }
.footer-col a:hover { text-decoration: underline; }
.footer-order-link { display: inline-block; margin-top: 8px; font-size: .85rem; font-weight: 700; color: var(--gold) !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .76rem; color: rgba(255,255,255,.3); }

/* ===========================
   FLOATING BUTTONS
=========================== */
.float-orders {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity var(--trans), transform var(--trans);
}
.float-orders.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.float-btn {
  display: block;
  color: var(--white); font-size: .85rem; font-weight: 700;
  font-family: 'Oswald', sans-serif; letter-spacing: .06em; text-transform: uppercase;
  padding: 11px 18px; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
  transition: transform var(--trans);
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-2px); }
.float-btn-1 { background: var(--red); box-shadow: 0 6px 24px rgba(192,23,26,.45); }
.float-btn-1:hover { background: var(--red-dk); }
.float-btn-2 { background: var(--charcoal); }
.float-btn-2:hover { background: #333; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .locations-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .maps-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: min(340px, 90vw); background: #111;
    flex-direction: column; align-items: flex-start;
    padding: 80px 32px 40px;
    transition: right var(--trans); gap: 4px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; padding: 10px 0; width: 100%; }
  .nav-order-group { flex-direction: column; margin-top: 16px; gap: 8px; width: 100%; }
  .btn-order { text-align: center; width: 100%; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .float-img { right: 0; bottom: -16px; width: 140px; height: 140px; }
  .about-pillars { flex-wrap: wrap; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-tall { grid-row: span 1; }
  .g-wide { grid-column: span 2; }

  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-title { font-size: 3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-wide, .g-tall { grid-column: span 1; grid-row: span 1; }
  .float-orders { bottom: 16px; right: 16px; }
  .float-btn { font-size: .78rem; padding: 10px 14px; }
  .styles-grid { grid-template-columns: 1fr; }
  .about-cta-row { flex-direction: column; }
  .hero-cta { flex-direction: column; align-items: center; }
  .promo-inner { font-size: .8rem; text-align: center; }
}
