/* Bliss Nails & Beauty Studio
   Palette taken from TO Nails Station (cream, nude, antique gold).
   Layout is original editorial, not that site. */

@import url("https://fonts.googleapis.com/css2?family=Allura&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,500;1,6..96,600&family=Great+Vibes&family=Outfit:wght@300;400;500;600;700&display=swap");

@font-face {
  font-family: "Eyesome Script";
  src: url("../fonts/eyesome-script.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold: #c89b5c;
  --gold-deep: #a67c33;
  --bronze: #5a422a;
  --ink: #3e3228;
  --text: #333333;
  --text-soft: #7a6a5d;
  --paper: #e3e2dd;
  --nude: #eaddd1;
  --ivory: #f6f1ea;
  --white: #ffffff;
  --line: rgba(62, 50, 40, 0.14);
  --line-strong: rgba(62, 50, 40, 0.28);
  --shadow: 0 18px 50px rgba(62, 50, 40, 0.12);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --serif: "Bodoni Moda", "Times New Roman", serif;
  --script: "Eyesome Script", "Allura", "Great Vibes", cursive;
  --sans: "Outfit", system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1180px;
  --nav-h: 72px;
  --z-nav: 40;
  --z-overlay: 50;
  --z-lightbox: 60;
  --z-grain: 70;
}

*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

img, video, iframe { max-width: 100%; display: block; }
button, input { font-family: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}

p { color: var(--text-soft); text-wrap: pretty; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--bronze);
  color: var(--ivory);
  padding: 0.6rem 1rem;
  z-index: 80;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-grain);
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.wrap {
  width: min(var(--max), calc(100vw - 2.5rem));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85rem 1.15rem 0.85rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}
.btn__icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(246, 241, 234, 0.16);
  transition: transform 0.45s var(--ease);
}
.btn svg { width: 14px; height: 14px; }
.btn:hover .btn__icon { transform: translate(2px, -1px) scale(1.05); }

.btn--solid {
  background: var(--bronze);
  color: var(--ivory);
}
.btn--solid:hover { background: var(--ink); color: var(--ivory); }

.btn--ghost {
  background: transparent;
  color: var(--bronze);
  border: 1px solid var(--line-strong);
  padding-right: 1.35rem;
}
.btn--ghost:hover {
  background: var(--bronze);
  color: var(--ivory);
  border-color: var(--bronze);
}

.btn--light {
  background: var(--ivory);
  color: var(--bronze);
}
.btn--light:hover { background: var(--white); color: var(--ink); }
.btn--light .btn__icon { background: rgba(90, 66, 42, 0.1); }

/* Promo strip */
.promo-strip {
  background: var(--bronze);
  color: var(--ivory);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.promo-strip[hidden] { display: none !important; }
.promo-strip__inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0;
  text-align: center;
}
.promo-strip a { color: var(--ivory); text-decoration: underline; text-underline-offset: 3px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  padding: 0.7rem 0.75rem 0;
  width: 100%;
  max-width: 100vw;
  transition: padding 0.5s var(--ease);
}
.site-header.is-stuck { padding-top: 0.45rem; }
.site-header__bar {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 64px;
  max-height: 72px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.45rem 0.55rem 0.45rem 0.75rem;
  background: rgba(246, 241, 234, 0.86);
  border: 1px solid rgba(90, 66, 42, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(62, 50, 40, 0.08), inset 0 1px 0 rgba(255,255,255,0.7);
}
@media (prefers-reduced-transparency: reduce) {
  .site-header__bar { background: var(--ivory); }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid rgba(90, 66, 42, 0.16);
}
.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
  flex: 1 1 auto;
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand__name em {
  font-family: var(--script);
  font-style: normal;
  font-size: 1.45rem;
  color: var(--bronze);
  line-height: 1.1;
  padding-bottom: 0.08em;
}
.brand__sub {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-desktop {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 0.2rem;
}
.nav-desktop a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0.7rem;
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.28rem;
  height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] { color: var(--bronze); }
.nav-desktop a:hover::after,
.nav-desktop a[aria-current="page"]::after { transform: scaleX(1); }
.nav-desktop a:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; border-radius: 8px; }

.header-cta { display: none; margin-left: 0.4rem; }
.header-cta.is-visible { display: inline-flex; }

