/* ================================================
   THE WELCOME SITE — styles.css  v6
   Dark · editorial · premium
   Typography: Outfit 700 primary · Outfit 500 secondary
   All text 100% opacity: --primary on light bg, --secondary on dark bg
   ================================================ */

/* ── Variables ───────────────────────────────── */
:root {
  /* Base palette (overridden by app.js applyTheme at runtime) */
  --primary:          #201C1A;
  --primary-rgb:      32, 28, 26;
  --secondary:        #DDD5D1;
  --secondary-rgb:    221, 213, 209;

  /* Surface tokens */
  --surface:          var(--secondary);
  --on-surface:       var(--primary);
  --on-surface-rgb:   var(--primary-rgb);

  /* Derived color tokens */
  --secondary-tint:   rgba(var(--secondary-rgb), 0.12);
  --page-bg:          var(--secondary);
  --card-bg:          rgba(var(--primary-rgb), 0.15);
  --card-border:      1px solid rgba(var(--primary-rgb), 0.13);
  --overlay-start:    rgba(var(--primary-rgb), 0.38);
  --overlay-end:      rgba(var(--primary-rgb), 0.72);

  /* Layout */
  --radius:     4px;
  --header-h:   68px;
  --max-w:      1170px;

  /* Font — app.js sets --font; --font-body and --font-heading cascade from it */
  --font:         'Outfit', system-ui, sans-serif;
  --font-body:    var(--font);
  --font-heading: var(--font);

  /* Easing (overridden by config.animations.easing) */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);

  /* ── Section padding system ────────────────────────────────────────────── */
  --section-pt-base:   80px;
  --section-pb-base:   80px;
  --section-pt-mobile: 40px;
  --section-pb-mobile: 40px;
  --section-pt:  var(--section-pt-base);
  --section-pb:  var(--section-pb-base);
  --section-v:   var(--section-pt-base);

  /* ── Card gap system ────────────────────────────────────────────────────── */
  --cards-gap-base:   12px;
  --cards-gap-mobile: 20px;
  --cards-gap:  var(--cards-gap-base);

  /* ── Animation params (overridden by config.animations via applyTheme) ─── */
  --hero-rv-y:   6px;
  --hero-rv-dur: 900ms;
  --reveal-y:    5px;
  --reveal-dur:  600ms;
  --stagger-ms:  90ms;
  --faq-dur:     420ms;
}

