/* Euphoria — dark, candlelit and grounded. Charcoal from her GlossGenius theme,
   forest green from her studio plants, candle gold from the treatment room. */
:root {
  --night: #17191C;
  --char: #1F2226;
  --char-2: #2C2E32;
  --forest: #2E4638;
  --moss: #8FAE88;
  --candle: #D6A45E;
  --candle-soft: #EBCB94;
  --stone: #EEE8DF;
  --paper: #F8F4EE;
  --ink: #1B1D21;
  --ink-soft: #5C5F66;
  --on-dark: #EDE7DD;
  --on-dark-soft: #A9A49C;
  --line: rgba(27, 29, 33, 0.12);
  --line-dark: rgba(237, 231, 221, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, sans-serif;
  --radius: 18px;
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.55);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--night); color: var(--on-dark); font: 300 17px/1.7 var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(3.1rem, 6.6vw, 6rem); font-weight: 400; }
h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.6rem; }
h1 em, h2 em { font-style: italic; color: var(--candle); font-weight: 400; }
p { margin: 0 0 1em; }
strong { font-weight: 500; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--candle); color: var(--ink); padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--candle); outline-offset: 3px; }
.small { font-size: .88rem; }
.muted-light { color: var(--on-dark-soft); }

/* Light sections */
.light { background: var(--paper); color: var(--ink); }
.massage, .team, .first { background: var(--paper); color: var(--ink); }
.reviews { background: var(--stone); color: var(--ink); }
.massage h2 em, .team h2 em, .first h2 em, .reviews h2 em { color: #A8742C; }

.eyebrow { font: 500 .72rem/1.4 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--candle); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .8em; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.massage .eyebrow, .team .eyebrow, .first .eyebrow, .reviews .eyebrow { color: #A8742C; }
.eyebrow--light { color: var(--candle); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: 1em 1.9em; border-radius: 999px; background: var(--char); color: var(--on-dark); font: 500 .78rem/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--char); cursor: pointer; white-space: nowrap; transition: background .3s, color .3s, transform .3s, box-shadow .3s, border-color .3s; }
.btn:hover { transform: translateY(-1px); background: var(--forest); border-color: var(--forest); }
.btn--gold { background: var(--candle); border-color: var(--candle); color: var(--ink); }
.btn--gold:hover { background: var(--candle-soft); border-color: var(--candle-soft); color: var(--ink); box-shadow: 0 10px 30px -10px rgba(214,164,94,.55); }
.btn--line { background: transparent; border-color: rgba(237,231,221,.4); color: var(--on-dark); }
.btn--line:hover { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }
.btn--small { padding: .8em 1.4em; font-size: .7rem; }
.btn--block { width: 100%; }
.link { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; text-decoration: none; color: var(--candle); border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.link:hover { color: var(--candle-soft); }
.reviews .link { color: #A8742C; }
.stars { color: var(--candle); letter-spacing: .12em; }

/* Live open status */
.status { font-size: .76rem; letter-spacing: .08em; color: var(--on-dark-soft); white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #8A8A8A; flex: 0 0 auto; }
.status.is-open::before { background: #7BC47F; box-shadow: 0 0 0 4px rgba(123,196,127,.18); }
.status--pill { background: rgba(23,25,28,.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--on-dark); padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-dark); }

/* Brand + nav */
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 40px; height: 40px; }
.brand span { font: 500 1.8rem/1 var(--serif); display: flex; flex-direction: column; color: var(--on-dark); letter-spacing: .02em; }
.brand small { font: 400 .56rem/1.9 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--candle); white-space: nowrap; }
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: background .35s, border-color .35s, backdrop-filter .35s; border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: rgba(23,25,28,.9); backdrop-filter: saturate(1.3) blur(14px); -webkit-backdrop-filter: saturate(1.3) blur(14px); border-color: var(--line-dark); }
.nav__inner { max-width: var(--wrap); margin: 0 auto; padding: 14px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__links { display: flex; gap: clamp(14px, 1.8vw, 28px); }
.nav__links a { text-decoration: none; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-soft); position: relative; padding: 4px 0; white-space: nowrap; transition: color .3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px; background: var(--candle); transition: right .3s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--on-dark); }
.nav__links a:hover::after, .nav__links a.is-active::after { right: 0; }
.nav__actions { display: flex; align-items: center; gap: 18px; }
.nav__toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; position: relative; }
.nav__toggle span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--on-dark); transition: transform .3s, top .3s; }
.nav__toggle span:first-child { top: 15px; }
.nav__toggle span:last-child { top: 24px; }
.nav__toggle[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { top: 19px; transform: rotate(-45deg); }
.drawer { display: flex; flex-direction: column; padding: 8px var(--gutter) 28px; background: var(--night); border-top: 1px solid var(--line-dark); max-height: calc(100vh - 70px); overflow-y: auto; }
.drawer[hidden] { display: none; }
.drawer a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line-dark); text-decoration: none; font: 500 1.4rem/1.2 var(--serif); }
.drawer .btn { margin-top: 22px; }
@media (max-width: 1120px) { .nav__links { display: none; } .nav__toggle { display: block; } }
@media (max-width: 640px) { .nav__actions > .status { display: none; } }
@media (max-width: 400px) { .nav__actions .btn--small { display: none; } }