.burger {
  margin-left: auto;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.burger span:nth-child(1) { transform: translateY(-5px); }
.burger span:nth-child(3) { transform: translateY(5px); }
.burger.is-open span:nth-child(1) { transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-desktop, .header-cta { display: flex; }
  .burger { display: none; }
}

/* Mobile overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(62, 50, 40, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.menu-overlay.is-open { opacity: 1; pointer-events: auto; }
.menu-panel {
  position: absolute;
  inset: 4.8rem 0.75rem 0.8rem;
  background: var(--ivory);
  border-radius: 28px;
  padding: 1.3rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateY(16px);
  transition: transform 0.5s var(--ease);
  overflow: auto;
  border: 1px solid rgba(90, 66, 42, 0.12);
}
.menu-overlay.is-open .menu-panel { transform: none; }
.menu-panel__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1.1rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}
.menu-panel__brand .brand__mark {
  width: 56px;
  height: 56px;
}
.menu-panel__title {
  margin: 0;
  line-height: 1;
}
.menu-panel__title em {
  font-family: var(--script);
  font-style: normal;
  font-size: 2.2rem;
  color: var(--bronze);
  line-height: 1.1;
  padding-bottom: 0.08em;
}
.menu-panel__sub {
  margin: 0.15rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
}
.menu-panel__nav {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.4rem 0 1rem;
}
.menu-panel__nav a {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 7vw, 2.3rem);
  text-decoration: none;
  color: var(--ink);
  line-height: 1.2;
  padding: 0.28rem 0;
  opacity: 0;
  transform: translateY(18px);
}
.menu-overlay.is-open .menu-panel__nav a {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.menu-overlay.is-open .menu-panel__nav a:nth-child(1) { transition-delay: 0.08s; }
.menu-overlay.is-open .menu-panel__nav a:nth-child(2) { transition-delay: 0.14s; }
.menu-overlay.is-open .menu-panel__nav a:nth-child(3) { transition-delay: 0.2s; }
.menu-overlay.is-open .menu-panel__nav a:nth-child(4) { transition-delay: 0.26s; }
.menu-overlay.is-open .menu-panel__nav a:nth-child(5) { transition-delay: 0.32s; }
.menu-overlay.is-open .menu-panel__nav a:nth-child(6) { transition-delay: 0.38s; }
.menu-panel__nav a:hover { color: var(--bronze); }
.menu-panel__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.6rem;
}
.menu-panel__foot .btn { justify-content: center; width: 100%; }

body.menu-open { overflow: hidden; }

/* Hero */
.hero {
  min-height: 100dvh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5.2rem 0 3rem;
}
@media (max-width: 1023px) {
  .hero { padding: 4.5rem 0 8.6rem; align-items: start; }
  .hero h1 { font-size: clamp(2.05rem, 9vw, 2.85rem); }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: #eaddd1 center / cover no-repeat;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(227,226,221,0.72) 0%, rgba(227,226,221,0.28) 48%, rgba(227,226,221,0.08) 100%),
    linear-gradient(180deg, rgba(227,226,221,0.18) 0%, transparent 30%, rgba(62,50,40,0.1) 100%);
  pointer-events: none;
}
.hero__stage {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100vw - 2.2rem));
  margin: 0 auto;
  display: grid;
  gap: 1.8rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__stage {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 3.2rem;
    min-height: calc(100dvh - 7rem);
  }
}
.hero__copy {
  width: min(34rem, 100%);
}
.hero h1 { max-width: 11.5ch; }
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bronze);
  margin: 0 0 1rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: 0 0 0.35rem;
  color: var(--ink);
  line-height: 1.08;
}
.hero h1 em {
  font-family: var(--script);
  font-style: italic;
  font-weight: 400;
  font-size: 1.12em;
  color: var(--bronze);
  line-height: 1.15;
  padding: 0 0.05em 0.1em;
  display: inline-block;
}
.hero__lede {
  max-width: 34ch;
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 1.6rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.hero-camera {
  width: min(100%, 420px);
  justify-self: center;
}
@media (min-width: 900px) {
  .hero-camera { width: min(100%, 460px); justify-self: end; }
}
.hero-camera__gate {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: min(68vh, 640px);
  border-radius: 28px;
  overflow: hidden;
  padding: 0.55rem;
  background: rgba(90, 66, 42, 0.08);
  border: 1px solid rgba(90, 66, 42, 0.22);
  box-shadow: 0 24px 60px rgba(62, 50, 40, 0.16);
}
.hero-camera__reel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: calc(28px - 0.45rem);
  overflow: hidden;
  background: #2c241c;
}
.hero-camera__shot {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.hero-camera__shot.is-active { opacity: 1; z-index: 1; }
.hero-camera__shot img {
  width: 120%;
  height: 120%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.04);
}
.hero-camera__shot.is-active img {
  animation: cameraPush 6.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-camera__shot:nth-child(2).is-active img { animation-name: cameraDrift; }
.hero-camera__shot:nth-child(3).is-active img { animation-name: cameraRise; }
.hero-camera__shot:nth-child(4).is-active img { animation-name: cameraPull; }
@keyframes cameraPush {
  from { transform: scale(1.04) translate3d(2%, 3%, 0); }
  to { transform: scale(1.18) translate3d(-4%, -2%, 0); }
}
@keyframes cameraDrift {
  from { transform: scale(1.12) translate3d(-3%, 1%, 0); }
  to { transform: scale(1.05) translate3d(4%, -3%, 0); }
}
@keyframes cameraRise {
  from { transform: scale(1.06) translate3d(0, 4%, 0); }
  to { transform: scale(1.16) translate3d(-3%, -3%, 0); }
}
@keyframes cameraPull {
  from { transform: scale(1.16) translate3d(3%, -2%, 0); }
  to { transform: scale(1.05) translate3d(-2%, 3%, 0); }
}
.hero-camera__vignette {
  position: absolute;
  inset: 0.55rem;
  border-radius: calc(28px - 0.45rem);
  box-shadow: inset 0 0 80px rgba(44, 36, 28, 0.35);
  pointer-events: none;
  z-index: 2;
}
.hero-camera__focus {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(246, 241, 234, 0.28);
  border-radius: 8px;
  pointer-events: none;
  z-index: 3;
  animation: focusBreathe 5.5s var(--ease) infinite;
}
.hero-camera__focus::before,
.hero-camera__focus::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(200, 155, 92, 0.9);
}
.hero-camera__focus::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}
.hero-camera__focus::after {
  right: -1px;
  bottom: -1px;
  border-left: 0;
  border-top: 0;
}
@keyframes focusBreathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(0.96); opacity: 1; }
}
@media (max-width: 899px) {
  .hero-camera { width: min(72%, 280px); }
  .hero-camera__gate { max-height: 38vh; }
}

