@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Onest:wght@200;300;400;500;600&display=swap");
@import "variables.css";

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: transparent; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-ink-soft);
  background: var(--mesh-1);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

/* ── Ambient mesh ── */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 10%, var(--mesh-4) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 15%, var(--mesh-2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 90%, var(--mesh-3) 0%, transparent 55%),
    linear-gradient(160deg, var(--mesh-1), #faf8fc);
}
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  animation: float 14s var(--ease) infinite alternate;
}
.orb--1 { width: 420px; height: 420px; background: var(--color-rose); top: -80px; left: -60px; }
.orb--2 { width: 320px; height: 320px; background: var(--color-lavender); top: 40%; right: -80px; animation-delay: -5s; }
.orb--3 { width: 280px; height: 280px; background: var(--color-peach); bottom: 5%; left: 25%; animation-delay: -9s; }
@keyframes float {
  to { transform: translate(24px, -20px) scale(1.06); }
}

.page { position: relative; z-index: 1; }
.container { width: min(var(--page-max), calc(100% - 40px)); margin-inline: auto; }

/* ── Glass primitive ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.35);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.35);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-glass);
}
.glass--strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(32px) saturate(1.4);
}

/* ── Header ── */
.header {
  position: sticky;
  top: 16px;
  z-index: 100;
  margin: 16px 20px 0;
  max-width: calc(var(--page-max) + 40px);
  margin-inline: auto;
}
.header__glass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
}
.logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
.nav { display: flex; gap: 22px; }
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-ink-soft);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--color-coral); }
.header__cta {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--color-coral), #e86b9a);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  box-shadow: 0 4px 20px rgba(241, 87, 48, 0.25);
}
.menu-btn { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--color-ink); padding: 4px 8px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn--glass {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(16px);
  border-color: var(--glass-border);
  color: var(--color-ink);
  box-shadow: var(--glass-shadow);
}
.btn--glass:hover { box-shadow: 0 12px 40px rgba(26,18,32,0.12); }
.btn--gradient {
  color: #fff;
  background: linear-gradient(135deg, var(--color-coral) 0%, #e86b9a 50%, var(--color-lavender) 100%);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 8px 28px rgba(232, 107, 154, 0.35);
}

/* ── Hero — NO full-bleed photo ── */
.hero {
  padding: 48px 0 32px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.hero__copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--glass-border-soft);
  color: var(--color-muted);
}
.tag--accent {
  color: var(--color-coral);
  border-color: rgba(241,87,48,0.25);
  background: rgba(241,87,48,0.08);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  margin: 0 0 16px;
}
.hero__title span {
  background: linear-gradient(135deg, var(--color-coral), #e86b9a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 16px;
  color: var(--color-muted);
  margin: 0 0 28px;
  max-width: 420px;
  line-height: 1.65;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero__langs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lang-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--glass-border-soft);
}
.lang-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.hero__visual {
  padding: 20px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-height: 480px;
}
.hero__portrait-wrap {
  position: relative;
  border-radius: var(--radius-glass-sm);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 340px;
}
.hero__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__portrait-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-ink);
}
.hero__nails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero__nail {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--glass-border);
}
.hero__nail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero floating stats */
.hero__float {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.float-card {
  padding: 18px 16px;
  border-radius: var(--radius-glass-sm);
  text-align: center;
}
.float-card__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--color-ink);
  line-height: 1;
  margin: 0 0 4px;
}
.float-card__lbl {
  font-size: 11px;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.35;
}

/* ── Marquee ── */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  margin: 8px 0 24px;
  border-block: 1px solid var(--glass-border-soft);
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: scroll 35s linear infinite;
  padding-inline: 24px;
}
.marquee__item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ── Values ── */
.section { padding: var(--section-gap) 0; }
.section__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin: 0 0 12px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0 0 12px;
}
.section__sub {
  color: var(--color-muted);
  max-width: 520px;
  margin: 0 0 40px;
  line-height: 1.6;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value-card {
  padding: 28px 24px;
  border-radius: var(--radius-glass);
  transition: transform 0.3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); }
.value-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--glass-border);
}
.value-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 8px;
}
.value-card__text {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Bento services ── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.bento__card {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-glass);
}
.bento__card--lg { grid-column: span 7; }
.bento__card--md { grid-column: span 5; }
.bento__card--sm { grid-column: span 4; }
.bento__media {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid var(--glass-border-soft);
  aspect-ratio: 4 / 3;
}
.bento__card--lg .bento__media { aspect-ratio: 2 / 1; }
.bento__card--md .bento__media { aspect-ratio: 5 / 4; }
.bento__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.bento__body { padding: 16px 18px 20px; }
.bento__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 6px;
}
.bento__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-coral);
  margin: 0 0 8px;
}
.bento__desc {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.45;
}

/* ── Materials strip ── */
.materials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.material-pill {
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink-soft);
}

