/* =========================================================
   H WELLNESS & RELAX — SHARED STYLESHEET
   Design reference: onsen.co.nz (warm minimal spa aesthetic)
   ========================================================= */

:root {
  --cream:     #F7F3EC;
  --ivory:     #FCFAF6;
  --charcoal:  #2B2925;
  --sage:      #8C9A7B;
  --sage-dark: #6E7C5E;
  --clay:      #B98F68;
  --mist:      #DED6C6;
  --line:      #E4DCCB;

  --font-serif: 'Cormorant Garamond', 'Noto Serif TC', 'Noto Serif SC', 'Noto Serif KR', Georgia, serif;
  --font-sans:  'DM Sans', 'Noto Sans TC', 'Noto Sans SC', 'Noto Sans KR', system-ui, -apple-system, sans-serif;

  --gap-section: 100px;
  --container: 1180px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* Scroll-reveal — fade + rise into place the first time a block enters the viewport */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Reusable "background video" utility — absolutely fills its (positioned) parent,
   sits on top of any poster <img>/background-image already in that parent so a
   missing video file just falls back to the static image underneath. */
.media-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ---------------- LANGUAGE SWITCH ----------------
   Only hide the INACTIVE languages — never touch the active
   language's own display value (breaks inline-flex/inline-block).
--------------------------------------------------- */
body.lang-en    .zh, body.lang-en    .zh-cn, body.lang-en    .ko { display: none !important; }
body.lang-zh    .en, body.lang-zh    .zh-cn, body.lang-zh    .ko { display: none !important; }
body.lang-zh-cn .en, body.lang-zh-cn .zh,    body.lang-zh-cn .ko { display: none !important; }
body.lang-ko    .en, body.lang-ko    .zh,    body.lang-ko    .zh-cn { display: none !important; }

body.lang-zh-cn { --font-serif: 'Cormorant Garamond', 'Noto Serif SC', Georgia, serif; --font-sans: 'DM Sans', 'Noto Sans SC', system-ui, sans-serif; }
body.lang-ko    { --font-serif: 'Cormorant Garamond', 'Noto Serif KR', Georgia, serif; --font-sans: 'DM Sans', 'Noto Sans KR', system-ui, sans-serif; }

/* ---------------- TYPOGRAPHY ---------------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--charcoal); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.section-sub { max-width: 620px; color: #55524A; font-size: 17px; }
.section-head { text-align: center; margin: 0 auto 56px; max-width: 700px; }

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}
.btn-filled { background: var(--charcoal); color: var(--ivory); }
.btn-filled:hover { background: var(--sage-dark); }
.btn-dark { border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn-dark:hover { background: var(--charcoal); color: var(--ivory); }
.btn-light { border-width: 2px; border-color: var(--ivory); color: var(--ivory); background: transparent; }
.btn-light:hover { background: var(--ivory); color: var(--charcoal); }
.btn-filled-light { background: var(--ivory); color: var(--charcoal); }
.btn-filled-light:hover { background: var(--clay); color: var(--ivory); }
.btn-sage { background: var(--sage-dark); color: var(--ivory); }
.btn-sage:hover { background: var(--charcoal); }

/* ---------------- NAV ---------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: all 0.35s var(--ease-out);
}
/* Every page starts transparent over its hero photo; scrolling past the hero
   reveals a unified dark bar (same treatment site-wide, not just the homepage). */
.nav.is-scrolled {
  background: rgba(43, 41, 37, 0.92);
  backdrop-filter: blur(10px);
  padding: 16px 40px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}
/* Absolutely centered so it stays dead-center regardless of how wide the left/right
   nav content is (a plain 3-column grid would center it relative to the two side
   tracks instead, which drifts off-center whenever those tracks are unequal). */
.nav__logo {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  white-space: nowrap;
}
.nav__logo__title {
  font-family: var(--font-serif); font-size: 25px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--ivory);
}
.nav__logo__title span { color: var(--clay); }
.nav__logo__tagline {
  font-family: var(--font-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mist);
}

.nav__menu { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.nav__menu > li { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 5px;
  padding: 11px 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ivory);
}
.nav__link:hover { color: var(--clay); }
span.nav__link { cursor: default; }
.nav__caret { width: 9px; height: 9px; opacity: 0.7; }

.nav__dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: var(--ivory);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(43, 41, 37, 0.14);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease-out);
}
li.has-dropdown:hover .nav__dropdown,
.nav__lang:hover .nav__lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: 8px;
  font-weight: 600;
}
.nav__dropdown a:hover { background: var(--cream); color: var(--sage-dark); }

