/* =============================================
   Restaurante Lá na Criação – style.css
   Design: Warm Earthy Elegance
   ============================================= */

:root {
  --primary: #B5451B;
  --primary-dark: #8B3012;
  --primary-light: #E8633A;
  --warm: #F5A623;
  --warm-light: #FDF3E7;
  --green: #1E7E34;
  --green-dark: #155724;
  --text: #1A1008;
  --text-muted: #6B5E52;
  --bg: #FDFAF7;
  --white: #FFFFFF;
  --border: #EDE3D6;
  --shadow-sm: 0 2px 8px rgba(26, 16, 8, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 16, 8, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 16, 8, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 28px; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.desktop-nav a:hover { color: var(--primary); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.header-phone:hover { background: var(--primary-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .nav-cta {
  margin-top: 8px;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-bottom: none;
}
.mobile-nav .nav-cta.green { background: var(--green); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1EBE57; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-insta { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }
.btn-insta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ===================== SECTION COMMON ===================== */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--warm-light);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-tag.light { background: rgba(255,255,255,0.15); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-header.light h2 { color: var(--white); }
.section-header p { color: var(--text-muted); font-size: 17px; max-width: 520px; margin: 0 auto; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    #6B3A1F 0%,
    #8B4513 25%,
    #A0522D 50%,
    #7B3F00 75%,
    #4A2000 100%
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 10, 0, 0.88) 0%,
    rgba(26, 10, 0, 0.6) 60%,
    rgba(26, 10, 0, 0.4) 100%
  );
  z-index: 1;
}

/* Decorative food icons on hero */
.hero-bg::after {
  content: '🍲 🍣 🥗 🫘 🐟 🍚';
  position: absolute;
  font-size: 120px;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  letter-spacing: 60px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 100px 24px 140px;
  margin: 0 auto 0 8%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.badge-sep { opacity: 0.5; }

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.hero-info span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 24px;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--primary);
  padding: 24px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}
.trust-icon { font-size: 22px; }

/* ===================== MENU ===================== */
.menu-section {
  padding: 96px 0;
  background: var(--bg);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.menu-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary), var(--shadow-md);
}
.menu-card-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.menu-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.feijoada-img .menu-img-placeholder { background: linear-gradient(135deg, #3D2010, #6B3522); }
.sushi-img .menu-img-placeholder { background: linear-gradient(135deg, #1A3A4A, #2D6A8A); }
.salada-img .menu-img-placeholder { background: linear-gradient(135deg, #1E4A1A, #3A7C34); }
.bacalhau-img .menu-img-placeholder { background: linear-gradient(135deg, #3A3010, #6B5820); }
.feijao-img .menu-img-placeholder { background: linear-gradient(135deg, #4A2810, #8B5828); }
.porpetone-img .menu-img-placeholder { background: linear-gradient(135deg, #3A1A1A, #6B3030); }

.menu-card-body { padding: 20px; }
.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.menu-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.menu-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--warm-light);
  color: var(--primary);
  letter-spacing: 0.3px;
}
.menu-cta { text-align: center; }

/* ===================== ABOUT ===================== */
.about-section {
  padding: 96px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-img-block {
  position: relative;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8B4513, #D2691E, #CD853F);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.8);
}
.about-emoji { font-size: 80px; }
.about-img-placeholder p { font-size: 18px; font-weight: 600; text-align: center; padding: 0 20px; }
.about-badge-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-badge-float span { font-size: 20px; font-weight: 700; color: var(--primary); }
.about-badge-float small { font-size: 11px; color: var(--text-muted); }

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.feature-pill {
  background: var(--warm-light);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
}
.inclusive-banner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fff3f9, #f3f0ff);
  border: 1px solid #ddd0f0;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 8px;
}
.inclusive-icon { font-size: 28px; flex-shrink: 0; }
.inclusive-banner p { font-size: 14px; line-height: 1.6; color: var(--text); }

/* ===================== REVIEWS ===================== */
.reviews-section {
  padding: 96px 0;
  background: linear-gradient(160deg, #2C0F00, #4A1800);
}
.reviews-section .section-header h2 { color: var(--white); }
.reviews-section .section-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.rating-big {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.rating-stars-big { font-size: 22px; }
.rating-count { color: rgba(255,255,255,0.65); font-size: 14px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: all 0.3s;
}
.review-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-3px);
}
.review-card.featured-review {
  background: rgba(255,255,255,0.13);
  border-color: rgba(245, 166, 35, 0.5);
  grid-column: 2;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.reviewer-info strong { color: var(--white); font-size: 15px; display: block; }
.review-stars { font-size: 12px; }
.review-card p { color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.7; font-style: italic; }
.review-highlight-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(245, 166, 35, 0.2);
  color: var(--warm);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ===================== LOCATION ===================== */
.location-section {
  padding: 96px 0;
  background: var(--bg);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.location-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.location-info > p { color: var(--text-muted); margin-bottom: 28px; }
.address-block {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.6;
}
.address-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.address-block a { color: var(--primary); font-weight: 600; font-size: 17px; }
.location-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.map-placeholder { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }

/* ===================== HOURS ===================== */
.hours-section {
  padding: 80px 0;
  background: var(--white);
}
.hours-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.hours-grid {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; }
.hours-row.closed .time { color: var(--text-muted); }
.hours-row.open .time { color: var(--green); font-weight: 600; }
.hours-note { font-size: 13px; color: var(--text-muted); }

/* ===================== INSTAGRAM ===================== */
.instagram-section {
  padding: 80px 0;
  background: var(--bg);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}
.insta-item {
  aspect-ratio: 1;
  background: var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
  transition: transform 0.2s;
}
.insta-item:hover { transform: scale(1.04); }
.insta-cta { text-align: center; }

/* ===================== FAQ ===================== */
.faq-section {
  padding: 96px 0;
  background: var(--white);
}
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.2s;
  gap: 12px;
}
.faq-question:hover { background: var(--warm-light); }
.faq-question[aria-expanded="true"] { background: var(--warm-light); color: var(--primary); }
.faq-arrow {
  font-size: 12px;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--text-muted);
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 16px 22px 20px;
  border-top: 1px solid var(--border);
  background: var(--warm-light);
}
.faq-answer.open { display: block; }
.faq-answer p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ===================== FINAL CTA ===================== */
.final-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, #B5451B, #8B3012);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '🍽️';
  position: absolute;
  font-size: 300px;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.final-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 36px;
}
.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #0F0600;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-rainbow { font-size: 14px; }
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--warm); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-rating { color: var(--warm); }

/* ===================== MOBILE STICKY BAR ===================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}
.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.sticky-icon { font-size: 20px; }
.sticky-call { color: var(--primary); }
.sticky-call:hover { background: var(--warm-light); }
.sticky-whatsapp { color: var(--green); background: rgba(37,211,102,0.06); }
.sticky-whatsapp:hover { background: rgba(37,211,102,0.12); }
.sticky-maps { color: #1A73E8; }
.sticky-maps:hover { background: rgba(26,115,232,0.06); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card.featured-review { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .header-phone span:not(.phone-icon) { display: none; }
  .hamburger { display: flex; }
  
  .hero-content { margin: 0 auto; padding: 80px 24px 120px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-info { justify-content: center; }
  
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  
  .menu-grid { grid-template-columns: 1fr; }
  
  .about-grid { grid-template-columns: 1fr; }
  .about-img-block { height: 280px; }
  
  .reviews-grid { grid-template-columns: 1fr; }
  
  .location-grid { grid-template-columns: 1fr; }
  
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .mobile-sticky-bar { display: flex; }
  
  body { padding-bottom: 72px; }

  .rating-summary { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
  .final-cta-btns { flex-direction: column; align-items: stretch; }
  .final-cta-btns .btn { text-align: center; }
  .location-ctas { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
