/* ===================== Restaurant Garuda — base ===================== */
:root {
  --charcoal: #1B1410;
  --charcoal-soft: #2A211B;
  --orange: #E85D04;
  --orange-light: #FF8A1E;
  --gold: #FFC93C;
  --green: #2F5233;
  --green-dark: #1F3823;
  --chili: #C1272D;
  --cream: #FFF8EC;
  --cream-dim: #F5EAD6;
  --ink: #2A211B;
  --white: #FFFFFF;

  --font-display: 'Baloo 2', 'Trebuchet MS', 'Arial Rounded MT Bold', sans-serif;
  --font-body: 'Mukta', 'Segoe UI', Tahoma, sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 12px 30px rgba(27, 20, 16, 0.16);
  --shadow-tight: 0 4px 14px rgba(27, 20, 16, 0.14);
}

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Mukta:wght@400;500;600;700&display=swap');

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

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--cream-dim);
}

.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}
.section-dark h2, .section-dark h3 { color: var(--cream); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.section-head p {
  color: #55483d;
  font-size: 1.05rem;
}
.section-dark .section-head p { color: #d8cabb; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

/* focus visibility for keyboard nav */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9em 1.8em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--charcoal);
  box-shadow: var(--shadow-tight);
}
.btn-primary:hover { box-shadow: 0 10px 24px rgba(232, 93, 4, 0.35); }

.btn-outline {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(255, 248, 236, 0.12); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline-dark:hover { background: rgba(27, 20, 16, 0.06); }

.btn-block { width: 100%; justify-content: center; }

/* ===================== Header / Nav ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  isolation: isolate;
}

.site-header-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(27, 20, 16, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 201, 60, 0.2);
}

.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand img {
  width: 52px;
  height: 52px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.main-nav ul {
  display: flex;
  gap: 1.7rem;
  list-style: none;
}

.main-nav a:not(.btn) {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.main-nav a:not(.btn):hover,
.main-nav a:not(.btn):focus-visible,
.main-nav a:not(.btn).is-active {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

.nav-cta { flex-shrink: 0; }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-soft) 55%, #3a2a1c 100%);
  color: var(--cream);
  padding: 4.5rem 0 5rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 201, 60, 0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(232, 93, 4, 0.22), transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-logo {
  width: 92px;
  height: 92px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content .tagline {
  font-size: 1.15rem;
  color: #e8d8c3;
  max-width: 46ch;
  margin-bottom: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.hero-badge {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 201, 60, 0.35);
  color: var(--cream);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-media {
  position: relative;
}

.hero-media figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 4px solid rgba(255, 201, 60, 0.25);
}

.hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.72), transparent);
  color: var(--cream);
  font-size: 0.85rem;
}

.hero-callout {
  position: absolute;
  top: -18px;
  right: -14px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
  border-radius: 50%;
  width: 108px;
  height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  box-shadow: var(--shadow-soft);
  transform: rotate(8deg);
  font-size: 0.85rem;
  padding: 0.4rem;
}
.hero-callout strong {
  font-size: 1.5rem;
}

/* ===================== About ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-media {
  position: relative;
}
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  height: 460px;
  width: 100%;
  object-fit: cover;
}

.about-media .placeholder-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.about-copy .eyebrow { color: var(--chili); }

.about-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  margin-bottom: 1.1rem;
}

.about-copy p {
  color: #4a3d33;
  margin-bottom: 1.1rem;
  font-size: 1.03rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.about-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.8rem;
  text-align: center;
  box-shadow: var(--shadow-tight);
  border: 1px solid #eee0cb;
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
}

.about-stat span {
  font-size: 0.8rem;
  color: #6b5c4d;
}

/* ===================== Placeholder tag ===================== */
.placeholder-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(27, 20, 16, 0.82);
  color: var(--gold);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
}

/* ===================== Signature dish spotlight ===================== */
.signature {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.signature .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.signature-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 4px solid rgba(255, 201, 60, 0.3);
}
.signature-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.signature-copy .eyebrow { color: var(--gold); }
.signature-copy h2 { color: var(--cream); font-size: clamp(1.9rem, 3.2vw, 2.4rem); margin-bottom: 1rem; }
.signature-copy p { color: #e4ecdf; margin-bottom: 1rem; font-size: 1.03rem; }

.signature-list {
  list-style: none;
  margin: 1.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.signature-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: #eef3ea;
}
.signature-list li::before {
  content: "🪶";
  flex-shrink: 0;
}

/* ===================== Menu ===================== */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.menu-tab {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  border: 2px solid #e6d3b5;
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.15s ease;
}
.menu-tab:hover { border-color: var(--orange); }
.menu-tab.is-active {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-color: transparent;
  color: var(--charcoal);
}

.menu-category {
  display: none;
}
.menu-category.is-active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-category-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--chili);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}

