/* ============================================================
   Princess — „Po setmění"  ·  Candlelit luxury
   ============================================================ */

:root {
  --espresso: #1C1512;
  --cocoa:    #241A15;
  --cocoa2:   #2A1F19;
  --amber:    #E0A85C;
  --amber-hi: #F0C583;
  --gold:     #C8A15A;
  --rose:     #B77B72;
  --cream:    #F2E9DC;
  --taupe:    #8A7A6D;
  --taupe-dk: #6A5C51;
  --line:     rgba(200,161,90,0.20);
  --line-2:   rgba(242,233,220,0.08);

  --ff-serif: "Cormorant Garamond", Georgia, serif;
  --ff-sans:  "Jost", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.locked { overflow: hidden; height: 100vh; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--amber); color: var(--espresso); }

/* ---------- Ambient background wash ---------- */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60% 45% at 78% 8%, rgba(224,168,92,0.10), transparent 60%),
    radial-gradient(50% 40% at 12% 92%, rgba(183,123,114,0.08), transparent 62%),
    linear-gradient(180deg, #1C1512 0%, #17110E 55%, #1C1512 100%);
}

/* ---------- Film grain ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 9998; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(6) infinite;
}
@keyframes grain {
  0%,100%{transform:translate(0,0)} 20%{transform:translate(-4%,3%)}
  40%{transform:translate(3%,-3%)} 60%{transform:translate(-2%,4%)} 80%{transform:translate(4%,2%)}
}

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px; margin: -230px 0 0 -230px;
  z-index: 1; pointer-events: none; mix-blend-mode: screen; will-change: transform;
  background: radial-gradient(circle, rgba(224,168,92,0.16), rgba(224,168,92,0.05) 42%, transparent 68%);
}
@media (hover: none){ .cursor-glow{ display:none; } }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block; font-size: .72rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.section__title {
  font-family: var(--ff-serif); font-weight: 400; line-height: 1.04;
  font-size: clamp(2rem, 5.2vw, 3.6rem); color: var(--cream); letter-spacing: -0.01em;
}
.section__sub { color: var(--taupe); max-width: 56ch; margin-top: 1.1rem; font-size: 1.02rem; }
.hairline { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity:.5; margin: 2.4rem 0; }

/* ---------- Layout ---------- */
.section { padding: clamp(5rem, 11vw, 9rem) clamp(1.25rem, 5vw, 4rem); max-width: var(--maxw); margin: 0 auto; }
.section__head { margin-bottom: 3.4rem; max-width: 820px; }
.section__head .section__title { margin-top: .8rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--ff-sans); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 1.05rem 1.9rem; cursor: pointer; border: 1px solid var(--gold); position: relative;
  transition: color .5s var(--ease), background .5s var(--ease), transform .5s var(--ease); font-weight: 400;
}
.btn--solid { background: var(--amber); color: #21160E; border-color: var(--amber); }
.btn--solid:hover { background: var(--amber-hi); border-color: var(--amber-hi); transform: translateY(-2px); box-shadow: 0 12px 40px -12px rgba(224,168,92,.6); }
.btn--ghost { background: transparent; color: var(--cream); }
.btn--ghost:hover { background: rgba(200,161,90,.10); color: var(--amber-hi); transform: translateY(-2px); }

/* ============================================================
   AGE GATE
   ============================================================ */
.agegate {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: radial-gradient(70% 60% at 50% 35%, #241813, #140E0B 80%);
  text-align: center; padding: 2rem; transition: opacity .7s var(--ease), visibility .7s;
}
.agegate.is-gone { opacity: 0; visibility: hidden; pointer-events: none; }
.agegate__flame {
  position: absolute; top: 30%; left: 50%; width: 300px; height: 300px; margin-left: -150px; margin-top: -150px;
  background: radial-gradient(circle, rgba(224,168,92,.28), transparent 62%);
  filter: blur(6px); animation: flicker 4.5s ease-in-out infinite;
}
@keyframes flicker { 0%,100%{opacity:.85; transform:scale(1)} 45%{opacity:1; transform:scale(1.05)} 70%{opacity:.78; transform:scale(.98)} }
.agegate__inner { position: relative; max-width: 560px; }
.agegate__title { font-family: var(--ff-serif); font-weight: 300; font-size: clamp(2rem,6vw,3.2rem); line-height: 1.08; margin: 1.2rem 0; }
.agegate__text { color: var(--taupe); max-width: 46ch; margin: 0 auto 2rem; }
.agegate__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.agegate__note { color: var(--taupe-dk); font-size: .78rem; letter-spacing: .04em; margin-top: 2.4rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.5rem clamp(1.25rem, 5vw, 4rem);
  transition: padding .5s var(--ease), background .5s var(--ease), backdrop-filter .5s;
}
.nav.is-scrolled { padding-top: .95rem; padding-bottom: .95rem; background: rgba(20,14,11,.72); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-2); }
.nav__brand { display: flex; align-items: center; gap: .6rem; }
.nav__mark {
  font-family: var(--ff-serif); font-size: 1.5rem; width: 2.1rem; height: 2.1rem; display: grid; place-items: center;
  border: 1px solid var(--gold); color: var(--amber); border-radius: 50%; line-height: 1;
}
.nav__word { font-family: var(--ff-serif); font-size: 1.4rem; letter-spacing: .06em; color: var(--cream); }
.nav__links { display: flex; gap: 2.1rem; }
.nav__links a { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream); position: relative; padding: .3rem 0; opacity: .82; transition: opacity .4s, color .4s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--amber); transition: width .5s var(--ease); }
.nav__links a:hover { opacity: 1; color: var(--amber-hi); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--gold); color: var(--amber); padding: .7rem 1.4rem; transition: background .4s, color .4s; }
.nav__cta:hover { background: var(--amber); color: #21160E; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 32px; flex-direction: column; justify-content: center; gap: 7px; }
.nav__burger span { display: block; height: 1px; background: var(--cream); transition: transform .4s var(--ease), opacity .3s; }

@media (max-width: 880px) {
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: 0; flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
    background: rgba(18,12,10,.97); backdrop-filter: blur(20px);
    opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
  }
  .nav__links a { font-size: 1.4rem; font-family: var(--ff-serif); text-transform: none; letter-spacing: .04em; }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 7rem clamp(1.25rem, 5vw, 4rem) 5rem; overflow: hidden; }
