/* =========================================================
   NEW SEOUL BARBER — Design System
   Cream / beige / taupe / black. Editorial, warm, Korean-
   inspired grooming lounge. Fraunces (display) + Inter (UI),
   with CJK system-font fallbacks per language.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,340;0,9..144,440;0,9..144,560;1,9..144,440&family=Inter:wght@400;500;600&display=swap');

:root{
  /* --- color tokens --- */
  --cream:      #F4EEE1;
  --cream-deep: #ECE2CC;
  --paper:      #FBF8F1;
  --taupe-100:  #E6D9BE;
  --taupe-300:  #CBB388;
  --taupe-500:  #A9895F;
  --taupe-700:  #7C6242;
  --ink:        #1C1712;
  --ink-soft:   #56493C;
  --ink-faint:  #8A7A67;
  --line:       #D9CBAC;
  --line-soft:  #E4D8BE;
  --white:      #FFFFFF;

  /* --- type --- */
  --font-display: 'Fraunces', 'Noto Serif KR', 'Noto Serif SC', 'Noto Serif JP', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', 'PingFang SC',
               'Microsoft YaHei', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', sans-serif;

  /* --- layout --- */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-s: 2px;
  --radius-m: 4px;
  --radius-l: 18px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

[lang="ko"]{ --font-display: 'Noto Serif KR', 'Fraunces', serif; }
[lang="zh"]{ --font-display: 'Noto Serif SC', 'Fraunces', serif; }
[lang="ja"]{ --font-display: 'Noto Serif JP', 'Fraunces', serif; }

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p{ margin: 0; }

.wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

:focus-visible{ outline: 2px solid var(--ink); outline-offset: 3px; }