/* Sections */
.section { padding: clamp(80px, 11vw, 140px) var(--gutter); }
.section > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.section__head { text-align: center; max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head .eyebrow { justify-content: center; }
.section__head .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.section__head p:not(.eyebrow) { color: var(--ink-soft); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 120px var(--gutter) clamp(70px, 9vw, 110px); min-height: min(100vh, 920px); display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; background: radial-gradient(60% 70% at 78% 40%, rgba(214,164,94,.18), transparent 60%), url("img/water.webp") center / cover no-repeat; opacity: .5; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--night) 30%, rgba(23,25,28,.55) 70%, rgba(23,25,28,.8)); }
.hero__inner { position: relative; max-width: var(--wrap); margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--on-dark-soft); max-width: 520px; margin-bottom: 2.2em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.trust { list-style: none; padding: 28px 0 0; margin: 44px 0 0; border-top: 1px solid var(--line-dark); display: grid; grid-template-columns: repeat(3, 1fr); max-width: 540px; }
.trust li { font-size: .82rem; color: var(--on-dark-soft); padding: 0 16px; border-left: 1px solid var(--line-dark); line-height: 1.5; }
.trust li:first-child { border-left: 0; padding-left: 0; }
.trust strong { display: block; font: 500 1.5rem/1.3 var(--serif); color: var(--on-dark); }
.hero__media { position: relative; margin: 0; border-radius: 999px 999px 22px 22px; overflow: hidden; box-shadow: 0 40px 100px -30px rgba(214,164,94,.35), var(--shadow); aspect-ratio: 3 / 4; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media figcaption { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); }
@media (max-width: 900px) {
  .hero { padding-top: 100px; min-height: 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 420px; width: 100%; margin: 0 auto; aspect-ratio: 4 / 4.2; }
}
@media (max-width: 520px) { .trust li { padding: 0 10px; } .trust strong { font-size: 1.25rem; } }

/* Finder */
.finder { background: var(--char); padding: clamp(50px, 7vw, 80px) var(--gutter); border-top: 1px solid var(--line-dark); }
.finder__inner { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px 60px; align-items: center; }
.finder h2 { margin: 0; font-size: clamp(2rem, 3.6vw, 2.8rem); }
.finder__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.finder__chips button { font: 400 .92rem/1 var(--sans); padding: 14px 18px; border-radius: 999px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.03); color: var(--on-dark); cursor: pointer; transition: all .25s; }
.finder__chips button:hover { border-color: var(--candle); }
.finder__chips button[aria-pressed="true"] { background: var(--candle); border-color: var(--candle); color: var(--ink); }
.finder__result { grid-column: 1 / -1; margin: 6px 0 0; min-height: 1.5em; color: var(--candle-soft); font: italic 400 1.25rem/1.4 var(--serif); }
.finder__result a { color: inherit; }
@media (max-width: 900px) { .finder__inner { grid-template-columns: 1fr; } }