.nav__right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; white-space: nowrap; }

/* Book Now / Waitlist — small separate pill buttons, not fused */
.nav__small-btn {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1.5px solid var(--ivory);
  transition: all 0.3s var(--ease-out);
}
.nav__small-btn--filled { background: var(--ivory); color: var(--charcoal); }

.nav__lang { position: relative; }
.nav__lang-trigger {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: none; cursor: pointer;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--ivory); font-family: var(--font-sans);
  padding: 11px 14px;
  white-space: nowrap; flex-shrink: 0;
}
.nav__lang-dropdown { right: 0; left: auto; }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  background: transparent; border: none; cursor: pointer;
  padding: 11px 20px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: var(--charcoal); border-radius: 8px;
  font-family: var(--font-sans);
}
.lang-option:hover, .lang-option.active { background: var(--cream); color: var(--sage-dark); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ivory); border-radius: 2px; transition: 0.3s; }

/* ---------------- MOBILE NAV ---------------- */
.nav__mobile {
  position: fixed; inset: 0; z-index: 900;
  background: var(--ivory);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
  padding: 100px 32px 60px;
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile__close { position: absolute; top: 26px; right: 28px; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--charcoal); }
.nav__mobile a, .nav__mobile__group-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  background: none; border-top: none; border-left: none; border-right: none;
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
}
.nav__mobile-sub { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.nav__mobile-group.is-open .nav__mobile-sub { max-height: 400px; }
.nav__mobile-sub a { padding: 14px 0 14px 20px; font-size: 13px; border-bottom: none; font-weight: 600; color: #55524A; }
.nav__mobile__book { margin-top: 30px; }

/* ---------------- PAGE HERO (inner pages) ---------------- */
.page-hero {
  position: relative;
  height: 56vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,41,37,0.35) 0%, rgba(43,41,37,0.55) 100%);
}
/* An optional .media-video as the first child sits behind this ::after gradient and
   the .page-hero__inner text automatically (paint order), falling back cleanly to
   the page-hero's own background-image if no video file is present. */
.page-hero__inner { position: relative; z-index: 2; padding-bottom: 64px; width: 100%; }
.page-hero .eyebrow { color: var(--mist); }
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); color: var(--ivory); }