/* ── Dark color mode ─────────────────────────── */
[data-color-mode="dark"] {
  --surface:          var(--primary);
  --on-surface:       var(--secondary);
  --on-surface-rgb:   var(--secondary-rgb);
  --page-bg:          var(--primary);
  --secondary-tint:   rgba(var(--secondary-rgb), 0.07);
  --card-bg:          rgba(var(--secondary-rgb), 0.07);
  --card-border:      1px solid rgba(var(--secondary-rgb), 0.13);
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior:     smooth;
  overscroll-behavior: none;
  text-size-adjust:    100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:             var(--font-body);
  background:              var(--page-bg);
  color:                   var(--on-surface);
  line-height:             1.6;
  -webkit-font-smoothing:  antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x:              hidden;
  overscroll-behavior:     none;
}
a      { color: inherit; text-decoration: none; }
img    { display: block; max-width: 100%; }
ul     { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

/* ── Container ───────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin:    0 auto;
  padding:   0 48px;
}

/* ================================================
   HEADER
   ================================================ */
.header {
  position:         fixed;
  top: 0; left: 0; right: 0;
  height:           var(--header-h);
  z-index:          200;
  background:       transparent;
  transition:       background 0.3s ease;
  transform:        translateZ(0);
  will-change:      transform;
  backface-visibility: hidden;
}
.header--solid { background: var(--primary); }

.header-inner {
  max-width:       var(--max-w);
  width:           100%;
  margin:          0 auto;
  padding:         0 48px;
  height:          100%;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
}

.logo {
  font-family:    var(--font-body);
  font-size:      17px;
  font-weight:    700;
  color:          var(--secondary);
  letter-spacing: 0.3px;
  transition:     opacity 0.2s ease;
  min-width:      40px;
}
.logo:hover { opacity: 0.65; }

.nav-cta {
  font-family:    var(--font-body);
  font-size:      10px;
  font-weight:    700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color:          var(--secondary);
  padding:        9px 24px;
  border:         1px solid rgba(var(--secondary-rgb), 0.35);
  border-radius:  var(--radius);
  background:     transparent;
  transition:     color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  white-space:    nowrap;
}
.nav-cta:hover {
  color:        var(--secondary);
  border-color: var(--secondary);
}
.header--solid .nav-cta {
  background:   var(--secondary);
  border-color: var(--secondary);
  color:        var(--primary);
}
.header--solid .nav-cta:hover { opacity: 0.82; }

/* ================================================
   HERO
   Ken Burns driven entirely by JS — no CSS transform/transition on .hero-bg
   ================================================ */
.hero {
  position:        relative;
  min-height:      100vh;
  display:         flex;
  align-items:     center;
  justify-content: center;
  overflow:        hidden;
  background:      var(--primary);
}

/* Split background props so JS backgroundImage assignment doesn't conflict */
.hero-bg,
.banner-bg {
  position:            absolute;
  inset:               0;
  background-color:    var(--primary);
  background-size:     cover;
  background-position: center center;
  background-repeat:   no-repeat;
  transform-origin:    center center;
  will-change:         transform;
  backface-visibility: hidden;
}

.hero-overlay {
  position:       absolute;
  inset:          0;
  background:     linear-gradient(165deg, var(--overlay-start) 0%, var(--overlay-end) 100%);
  z-index:        1;
  pointer-events: none;
}

.hero-content {
  position:   relative;
  z-index:    2;
  text-align: center;
  padding:    calc(var(--header-h) + 60px) 48px 80px;
  max-width:  860px;
  width:      100%;
}

.hero-title {
  font-family:    var(--font-heading);
  font-size:      clamp(52px, 7.5vw, 88px);
  font-weight:    700;
  color:          var(--secondary);
  line-height:    1.04;
  letter-spacing: -1px;
  margin-bottom:  28px;
  min-height:     72px;
}

.hero-sub {
  font-family:   var(--font-body);
  font-size:     clamp(15px, 1.8vw, 19px);
  font-weight:   500;
  color:         var(--secondary);
  line-height:   1.8;
  margin-bottom: 56px;
  max-width:     480px;
  margin-left:   auto;
  margin-right:  auto;
  min-height:    44px;
}

.hero-cta {
  display:        inline-block;
  font-family:    var(--font-body);
  font-size:      10px;
  font-weight:    700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color:          var(--secondary);
  background:     transparent;
  padding:        15px 52px;
  border:         1px solid rgba(var(--secondary-rgb), 0.45);
  border-radius:  var(--radius);
  transition:     background 0.25s ease, border-color 0.25s ease;
}
.hero-cta:hover {
  background:   rgba(var(--primary-rgb), 0.5);
  border-color: var(--secondary);
}

/* ================================================
   DESCRIPTION SECTION
   ================================================ */
.description-section {
  padding:    var(--section-pt) 0 var(--section-pb);
  background: var(--surface);
}

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

.desc-col { min-height: 60px; }

.desc-col:first-child p {
  font-family:    var(--font-heading);
  font-size:      clamp(24px, 2.8vw, 34px);
  font-weight:    700;
  line-height:    1.5;
  letter-spacing: -0.2px;
  color:          var(--on-surface);
}

.desc-col:last-child p {
  font-family: var(--font-body);
  font-size:   clamp(15px, 1.4vw, 17px);
  font-weight: 500;
  line-height: 1.95;
  color:       var(--on-surface);
  padding-top: 6px;
}

/* ================================================
   CARDS / INFO SECTION
   ================================================ */
.cards-section {
  padding:    var(--section-pt) 0 var(--section-pb);
  background: var(--secondary);
}

.cards-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   var(--cards-gap);
}

