/* ============================================
   Sree Narayana Group — Shared Styles
   Warm, traditional, accessible design
   ============================================ */

:root {
  --color-primary: #F7D046;
  --color-primary-dark: #E5BC2A;
  --color-maroon: #8B2E1F;
  --color-maroon-dark: #6E2418;
  --color-cream: #FDF6EC;
  --color-cream-dark: #F5EBD8;
  --color-text: #2B1B12;
  --color-text-muted: #5C4033;
  --color-white: #FFFFFF;
  --color-border: #D4C4A8;

  --font-heading: "Merriweather", Georgia, "Times New Roman", serif;
  --font-body: "Mukta", "Noto Sans", system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(43, 27, 18, 0.08);
  --shadow-md: 0 4px 16px rgba(43, 27, 18, 0.12);

  --tap-min: 44px;
  --max-width: 1140px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-maroon);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover,
a:focus-visible {
  color: var(--color-maroon-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--color-maroon-dark);
  margin-top: 0;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

ul {
  padding-left: 1.25rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--color-maroon);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 1000;
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section--alt {
  background-color: var(--color-cream-dark);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section__header p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Header & Navigation */
.site-header {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-bottom: 3px solid var(--color-maroon);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-sm);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-maroon-dark);
}

.site-logo__image {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
}

.site-logo__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-logo__tagline {
  font-size: 0.875rem;
  color: var(--color-maroon);
  font-weight: 500;
}

/* Nav */
.nav-toggle {
  display: none;
  background: var(--color-maroon);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--color-maroon-dark);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap-min);
  padding: 0 var(--space-sm);
  text-decoration: none;
  font-weight: 600;
  color: var(--color-maroon-dark);
  border-radius: var(--radius-sm);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  background: rgba(139, 46, 31, 0.12);
  color: var(--color-maroon-dark);
}

/* Hero Banner */
.hero {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 50%, var(--color-primary) 100%);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  background: var(--color-maroon);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: var(--space-xs) var(--space-md);
  border-radius: 999px;
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.hero__title {
  margin-bottom: var(--space-sm);
}

.hero__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-md);
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-md);
  text-align: left;
}

.hero__intro {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-text);
}

/* Dedication Section */
.dedication {
  background-color: var(--color-cream-dark);
  padding: 1.5rem 0 1.75rem;
  text-align: center;
}

.dedication__image {
  width: 260px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 0.5rem;
  border-radius: var(--radius-md);
  display: block;
}

.dedication__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-maroon-dark);
  letter-spacing: 0.01em;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .dedication {
    padding: 1.25rem 0 1.5rem;
  }

  .dedication__image {
    width: 190px;
    margin-bottom: 0.4rem;
  }
}

/* Business Cards Grid */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.business-card {
  position: relative;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.business-card .btn + .btn {
  margin-top: var(--space-xs);
}

.business-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 28px rgba(247, 208, 70, 0.5), 0 0 0 1px rgba(247, 208, 70, 0.35);
  border-color: var(--color-primary);
  z-index: 2;
}

.business-card__category {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-maroon-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  margin-bottom: var(--space-sm);
  align-self: flex-start;
}

.business-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.business-card__desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  flex-grow: 1;
  margin-bottom: var(--space-sm);
}

.business-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  min-height: var(--tap-min);
  margin-bottom: var(--space-sm);
}

.business-card__phone::before {
  content: "📞";
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--tap-min);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background: var(--color-maroon);
  color: var(--color-white);
  border-color: var(--color-maroon-dark);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-maroon-dark);
  color: var(--color-white);
}

.btn--secondary {
  background: var(--color-primary);
  color: var(--color-maroon-dark);
  border-color: var(--color-primary-dark);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--color-primary-dark);
  color: var(--color-maroon-dark);
}

.btn--outline {
  background: transparent;
  color: var(--color-maroon);
  border-color: var(--color-maroon);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--color-white);
  border-color: #1DA851;
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: #1DA851;
  color: var(--color-white);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--color-maroon);
  color: var(--color-white);
}

.btn--large {
  font-size: 1.25rem;
  padding: 1rem 2rem;
  min-height: 52px;
}

.btn-block {
  width: 100%;
}

/* Map Section */
.map-section {
  text-align: center;
}

.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--color-maroon);
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-address {
  margin-top: var(--space-md);
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

/* Footer */
.site-footer {
  background: var(--color-maroon-dark);
  color: var(--color-cream);
  padding: var(--space-xl) 0 var(--space-md);
}

.site-footer a {
  color: var(--color-primary);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-grid h3 {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
  border-bottom: 2px solid rgba(247, 208, 70, 0.3);
  padding-bottom: var(--space-xs);
}

.footer-grid p,
.footer-grid li {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  text-decoration: none;
  display: inline-block;
  min-height: 36px;
  line-height: 36px;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
  color: rgba(253, 246, 236, 0.75);
}

/* ============================================
   Business Page Styles
   ============================================ */

.business-hero {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-cream) 100%);
  padding: var(--space-lg) 0;
  border-bottom: 2px solid var(--color-border);
}