/* ---------------- HOME HERO ---------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
  text-align: left;
  color: var(--ivory);
  background: linear-gradient(160deg, #4B5A43 0%, #2B2925 100%);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center calc(50% - 100px); opacity: 0.5; }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(43,41,37,0.94) 0%, rgba(43,41,37,0.72) 38%, rgba(43,41,37,0.28) 60%, rgba(43,41,37,0.1) 100%);
  z-index: 1;
}
.hero__video {
  position: absolute;
  top: 32%;
  right: -4%;
  width: 66%;
  height: 56%;
  border-radius: 90px 0 90px 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 40px 90px rgba(0,0,0,0.35);
}
.hero__video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__inner { position: relative; z-index: 2; max-width: 760px; margin: 0; padding: 0 24px 0 110px; }
.hero .eyebrow { color: var(--mist); }
.hero h1 { font-size: clamp(30px, 4.6vw, 58px); color: var(--ivory); margin-bottom: 20px; }
@media (min-width: 480px) {
  .hero h1 { white-space: nowrap; }
}
.hero p { font-size: 17px; color: var(--mist); max-width: 560px; margin: 0 0 36px; }
.hero__actions { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
.hero__explore {
  position: absolute;
  left: 28px; bottom: 42px;
  z-index: 2;
  display: flex; align-items: center; gap: 16px;
  writing-mode: vertical-rl;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: var(--mist);
}
.hero__explore::after { content: ''; width: 1px; height: 64px; background: var(--mist); opacity: 0.6; }

/* ---------------- SECTIONS ---------------- */
section { padding: var(--gap-section) 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--charcoal); color: var(--ivory); }
.section-dark h2, .section-dark h3 { color: var(--ivory); }
.section-dark .section-sub { color: #C9C4B8; }
.section-dark .eyebrow { color: var(--mist); }
.section-dark .branch-reviews-contact__col { background: none; border: none; padding: 0; }
.section-dark .contact-card { background: none; border: none; padding: 0; }
.section-dark .contact-card__branch { color: var(--clay); }
.section-dark .contact-card__phone { color: var(--ivory); }

/* Intro / story teaser */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.intro-split__image { position: relative; z-index: 1; overflow: hidden; aspect-ratio: 4/5; }
#menu > .intro-split > .intro-split__image:first-child { margin-top: -120px; }
#menu > .intro-split + .container { margin-top: 40px; }
.intro-split__image img { width: 100%; height: 100%; object-fit: cover; }

/* Corner-morph: sharp rectangle that rounds its top-left/bottom-right
   corners into a soft diagonal shape as it scrolls up the viewport.
   Radius is set inline by main.js — keep this at 0 as the resting state. */
.corner-morph { overflow: hidden; border-radius: 0; will-change: border-radius; }
.intro-split__body p { color: #55524A; margin-bottom: 18px; font-size: 16px; }

/* Video gallery — grid of short vertical clips */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-grid__item { position: relative; aspect-ratio: 9/16; overflow: hidden; background: var(--charcoal); }
.gallery-grid--photos { grid-template-columns: repeat(3, 1fr); }
.gallery-grid--photos .gallery-grid__item { aspect-ratio: 4/3; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; }

/* Branches section — dark, full-bleed peek carousel (center slide emphasized, neighbours
   peek at the sides), swipe/drag only, no arrow buttons. Each slide auto-cycles through
   its own photos every 1.5s (main.js), independent of switching between branches. */
.section-branches { background: var(--charcoal); color: var(--ivory); }
.section-branches .eyebrow { color: var(--mist); }
.section-branches .section-title { color: var(--ivory); }
.section-branches .section-sub { color: #C9C4B8; }

.branch-slider { position: relative; overflow: hidden; width: 100%; padding: 60px 0; }
.branch-slider__track { display: flex; cursor: grab; touch-action: pan-y; will-change: transform; }
.branch-slider__track.is-dragging { cursor: grabbing; }
.branch-slider__slide {
  position: relative;
  flex: 0 0 30%;
  margin: 0 1.5%;
  aspect-ratio: 4/3;
  border-radius: 0;
  overflow: hidden;
  background-color: #3A3833;
  opacity: 0.5;
  transform: scale(0.9);
  will-change: transform, border-radius;
  transition: transform 0.45s var(--ease-out), opacity 0.45s var(--ease-out), border-radius 0.45s var(--ease-out);
}
.branch-slider__slide.is-active { opacity: 1; transform: scaleX(1.62) scaleY(1.35); border-radius: 64px 0 64px 0; z-index: 2; }
.branch-slider__slide--soon { filter: grayscale(1); display: flex; align-items: center; justify-content: center; }
.branch-slider__soon-label { font-family: var(--font-serif); font-size: 26px; color: var(--mist); letter-spacing: 0.04em; }
.branch-slider__photo { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.branch-slider__photo.is-active { opacity: 1; }

.branch-slider__dots { display: flex; justify-content: center; gap: 10px; margin: 26px 0; }
.branch-slider__dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); border: none; cursor: pointer; padding: 0; transition: all 0.3s var(--ease-out); }
.branch-slider__dots button.is-active { background: var(--clay); width: 26px; border-radius: 5px; }

/* Branch info + Reviews sit side by side in one row on desktop */
.branch-reviews-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 50px; align-items: start; text-align: left; }
.branch-reviews-row.has-no-reviews { grid-template-columns: 1fr; max-width: 620px; margin-left: auto; margin-right: auto; }
.branch-reviews-row.has-no-reviews .reviews-column { display: none; }
.branch-slider__info { text-align: left; }
.branch-slider__panel { display: none; }
.branch-slider__panel.is-active { display: block; animation: branchPanelIn 0.4s var(--ease-out); }
.branch-slider__tag { display: block; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); font-weight: 700; margin-bottom: 12px; }
.branch-slider__title { font-size: 38px; margin-bottom: 16px; }
/* .branch-slider__title is an h3, which defaults to dark charcoal text — invisible on
   this section's dark background unless explicitly overridden back to ivory. */
.section-branches .branch-slider__title { color: var(--ivory); }
.branch-slider__rating { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--clay); letter-spacing: 1px; margin-bottom: 20px; }
.branch-slider__rating strong { color: var(--ivory); font-size: 15px; }
.branch-slider__rating span { color: #A9A498; letter-spacing: normal; font-size: 13px; }
.branch-slider__desc { color: #C9C4B8; max-width: 560px; margin: 0 0 24px; }
@keyframes branchPanelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.branch-slider__meta { display: flex; flex-direction: column; gap: 14px; margin: 0 0 26px; }
.branch-slider__meta li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #C9C4B8; }
.branch-slider__meta svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--clay); }
.branch-slider__meta a { color: var(--ivory); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 1px; }
.branch-slider__meta a:hover { color: var(--clay); border-color: var(--clay); }
.section-branches .btn-dark { border-color: var(--ivory); color: var(--ivory); }
.section-branches .btn-dark:hover { background: var(--ivory); color: var(--charcoal); }