.card {
  background:      var(--card-bg);
  border:          var(--card-border);
  border-radius:   var(--radius);
  padding:         48px;
  min-height:      320px;
  display:         flex;
  flex-direction:  column;
  justify-content: space-between;
  transition:      box-shadow 0.2s ease;
}
.card:hover { box-shadow: 0 4px 24px rgba(var(--primary-rgb), 0.12); }

[data-card-style="outlined"] .card {
  background: transparent;
  border:     1px solid rgba(var(--on-surface-rgb), 0.2);
}
[data-card-style="ghost"] .card {
  background: transparent;
  border:     none;
  box-shadow: none;
}
[data-card-style="ghost"] .card:hover { box-shadow: none; }

.card-label {
  display:        block;
  font-family:    var(--font-body);
  font-size:      9px;
  font-weight:    700;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color:          var(--on-surface);
  margin-bottom:  24px;
}

/* ── Hours ─── */
.hours-row {
  display:         flex;
  justify-content: space-between;
  align-items:     baseline;
  gap:             16px;
  padding:         11px 0;
  border-bottom:   1px solid rgba(var(--on-surface-rgb), 0.1);
}
.hours-row:last-child { border-bottom: none; }

.hours-row span:first-child {
  font-size:   13px;
  font-weight: 500;
  color:       var(--on-surface);
}

.hours-row span:last-child {
  font-size:   13px;
  font-weight: 700;
  color:       var(--on-surface);
  white-space: nowrap;
}

.hours-row.closed span {
  color:       var(--on-surface);
  font-style:  italic;
  font-weight: 500;
}

/* ── Location ─── */
.card-address {
  font-size:     14px;
  font-weight:   500;
  line-height:   1.9;
  color:         var(--on-surface);
  margin-bottom: 24px;
}

.card-actions {
  display:        flex;
  flex-direction: column;
  gap:            10px;
  margin-top:     auto;
}
@media (min-width: 860px) {
  .card-actions {
    flex-direction:  row;
    justify-content: flex-start;
    align-items:     center;
  }
  .card-actions .btn-card { flex: 1 1 auto; }
}

.btn-card {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  width:           100%;
  padding:         14px 24px;
  font-family:     var(--font-body);
  font-size:       10px;
  font-weight:     700;
  letter-spacing:  2px;
  text-transform:  uppercase;
  border-radius:   var(--radius);
  transition:      background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  cursor:          pointer;
  text-align:      center;
}
.btn-card--outline {
  background: transparent;
  border:     1px solid rgba(var(--on-surface-rgb), 0.25);
  color:      var(--on-surface);
}
.btn-card--outline:hover {
  border-color: var(--on-surface);
  background:   rgba(var(--on-surface-rgb), 0.04);
}
.btn-card--filled {
  background: var(--primary);
  border:     1px solid var(--primary);
  color:      var(--secondary);
}
.btn-card--filled:hover { opacity: 0.78; }

.btn-card:not(.btn-card--outline):not(.btn-card--filled) {
  background: var(--primary);
  border:     1px solid var(--primary);
  color:      var(--secondary);
}
.btn-card:not(.btn-card--outline):not(.btn-card--filled):hover { opacity: 0.78; }

/* ── Payment ─── */
.payment-list {
  display:        flex;
  flex-direction: column;
  gap:            12px;
  margin-bottom:  28px;
}
.payment-list li {
  font-size:    14px;
  font-weight:  500;
  color:        var(--on-surface);
  padding-left: 16px;
  position:     relative;
}
.payment-list li::before {
  content:     '—';
  position:    absolute;
  left:        0;
  font-size:   10px;
  top:         3px;
  color:       var(--on-surface);
  font-weight: 700;
}

/* ================================================
   GALLERY — CONVEYOR BELT
   ================================================ */
.gallery-section {
  background:  var(--primary);
  overflow:    hidden;
  user-select: none;
}

.gallery-belt-wrap {
  position:   relative;
  overflow:   hidden;
  height:     60vh;
  min-height: 260px;
}

.gallery-belt {
  display:     flex;
  height:      100%;
  will-change: transform;
}

.gallery-item {
  flex:                0 0 auto;
  width:               420px;
  height:              100%;
  background-size:     cover;
  background-position: center;
  background-repeat:   no-repeat;
}