/* ── Benefits mosaic ── */
.mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.mosaic__item {
  padding: 22px 20px;
  border-radius: var(--radius-glass-sm);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.mosaic__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-coral), #e86b9a);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
}
.mosaic__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 4px;
}
.mosaic__text {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.45;
}

/* ── About + founder ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  align-items: start;
}
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
}
.about-gallery__cell {
  border-radius: var(--radius-glass-sm);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.4);
  aspect-ratio: 3 / 4;
}
.about-gallery__cell--main {
  grid-column: 1 / -1;
  aspect-ratio: 5 / 3;
  max-height: 260px;
}
.about-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-gallery__cell--main img {
  object-position: center 10%;
}
.about-gallery__cell--p2 img {
  object-position: center 18%;
}
.about-gallery__cell--p3 img {
  object-position: center 38%;
}
.about-panel { padding: 32px 28px; }
.about-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.about-list li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border-soft);
  color: var(--color-ink-soft);
}
.about-list li:last-child { border-bottom: none; }

/* ── Location ── */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.location__map {
  padding: 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location__pin {
  font-size: 2rem;
  margin-bottom: 12px;
}
.location__address {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 8px;
  line-height: 1.4;
}
.location__steps {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}
.location__steps li { margin-bottom: 8px; }
.location__cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── Booking ── */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.booking-form { padding: 32px 28px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.field textarea { min-height: 90px; resize: vertical; }
.form-status { font-size: 13px; color: var(--color-coral); margin-top: 12px; }

/* ── Footer ── */
.footer {
  margin: 40px 20px 24px;
  padding: 32px 28px;
  border-radius: var(--radius-glass);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-ink);
  margin-bottom: 10px;
}
.footer__text { font-size: 14px; color: var(--color-muted); line-height: 1.55; max-width: 300px; }
.footer__col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink);
  margin: 0 0 14px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.footer__col a:hover { color: var(--color-coral); }
.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid var(--glass-border-soft);
  font-size: 12px;
  color: var(--color-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Mobile drawer (hidden on desktop) ── */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.nav-drawer.is-open {
  pointer-events: auto;
}
.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 32, 0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.nav-drawer.is-open .nav-drawer__backdrop {
  opacity: 1;
}
.nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  padding: calc(20px + env(safe-area-inset-top)) 22px calc(24px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  border-radius: 0;
  border-left: 1px solid var(--glass-border);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.nav-drawer.is-open .nav-drawer__panel {
  transform: translateX(0);
}
.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.nav-drawer__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-ink);
}
.nav-drawer__close {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--glass-border-soft);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
  color: var(--color-ink);
}
.nav-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.nav-drawer__link {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-ink-soft);
  padding: 14px 12px;
  border-radius: 14px;
  transition: background 0.2s, color 0.2s;
}
.nav-drawer__link:hover,
.nav-drawer__link:focus-visible {
  background: rgba(255,255,255,0.45);
  color: var(--color-coral);
}
.nav-drawer__foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* ── Sticky mobile booking bar ── */
.mobile-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 90;
  gap: 8px;
  padding: 6px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 40px rgba(26, 18, 32, 0.15);
}
.mobile-bar__primary {
  flex: 1;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--color-coral), #e86b9a);
}
.mobile-bar__secondary {
  flex-shrink: 0;
  width: 52px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--glass-border-soft);
}
.mobile-bar.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

/* ── Location quick actions ── */
.location__quick {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.location__quick-btn {
  text-align: center;
  padding: 12px 8px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-ink-soft);
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--glass-border-soft);
}