/* Reviews synced with the branch slider — light card so 3rd-party review widgets
   (which bring their own light styling) read as an intentional card on the dark section */
.reviews-column .branch-slider__tag, .reviews-column .branch-slider__title { text-align: left; }
.reviews-column .branch-slider__title { color: var(--ivory); }
.reviews-sync { min-height: 160px; }
.reviews-panel { display: none; }
.reviews-panel.is-active { display: block; animation: branchPanelIn 0.4s var(--ease-out); }

/* Mobile-only stacked branch list (replaces the swipe carousel below 768px) —
   each branch's photo + info appear one after another, reviews consolidated at the end. */
.branch-mobile-list { display: none; }
.branch-mobile-item { margin-bottom: 48px; }
.branch-mobile-item__photo { aspect-ratio: 4/3; border-radius: 24px; background-size: cover; background-position: center; margin-bottom: 24px; }
.branch-mobile-item__photo--soon { filter: grayscale(1); background: #3A3833; display: flex; align-items: center; justify-content: center; }
.branch-mobile-item__info { text-align: left; }
.branch-mobile-reviews { text-align: left; margin-top: 8px; }
.branch-mobile-reviews__sub { color: #C9C4B8; margin: -8px 0 28px; }
.branch-mobile-reviews__widget { margin-bottom: 32px; }
.branch-mobile-reviews__label { display: block; font-weight: 700; color: var(--ivory); margin-bottom: 12px; }

/* Full bleed banner */
.full-bleed {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  padding: 70px 24px;
  overflow: hidden;
}
.full-bleed::after { content: ''; position: absolute; inset: 0; background: rgba(43,41,37,0.55); }
.full-bleed__inner { position: relative; z-index: 2; max-width: 640px; }
.full-bleed h2 { color: var(--ivory); }
.full-bleed__sub { color: var(--mist); margin-top: 14px; font-size: 16px; }

/* Getting Here transport grid */
.transport-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
.transport-card { background: var(--ivory); border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px; }
.transport-card--plain { background: none; border: none; padding: 0; }
.transport-card__map-btn { margin-top: 16px; }

/* Branch page "Getting Here" row — info cards (left) + "What to expect?" panel (right) */
.getting-here-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; align-items: stretch; }
.getting-here-row__col { display: flex; flex-direction: column; gap: 20px; }
.getting-here-row__col--expect {
  position: relative;
  color: var(--ivory);
  padding: 40px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--charcoal) center/cover;
}
.getting-here-row__col--expect::before { content: ''; position: absolute; inset: 0; background: rgba(43,41,37,0.65); z-index: 1; }
.getting-here-row__col--expect > * { position: relative; z-index: 2; }
.getting-here-row__col--expect .media-video { position: absolute; z-index: 0; }
.getting-here-row__col--expect h3 { color: var(--ivory); font-size: 28px; margin-bottom: 14px; }
.getting-here-row__col--expect p { color: #C9C4B8; margin-bottom: 24px; font-size: 15px; }
.getting-here-row__col--expect .hero__actions { justify-content: flex-start; }

/* Small "What to Expect?" video card tucked under the Gallery intro text */
.expect-mini {
  position: relative;
  z-index: 2;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-top: 80px;
  margin-left: -250px;
  width: 79%;
  display: flex;
  align-items: flex-end;
}
.expect-mini::before { content: ''; position: absolute; inset: 0; background: rgba(43,41,37,0.6); z-index: 1; }
.expect-mini > * { position: relative; z-index: 2; }
.expect-mini .media-video { position: absolute; z-index: 0; }
.expect-mini__content { padding: 22px; }
.expect-mini h3 { color: var(--ivory); font-size: 20px; margin-bottom: 8px; }
.expect-mini p { color: #C9C4B8; margin-bottom: 16px; font-size: 14px; }
.expect-mini .hero__actions { gap: 10px; justify-content: flex-end; }
.expect-mini .btn { padding: 11px 22px; font-size: 11px; }

/* FAQ + companion photo/video */
.faq-with-media { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: start; }
.faq-with-media__media { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--charcoal); }
.faq-with-media__media img, .faq-with-media__media .media-video { width: 100%; height: 100%; object-fit: cover; }
.transport-card__label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-dark); font-weight: 700; margin-bottom: 8px; }
.transport-card p { color: #55524A; font-size: 15px; }

/* Generic icon+text info list, for light backgrounds (see .branch-slider__meta for the dark-section equivalent) */
.info-meta { display: flex; flex-direction: column; gap: 13px; margin: 16px 0 0; }
.info-meta li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #55524A; }
.info-meta svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--sage-dark); }
.info-meta a { color: var(--charcoal); font-weight: 600; border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.info-meta a:hover { color: var(--sage-dark); border-color: var(--sage-dark); }

/* Quick stat row — icon + number + label, 3-up, for a branch intro paragraph */
.expect-row { display: flex; align-items: center; gap: 28px; }
.stat-row { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 16px; margin: 0; flex-shrink: 0; }
.stat-row__item { display: flex; align-items: center; gap: 10px; }
.stat-row__item svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--clay); }
.stat-row__number { display: block; font-family: var(--font-serif); font-size: 22px; color: var(--charcoal); line-height: 1; }
.stat-row__label { display: block; font-size: 12px; color: #6B6860; margin-top: 2px; }
@media (max-width: 980px) {
  .expect-row { flex-direction: column; align-items: stretch; }
  .stat-row { flex-direction: row; gap: 20px; }
}
@media (max-width: 480px) { .stat-row { gap: 20px; } }

/* Location cards — swipeable/drag row instead of a static grid */
.location-cards { overflow: hidden; margin-top: 40px; }
.location-cards__track {
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 6px;
}
.location-cards__track::-webkit-scrollbar { display: none; height: 0; }
.location-cards__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.location-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 28px;
}
.location-card__label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-dark); font-weight: 700; margin-bottom: 8px; }
.location-card p { color: #55524A; font-size: 15px; }

/* In the Spa — two landscape photos, diagonal corners (top-left/bottom-right rounded via .corner-morph) */
.in-spa-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.in-spa-photos__item { position: relative; aspect-ratio: 4/3; }
.in-spa-photos__item img { width: 100%; height: 100%; object-fit: cover; }
.in-spa-photos--single { grid-template-columns: 1fr; max-width: 780px; margin: 0 auto; }
.in-spa-photos--single .in-spa-photos__item { aspect-ratio: 16/9; }
.map-frame { border-radius: 18px; overflow: hidden; margin-top: 46px; height: 380px; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
/* Google My Maps embeds show a title/attribution banner (map name + owner) along the top —
   crop it out of view by oversizing the iframe and pulling it up with a negative margin. */
.map-frame--mymaps { position: relative; }
.map-frame--mymaps iframe { height: calc(100% + 90px); margin-top: -90px; }

/* Menu */
.menu-category-nav {
  position: sticky; top: 76px; z-index: 15;
  display: flex; gap: 6px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  background: var(--cream); padding: 16px 0 0; margin-bottom: 30px;
  border-bottom: 1px solid var(--line); scrollbar-width: none;
}
.menu-category-nav::-webkit-scrollbar { display: none; height: 0; }
.menu-category-nav__link {
  flex: 0 0 auto; padding: 12px 20px; border-radius: 8px 8px 0 0; font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: #6B6860; background: var(--ivory);
  border: 1px solid var(--line); border-bottom: none; white-space: nowrap; transition: 0.2s;
  cursor: pointer; font-family: var(--font-sans); position: relative; top: 1px;
}
.menu-category-nav__link:hover { color: var(--charcoal); }
.menu-category-nav__link.is-active { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.menu-category { margin-bottom: 56px; scroll-margin-top: 140px; display: none; }
.menu-category.is-active { display: block; }
.menu-category__nav-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 20px; border-top: 1px dashed var(--line);
}
.menu-category__nav-footer a {
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer;
}
.menu-category__back-top { color: #8A8779; }
.menu-category__back-top:hover { color: var(--charcoal); }
.menu-category__next { color: var(--sage-dark); }
.menu-category__next:hover { color: var(--clay); }
.menu-category:last-child { margin-bottom: 0; }
.menu-category__title { font-size: 26px; margin-bottom: 26px; padding-bottom: 14px; border-bottom: 2px solid var(--line); }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 50px; }
.menu-split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-top: 34px; }
.menu-split-row .menu-list { grid-template-columns: 1fr; gap: 34px; }
.menu-split-row__photo { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.menu-split-row__photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-item { border-bottom: 1px dashed var(--line); padding-bottom: 18px; }
.menu-item__row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.menu-item__name { font-family: var(--font-serif); font-size: 19px; font-weight: 700; }
.menu-item__price { font-size: 14px; font-weight: 700; color: var(--sage-dark); white-space: nowrap; }
.menu-item__price small { font-weight: 500; color: #8A8779; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.menu-item__desc { font-size: 14px; color: #6B6858; }
.menu-item__note { font-size: 12px; color: #8A8779; font-style: italic; }
.menu-simple { max-width: 640px; margin: 0 auto; }
.menu-simple .menu-item { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.menu-simple .menu-item__name { font-size: 18px; }
.menu-simple .menu-item__price { font-size: 18px; }

/* Side-by-side branch review widgets (About page) */
.reviews-side-by-side { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.reviews-side-by-side__col { padding: 30px; }

/* Branch page: reviews widget (left) + contact info (right), side by side */
.branch-reviews-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.branch-reviews-contact.has-no-reviews { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
.branch-reviews-contact.has-no-reviews .branch-reviews-contact__col:first-child { display: none; }
.branch-reviews-contact__col { background: var(--ivory); border: 1px solid var(--line); border-radius: 20px; padding: 30px; }
.branch-reviews-contact__col .contact-card { background: transparent; border: none; padding: 0 0 22px; }
.branch-reviews-contact__col .contact-card:last-child { padding-bottom: 0; }

/* Menu section media strip — space to drop in treatment photos/videos */
.menu-media-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0 0 50px; }
.menu-media-strip__item { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--charcoal); }
.menu-media-strip__item img { width: 100%; height: 100%; object-fit: cover; }

/* FAQ accordion */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--charcoal);
}
.faq-item__icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-item__icon::before, .faq-item__icon::after { content: ''; position: absolute; background: var(--charcoal); transition: 0.3s; }
.faq-item__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-item__icon::after { left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%); }
.faq-item.is-open .faq-item__icon::after { opacity: 0; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-item__a p { padding: 0 4px 26px; color: #55524A; font-size: 15px; max-width: 640px; }
.faq-item.is-open .faq-item__a { max-height: 300px; }

/* Contact */
.section-photo { position: relative; overflow: hidden; }
.section-photo__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scaleX(-1); }
.section-photo::before { content: ''; position: absolute; inset: 0; background: rgba(43,41,37,0.6); }
.section-photo > .container { position: relative; z-index: 2; }
.section-photo .eyebrow { color: var(--clay); }
.section-photo h2, .section-photo .section-title { color: var(--ivory); }
.section-photo .section-sub { color: #C9C4B8; }
.section-photo .contact-form { background: var(--ivory); border-radius: 20px; padding: 32px; }
.section-photo .transport-card__label { color: var(--clay); }
.section-photo .transport-card p { color: #C9C4B8; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-card { background: var(--ivory); border: 1px solid var(--line); border-radius: 18px; padding: 32px; margin-bottom: 20px; }
.contact-branch-grid .contact-card { background: none; border: none; padding: 0; }
.contact-card__photo { position: relative; aspect-ratio: 4/3; overflow: hidden; margin-bottom: 20px; }
.contact-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-card__branch { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-dark); font-weight: 700; margin-bottom: 10px; }
.contact-card__phone { font-family: var(--font-serif); font-size: 26px; margin-bottom: 14px; }
.contact-card__icons { display: flex; gap: 24px; }
.contact-card__icons a { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.contact-card__icon-circle { width: 38px; height: 38px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; }
.contact-card__icons svg { width: 18px; height: 18px; }
.contact-card__icon-label { font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #8A8779; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 15px 18px; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--font-sans); font-size: 15px; background: var(--ivory); color: var(--charcoal);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; color: #8A8779; margin-bottom: -8px; }

/* Instagram — official oEmbed reel embeds */
.insta-embed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; justify-items: center; }
.insta-embed-grid .instagram-media { margin: 0 !important; width: 100% !important; max-width: 360px !important; min-width: 0 !important; }

/* Coming soon inline block */

/* ---------------- FOOTER ---------------- */
footer { background: var(--charcoal); color: var(--mist); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-brand__logo { display: block; font-family: var(--font-serif); font-size: 26px; color: var(--ivory); margin-bottom: 16px; }
.footer-brand__logo span { color: var(--clay); }
.footer-brand p { font-size: 14px; color: #A9A498; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #4A483F; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.footer-social a:hover { background: var(--clay); border-color: var(--clay); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: var(--ivory); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-sans); font-weight: 700; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: #A9A498; margin-bottom: 12px; }
.footer-col a:hover { color: var(--ivory); }
.footer-bottom { border-top: 1px solid #4A483F; padding-top: 26px; text-align: center; font-size: 12px; color: #7C7969; }

/* ---------------- WHATSAPP FLOAT ---------------- */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------------- RESPONSIVE ---------------- */
/* ---------------- PHOTO CAROUSEL (arrow-navigated horizontal scroll) ---------------- */
.photo-carousel { position: relative; margin-top: 40px; }
.photo-carousel__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.photo-carousel__track::-webkit-scrollbar { display: none; height: 0; }
.photo-carousel__item { position: relative; overflow: hidden; scroll-snap-align: start; flex: 0 0 220px; aspect-ratio: 1/1; }
.photo-carousel__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  background: none; border: none; padding: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; transition: 0.2s;
}
.photo-carousel__arrow:hover svg { stroke: var(--clay); }
.photo-carousel__arrow--prev { left: -44px; }
.photo-carousel__arrow--next { right: -44px; }
@media (max-width: 980px) {
  .photo-carousel__arrow { display: none; }
}
@media (max-width: 768px) {
  .photo-carousel__item { flex-basis: 150px; }
  .photo-carousel__track { gap: 10px; }
}

/* ---------------- RESERVATIONS WIZARD ---------------- */
.res-progress { display: flex; gap: 8px; margin-bottom: 40px; }
.res-progress__step { flex: 1; text-align: center; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #8A8779; padding-bottom: 12px; border-bottom: 3px solid var(--line); font-weight: 700; }
.res-progress__step.is-active { color: var(--charcoal); border-color: var(--clay); }
.res-progress__step.is-done { color: var(--sage-dark); border-color: var(--sage-dark); }
.res-step { display: none; }
.res-step.is-active { display: block; }
.res-branch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.res-branch-card { border: 2px solid var(--line); border-radius: 0; padding: 20px; text-align: center; cursor: pointer; transition: 0.2s; background: var(--ivory); }
.res-branch-card__photo { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 16px; }
.res-branch-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.res-branch-card:hover { border-color: var(--clay); }
.res-branch-card--disabled { cursor: default; opacity: 0.85; }
.res-branch-card--disabled:hover { border-color: var(--line); }
.res-branch-card.is-selected { border-color: var(--clay); background: #FAF3E9; }
.res-branch-card h3 { font-size: 19px; margin-bottom: 6px; }
.res-branch-card p { font-size: 13px; color: #6B6860; }
.res-branch-card__hours { margin-top: 10px; font-size: 12px; color: var(--sage-dark); font-weight: 600; }
.res-branch-card__row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; }
.res-branch-card__row a { font-size: 13px; color: var(--charcoal); font-weight: 600; }
.res-branch-card__row a[aria-label="WhatsApp"] { display: flex; }
.res-branch-card__map { display: block; margin-top: 10px; font-size: 12px; color: var(--sage-dark); text-decoration: underline; }
.res-service-section { margin-top: 44px; padding-top: 40px; border-top: 1px solid var(--line); opacity: 0.4; pointer-events: none; transition: opacity 0.3s; }
.res-service-section.is-enabled { opacity: 1; pointer-events: auto; }
.res-service-section__title { font-family: var(--font-serif); font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.res-service-photo { aspect-ratio: 16/9; overflow: hidden; margin-bottom: 24px; }
.res-service-photo img { width: 100%; height: 100%; object-fit: cover; }
.res-duration-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.res-duration-btn { border: 2px solid var(--line); background: var(--ivory); padding: 16px; font-family: var(--font-sans); font-size: 15px; font-weight: 700; cursor: pointer; transition: 0.2s; }
.res-duration-btn:hover { border-color: var(--clay); }
.res-duration-btn.is-selected { border-color: var(--clay); background: #FAF3E9; }
.res-summary { background: var(--cream); border-radius: 14px; padding: 20px 24px; margin-bottom: 24px; font-size: 14px; }
.res-summary strong { font-family: var(--font-serif); font-size: 18px; }
.res-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; gap: 16px; }

.res-datepicker { position: relative; }
.res-datepicker__trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; padding: 15px 18px; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--font-sans); font-size: 15px; background: var(--ivory); color: #8A8779;
  cursor: pointer; text-align: left;
}
.res-datepicker__trigger svg { width: 18px; height: 18px; flex-shrink: 0; color: #8A8779; }
.res-datepicker__value.is-set { color: var(--charcoal); font-weight: 600; }
.res-datepicker__panel {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 20;
  width: 320px; max-width: 90vw; background: var(--ivory); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: 0 18px 40px rgba(43,41,37,0.16); padding: 18px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.2s var(--ease-out);
}
.res-datepicker.is-open .res-datepicker__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.res-datepicker__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.res-datepicker__title { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--charcoal); }
.res-datepicker__nav {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); background: none;
  font-size: 16px; color: var(--charcoal); cursor: pointer; transition: 0.2s;
}
.res-datepicker__nav:hover { background: var(--clay); border-color: var(--clay); color: var(--ivory); }
.res-datepicker__weekdays, .res-datepicker__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.res-datepicker__weekdays span { font-size: 11px; font-weight: 700; color: #8A8779; padding: 4px 0; }
.res-datepicker__day {
  aspect-ratio: 1/1; border: none; background: none; border-radius: 50%; font-family: var(--font-sans);
  font-size: 13px; color: var(--charcoal); cursor: pointer; transition: 0.15s;
}
.res-datepicker__day:hover:not(:disabled) { background: var(--cream); }
.res-datepicker__day.is-selected { background: var(--clay); color: var(--ivory); font-weight: 700; }
.res-datepicker__day:disabled { color: var(--line); cursor: default; }
@media (min-width: 768px) {
  .res-datepicker__panel { width: 380px; padding: 24px; }
  .res-datepicker__title { font-size: 20px; }
  .res-datepicker__nav { width: 34px; height: 34px; font-size: 18px; }
  .res-datepicker__weekdays span { font-size: 12px; }
  .res-datepicker__day { font-size: 15px; }
  .res-datepicker__weekdays, .res-datepicker__days { gap: 6px; }
}

@media (max-width: 980px) {
  .intro-split { grid-template-columns: 1fr; gap: 36px; }
  #menu > .intro-split > .intro-split__image:first-child { margin-top: 0; }
  .expect-mini { margin-left: 0; width: 100%; }
  .branch-slider__slide { aspect-ratio: 16/10; }
  .reviews-side-by-side { grid-template-columns: 1fr; }
  .branch-reviews-contact { grid-template-columns: 1fr; }
  .nacpan-shuttle-row { padding-bottom: 0 !important; }
  .nacpan-shuttle-btn { position: static !important; left: auto !important; transform: none !important; margin-top: 16px; }
  .menu-media-strip { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .branch-reviews-row { grid-template-columns: 1fr; gap: 44px; }
  .menu-list { grid-template-columns: 1fr; }
  .menu-split-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .res-branch-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__menu, .nav__lang, .nav__small-btn { display: none; }
  .nav__toggle { display: flex; }
  .nav__logo__title { font-size: 20px; }
  .nav__logo__tagline { font-size: 8px; letter-spacing: 0.1em; }
  /* LCP fix: serve the pre-shrunk mobile hero image instead of the 1800px desktop
     one — !important is required to beat the inline background-image style set
     directly on .hero__bg in the HTML. */
  .hero__bg { background-image: url('images/home-page-mobile.jpg?v=20260820a') !important; }
  .container { padding: 0 20px; }
  .page-hero__inner { padding-left: 30px; padding-right: 30px; }
  .hero__inner { padding: 0 20px 0 24px; }
  :root { --gap-section: 70px; }
  .branch-slider { padding: 65px 0; }
  .branch-slider__slide { aspect-ratio: 4/3; flex-basis: 84%; border-radius: 18px; }
  .location-card { flex-basis: 82%; }
  .in-spa-photos { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: 1fr; }
  .getting-here-row { grid-template-columns: 1fr; }
  .faq-with-media { grid-template-columns: 1fr; }
  .faq-with-media__media { aspect-ratio: 16/10; }
  .getting-here-row__col--expect .btn, .branch-reviews-contact .btn { padding: 11px 22px; font-size: 11px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .insta-embed-grid { display: flex; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; gap: 18px; justify-items: unset; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .insta-embed-grid .instagram-media { flex: 0 0 84%; scroll-snap-align: center; max-width: none !important; }
  .hero .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero .hero__actions .btn { padding: 12px 26px; font-size: 12px; }
  .hero__video { display: none; }
  .hero__bg { background-position: 26% center; }
  .hero::after { background: linear-gradient(180deg, rgba(43,41,37,0.55), rgba(43,41,37,0.8)); }
  .hero__explore { display: none; }
  .page-hero { align-items: center; }
  .page-hero__inner { padding-bottom: 0; }
  .branch-slider, .branch-slider__dots, .branch-reviews-row { display: none; }
  .branch-mobile-list { display: block; }
}
