/* ============================================================
   DESIGN SYSTEM – Warkop Pancong Yeye
   Earth Tones · Playfair Display + Poppins
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Palette */
  --primary:        #8B5E3C;
  --secondary:      #F5F0EB;
  --accent:         #6C7B5D;
  --text-main:      #2D2D2D;
  --text-secondary: #5A5A5A;
  --surface:        #FFF8F5;
  --surface-dim:    #E2D8D3;
  --surface-container: #F6ECE7;
  --surface-container-low: #FCF1EC;
  --white:          #FFFFFF;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', Roboto, Inter, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --gutter:        24px;
  --section-gap:   120px;
  --section-gap-mobile: 64px;
  --base:          8px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-card:     0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.07);
  --shadow-lg:       0 10px 40px rgba(0, 0, 0, 0.12);

  /* Transition */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }
dl, dt, dd { margin: 0; }
blockquote { margin: 0; }
figure { margin: 0; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}


/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(245, 240, 235, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(213, 195, 184, 0.3);
  transition: box-shadow 0.3s var(--ease);
}

#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
  white-space: nowrap;
}

#main-nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease);
  padding-bottom: 4px;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--primary);
}

.nav-link--active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

/* WA button in nav */
.btn--wa svg {
  flex-shrink: 0;
}

/* Hamburger – hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}

.hamburger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--secondary);
  border-top: 1px solid var(--surface-dim);
}

.mobile-menu[aria-hidden="false"] {
  display: flex;
}

.mobile-nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-main);
  padding: 12px 0;
  border-bottom: 1px solid var(--surface-dim);
  transition: color 0.2s var(--ease);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  color: var(--primary);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  transition: transform 0.2s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  min-height: 48px;
}

.btn--primary:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 12px 28px;
  min-height: 48px;
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn--full {
  width: 100%;
  text-align: center;
}


/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding: var(--section-gap) 0;
}

.section__header {
  margin-bottom: 48px;
}

.section__header--center {
  text-align: center;
}

.section__eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: var(--primary);
}

.section__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 8px;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px; /* header offset */
}

.hero__bg-wrapper {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(245, 240, 235, 0.92) 0%,
    rgba(245, 240, 235, 0.60) 50%,
    transparent 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--surface-dim);
  margin-bottom: 24px;
}

.badge__stars {
  color: #D4A017;
  font-size: 14px;
  letter-spacing: 2px;
}

.badge__text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-main);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 32px;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}


/* ============================================================
   CATEGORIES – Circular Icons
   ============================================================ */
.categories {
  border-bottom: 1px solid var(--surface-dim);
}

.categories__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: default;
}

.category-item__circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--surface-dim);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.category-item:hover .category-item__circle {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(139, 94, 60, 0.12);
}

.category-item__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-main);
  transition: color 0.3s var(--ease);
}

.category-item:hover .category-item__label {
  color: var(--primary);
}


/* ============================================================
   MENU GRID
   ============================================================ */
.menu {
  background: var(--surface-container-low);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.menu-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-dim);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.menu-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

/* Image wrapper */
.menu-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.menu-card__img-btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}

.menu-card__img-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: -3px;
}

.menu-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.menu-card:hover .menu-card__img {
  transform: scale(1.05);
}

/* Zoom hint icon */
.menu-card__zoom-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: var(--primary);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.menu-card:hover .menu-card__zoom-hint {
  opacity: 1;
  transform: scale(1);
}

/* Badge */
.menu-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 1;
}

.menu-card__badge--green { background: var(--accent); }
.menu-card__badge--brown { background: var(--primary); }

/* Card body */
.menu-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}

.menu-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.menu-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.menu-card__price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--primary);
}

.menu-card__order-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.menu-card__order-btn:hover,
.menu-card__order-btn:focus-visible {
  background: var(--primary);
  color: var(--white);
}

.menu-card__order-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.menu__price-note {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-secondary);
}

.menu__price-note strong {
  color: var(--primary);
  font-weight: 600;
}


/* ============================================================
   SOCIAL PROOF / REVIEWS
   ============================================================ */