.gallery-skel {
  position:        absolute;
  inset:           0;
  background:      linear-gradient(
    90deg,
    rgba(var(--secondary-rgb), 0.03) 25%,
    rgba(var(--secondary-rgb), 0.08) 50%,
    rgba(var(--secondary-rgb), 0.03) 75%
  );
  background-size: 200% 100%;
  animation:       shimmer 2.5s linear infinite;
}

/* ================================================
   FAQ SECTION
   Height accordion driven by JS
   ================================================ */
.faq-section {
  padding:    var(--section-pt) 0 var(--section-pb);
  background: var(--surface);
}

.section-label {
  display:        block;
  font-family:    var(--font-body);
  font-size:      9px;
  font-weight:    700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color:          var(--on-surface);
  margin-bottom:  56px;
}

.faq-list { width: 100%; }

.faq-item { border-bottom: 1px solid rgba(var(--on-surface-rgb), 0.08); }

.faq-question {
  width:           100%;
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  padding:         26px 0;
  background:      none;
  cursor:          pointer;
  text-align:      left;
  gap:             20px;
  font-family:     var(--font-body);
  font-size:       16px;
  font-weight:     700;
  color:           var(--on-surface);
  transition:      opacity 0.2s ease;
}
.faq-question:hover { opacity: 0.6; }

.faq-chevron {
  flex-shrink: 0;
  width:       16px;
  height:      16px;
  color:       var(--on-surface);
  transition:  transform 0.35s var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  overflow:   hidden;
  height:     0;
  transition: height var(--faq-dur) var(--ease);
}
.faq-answer-inner {
  overflow:       hidden;
  padding-bottom: 28px;
}
.faq-answer p {
  font-family: var(--font-body);
  font-size:   15px;
  font-weight: 500;
  color:       var(--on-surface);
  line-height: 1.85;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--primary);
  padding:    120px 0 0;
}

.footer-inner {
  display:               grid;
  grid-template-columns: 1.6fr 1fr 0.9fr;
  gap:                   80px;
  max-width:             var(--max-w);
  margin:                0 auto;
  padding:               0 48px 100px;
}

.footer-name {
  display:        block;
  font-family:    var(--font-body);
  font-size:      17px;
  font-weight:    700;
  color:          var(--secondary);
  margin-bottom:  12px;
  letter-spacing: 0.2px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size:   14px;
  font-weight: 500;
  color:       var(--secondary);
  line-height: 1.75;
  max-width:   220px;
}

.footer-col-label {
  display:        block;
  font-family:    var(--font-body);
  font-size:      9px;
  font-weight:    700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--secondary);
  margin-bottom:  20px;
}

.footer-address {
  font-family:   var(--font-body);
  font-size:     13px;
  font-weight:   500;
  color:         var(--secondary);
  line-height:   1.95;
  margin-bottom: 20px;
}

.footer-socials { display: flex; flex-direction: column; gap: 12px; }

.footer-social-link {
  display:     inline-flex;
  align-items: center;
  gap:         9px;
  font-family: var(--font-body);
  font-size:   13px;
  font-weight: 500;
  color:       var(--secondary);
  transition:  opacity 0.2s ease;
}
.footer-social-link:hover { opacity: 0.65; }
.footer-social-link svg   { flex-shrink: 0; }

.footer-system {
  font-family: var(--font-body);
  font-size:   12px;
  font-weight: 500;
  color:       var(--secondary);
  line-height: 1.75;
}
.footer-system a {
  color:                 var(--secondary);
  text-decoration:       underline;
  text-underline-offset: 2px;
  transition:            opacity 0.2s ease;
}
.footer-system a:hover { opacity: 0.65; }

.footer > .footer-bottom {
  border-top: 1px solid rgba(var(--secondary-rgb), 0.1);
  padding:    22px 48px;
  text-align: center;
}
.footer-bottom p {
  font-family:    var(--font-body);
  font-size:      11px;
  font-weight:    500;
  color:          var(--secondary);
  letter-spacing: 0.3px;
}

/* ================================================
   PAGE BANNER  (menu.html)
   ================================================ */