.hero__inner, .hero .hero__glow { max-width: var(--maxw); margin-left: auto; margin-right: auto; width: 100%; }
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 120%; object-fit: cover; object-position: center; filter: saturate(.6) contrast(.98) brightness(.44) sepia(.34) hue-rotate(-13deg); will-change: transform; }
.hero__veil { position: absolute; inset: 0; background:
  linear-gradient(90deg, #140E0B 0%, rgba(20,14,11,.82) 46%, rgba(20,14,11,.42) 100%),
  radial-gradient(80% 70% at 30% 55%, rgba(20,14,11,.6), transparent 70%),
  linear-gradient(0deg, #140E0B 2%, transparent 42%, transparent 68%, rgba(20,14,11,.55) 100%); }
.hero__glow {
  position: absolute; top: 22%; right: 6%; width: min(60vw, 620px); aspect-ratio: 1; z-index: -1;
  background: radial-gradient(circle, rgba(224,168,92,.30), rgba(183,123,114,.10) 45%, transparent 70%);
  filter: blur(10px); animation: flicker 6s ease-in-out infinite;
}
.hero__inner { max-width: 880px; }
.hero .eyebrow { margin-bottom: 1.6rem; }
.hero__title { font-family: var(--ff-serif); font-weight: 300; font-size: clamp(3rem, 11vw, 8rem); line-height: .96; letter-spacing: -0.02em; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .italic { font-style: italic; color: var(--amber); }
.hero__lede { max-width: 46ch; color: var(--taupe); font-size: clamp(1.02rem, 1.7vw, 1.24rem); margin-top: 2rem; }
.hero__actions { display: flex; gap: 1rem; margin-top: 2.8rem; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .7rem; font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--taupe); }
.hero__scroll span { width: 1px; height: 46px; background: linear-gradient(var(--amber), transparent); position: relative; overflow: hidden; }
.hero__scroll span::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background:var(--amber-hi); animation: scrolldot 2.2s var(--ease) infinite; }
@keyframes scrolldot { 0%{transform:translateY(-100%)} 100%{transform:translateY(300%)} }

/* stagger hero reveals */
.hero__title .line:nth-child(1){ transition-delay:.05s }
.hero__title .line:nth-child(2){ transition-delay:.18s }
.hero__title .line:nth-child(3){ transition-delay:.31s }
.hero__lede{ transition-delay:.4s } .hero__actions{ transition-delay:.5s }

/* ============================================================
   INTRO
   ============================================================ */
.intro__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.intro__lead { font-family: var(--ff-serif); font-weight: 300; font-size: clamp(1.6rem, 3.6vw, 2.7rem); line-height: 1.28; margin-top: 1.4rem; }
.intro__lead em { font-style: italic; color: var(--amber); }
.intro__body { color: var(--taupe); margin-top: 1.4rem; max-width: 46ch; font-size: 1.05rem; }
.intro__stats { display: flex; gap: 2.4rem; margin-top: 2.6rem; flex-wrap: wrap; }
.intro__stats div { display: flex; flex-direction: column; }
.intro__stats strong { font-family: var(--ff-serif); font-weight: 400; font-size: 2.6rem; color: var(--amber); line-height: 1; }
.intro__stats span { color: var(--taupe-dk); font-size: .82rem; letter-spacing: .04em; margin-top: .4rem; text-transform: uppercase; }
.intro__photo { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.intro__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); filter: saturate(.78) sepia(.22) hue-rotate(-10deg) brightness(.92); }
.intro__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(224,168,92,.10), transparent 45%, rgba(20,14,11,.5)); }
.intro__photo:hover img { transform: scale(1.06); }
.intro__photo figcaption { position: absolute; bottom: 1.1rem; left: 1.2rem; z-index: 1; font-family: var(--ff-serif); font-size: 1.05rem; color: var(--cream); letter-spacing: .02em; }
@media (max-width: 820px){ .intro__grid{ grid-template-columns: 1fr; } .intro__photo{ aspect-ratio: 16/11; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { overflow: hidden; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); padding: 1.3rem 0; background: rgba(42,31,25,.25); }
.marquee__track { display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; animation: marquee 34s linear infinite; will-change: transform; }
.marquee span { font-family: var(--ff-serif); font-style: italic; font-size: clamp(1.3rem, 3vw, 2rem); color: var(--cream); opacity: .82; }
.marquee i { color: var(--amber); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee__track{ animation: none; } }

/* ============================================================
   PARALLAX DIVIDER
   ============================================================ */
.divider { position: relative; height: clamp(340px, 60vh, 560px); overflow: hidden; display: grid; place-items: center; }
.divider__media { position: absolute; inset: -12% 0; z-index: 0; }
.divider__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.6) sepia(.4) hue-rotate(-14deg) brightness(.4) contrast(.95); will-change: transform; }
.divider__veil { position: absolute; inset: 0; z-index: 1; background:
  radial-gradient(60% 80% at 50% 50%, rgba(20,14,11,.72), rgba(20,14,11,.9)),
  linear-gradient(90deg, #140E0B, transparent 25%, transparent 75%, #140E0B); }
.divider__quote { position: relative; z-index: 2; text-align: center; padding: 0 1.5rem; }
.divider__quote p { font-family: var(--ff-serif); font-weight: 300; font-size: clamp(1.8rem, 5vw, 3.4rem); line-height: 1.24; color: var(--cream); }
.divider__quote em { font-style: italic; color: var(--amber); }

/* ============================================================
   RITUALS
   ============================================================ */
.ritual-list { border-top: 1px solid var(--line); }
.ritual { border-bottom: 1px solid var(--line); }
.ritual__head {
  width: 100%; background: none; border: 0; cursor: pointer; color: var(--cream);
  display: grid; grid-template-columns: auto 1fr auto auto auto; align-items: center; gap: 1.6rem;
  padding: 1.9rem .4rem; text-align: left; transition: padding-left .5s var(--ease);
}
.ritual__head:hover { padding-left: 1.2rem; }
.ritual__num { font-family: var(--ff-sans); font-size: .74rem; color: var(--gold); letter-spacing: .1em; }
.ritual__name { font-family: var(--ff-serif); font-size: clamp(1.4rem, 3.4vw, 2.2rem); font-weight: 400; }
.ritual__tag { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); border: 1px solid rgba(183,123,114,.4); padding: .3rem .7rem; }
.ritual__price { font-family: var(--ff-serif); font-size: 1.15rem; color: var(--amber); white-space: nowrap; }
.ritual__plus { position: relative; width: 18px; height: 18px; }
.ritual__plus::before, .ritual__plus::after { content:""; position:absolute; background:var(--gold); transition: transform .45s var(--ease); }
.ritual__plus::before { top: 8px; left: 0; width: 18px; height: 1px; }
.ritual__plus::after { left: 8px; top: 0; width: 1px; height: 18px; }
.ritual.is-open .ritual__plus::after { transform: scaleY(0); }
.ritual__body { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease); }
.ritual__body p { color: var(--taupe); max-width: 68ch; padding: 0 .4rem 2rem; font-size: 1.04rem; }
@media (max-width: 720px) {
  .ritual__head { grid-template-columns: auto 1fr auto; gap: .9rem; padding: 1.4rem .2rem; }
  .ritual__tag { display: none; }
  .ritual__price { grid-column: 2 / 3; grid-row: 2; font-size: 1rem; }
  .ritual__name { grid-column: 2 / 4; }
}