/* Sections */
.section { padding: 5.5rem 0; scroll-margin-top: 5.5rem; }
.hero { scroll-margin-top: 0; }
.section--tight { padding: 3.5rem 0; }
.section h2 {
  font-size: clamp(2.15rem, 4.6vw, 3.55rem);
  margin: 0 0 0.8rem;
  letter-spacing: -0.03em;
}
.section h2 em {
  font-family: var(--script);
  font-style: italic;
  font-weight: 400;
  color: var(--bronze);
  font-size: 1.42em;
  line-height: 1.15;
  display: inline-block;
  padding: 0 0.08em 0.12em;
  transform: translateY(0.06em) rotate(-2deg);
}
.lede {
  max-width: 42ch;
  margin: 0 0 2.2rem;
  font-size: 1.05rem;
}

/* About */
.about {
  display: grid;
  gap: 2rem;
}
.frame {
  padding: 0.55rem;
  background: rgba(90, 66, 42, 0.06);
  border: 1px solid var(--line);
  border-radius: 28px;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  aspect-ratio: 4 / 3;
}
.about__copy h2 { margin-top: 0; }
.pull {
  font-family: var(--script);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--bronze);
  line-height: 1.2;
  margin: 0.4rem 0 1.1rem;
  padding-bottom: 0.1em;
}
.notes {
  list-style: none;
  margin: 1.6rem 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.notes li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}
.notes b {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--bronze);
  font-weight: 500;
}
.notes span { color: var(--text); }
.notes small { display: block; color: var(--text-soft); font-size: 0.92rem; }

@media (min-width: 900px) {
  .about {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
  }
}