.business-hero__inner {
  text-align: center;
}

.business-hero__category {
  display: inline-block;
  background: var(--color-maroon);
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  margin-bottom: var(--space-sm);
}

.years-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  border: 3px solid var(--color-maroon);
  color: var(--color-maroon-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
}

.years-badge__icon {
  font-size: 1.5rem;
}

.business-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

.business-meta__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.info-box {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  max-width: 480px;
  margin: var(--space-md) auto;
  text-align: left;
}

.info-box h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--color-maroon);
}

.info-box p {
  margin: 0;
  font-size: 1.05rem;
}

.phone-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.business-content {
  max-width: 760px;
  margin: 0 auto;
}

.business-content p {
  font-size: 1.15rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: var(--tap-min);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

/* Image Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

/* Modifier for galleries with only a single real photo, so the tile
   doesn't sit awkwardly stretched across the full grid width */
.gallery-grid--single {
  grid-template-columns: minmax(0, 320px);
  justify-content: center;
}

.gallery-item {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.gallery-item__image {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%;
  background: var(--color-cream-dark);
}

.gallery-item__caption {
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.gallery-note {
  background: var(--color-cream-dark);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-md);
}

/* CTA Section */
.cta-section {
  background: var(--color-primary);
  border-top: 3px solid var(--color-maroon);
  border-bottom: 3px solid var(--color-maroon);
  padding: var(--space-lg) 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: var(--space-sm);
}

.cta-section p {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--color-cream);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.testimonial-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 28px rgba(247, 208, 70, 0.5), 0 0 0 1px rgba(247, 208, 70, 0.35);
  border-color: var(--color-primary);
  z-index: 2;
}

.testimonial-card__quote-icon {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-primary);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  opacity: 0.8;
}

.testimonial-card__text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  margin: var(--space-md) 0 var(--space-sm);
  padding-left: var(--space-md);
}

.testimonial-card__author {
  font-weight: 700;
  color: var(--color-maroon);
  font-size: 1rem;
  padding-left: var(--space-md);
}

.testimonial-card__badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-maroon-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Homepage mini testimonials */
.testimonials-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

/* Scroll-Triggered Reveal Animations
   Applied via JS only (progressive enhancement) — content stays fully
   visible by default if JavaScript fails to load. Uses the standalone
   `translate` property (rather than the `transform` shorthand) so this
   entrance animation composes cleanly with hover effects like the
   business/testimonial card scale-up, instead of overriding them. */
.reveal {
  opacity: 0;
  translate: 0 20px;
  transition: opacity 0.7s ease-out, translate 0.7s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    translate: 0 0;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(43, 27, 18, 0.35);
  z-index: 900;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background-color: #1DA851;
  transform: scale(1.06);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Instagram-Style Moments Grid */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.moments-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-cream-dark);
  cursor: pointer;
}

.moments-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.moments-item:hover .moments-item__image {
  transform: scale(1.06);
}

.moments-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
  background: rgba(43, 27, 18, 0);
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.moments-item:hover .moments-item__overlay,
.moments-item:focus-visible .moments-item__overlay {
  opacity: 1;
  background: rgba(43, 27, 18, 0.35);
}

.moments-item__caption {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.moments-item__like-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(253, 246, 236, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
  z-index: 2;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.moments-item__like-btn:hover,
.moments-item__like-btn:focus-visible {
  background: var(--color-white);
  transform: scale(1.12);
}

.moments-item__like-btn.is-liked {
  color: var(--color-maroon);
}

.moments-item__like-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 4.5rem;
  color: var(--color-primary);
  text-shadow: 0 2px 10px rgba(43, 27, 18, 0.45);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.moments-item__like-burst.is-animating {
  animation: momentsHeartBurst 0.9s ease-out;
}

@keyframes momentsHeartBurst {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  25% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
  40% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .moments-item__like-burst.is-animating {
    animation: none;
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .moments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

@media (max-width: 420px) {
  .moments-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(43, 27, 18, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox__image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 3px solid var(--color-primary);
}

.lightbox__caption {
  color: var(--color-cream);
  font-size: 1.1rem;
  margin-top: var(--space-sm);
}

.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-maroon);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: var(--color-primary);
  color: var(--color-maroon-dark);
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-primary);
    border-bottom: 3px solid var(--color-maroon);
    padding: var(--space-sm);
    z-index: 100;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav a {
    width: 100%;
    padding: var(--space-sm);
  }

  .site-header__inner {
    position: relative;
    flex-wrap: wrap;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  body {
    font-size: 1.05rem;
  }

  .site-header__inner {
    padding: var(--space-sm) 18px;
  }
}