/* ============================================================
   THERAPISTS
   ============================================================ */
.therapist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px){ .therapist-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px){ .therapist-grid{ grid-template-columns: 1fr; } }
.tcard { transition-delay: var(--d); border: 1px solid var(--line-2); background: linear-gradient(180deg, rgba(42,31,25,.5), rgba(28,21,18,.3)); overflow: hidden; }
.tcard__portrait {
  aspect-ratio: 4/5; position: relative; display: grid; place-items: center; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(224,168,92,.16), transparent 55%),
    linear-gradient(160deg, #2E211A, #1B130F);
}
.tcard__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 1.1s var(--ease); filter: saturate(.72) sepia(.26) hue-rotate(-10deg) contrast(1.02) brightness(.92); }
.tcard__portrait::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(224,168,92,.06), transparent 40%, rgba(20,14,11,.72)); mix-blend-mode: normal; }
.tcard:hover .tcard__portrait img { transform: scale(1.06); }
.tcard--mono .tcard__portrait::after { background: radial-gradient(circle at 50% 30%, transparent, rgba(20,14,11,.55)); }
.tcard__mono { font-family: var(--ff-serif); font-size: 5rem; font-weight: 300; color: rgba(224,168,92,.5); position: relative; z-index: 1; transition: transform .8s var(--ease), color .6s; letter-spacing: .02em; }
.tcard:hover .tcard__mono { transform: scale(1.12); color: var(--amber-hi); }
.tcard__meta { padding: 1.3rem 1.4rem 1.5rem; }
.tcard__meta h4 { font-family: var(--ff-serif); font-weight: 500; font-size: 1.6rem; display: flex; justify-content: space-between; align-items: baseline; }
.tcard__age { font-family: var(--ff-sans); font-size: .78rem; letter-spacing: .1em; color: var(--gold); text-transform: uppercase; }
.tcard__meta dl { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1rem; margin-top: 1rem; }
.tcard__meta dl > div { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line-2); padding-bottom: .4rem; }
.tcard__meta dt { color: var(--taupe-dk); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.tcard__meta dd { color: var(--cream); font-size: .82rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing__tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.4rem; }
.ptab {
  background: none; border: 1px solid var(--line); color: var(--taupe); cursor: pointer;
  padding: .65rem 1.2rem; font-family: var(--ff-sans); font-size: .82rem; letter-spacing: .08em;
  transition: color .4s, border-color .4s, background .4s;
}
.ptab:hover { color: var(--cream); border-color: var(--gold); }
.ptab.is-active { background: var(--amber); color: #21160E; border-color: var(--amber); }
.ppanel { display: none; animation: fadeUp .6s var(--ease); }
.ppanel.is-active { display: block; }
@keyframes fadeUp { from{opacity:0; transform:translateY(16px)} to{opacity:1; transform:none} }
.ppanel table { width: 100%; border-collapse: collapse; }
.ppanel th, .ppanel td { text-align: right; padding: 1.05rem 1rem; border-bottom: 1px solid var(--line-2); font-size: .98rem; }
.ppanel th { color: var(--gold); font-weight: 400; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; border-bottom-color: var(--line); }
.ppanel th:first-child, .ppanel td.dur { text-align: left; }
.ppanel td.dur { font-family: var(--ff-serif); font-size: 1.15rem; color: var(--cream); }
.ppanel td { color: var(--cream); }
.ppanel tbody tr { transition: background .4s; }
.ppanel tbody tr:hover { background: rgba(200,161,90,.05); }
@media (max-width: 560px){ .ppanel th, .ppanel td { padding: .8rem .5rem; font-size: .88rem; } }

/* ============================================================
   AMBIANCE
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 1rem; }
.ga { position: relative; overflow: hidden; border: 1px solid var(--line-2); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; }
.ga img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 1.3s var(--ease); filter: saturate(.62) sepia(.34) hue-rotate(-12deg) brightness(.6) contrast(.96); }
.ga::after { content: ""; position: absolute; inset: 0; z-index: 1; background:
  radial-gradient(90% 80% at 50% 45%, rgba(20,14,11,.35), rgba(20,14,11,.72)),
  linear-gradient(180deg, rgba(224,168,92,.04), transparent 40%, rgba(20,14,11,.85)); transition: opacity .6s; }
.ga:hover img { transform: scale(1.08); filter: saturate(.78) sepia(.2) hue-rotate(-10deg) brightness(.72); }
.ga--tall { grid-row: span 2; }
.ga--wide { grid-column: span 2; }
.ga figcaption { position: relative; z-index: 2; font-family: var(--ff-serif); font-size: 1.3rem; color: var(--cream); }
@media (max-width: 820px){ .gallery{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 170px; } .ga--wide{ grid-column: span 2; } .ga--tall{ grid-row: span 1; } }
@media (max-width: 480px){ .gallery{ grid-template-columns: 1fr 1fr; } }

/* ============================================================
   DISCRETION
   ============================================================ */
.discretion { background: linear-gradient(180deg, transparent, rgba(42,31,25,.35), transparent); max-width: none; }
.discretion__inner { max-width: var(--maxw); margin: 0 auto; }
.discretion__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; margin-top: 3rem; }
.disc { border-top: 1px solid var(--gold); padding-top: 1.4rem; }
.disc__no { font-family: var(--ff-serif); font-size: 1rem; color: var(--gold); }
.disc h4 { font-family: var(--ff-serif); font-weight: 500; font-size: 1.4rem; margin: .8rem 0 .5rem; }
.disc p { color: var(--taupe); font-size: .94rem; }
@media (max-width: 820px){ .discretion__grid{ grid-template-columns: 1fr 1fr; gap: 1.4rem; } }
@media (max-width: 480px){ .discretion__grid{ grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: start; }
@media (max-width: 860px){ .contact__grid{ grid-template-columns: 1fr; gap: 2.6rem; } }
.contact__text { color: var(--taupe); max-width: 42ch; margin-top: 1.2rem; }
.contact__phone { display: inline-block; font-family: var(--ff-serif); font-size: clamp(2rem, 5vw, 3rem); color: var(--amber); margin: 1.8rem 0 1.4rem; letter-spacing: .01em; transition: color .4s; }
.contact__phone:hover { color: var(--amber-hi); }
.contact__methods { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact__socials { display: flex; gap: 1.6rem; margin-top: 2rem; }
.contact__socials a { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--taupe); position: relative; transition: color .4s; }
.contact__socials a:hover { color: var(--amber); }
.contact__places { display: flex; flex-direction: column; gap: 1.2rem; }
.place { border: 1px solid var(--line-2); padding: 1.5rem 1.6rem; background: rgba(42,31,25,.3); transition: border-color .5s, transform .5s var(--ease); }
.place:hover { border-color: var(--line); transform: translateY(-3px); }
.place__tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.place h4 { font-family: var(--ff-serif); font-weight: 500; font-size: 1.5rem; margin: .5rem 0 .5rem; }
.place p { color: var(--taupe); font-size: .95rem; }
.place--hours { background: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line-2); padding: 3.5rem clamp(1.25rem,5vw,4rem); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.footer__brand { display: flex; align-items: center; gap: .6rem; font-family: var(--ff-serif); font-size: 1.5rem; }
.footer__disc { color: var(--taupe); font-size: .86rem; max-width: 60ch; }
.footer__copy { color: var(--taupe-dk); font-size: .78rem; letter-spacing: .04em; }

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 800;
  background: var(--amber); color: #21160E; padding: .95rem 1.6rem;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 14px 40px -12px rgba(224,168,92,.6);
  opacity: 0; transform: translateY(20px) scale(.95); pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease), background .4s;
}
.sticky-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.sticky-cta:hover { background: var(--amber-hi); }
@media (max-width: 880px){ .sticky-cta{ bottom: 1rem; right: 1rem; } }