/* Menu */
.menu-search {
  margin: 0 0 1.2rem;
  max-width: 28rem;
}
.menu-search input {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--ivory);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem;
}
.menu-search input::placeholder { color: #8d7d70; }
.menu-search input:focus {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}

.menu-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0 0 1.4rem;
}
@media (min-width: 800px) {
  .menu-filters { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.cat-card {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0.4rem;
  border-radius: 20px;
  background: rgba(90, 66, 42, 0.06);
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.cat-card:hover { transform: translateY(-3px); }
.cat-card.is-active {
  border-color: var(--bronze);
  box-shadow: 0 10px 28px rgba(90, 66, 42, 0.12);
}
.cat-card:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }
.cat-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}
.cat-card__copy {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.55rem 0.2rem 0.15rem;
}
.cat-card__name {
  font-family: var(--serif);
  font-size: 1.05rem;
}
.cat-card__count {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
}

.menu-hero {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  align-items: center;
}
@media (min-width: 800px) {
  .menu-hero { grid-template-columns: 180px 1fr; }
}
.menu-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  max-height: 220px;
}
.menu-hero h3 {
  font-family: var(--script);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--bronze);
  margin: 0 0 0.3rem;
  font-weight: 400;
  line-height: 1.15;
  padding-bottom: 0.08em;
}

.menu-group { margin-bottom: 2.2rem; }
.menu-group__title {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1.2rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
}
.service p {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  max-width: 62ch;
}
.service__meta {
  text-align: right;
  white-space: nowrap;
}
.service__price {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.service__time {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 0.15rem;
}
.service__book {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bronze);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.1rem;
}
.service__book:hover { color: var(--ink); }

.menu-empty,
.menu-status {
  padding: 2rem 0;
  color: var(--text-soft);
}
.skel {
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--nude), var(--ivory), var(--nude));
  background-size: 200% 100%;
  animation: sheen 1.4s linear infinite;
  margin-bottom: 0.6rem;
}
@keyframes sheen {
  to { background-position: -200% 0; }
}

@media (max-width: 640px) {
  .service { grid-template-columns: 1fr; }
  .service__meta { text-align: left; }
}

/* Gallery — featured bronze band, 4-up grid */
.gallery-section {
  position: relative;
  overflow: hidden;
  background: #32281f;
  padding: 5rem 0 4.2rem;
  isolation: isolate;
}
.gallery-section__splash {
  position: absolute;
  inset: -12% -8% auto auto;
  width: min(52vw, 540px);
  height: min(52vw, 540px);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 35% 40%, rgba(200, 155, 92, 0.32), transparent 46%),
    radial-gradient(circle at 70% 70%, rgba(234, 221, 209, 0.1), transparent 42%);
  filter: blur(8px);
}
.gallery-section .wrap { position: relative; z-index: 1; }
.gallery-section h2 { color: #f6f1ea; }
.gallery-section h2 em { color: #c89b5c; }
.gallery-section .lede { color: #eaddd1; }
.gallery-section .btn--ghost {
  color: #f6f1ea;
  border-color: rgba(246, 241, 234, 0.38);
}
.gallery-section .btn--ghost:hover {
  background: #f6f1ea;
  color: #5a422a;
  border-color: #f6f1ea;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
@media (min-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
  }
}
.gallery-card {
  display: block;
  text-decoration: none;
  width: 100%;
  min-width: 0;
}
.gallery-card--hidden { display: none; }
.gallery-card__frame {
  position: relative;
  display: block;
  padding: 6px;
  background: rgba(246, 241, 234, 0.08);
  border: 1px solid rgba(200, 155, 92, 0.38);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.45s var(--ease);
}
.gallery-card:hover .gallery-card__frame {
  transform: translateY(-4px);
  border-color: #c89b5c;
}
.gallery-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.7s var(--ease);
}
@media (min-width: 800px) {
  .gallery-card img { height: 176px; }
}
.gallery-card:hover img { transform: scale(1.08); }
.gallery-card__splash {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 88%, rgba(200, 155, 92, 0.55), transparent 38%),
    radial-gradient(circle at 90% 8%, rgba(246, 241, 234, 0.22), transparent 34%);
  mix-blend-mode: screen;
  transform: scale(0.25);
  opacity: 0;
  transition: transform 0.65s var(--ease), opacity 0.45s var(--ease);
}
.gallery-card:hover .gallery-card__splash {
  transform: scale(1.05);
  opacity: 1;
}
.gallery-toggle {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

/* Team */
.team-grid {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 700px) {
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; }
  .team-card:nth-child(even) { margin-top: 1.4rem; }
}
.team-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  transition: transform 0.5s var(--ease);
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--nude);
  border: 1px solid rgba(90, 66, 42, 0.2);
  overflow: hidden;
  flex: 0 0 auto;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-avatar span {
  font-family: var(--script);
  font-size: 2.4rem;
  color: var(--bronze);
  line-height: 1;
  padding-bottom: 0.08em;
}
.team-card h3 {
  margin: 0;
  font-size: 1.45rem;
}
.team-card .role {
  font-family: var(--script);
  color: var(--bronze);
  font-size: 1.35rem;
  margin: 0.15rem 0 0.45rem;
  line-height: 1.2;
  padding-bottom: 0.06em;
}
.team-card p {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
}