.menu-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  border: 1px solid #eee0cb;
  box-shadow: var(--shadow-tight);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.menu-item.is-signature {
  border: 2px solid var(--orange);
  background: linear-gradient(180deg, #fff, #fff6e6);
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
}

.menu-item-head h4 {
  font-size: 1.08rem;
}

.menu-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

.menu-item p {
  color: #5c4e40;
  font-size: 0.92rem;
}

.menu-star {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--chili);
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
  align-self: flex-start;
  margin-bottom: 0.2rem;
}

/* ===================== Gallery ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item .gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: var(--cream);
  font-size: 0.78rem;
  text-align: left;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(15, 10, 8, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
}
.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-caption {
  color: var(--cream);
  text-align: center;
  margin-top: 0.9rem;
  font-size: 0.95rem;
}
.lightbox-close {
  position: absolute;
  top: -3.2rem;
  right: 0;
  background: none;
  border: 2px solid var(--cream);
  color: var(--cream);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--cream);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox-prev { left: -1.4rem; }
.lightbox-next { right: -1.4rem; }

/* ===================== Reviews ===================== */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.reviews-summary .stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.reviews-summary strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-tight);
  border: 1px solid #eee0cb;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.review-card p {
  color: #4a3d33;
  font-size: 0.98rem;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal);
  font-style: normal !important;
}

/* ===================== Visit Us ===================== */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid #eee0cb;
  height: 100%;
  min-height: 380px;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.visit-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-tight);
  border: 1px solid #eee0cb;
}

.visit-info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--chili);
}

.visit-detail {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}
.visit-detail .icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
}
.visit-detail .icon svg { width: 18px; height: 18px; }

.visit-detail a { color: var(--orange); font-weight: 600; }
.visit-detail a:hover { text-decoration: underline; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}
.hours-table th {
  text-align: left;
  font-family: var(--font-display);
  color: var(--chili);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--cream-dim);
}
.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0e6d2;
  color: #4a3d33;
}
.hours-table tr.is-closed td {
  color: var(--chili);
  font-weight: 600;
}

/* ===================== Contact / Order ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.contact-copy h2 { color: var(--cream); }
.contact-copy p { color: #e8d8c3; margin-bottom: 1.4rem; font-size: 1.03rem; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.contact-note {
  display: flex;
  gap: 0.7rem;
  background: rgba(255, 201, 60, 0.1);
  border: 1px solid rgba(255, 201, 60, 0.35);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  color: #f2e6d3;
}

.contact-card {
  background: rgba(255, 248, 236, 0.06);
  border: 1px solid rgba(255, 201, 60, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-card h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}
.contact-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
.contact-card a { color: var(--cream); font-weight: 600; }
.contact-card a:hover { color: var(--gold); }
.contact-card .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 201, 60, 0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .icon svg { width: 17px; height: 17px; color: var(--gold); }

/* ===================== Footer ===================== */
.site-footer {
  background: #120d0a;
  color: #cbbba8;
  padding: 2.6rem 0;
  font-size: 0.88rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
}
.footer-brand img { width: 30px; height: 30px; }
.footer-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
}
.footer-links a:hover { color: var(--gold); }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .hero .container,
  .about-grid,
  .signature .container,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-media { order: -1; }
  .about-media img { height: 320px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 170px; }
}

@media (max-width: 760px) {
  .section { padding: 3.5rem 0; }

  .nav-toggle { display: inline-flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.4);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul {
    flex-direction: column;
    gap: 1.3rem;
    width: 100%;
  }
  .main-nav a:not(.btn) { display: block; font-size: 1.05rem; }
  .nav-cta { width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .hero-media img { height: 280px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }

  .about-stats { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }

  .footer-grid { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-badges { gap: 0.4rem; }
  .hero-callout { width: 88px; height: 88px; font-size: 0.72rem; top: -12px; right: -8px; }
  .hero-callout strong { font-size: 1.2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