/* ── Horizontal scroll utility ── */
.scroll-row {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-row::-webkit-scrollbar {
  display: none;
}

/* ── Body scroll lock ── */
body.nav-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .hero__grid, .about-split, .location, .booking-wrap { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .bento__card--lg, .bento__card--md, .bento__card--sm { grid-column: span 12; }
  .mosaic { grid-template-columns: 1fr; }
  .nav { display: none; }
  .menu-btn { display: block; }
  .nav-drawer { display: block; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 52px;
    --glass-blur: 14px;
    --radius-glass: 22px;
    --radius-glass-sm: 16px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .page {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }

  /* 1–3: compact header + safe area */
  .header {
    top: calc(8px + env(safe-area-inset-top));
    margin: 0 12px;
  }
  .header__glass {
    padding: 10px 16px;
    gap: 12px;
  }
  .header__cta {
    display: none;
  }

  /* 4–8: hero mobile rhythm */
  .hero {
    padding: 20px 0 16px;
  }
  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .hero__visual {
    order: -1;
    min-height: auto;
    padding: 8px;
    gap: 10px;
  }
  .hero__copy {
    padding: 26px 22px;
  }
  .hero__portrait-wrap {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    aspect-ratio: 5/4;
    max-height: none;
  }
  .hero__portrait-badge {
    font-size: 11px;
    padding: 10px 12px;
  }
  .hero__title {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }
  .hero__lead {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .hero__actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }
  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
  }
  .hero__tags {
    gap: 6px;
    margin-bottom: 14px;
  }
  .hero__langs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .hero__langs::-webkit-scrollbar { display: none; }
  .lang-chip {
    flex-shrink: 0;
    font-size: 11px;
    padding: 7px 12px;
  }

  /* 9: nail previews — full-width balanced row */
  .hero__nails {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .hero__nail {
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .hero__nail img {
    object-fit: cover;
    object-position: center;
    background: transparent;
  }

  /* 10: stats horizontal snap */
  .hero__float {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    margin-top: 12px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .hero__float::-webkit-scrollbar { display: none; }
  .float-card {
    flex: 0 0 44%;
    scroll-snap-align: start;
    padding: 14px 12px;
  }
  .float-card__num {
    font-size: 1.5rem;
  }

  /* 11: marquee compact */
  .marquee {
    padding: 14px 0;
    margin: 4px 0 16px;
  }
  .marquee__track {
    gap: 32px;
    animation-duration: 28s;
  }

  /* 12–13: section titles tighter */
  .section__sub {
    margin-bottom: 24px;
    font-size: 15px;
  }
  .section__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* 14–15: values horizontal carousel */
  .values {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .values::-webkit-scrollbar { display: none; }
  .value-card {
    flex: 0 0 84%;
    scroll-snap-align: start;
    padding: 22px 20px;
  }
  .value-card:hover {
    transform: none;
  }

  /* 16–17: bento service carousel */
  .bento {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .bento::-webkit-scrollbar { display: none; }
  .bento__card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }
  .bento__card--lg,
  .bento__card--md,
  .bento__card--sm {
    grid-column: auto;
  }
  .bento__media {
    aspect-ratio: 4 / 3;
    height: auto;
  }
  .bento__card--lg .bento__media {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  /* 18: materials horizontal strip */
  .materials {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-top: 20px;
    padding-bottom: 4px;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 85%, transparent);
  }
  .materials::-webkit-scrollbar { display: none; }
  .material-pill {
    flex-shrink: 0;
    padding: 10px 16px;
    font-size: 12px;
  }

  /* 19: mosaic compact */
  .mosaic {
    gap: 10px;
  }
  .mosaic__item {
    padding: 16px 14px;
    gap: 12px;
  }
  .mosaic__check {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  /* 20–21: about text-first + gallery swipe */
  .about-split {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .about-panel {
    order: -1;
    padding: 24px 20px;
  }
  .about-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .about-gallery::-webkit-scrollbar { display: none; }
  .about-gallery__cell {
    flex: 0 0 72%;
    aspect-ratio: 3 / 4;
    height: auto;
    scroll-snap-align: start;
  }
  .about-gallery__cell--main {
    flex: 0 0 85%;
    aspect-ratio: 4 / 5;
    grid-column: auto;
    max-height: none;
    height: auto;
  }
  .about-list li {
    padding: 8px 0;
    font-size: 13px;
  }
  .about-panel .btn {
    width: 100%;
    min-height: 48px;
  }

  /* 22–24: location mobile */
  .location__map {
    padding: 22px 20px;
    min-height: auto;
  }
  .location__address {
    font-size: 16px;
  }
  .location__quick {
    display: grid;
  }
  .location__steps {
    font-size: 13px;
    line-height: 1.6;
  }
  .location__cta .btn,
  .location__map > .btn {
    width: 100%;
    min-height: 48px;
  }

  /* 25–27: booking touch-friendly */
  .booking-wrap {
    gap: 16px;
  }
  .booking-form {
    padding: 22px 18px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    min-height: 48px;
    padding: 12px 14px;
    -webkit-appearance: none;
    appearance: none;
  }
  .field textarea {
    min-height: 100px;
  }
  .booking-form .btn {
    min-height: 52px;
  }

  /* 28: footer compact */
  .footer {
    margin: 20px 12px 12px;
    padding: 24px 20px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer__col a {
    padding: 4px 0;
    min-height: 32px;
    display: flex;
    align-items: center;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 4px;
  }

  /* 29: sticky bar visible */
  .mobile-bar {
    display: flex;
  }

  /* 30: lighter ambient for performance */
  .orb {
    opacity: 0.28;
    filter: blur(48px);
    animation-duration: 20s;
  }
  .orb--1 { width: 240px; height: 240px; }
  .orb--2 { width: 180px; height: 180px; }
  .orb--3 { width: 160px; height: 160px; }
  .glass {
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
  }
}

@media (max-width: 380px) {
  .hero__visual {
    padding: 6px;
    gap: 8px;
  }
  .float-card {
    flex: 0 0 52%;
  }
  .bento__card {
    flex: 0 0 92%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb,
  .marquee__track {
    animation: none;
  }
  .nav-drawer__panel,
  .nav-drawer__backdrop {
    transition: none;
  }
}

@media (hover: none) {
  .value-card:hover {
    transform: none;
  }
  .btn:active {
    transform: scale(0.97);
  }
}