/* Reviews / invitations */
.review-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 860px) {
  .review-grid {
    grid-template-columns: 1.2fr 0.9fr;
    grid-template-rows: auto auto;
  }
  .review-card--feature { grid-row: 1 / 3; }
}
.review-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.4rem 1.5rem 1.5rem;
}
.review-card--feature {
  background: var(--nude);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.review-card__script {
  font-family: var(--script);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--bronze);
  line-height: 1.15;
  margin: 0 0 0.7rem;
  padding-bottom: 0.1em;
}
.review-card p { margin: 0 0 1rem; }

@media (prefers-reduced-motion: reduce) {
  .gallery-card__frame,
  .gallery-card img,
  .gallery-card__splash,
  .team-card { transform: none; }
}

/* Visit */
.visit {
  display: grid;
  gap: 1.4rem;
}
.visit-card {
  background: var(--nude);
  border-radius: 28px;
  padding: 1.6rem;
  border: 1px solid var(--line);
}
.visit-card h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}
.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.info-list a {
  color: var(--ink);
  text-decoration: none;
}
.info-list a:hover { text-decoration: underline; text-underline-offset: 3px; }
.info-list span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-variant-numeric: tabular-nums;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  font-size: 0.95rem;
}
.hours li.is-today { color: var(--ink); font-weight: 600; }
.hours-note {
  margin: 0.8rem 0 0;
  font-size: 0.92rem;
}
.map-frame {
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--nude);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: saturate(0.85) contrast(0.98);
}

@media (min-width: 900px) {
  .visit { grid-template-columns: 0.9fr 1.1fr; align-items: stretch; }
  .map-frame, .map-frame iframe { min-height: 100%; height: 100%; }
}

/* Footer */
.site-footer {
  padding: 2.4rem 0 7.5rem;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 0.9rem;
}
.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

/* Floating */
.float-bar {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.float-bar .btn { justify-content: center; width: 100%; box-shadow: var(--shadow); }
@media (min-width: 1024px) { .float-bar { display: none; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(62, 50, 40, 0.86);
  display: grid;
  place-items: center;
  padding: 1.2rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86dvh;
  border-radius: 12px;
}
.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
}

/* Legal */
.legal-page { padding: 8rem 0 4rem; }
.legal-page h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.legal-page h3 { margin-top: 1.8rem; font-size: 1.3rem; }
.legal-page ul { color: var(--text-soft); }
.legal-page a { color: var(--bronze); }

/* Promo cards (if API returns offers) */
.promo-grid {
  display: grid;
  gap: 1rem;
}
.promo-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.3rem;
}
.promo-card h3 { margin: 0 0 0.4rem; font-size: 1.4rem; }
.promo-card__badge {
  display: inline-block;
  background: var(--bronze);
  color: var(--ivory);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
@media (min-width: 800px) {
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .hero-camera__shot img {
    width: 100%;
    height: 100%;
    transform: none;
  }
}

@media (max-width: 640px) {
  .wrap { width: min(var(--max), calc(100vw - 1.6rem)); }
  .hero { padding: 4.2rem 0 8.6rem; }
  .hero__copy { width: min(34rem, 100%); }
  .section { padding: 3.6rem 0; }
  .brand__name em { font-size: 1.32rem; }
  .brand__sub { display: block; }
  .float-bar .btn { padding-left: 0.7rem; padding-right: 0.7rem; letter-spacing: 0.04em; }
}