.reviews {
  background: var(--secondary);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--surface-dim);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card__stars {
  color: #D4A017;
  font-size: 18px;
  letter-spacing: 4px;
}

.review-card__text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-main);
  font-style: italic;
  flex-grow: 1;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--surface-dim);
  padding-top: 16px;
}

.review-card__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-main);
}

.review-card__source {
  font-size: 13px;
  color: var(--text-secondary);
}

.reviews__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--surface-dim);
  border-radius: var(--radius-md);
  max-width: 400px;
  margin: 0 auto;
}

.reviews__score {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--primary);
  line-height: 1;
}

.reviews__stars {
  color: #D4A017;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 2px;
}

.reviews__count {
  font-size: 14px;
  color: var(--text-secondary);
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--surface-container-low);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--surface-dim);
  cursor: pointer;
  position: relative;
  padding: 0;
  background: none;
  display: block;
}

.gallery__item:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.gallery__item--large {
  grid-column: 1 / -1;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.6s var(--ease);
}

.gallery__item--large .gallery__img {
  aspect-ratio: 16 / 9;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}

.gallery__zoom-hint {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: var(--primary);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.gallery__item:hover .gallery__zoom-hint {
  opacity: 1;
  transform: scale(1);
}


/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background: var(--secondary);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-main);
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 8px 0;
}

.location__detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location__detail-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.location__detail-value {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-left: 28px;
}

.location__phone-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s var(--ease);
}

.location__phone-link:hover,
.location__phone-link:focus-visible {
  text-decoration-color: var(--primary);
}

.location__map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--surface-dim);
  height: 480px;
  background: var(--surface-container);
}

.location__map {
  width: 100%;
  height: 100%;
  display: block;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface-container);
  border-top: 1px solid var(--surface-dim);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 48px;
  padding-bottom: 32px;
}

.site-footer__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
}

.site-footer__tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.site-footer__nav,
.site-footer__social {
  display: flex;
  gap: 24px;
}

.site-footer__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease);
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: var(--primary);
}

.site-footer__bottom {
  border-top: 1px solid var(--surface-dim);
  padding: 20px var(--gutter);
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
}


/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.3s var(--ease);
}

.lightbox[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.lightbox__content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform 0.3s var(--ease);
}

.lightbox[aria-hidden="false"] .lightbox__content {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  transition: background 0.3s var(--ease);
  z-index: 2;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox__close:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.lightbox__caption {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}


/* ============================================================
   FOCUS / A11Y
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* Skip-link (screen readers) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* ============================================================
   RESPONSIVE – Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .section {
    padding: var(--section-gap-mobile) 0;
  }

  .hero__title {
    font-size: 42px;
  }

  .section__title {
    font-size: 32px;
  }

  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .location__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location__map-wrap {
    height: 360px;
    order: -1;
  }
}


/* ============================================================
   RESPONSIVE – Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-container {
    height: 64px;
  }

  .nav-logo {
    font-size: 18px;
  }

  #main-nav,
  .nav-container > .btn--wa {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 80vh;
    padding-top: 64px;
  }

  .hero__overlay {
    background: linear-gradient(
      to top,
      rgba(245, 240, 235, 0.95) 0%,
      rgba(245, 240, 235, 0.75) 50%,
      transparent 100%
    );
  }

  .hero__content {
    text-align: center;
    padding-top: 200px;
    max-width: 100%;
  }

  .hero__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__cta-group {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

  .badge {
    align-self: center;
  }

  .categories__grid {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 16px;
    /* hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .categories__grid::-webkit-scrollbar {
    display: none;
  }

  .category-item {
    flex-shrink: 0;
  }

  .category-item__circle {
    width: 80px;
    height: 80px;
  }

  .category-item__circle svg {
    width: 28px;
    height: 28px;
  }

  .menu__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery__item--large {
    grid-column: auto;
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .site-footer__nav,
  .site-footer__social {
    flex-wrap: wrap;
    justify-content: center;
  }

  #mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .lightbox__close {
    top: -44px;
    right: 4px;
  }
}

/* ============================================================
   BODY SCROLL LOCK (when lightbox is open)
   ============================================================ */
body.lightbox-open {
  overflow: hidden;
}