.page-banner {
  position:    relative;
  min-height:  380px;
  display:     flex;
  align-items: flex-end;
  overflow:    hidden;
  background:  var(--primary);
}

.banner-overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(
    to top,
    rgba(var(--primary-rgb), 0.92) 0%,
    rgba(var(--primary-rgb), 0.28) 100%
  );
  z-index: 1;
}

.banner-content {
  position:       relative;
  z-index:        2;
  padding-top:    calc(var(--header-h) + 52px);
  padding-bottom: 64px;
  width:          100%;
}

.back-link {
  display:        inline-flex;
  align-items:    center;
  gap:            7px;
  font-family:    var(--font-body);
  font-size:      10px;
  font-weight:    500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color:          var(--secondary);
  margin-bottom:  24px;
  transition:     opacity 0.2s ease;
}
.back-link:hover { opacity: 0.65; }

.banner-title {
  font-family:    var(--font-heading);
  font-size:      clamp(48px, 6.5vw, 80px);
  font-weight:    700;
  color:          var(--secondary);
  letter-spacing: -1.2px;
  line-height:    1.04;
  margin-bottom:  14px;
}

.banner-sub {
  font-family: var(--font-body);
  font-size:   16px;
  font-weight: 500;
  color:       var(--secondary);
  min-height:  22px;
}

/* ================================================
   MENU SECTION
   ================================================ */
.menu-section {
  padding:    var(--section-pt) 0 var(--section-pb);
  background: var(--surface);
  min-height: 50vh;
}

.menu-content {
  max-width: 680px;
  margin:    0 auto;
}

.menu-category {
  padding:       60px 0;
  border-bottom: 1px solid rgba(var(--on-surface-rgb), 0.08);
}
.menu-category:first-child { padding-top: 8px; }
.menu-category:last-child  { border-bottom: none; padding-bottom: 0; }

.category-header {
  text-align:    center;
  margin-bottom: 36px;
}

.category-name {
  font-family:    var(--font-heading);
  font-size:      clamp(13px, 1.5vw, 15px);
  font-weight:    700;
  font-variant:   small-caps;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--on-surface);
  margin-bottom:  8px;
}

.category-desc {
  font-family: var(--font-body);
  font-size:   clamp(13px, 1.3vw, 15px);
  font-weight: 500;
  color:       var(--on-surface);
  line-height: 1.7;
  font-style:  italic;
}

.category-rule {
  width:      32px;
  height:     1px;
  background: rgba(var(--on-surface-rgb), 0.15);
  margin:     18px auto 0;
}

.category-items { display: flex; flex-direction: column; }

.menu-item {
  display:         flex;
  justify-content: space-between;
  align-items:     baseline;
  gap:             24px;
  padding:         14px 0;
  border-bottom:   1px dotted rgba(var(--on-surface-rgb), 0.12);
}
.menu-item:last-child { border-bottom: none; }

.menu-item--variants {
  flex-direction: column;
  align-items:    flex-start;
  gap:            2px;
}

.item-name {
  font-family: var(--font-body);
  font-size:   15px;
  font-weight: 700;
  color:       var(--on-surface);
  line-height: 1.4;
  flex:        1;
}

.item-price {
  font-family: var(--font-body);
  font-size:   15px;
  font-weight: 700;
  color:       var(--on-surface);
  white-space: nowrap;
  flex-shrink: 0;
}

.item-variant {
  display:         flex;
  justify-content: space-between;
  align-items:     baseline;
  width:           100%;
  padding:         5px 0 5px 18px;
  gap:             20px;
}

.variant-label {
  font-family: var(--font-body);
  font-size:   13px;
  font-weight: 500;
  color:       var(--on-surface);
  flex:        1;
}
.item-variant .item-price { font-size: 13px; }

.menu-empty {
  text-align:  center;
  color:       var(--on-surface);
  font-weight: 500;
  padding:     80px 0;
  font-size:   15px;
  font-style:  italic;
}

/* ================================================
   SKELETON SYSTEM
   ================================================ */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.skel-line,