/* ---------- kicker / section heading ---------- */
.kicker{
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--taupe-700);
  font-weight: 500;
  margin-bottom: 14px;
  display: inline-block;
}
.section-head{
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2{
  font-family: var(--font-display);
  font-weight: 440;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  color: var(--ink);
}
.section-head p{
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 46ch;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

section{ padding: clamp(64px, 10vw, 120px) 0; position: relative; }
.bg-paper{ background: var(--paper); }
.bg-taupe{ background: var(--taupe-100); }
.bg-ink{ background: var(--ink); color: var(--cream); }

.divider{ height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: scale(.98); }
.btn-primary{ background: var(--ink); color: var(--cream); }
.btn-primary:hover{ background: var(--taupe-700); }
.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover{ background: var(--ink); color: var(--cream); }
.btn-ghost.on-dark{ color: var(--cream); border-color: rgba(244,238,225,.55); }
.btn-ghost.on-dark:hover{ background: var(--cream); color: var(--ink); }
.btn-primary.on-cream{ background: var(--ink); color: var(--cream); }
.btn-primary.on-dark-bg{ background: var(--cream); color: var(--ink); }
.btn-primary.on-dark-bg:hover{ background: var(--taupe-300); color: var(--ink); }
.btn-block{ width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(244,238,225,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled{ border-bottom-color: var(--line); }
.site-header .wrap{
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand{ display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img{ height: 26px; width: auto; }

.main-nav{ display: flex; align-items: center; gap: 34px; }
.main-nav a{
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0;
  transition: color .2s var(--ease);
}
.main-nav a:hover{ color: var(--ink); }
.main-nav a::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px;
  background: var(--ink); transition: right .25s var(--ease);
}
.main-nav a:hover::after{ right: 0; }

.header-right{ display: flex; align-items: center; gap: 22px; }

.lang-switch{ display: flex; align-items: center; gap: 2px; font-size: 13px; }
.lang-switch button{
  background: none; border: none; padding: 6px 7px; color: var(--ink-faint);
  font-weight: 500; border-radius: var(--radius-s); transition: color .2s, background .2s;
}
.lang-switch button.active{ color: var(--ink); background: var(--taupe-100); }
.lang-switch button:hover{ color: var(--ink); }
.lang-sep{ color: var(--line); }

.nav-toggle{
  display: none; background: none; border: none; width: 32px; height: 32px;
  position: relative; flex-shrink: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: ""; position: absolute; left: 6px; right: 6px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span{ top: 15px; }
.nav-toggle span::before{ top: -7px; }
.nav-toggle span::after{ top: 7px; }
.nav-toggle.open span{ background: transparent; }
.nav-toggle.open span::before{ top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after{ top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-drawer{
  position: fixed; inset: 76px 0 0 0; background: var(--cream); z-index: 480;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-drawer .wrap{ padding-top: 28px; padding-bottom: 40px; }
.mobile-drawer nav{ display: flex; flex-direction: column; }
.mobile-drawer nav a{
  font-family: var(--font-display); font-size: 28px; font-weight: 440;
  padding: 14px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink);
}
.mobile-drawer .lang-switch{ margin-top: 26px; font-size: 15px; }
.mobile-drawer .btn{ margin-top: 26px; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 76px;
  overflow: hidden;
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero-media::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,12,.62) 0%, rgba(20,17,12,.68) 55%, rgba(20,17,12,.82) 100%);
}
.hero-content{
  position: relative; z-index: 2; width: 100%;
  padding-bottom: clamp(48px, 8vw, 88px);
}
.hero-panel{ max-width: 920px; }
.hero-kicker{
  color: var(--taupe-300);
  font-size: 13px; letter-spacing: .16em; font-weight: 600;
  margin-bottom: 20px;
}
.hero h1{
  font-family: var(--font-display);
  font-weight: 440;
  color: var(--cream);
  font-size: clamp(30px, 5vw, 60px);
  line-height: 1.24;
  letter-spacing: 0;
}
.hero h1 span{ display: block; }
.hero-tagline{
  font-family: var(--font-display);
  color: var(--taupe-300);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 500;
  margin-top: 10px;
}
.hero-desc{
  color: var(--taupe-100);
  font-size: 17px;
  line-height: 1.75;
  max-width: 58ch;
  margin-top: 24px;
}
[lang="ko"] .hero h1, [lang="ko"] .hero-desc, [lang="ko"] .hero-tagline, [lang="ko"] .section-head h2{ word-break: keep-all; }
.hero-actions{ display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid{
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.about-media{ position: relative; }
.about-media img{ width: 100%; border-radius: var(--radius-m); }
.about-media-tag{
  position: absolute; left: -18px; bottom: -18px;
  background: var(--ink); color: var(--cream);
  padding: 16px 22px; border-radius: var(--radius-s);
  font-family: var(--font-display); font-size: 15px;
  max-width: 220px; line-height: 1.4;
  box-shadow: 0 18px 40px -14px rgba(28,23,18,.35);
}
.about-text p{ color: var(--ink-soft); font-size: 16.5px; }
.about-text p + p{ margin-top: 16px; }
.about-text .section-head{ margin-bottom: 26px; }
.about-stats{
  display: flex; gap: clamp(24px, 4vw, 44px); margin-top: 30px; flex-wrap: wrap;
}
.about-stats .stat b{
  display: block;
  font-family: var(--font-display); font-weight: 440;
  font-size: 26px; color: var(--taupe-700); line-height: 1.1;
}
.about-stats .stat span{
  display: block; margin-top: 6px;
  font-size: 11px; letter-spacing: .06em; font-weight: 600;
  color: var(--ink-soft); text-transform: uppercase;
}

/* =========================================================
   TEAM
   ========================================================= */
.team-grid{
  display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.team-media img{ width: 100%; border-radius: var(--radius-m); display: block; }
.team-content .section-head{ margin-bottom: 18px; }
.team-content > p{ color: var(--ink-soft); font-size: 16.5px; }
.team-card{
  margin-top: 30px;
  display: grid; grid-template-columns: 110px 1fr; gap: 18px;
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-m);
  padding: 16px;
  box-shadow: 0 18px 40px -20px rgba(28,23,18,.25);
}
.team-card img{ width: 100%; height: 110px; object-fit: cover; border-radius: var(--radius-s); }
.team-card-body .kicker{ display: block; margin-bottom: 6px; }
.team-card-body p{ color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }

@media (max-width: 720px){
  .team-grid{ grid-template-columns: 1fr; }
  .team-card{ grid-template-columns: 84px 1fr; }
  .team-card img{ height: 84px; }
}

/* =========================================================
   SERVICES
   ========================================================= */
#services .section-head{ margin-bottom: 28px; }

.menu-note{
  display: inline-block; max-width: 100%;
  padding: 12px 20px; margin-bottom: 36px;
  border: 1px solid var(--taupe-500); border-radius: 14px;
  background: rgba(169,137,95,.10);
  color: var(--taupe-700); font-size: 14px; line-height: 1.6;
}
[lang="ko"] .menu-note{ word-break: keep-all; }

.menu-list{
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 6vw, 72px);
}
.menu-item{ padding: 15px 0; border-bottom: 1px dashed var(--taupe-300); }
.menu-line{ display: flex; align-items: flex-end; gap: 10px; }
.menu-name{ font-size: 16.5px; font-weight: 600; color: var(--ink); line-height: 1.5; }
.menu-dots{
  flex: 1 1 auto; min-width: 16px; align-self: flex-end; margin-bottom: 7px;
  border-bottom: 1px dotted var(--taupe-500); opacity: .7;
}
.menu-price{
  flex: none; white-space: nowrap; line-height: 1.5;
  font-variant-numeric: tabular-nums; font-size: 16px; font-weight: 600; color: var(--taupe-700);
}
.menu-sub{ margin-top: 1px; font-size: 12.5px; color: var(--ink-faint); }

.view-menu-link{
  display: inline-flex; align-items: center; gap: 8px; margin-top: 32px;
  font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 2px;
}

.tip-note{
  margin-top: 40px; padding: 18px 22px; background: var(--taupe-100);
  border-radius: var(--radius-m); font-size: 14px; color: var(--ink-soft);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center;
}
.tip-note strong{ color: var(--ink); font-weight: 600; }

/* =========================================================
   COMBO
   ========================================================= */
.combo-grid{ display: grid; gap: 20px; }
.combo-card{
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-m); padding: clamp(24px,3vw,36px);
  display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: start;
}
.combo-id{ font-family: var(--font-display); font-size: 30px; color: var(--ink); line-height: 1.1; }
.combo-duration{ margin-top: 8px; font-size: 13px; color: var(--ink-faint); }
.combo-tiers{ display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.combo-tier{
  background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--radius-s);
  padding: 12px 14px;
}
.combo-tier.vip{ background: var(--taupe-300); border-color: var(--taupe-300); }
.combo-tier.fourhands{ background: var(--ink); border-color: var(--ink); }
.combo-tier.fourhands .tier-label, .combo-tier.fourhands .tier-price{ color: var(--cream); }
.combo-tier.vip .tier-label, .combo-tier.vip .tier-price{ color: var(--ink); }
.tier-label{ font-size: 11.5px; color: var(--ink-faint); font-weight: 500; }
.tier-price{ font-variant-numeric: tabular-nums; font-size: 15px; font-weight: 600; margin-top: 4px; color: var(--ink); }
.combo-included{ margin-top: 18px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; }
.combo-included b{ color: var(--ink); font-weight: 600; }

/* =========================================================
   STORE EXPERIENCE (editorial)
   ========================================================= */
.experience-list{ display: flex; flex-direction: column; gap: clamp(56px, 8vw, 96px); }
.experience-item{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; }
.experience-item:nth-child(even) .experience-media{ order: 2; }
.experience-item:nth-child(even) .experience-copy{ order: 1; }
.experience-media img{ width: 100%; border-radius: var(--radius-m); }
.experience-copy .num{ font-family: var(--font-display); font-size: 15px; color: var(--taupe-700); margin-bottom: 10px; display:block; }
.experience-copy h3{ font-family: var(--font-display); font-weight: 440; font-size: clamp(24px,3vw,32px); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid{
  columns: 4 260px; column-gap: 16px;
}
.gallery-grid figure{
  break-inside: avoid; margin: 0 0 16px; border-radius: var(--radius-m); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-grid img{ width: 100%; display: block; transition: transform .5s var(--ease); }
.gallery-grid figure:hover img{ transform: scale(1.045); }
.gallery-grid figcaption{
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  background: linear-gradient(0deg, rgba(28,23,18,.68), transparent);
  color: var(--cream); font-size: 13px; opacity: 0; transition: opacity .3s var(--ease);
}
.gallery-grid figure:hover figcaption{ opacity: 1; }

/* =========================================================
   LOCATION
   ========================================================= */
.location-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 28px); align-items: stretch; }

.map-card{
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; min-height: 340px; padding: 32px;
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(169,137,95,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169,137,95,.16) 1px, transparent 1px);
  background-size: 30px 30px;
  border: 1px solid var(--line); border-radius: var(--radius-l);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.map-card:hover{ border-color: var(--taupe-500); box-shadow: 0 18px 40px -22px rgba(28,23,18,.35); transform: translateY(-2px); }
.map-pin{ width: 52px; height: 63px; margin-bottom: 6px; }
.map-pin .pin-body{ fill: var(--taupe-700); }
.map-pin .pin-hole{ fill: var(--cream); }
.map-card-title{
  font-family: var(--font-display); font-size: 19px; font-weight: 440; color: var(--ink);
  text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px;
}
.map-card-hint{
  max-width: 30ch; font-size: 13.5px; line-height: 1.6; color: var(--ink-soft);
  text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px;
}
[lang="ko"] .map-card-hint{ word-break: keep-all; }

.location-card{
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; align-items: flex-start;
}
.loc-item + .loc-item{ margin-top: 22px; }
.loc-item .lbl{ font-size: 13px; letter-spacing: .04em; font-weight: 600; color: var(--taupe-700); margin-bottom: 4px; }
.loc-item .val{ font-size: 16px; line-height: 1.6; color: var(--ink); }
[lang="ko"] .loc-item .val{ word-break: keep-all; }
.loc-link{ text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.loc-link:hover{ color: var(--taupe-700); }
.loc-btn{ margin-top: auto; white-space: normal; text-align: center; }
.loc-item:last-of-type{ margin-bottom: 30px; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta{ text-align: center; }
.final-cta .section-head{ margin-bottom: 40px; }
.final-cta .kicker{ color: var(--taupe-300); }
.final-cta h2{
  font-family: var(--font-display); font-weight: 440; color: var(--cream);
  font-size: clamp(28px, 4.6vw, 44px); line-height: 1.2; max-width: 20ch; margin: 0 auto;
}
.final-cta p{ color: var(--cream); opacity: .8; margin-top: 18px; font-size: 16px; }
.final-cta .cta-actions{ display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* ---------- contact method cards (Zalo / KakaoTalk / WeChat) ---------- */
.contact-methods{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px 18px;
  background: rgba(244,238,225,.04);
  border: 1px solid rgba(244,238,225,.14);
  border-radius: var(--radius-m);
  color: var(--cream);
  font-family: var(--font-body);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
a.contact-card:hover, button.contact-card:hover{
  background: rgba(244,238,225,.08);
  border-color: rgba(244,238,225,.3);
  transform: translateY(-2px);
}
.contact-card:active{ transform: scale(.98); }
.contact-icon{
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
.contact-icon--zalo{ background: #0d6ce8; }
.contact-icon--kakao{ background: #f6d000; color: #391b00; }
.contact-icon--wechat{ background: #2fbe5a; }
.contact-name{ font-size: 16px; font-weight: 600; color: var(--cream); }
.contact-value{
  font-size: 13.5px;
  color: var(--taupe-300);
  letter-spacing: .01em;
}
.contact-card.copied .contact-value{ color: #7CD98A; }
.contact-note{
  font-size: 11.5px;
  color: rgba(244,238,225,.5);
  margin-top: 4px;
  padding-top: 10px;
  width: 100%;
  text-align: center;
  border-top: 1px dashed rgba(244,238,225,.16);
}

/* ---------- phone / SMS bar ---------- */
.contact-phone-bar{
  max-width: 900px;
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 28px;
  background: rgba(244,238,225,.04);
  border: 1px solid rgba(244,238,225,.14);
  border-radius: var(--radius-m);
  text-align: left;
}
.contact-phone-info{ display: flex; flex-direction: column; gap: 6px; }
.contact-phone-label{
  font-size: 12.5px; letter-spacing: .08em; font-weight: 600; color: var(--taupe-300);
}
.contact-phone-number{
  font-family: var(--font-display); font-size: 22px; color: var(--cream);
}
.contact-call-btn{ border-radius: 999px; flex-shrink: 0; }

@media (max-width: 640px){
  .contact-methods{ grid-template-columns: 1fr; }
  .contact-phone-bar{ justify-content: center; text-align: center; }
  .contact-phone-info{ align-items: center; }
  .contact-call-btn{ width: 100%; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--ink); color: var(--cream); padding: 56px 0 28px; }
.footer-top{ display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-brand img{ height: 24px; margin-bottom: 14px; }
.footer-brand p{ color: rgba(244,238,225,.65); font-size: 14px; max-width: 32ch; }
.footer-col h4{ font-size: 13px; letter-spacing: .05em; color: rgba(244,238,225,.55); margin-bottom: 14px; font-weight: 500; }
.footer-col a, .footer-col p{ display: block; font-size: 14.5px; color: rgba(244,238,225,.9); margin-bottom: 8px; }
.footer-bottom{
  border-top: 1px solid rgba(244,238,225,.14); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(244,238,225,.55);
}

/* =========================================================
   MOBILE ACTION BAR
   ========================================================= */
.mobile-bar{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 460;
  display: none; grid-template-columns: 1fr 1fr 1fr;
  background: var(--ink); box-shadow: 0 -8px 24px rgba(0,0,0,.18);
}
.mobile-bar a{
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 12px 4px 14px; color: var(--cream); font-size: 11.5px; font-weight: 500;
  border-right: 1px solid rgba(244,238,225,.14);
}
.mobile-bar a:last-child{ border-right: 0; }
.mobile-bar svg{ width: 20px; height: 20px; }

/* =========================================================
   BOOK NOW MODAL
   ========================================================= */
.modal-overlay{
  position: fixed; inset: 0; z-index: 700; background: rgba(28,23,18,.55);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s var(--ease);
}
.modal-overlay.open{ opacity: 1; pointer-events: auto; }
@media (min-width: 640px){ .modal-overlay{ align-items: center; } }
.modal-sheet{
  background: var(--paper); width: 100%; max-width: 420px;
  border-radius: var(--radius-m) var(--radius-m) 0 0;
  padding: 30px 26px 34px;
  transform: translateY(24px); transition: transform .3s var(--ease);
}
.modal-overlay.open .modal-sheet{ transform: translateY(0); }
@media (min-width: 640px){ .modal-sheet{ border-radius: var(--radius-m); } }
.modal-head{ display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.modal-head h3{ font-family: var(--font-display); font-size: 24px; font-weight: 440; }
.modal-head p{ color: var(--ink-soft); font-size: 14px; margin-top: 6px; }
.modal-close{ background: none; border: none; width: 32px; height: 32px; color: var(--ink-faint); flex-shrink: 0; }
.modal-options{ display: flex; flex-direction: column; gap: 10px; }
.modal-option{
  display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--line);
  border-radius: var(--radius-s); background: var(--cream); transition: border-color .2s, background .2s;
}
.modal-option:hover{ border-color: var(--ink); background: var(--white); }
.modal-option .ico{
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--cream);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.modal-option .ico svg{ width: 18px; height: 18px; }
.modal-option-text b{ display: block; font-size: 15px; font-weight: 600; }
.modal-option-text span{ display: block; font-size: 13px; color: var(--ink-faint); margin-top: 2px; }

/* =========================================================
   LIGHTBOX (menu images / gallery)
   ========================================================= */
.lightbox{
  position: fixed; inset: 0; z-index: 800; background: rgba(20,16,12,.92);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.lightbox.open{ opacity: 1; pointer-events: auto; }
.lightbox img{ max-width: min(760px, 100%); max-height: 88vh; border-radius: var(--radius-s); }
.lightbox .lb-close{
  position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(244,238,225,.12); color: var(--cream); border: none; display: flex; align-items: center; justify-content: center;
}
.lightbox .lb-caption{ position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; color: var(--cream); font-size: 14px; opacity: .8; }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-media-tag{ left: 16px; bottom: -16px; }
  .gallery-grid{ columns: 3 220px; }
  .combo-card{ grid-template-columns: 1fr; }
  .combo-tiers{ grid-template-columns: repeat(4, minmax(0,1fr)); }
  .location-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .menu-list{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .main-nav{ display: none; }
  .header-right .lang-switch{ display: none; }
  .nav-toggle{ display: block; }
  .experience-item, .experience-item:nth-child(even){ grid-template-columns: 1fr; }
  .experience-item .experience-media, .experience-item:nth-child(even) .experience-media{ order: 1; }
  .experience-item .experience-copy, .experience-item:nth-child(even) .experience-copy{ order: 2; }
  .mobile-bar{ display: grid; }
  body{ padding-bottom: 60px; }
  .header-right .btn{ padding: 11px 18px; font-size: 13px; }
}

@media (max-width: 640px){
  .gallery-grid{ columns: 2 160px; }
  .combo-tiers{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-top{ flex-direction: column; gap: 28px; }
  .map-card{ min-height: 260px; }
  .loc-btn{ width: 100%; }
}

@media (max-width: 420px){
  .hero-actions .btn{ flex: 1 1 auto; }
}