/* Service cards */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .35s, box-shadow .35s, opacity .35s, outline-color .35s; outline: 2px solid transparent; outline-offset: 3px; }
.svc:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(27,29,33,.45); }
.svc.is-match { outline-color: var(--candle); }
.svc-grid.is-filtering .svc:not(.is-match) { opacity: .38; }
.svc__img { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--char); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.svc:hover .svc__img img { transform: scale(1.04); }
.svc__badge { position: absolute; top: 14px; left: 14px; background: var(--candle); color: var(--ink); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; font-weight: 500; }
.svc__body { padding: 24px 24px 22px; display: flex; flex-direction: column; flex: 1; }
.svc h3 { font-size: 1.6rem; margin-bottom: 8px; }
.svc__desc { color: var(--ink-soft); font-size: .94rem; margin-bottom: 10px; }
.svc__incl { font-size: .82rem; color: #A8742C; margin-bottom: 16px; }
.svc__by { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--ink-soft); margin: auto 0 16px; }
.avatars { display: flex; }
.avatar { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; overflow: hidden; background: var(--forest); color: var(--candle-soft); display: grid; place-items: center; font: 500 .8rem/1 var(--serif); margin-left: -8px; }
.avatar:first-child { margin-left: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.opts { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.opts button { font: 400 .82rem/1 var(--sans); padding: 10px 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); cursor: pointer; transition: all .2s; }
.opts button[aria-pressed="true"] { background: var(--char); color: var(--on-dark); border-color: var(--char); }
.svc__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.svc__price { font: 500 2rem/1 var(--serif); color: var(--ink); }
.svc__price small { font: 300 .8rem/1 var(--sans); color: var(--ink-soft); margin-left: 4px; }
.addon { display: flex; align-items: center; gap: 16px; margin-top: 26px; padding: 18px 24px; border-radius: 14px; background: var(--stone); color: var(--ink); max-width: 720px; }
.addon p { margin: 0; }
.addon__icon { color: #A8742C; font-size: 1.3rem; }
@media (max-width: 1000px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }

/* Beauty */
.beauty { background: var(--forest); background: linear-gradient(160deg, #2E4638, #22332A); }
.beauty__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.beauty__intro > p:not(.eyebrow) { color: rgba(237,231,221,.78); }
.beauty__img { margin: 26px 0 0; border-radius: var(--radius); overflow: hidden; max-width: 380px; }
.beauty__img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.beauty__menu { background: rgba(23,25,28,.35); border: 1px solid var(--line-dark); border-radius: 22px; padding: clamp(20px, 3vw, 32px); }
.tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 5px; border-radius: 999px; background: rgba(0,0,0,.25); margin-bottom: 18px; }
.tabs button { min-width: 0; font: 500 .74rem/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; padding: 12px 16px; border-radius: 999px; border: 0; background: transparent; color: var(--on-dark-soft); cursor: pointer; white-space: nowrap; }
.tabs button[aria-selected="true"] { background: var(--candle); color: var(--ink); }
.price-list { list-style: none; margin: 0 0 22px; padding: 0; }
.price-list li { display: grid; grid-template-columns: 1fr auto; gap: 2px 16px; padding: 14px 4px; border-bottom: 1px dashed var(--line-dark); }
.price-list strong { font: 500 1.3rem/1.3 var(--serif); color: var(--on-dark); }
.price-list .pl__price { font: 500 1.35rem/1.3 var(--serif); color: var(--candle); text-align: right; }
.price-list small { font-size: .8rem; color: var(--on-dark-soft); }
.price-list .pl__by { text-align: right; }
@media (max-width: 900px) { .beauty__grid { grid-template-columns: 1fr; } .beauty__img { display: none; } }
@media (max-width: 520px) { .tabs { border-radius: 16px; } .tabs button { border-radius: 12px; padding: 12px 6px; font-size: .64rem; letter-spacing: .06em; white-space: normal; line-height: 1.25; } }

/* Team */
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.member__photo { aspect-ratio: 1; overflow: hidden; background: linear-gradient(160deg, var(--forest), var(--char)); display: grid; place-items: center; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__initial { font: italic 400 6rem/1 var(--serif); color: var(--candle-soft); }
.member__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.member h3 { font-size: 1.8rem; margin-bottom: 2px; }
.member__role { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: #A8742C; margin-bottom: 14px; }
.member__svcs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.member__svcs span { font-size: .78rem; padding: 6px 12px; border-radius: 999px; background: var(--stone); }
.member .btn { margin-top: auto; }
@media (max-width: 900px) { .team__grid { grid-template-columns: 1fr; max-width: 460px; } .member { flex-direction: row; } .member__photo { flex: 0 0 38%; aspect-ratio: auto; } }
@media (max-width: 480px) { .member { flex-direction: column; } .member__photo { flex: none; aspect-ratio: 4 / 3; } }

/* Story */
.story { background: var(--char); }
.story__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.story__media { position: relative; padding: 0 70px 90px 0; }
.story__a { margin: 0; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.story__a img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.story__b { position: absolute; right: 0; bottom: 0; width: 50%; margin: 0; border-radius: 18px; overflow: hidden; border: 6px solid var(--char); box-shadow: var(--shadow); }
.story__b img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.story blockquote { margin: 0 0 22px; padding-left: 20px; border-left: 2px solid var(--candle); font: italic 400 1.5rem/1.45 var(--serif); color: var(--on-dark); }
.story__copy > p { color: var(--on-dark-soft); }
.facts { list-style: none; padding: 0; margin: 22px 0; }
.facts li { padding: 13px 0; border-top: 1px solid var(--line-dark); display: grid; grid-template-columns: 100px 1fr; gap: 12px; font-size: .95rem; }
.facts span { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--candle); padding-top: 4px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { font-size: .8rem; padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); color: var(--on-dark); }
.namaste { margin-top: 22px; font: italic 500 1.7rem/1 var(--serif); color: var(--candle) !important; }
@media (max-width: 900px) { .story__grid { grid-template-columns: 1fr; } .story__media { max-width: 460px; margin: 0 auto; width: 100%; padding: 0 50px 70px 0; } }

/* Reviews carousel */
.carousel { max-width: 860px; text-align: center; }
.carousel__viewport { position: relative; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; border-radius: 26px; background: #fff; box-shadow: 0 30px 60px -40px rgba(27,29,33,.5); }
.carousel__viewport::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 100%; scroll-snap-align: center; margin: 0; padding: clamp(40px, 6vw, 72px) clamp(24px, 7vw, 90px); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 340px; }
.slide .stars { font-size: 1.2rem; margin-bottom: 22px; color: #C08A3E; }
.slide blockquote { margin: 0 0 28px; font: italic 400 clamp(1.4rem, 2.6vw, 2rem)/1.4 var(--serif); color: var(--ink); }
.slide figcaption strong { display: block; font-weight: 500; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; }
.slide figcaption span { display: block; margin-top: 6px; font-size: .86rem; color: var(--ink-soft); }
.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 28px; }
.icon-btn { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--char); background: transparent; color: var(--char); font-size: 1.1rem; cursor: pointer; transition: background .3s, color .3s; }
.icon-btn:hover { background: var(--char); color: var(--on-dark); }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dots button { position: relative; width: 28px; height: 4px; border: 0; padding: 0; border-radius: 4px; background: rgba(27,29,33,.18); cursor: pointer; overflow: hidden; }
.carousel__dots button::before { content: ""; position: absolute; inset: -12px 0; }
.carousel__dots button[aria-selected="true"] { width: 48px; }
.carousel__dots button[aria-selected="true"]::after { content: ""; position: absolute; inset: 0; background: #C08A3E; transform-origin: left; animation: fill var(--dur, 7s) linear forwards; }
.carousel.is-paused .carousel__dots button[aria-selected="true"]::after { animation-play-state: paused; }
@keyframes fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.reviews__cta { margin-top: 26px; color: var(--ink-soft); }

/* First visit */
.first__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.steps { list-style: none; padding: 0; margin: 20px 0 0; counter-reset: s; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.steps span { width: 38px; height: 38px; border-radius: 50%; background: var(--char); color: var(--candle); display: grid; place-items: center; font: 500 1.1rem/1 var(--serif); }
.steps strong { display: block; font: 500 1.35rem/1.3 var(--serif); margin-bottom: 2px; }
.steps div { color: var(--ink-soft); font-size: .96rem; }
.steps strong { color: var(--ink); }
.accordion { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 10px 26px 12px; }
.accordion__title { font-size: 1.6rem; margin: 18px 0 6px; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 0; }
.accordion summary { list-style: none; cursor: pointer; padding: 18px 36px 18px 0; position: relative; font: 500 1.25rem/1.3 var(--serif); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font: 300 1.5rem/1 var(--sans); color: #A8742C; transition: transform .3s; }
.accordion details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.accordion details p { color: var(--ink-soft); padding-bottom: 18px; margin: 0; font-size: .95rem; }
@media (max-width: 900px) { .first__grid { grid-template-columns: 1fr; } }

/* Visit */
.visit { background: var(--night); }
.visit__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: stretch; }
.visit__status { margin: 0 0 18px; }
address { font-style: normal; font-size: 1.15rem; margin-bottom: 14px; }
.visit__links { display: flex; gap: 22px; flex-wrap: wrap; }
.hours { width: 100%; border-collapse: collapse; margin: 30px 0 16px; font-size: .95rem; }
.hours th, .hours td { padding: 11px 0; border-top: 1px solid var(--line-dark); text-align: left; font-weight: 300; }
.hours td { text-align: right; color: var(--on-dark-soft); }
.hours tr.is-today th, .hours tr.is-today td { font-weight: 500; color: var(--candle); }
.hours tr.is-today th::after { content: "Today"; margin-left: 10px; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; background: var(--candle); color: var(--ink); padding: 3px 8px; border-radius: 999px; vertical-align: 2px; }
.visit__map { border-radius: var(--radius); overflow: hidden; min-height: 400px; background: var(--char-2); border: 1px solid var(--line-dark); }
.visit__map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; filter: grayscale(.6) invert(.9) hue-rotate(180deg) contrast(.9); }
@media (max-width: 900px) { .visit__grid { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: #111315; color: var(--on-dark-soft); padding: 70px var(--gutter) calc(120px + env(safe-area-inset-bottom)); text-align: center; border-top: 1px solid var(--line-dark); }
.footer__inner { max-width: var(--wrap); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.footer__tag { font: italic 400 1.2rem/1.5 var(--serif); margin: 0; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; }
.footer__links a { text-decoration: none; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; }
.footer__links a:hover { color: var(--candle); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; transition: border-color .3s, color .3s; }
.footer__social a:hover { border-color: var(--candle); color: var(--candle); }
.footer__legal { font-size: .8rem; margin: 0; opacity: .7; }
@media (min-width: 901px) { .footer { padding-bottom: 70px; } }

/* Mobile action bar (always visible) */
.actionbar { position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 40; display: none; grid-template-columns: 1fr 1fr 1.6fr; gap: 6px; padding: 6px; border-radius: 999px; border: 1px solid rgba(214,164,94,.4); background: rgba(23,25,28,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 14px 40px -12px rgba(0,0,0,.6); }
.actionbar a { text-align: center; text-decoration: none; color: var(--on-dark); padding: 13px 8px; border-radius: 999px; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.actionbar__book { background: var(--candle); color: var(--ink) !important; }
@media (max-width: 900px) { .actionbar { display: grid; } html { scroll-padding-bottom: 90px; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-in, .no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } * { transition-duration: 0s !important; } .carousel__dots button[aria-selected="true"]::after { animation: none; transform: none; } }