.skel-block,
.skel-item {
  --sb: rgba(var(--on-surface-rgb), 0.045);
  --ss: rgba(var(--on-surface-rgb), 0.09);
  background:      linear-gradient(90deg, var(--sb) 25%, var(--ss) 50%, var(--sb) 75%);
  background-size: 200% 100%;
  animation:       shimmer 2.5s linear infinite;
  border-radius:   2px;
  display:         block;
}

.skel-dark {
  --sb: rgba(var(--secondary-rgb), 0.03);
  --ss: rgba(var(--secondary-rgb), 0.08);
}

.skel-line  { height: 13px; margin-bottom: 10px; width: 100%; }
.skel-block { width: 100%; border-radius: var(--radius); }
.skel-item  { height: 42px; margin-bottom: 1px; width: 100%; }

.skel-line:nth-child(1), .skel-item:nth-child(1) { animation-delay:   0ms; }
.skel-line:nth-child(2), .skel-item:nth-child(2) { animation-delay: 100ms; }
.skel-line:nth-child(3), .skel-item:nth-child(3) { animation-delay: 200ms; }
.skel-line:nth-child(4), .skel-item:nth-child(4) { animation-delay: 300ms; }
.skel-line:nth-child(5), .skel-item:nth-child(5) { animation-delay: 400ms; }
.skel-line:nth-child(6), .skel-item:nth-child(6) { animation-delay: 500ms; }

.skel-category {
  padding:       60px 0;
  border-bottom: 1px solid rgba(var(--on-surface-rgb), 0.07);
}
.skel-category:last-child { border-bottom: none; }

/* ================================================
   REVEAL ANIMATION SYSTEM
   ================================================ */
.reveal-target { opacity: 0; }

@keyframes revealUp {
  from { opacity: 0; transform: translateY(var(--_rv-y, 10px)); }
  to   { opacity: 1; transform: none; }
}

.revealed {
  --_rv-y:   var(--reveal-y,   5px);
  --_rv-dur: var(--reveal-dur, 600ms);
  animation: revealUp var(--_rv-dur) var(--ease) both;
}

.hero-content .revealed,
.banner-content .revealed {
  --_rv-y:   var(--hero-rv-y,   6px);
  --_rv-dur: var(--hero-rv-dur, 900ms);
}

/* ================================================
   RESPONSIVE — TABLET  ≤ 980px
   ================================================ */
@media (max-width: 980px) {
  .container    { padding: 0 32px; }
  .header-inner { padding: 0 32px; }
  .footer-inner { padding: 0 32px 64px; grid-template-columns: 1fr 1fr; }
  .footer > .footer-bottom { padding: 20px 32px; }

  .description-grid { grid-template-columns: 1fr; gap: 44px; }
  .cards-grid        { grid-template-columns: 1fr; gap: var(--cards-gap); }
  .card              { min-height: auto; }
}

/* ================================================
   RESPONSIVE — MOBILE  ≤ 600px
   ================================================ */
@media (max-width: 600px) {
  :root {
    --section-pt: var(--section-pt-mobile);
    --section-pb: var(--section-pb-mobile);
    --section-v:  var(--section-pt-mobile);
    --cards-gap:  var(--cards-gap-mobile);
  }

  .container    { padding: 0 22px; }
  .header-inner { padding: 0 22px; }
  .footer-inner { padding: 0 22px 56px; grid-template-columns: 1fr; gap: 36px; }
  .footer > .footer-bottom { padding: 18px 22px; }

  .hero-content { padding: calc(var(--header-h) + 40px) 22px 60px; }
  .hero-title   { letter-spacing: -0.6px; }

  .description-grid { gap: 32px; }
  .desc-col:first-child p { font-size: clamp(21px, 5.5vw, 28px); }

  .card { padding: 32px 24px; }

  .gallery-belt-wrap { height: 55vw; min-height: 200px; }
  .gallery-item      { width: 260px; }

  .faq-question { font-size: 15px; padding: 22px 0; }

  .page-banner    { min-height: 280px; }
  .banner-content { padding-bottom: 44px; }
  .banner-title   { letter-spacing: -0.6px; }

  .menu-section  { padding: var(--section-pt) 0 var(--section-pb); }
  .menu-category { padding: 44px 0; }
}
