/* styles.css — Павел Анисимов */
/* ─── BASE / VARIABLES ───────────────────────────────────────────────────── */
:root {
  --bg: #1a0e10;
  --bg-2: #2a1216;
  --bg-3: #3b1a1f;
  --surface: #241015;
  --surface-2: #2e131a;
  --ink: #f4ead7;
  --ink-mute: #c8b9a3;
  --ink-dim: #8c7d6a;
  --gold: #d9b16a;
  --gold-2: #f0d18a;
  --gold-deep: #a87b35;
  --accent: #a23541;
  --accent-2: #c44a55;
  --free: #5a8a4d;
  --free-2: #7eae6e;
  --busy: #a23541;
  --line: rgba(217, 177, 106, 0.18);
  --line-strong: rgba(217, 177, 106, 0.34);

  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-display-weight: 700;
  --font-text: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', monospace;

  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px -20px rgba(0,0,0,0.55), 0 4px 12px rgba(0,0,0,0.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

[data-theme="light"] body { background: var(--bg); }

/* ─── REVEAL ON SCROLL ──────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(.2,.8,.2,1), transform 0.85s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ─── TYPOGRAPHY HELPERS ────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 8px 0 18px;
  text-wrap: pretty;
}
.section-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-mute);
  max-width: 56ch;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-text);
  margin-bottom: 12px;
}
.section-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-head {
  margin-bottom: 56px;
}
.section-head-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section { padding: 110px 0; position: relative; }

/* ─── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { height: 56px; padding: 0 28px; font-size: 15px; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 50%, var(--gold-deep));
  color: #1a0e10;
  box-shadow: 0 12px 24px -10px rgba(217, 177, 106, 0.55), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -12px rgba(217, 177, 106, 0.7), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(217, 177, 106, 0.06); border-color: var(--gold); color: var(--gold); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }

[data-theme="light"] .btn-primary { color: #fffaf0; background: linear-gradient(135deg, #c89343, #8a5e1f); }

/* ─── NAV ───────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  padding: 10px 0;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-monogram {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--bg);
  display: grid; place-items: center;
  font-size: 16px;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 4px 12px rgba(0,0,0,0.3);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name { font-family: var(--font-display); font-weight: var(--font-display-weight); font-size: 17px; color: var(--ink); }
.nav-brand-role { font-size: 11px; color: var(--ink-dim); letter-spacing: 0.04em; text-transform: lowercase; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 13px; color: var(--ink-mute);
  position: relative; padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.2s ease, left 0.2s ease;
}
.nav-links a:hover::after { width: 100%; left: 0; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-brand-role { display: none; }
}
@media (max-width: 540px) {
  .nav-cta { display: none; }
}

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 70% 20%, rgba(217,177,106,0.12), transparent 60%),
    radial-gradient(800px 600px at 20% 80%, rgba(162,53,65,0.18), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 60%, var(--bg) 100%);
}
.hero-bg-glow {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(217,177,106,0.03) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(217,177,106,0.03) 0 1px, transparent 1px 80px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-stage { position: absolute; inset: 0; pointer-events: none; }
.hero-spotlight {
  position: absolute;
  top: -10%; right: -5%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(217,177,106,0.18), transparent 65%);
  filter: blur(40px);
  transform: translateY(var(--bgy, 0));
}
.hero-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-star { color: var(--gold-2); font-size: 12px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: clamp(56px, 9vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.hero-line-1 { display: block; color: var(--ink); }
.hero-line-2 {
  display: block;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  padding-left: 0.1em;
}

.hero-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-mute);
  max-width: 48ch;
  margin: 0 0 36px;
  line-height: 1.6;
}
.hero-sub b { color: var(--gold); font-weight: 600; }

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta-item { line-height: 1.1; }
.hero-meta-num {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: 32px;
  color: var(--gold-2);
  font-style: italic;
}
.hero-meta-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  margin-top: 4px;
}
.hero-meta-divider { width: 1px; height: 32px; background: var(--line); }

/* photo */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: stretch;
  min-height: 720px;
}
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 3/4;
  transform: translateY(var(--py, 0));
}
.hero-photo-glow {
  position: absolute; inset: -10% -5% 10%;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(217,177,106,0.35), transparent 60%),
    radial-gradient(ellipse at 50% 90%, rgba(162,53,65,0.4), transparent 70%);
  filter: blur(30px);
  z-index: 0;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 115%;
  height: 115%;
  margin-left: -7.5%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}
.hero-flourish {
  position: absolute;
  width: 60px; height: 60px;
  color: var(--gold);
  opacity: 0.7;
  z-index: 2;
}
.hero-flourish-tl { top: -10px; left: -10px; }
.hero-flourish-br { bottom: -10px; right: -10px; }

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-dim);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 3;
}
.hero-scroll-hint i {
  display: block;
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

@media (max-width: 880px) {
  .hero { padding: 120px 24px 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo-wrap { min-height: 480px; }
  .hero-photo-frame { max-width: 420px; margin: 0 auto; }
  .hero-meta { flex-wrap: wrap; gap: 20px; }
  .hero-meta-divider { display: none; }
  .hero-scroll-hint { display: none; }
}

/* ─── ABOUT ─────────────────────────────────────────────────────────────── */
.section-about { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(217,177,106,0.28), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 560px;
}
.about-photo .tunable-photo {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.about-photo .tunable-photo img {
  width: 118%;
  height: 110%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.4));
}
.about-photo-tag {
  position: absolute;
  top: 20px; left: 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.about-paragraph p { color: var(--ink-mute); margin: 0 0 14px; font-size: 16px; line-height: 1.7; }
.about-paragraph p b { color: var(--ink); font-weight: 600; }
.about-facts {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.about-fact {
  display: flex; gap: 14px; align-items: flex-start;
}
.about-fact-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(217,177,106,0.16), rgba(217,177,106,0.04));
  border: 1px solid var(--line);
  color: var(--gold);
  flex: 0 0 auto;
}
.about-fact-h { font-weight: 600; color: var(--ink); font-size: 14px; }
.about-fact-s { color: var(--ink-dim); font-size: 13px; margin-top: 2px; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-facts { grid-template-columns: 1fr; }
}

/* ─── SERVICES ──────────────────────────────────────────────────────────── */
.section-services { background: var(--bg); }
.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.price-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--gold), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.price-card-wedding {
  background: linear-gradient(180deg, rgba(162,53,65,0.18), var(--surface));
  border-color: rgba(217,177,106,0.3);
}
.price-card-wedding::after {
  content: "★ популярно";
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.price-card-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0.6;
}
.price-card-title {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: 32px;
  margin: 0 0 24px;
  color: var(--ink);
}
.price-card-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.price-card-num {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card-unit {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-text);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.price-card-thousand { font-size: 36px; line-height: 1; font-variant-numeric: tabular-nums; }
.price-card-rub { font-size: 28px; line-height: 1; opacity: 0.85; font-weight: 600; }
.price-card-hint { color: var(--ink-dim); font-size: 13px; margin-bottom: 28px; }
.price-card-btn { width: 100%; }

@media (max-width: 880px) {
  .prices { grid-template-columns: 1fr; }
}

/* ─── INCLUDED ──────────────────────────────────────────────────────────── */
.section-included {
  background: linear-gradient(180deg, var(--bg-2), var(--bg) 60%);
  position: relative;
}
.section-included::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 90% 0%, rgba(217,177,106,0.06), transparent 60%);
  pointer-events: none;
}
.included-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.included-item {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background 0.3s ease;
}
.included-item:hover { background: var(--surface-2); }
.included-item:nth-child(3n) { border-right: none; }
.included-item:nth-last-child(-n+3) { border-bottom: none; }
.included-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  opacity: 0.5;
  flex: 0 0 auto;
  line-height: 1;
}
.included-title {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--ink);
}
.included-text { color: var(--ink-mute); font-size: 14px; margin: 0; line-height: 1.55; }

@media (max-width: 880px) {
  .included-grid { grid-template-columns: 1fr; }
  .included-item { border-right: none; }
  .included-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .included-item:last-child { border-bottom: none; }
}

/* ─── PROGRAMME ─────────────────────────────────────────────────────────── */
.section-programme {
  background: var(--bg);
  position: relative;
}
.programme-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.programme-aside { position: sticky; top: 100px; }
.programme-lede { color: var(--ink-mute); font-size: 16px; line-height: 1.7; max-width: 38ch; margin-bottom: 32px; }
.programme-photo {
  margin-top: 32px;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(162,53,65,0.3), transparent 60%),
    var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  overflow: hidden;
  max-width: 440px;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.programme-photo .tunable-photo { position: absolute; inset: 0; width: 100%; height: 100%; }
.programme-photo .tunable-photo img { width: 118%; height: 110%; object-fit: contain; object-position: bottom center; }

.programme-list { list-style: none; margin: 0; padding: 0; }
.programme-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.programme-item:last-child { border-bottom: none; }
.programme-num {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-style: italic;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.65;
  line-height: 1;
}
.programme-h {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: 28px;
  margin: 0 0 6px;
  color: var(--ink);
}
.programme-t { color: var(--ink-mute); font-size: 16px; margin: 0; line-height: 1.6; }

@media (max-width: 880px) {
  .programme-grid { grid-template-columns: 1fr; gap: 40px; }
  .programme-aside { position: static; }
  .programme-photo { max-width: 100%; aspect-ratio: 4/3; }
  .programme-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .programme-num { font-size: 32px; }
  .programme-h { font-size: 22px; }
}

/* ─── STARS ─────────────────────────────────────────────────────────────── */
.section-stars { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.stars-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  border-top: 1px solid var(--line);
}
.star-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, padding 0.3s ease;
  position: relative;
}
.star-item:hover { background: rgba(217,177,106,0.04); padding-left: 12px; padding-right: 12px; }
.star-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-deep), var(--accent));
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  flex: 0 0 auto;
  position: relative;
}
.star-photo img { width: 100%; height: 100%; object-fit: cover; }
.star-photo::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  pointer-events: none;
}
.star-initials {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  color: var(--bg);
  font-size: 18px;
}
.star-name {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: 19px;
  margin: 0 0 2px;
  color: var(--ink);
}
.star-title { color: var(--ink-mute); font-size: 13px; margin: 0; line-height: 1.4; }
.star-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  opacity: 0.5;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.stars-note {
  text-align: center;
  margin-top: 40px;
  color: var(--gold);
  font-style: italic;
  font-size: 14px;
}

@media (max-width: 880px) {
  .stars-list { grid-template-columns: 1fr; gap: 0; }
}

/* ─── CALENDAR ──────────────────────────────────────────────────────────── */
.section-calendar { background: var(--bg-2); }
.calendar-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.calendar-lede { color: var(--ink-mute); font-size: 16px; line-height: 1.7; margin-bottom: 32px; max-width: 42ch; }
.calendar-tips { display: flex; flex-direction: column; gap: 16px; }
.calendar-tip {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.calendar-tip-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  text-align: center;
}
.calendar-tip b { color: var(--ink); }

.calendar-wrap {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 8px 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.cal-nav {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-mute);
  display: grid; place-items: center;
  transition: all 0.2s ease;
}
.cal-nav:hover { color: var(--gold); border-color: var(--gold); background: rgba(217,177,106,0.05); }
.cal-title { text-align: center; }
.cal-month {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: 24px;
  color: var(--ink);
  line-height: 1;
}
.cal-year { font-size: 12px; color: var(--gold); letter-spacing: 0.2em; margin-top: 4px; }

.cal-stats { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.cal-stat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-mute);
}
.cal-dot { width: 6px; height: 6px; border-radius: 50%; }
.cal-dot-free { background: var(--free-2); }
.cal-dot-busy { background: var(--accent-2); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.cal-wd {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 8px 0;
}
.cal-wd-we { color: var(--gold); opacity: 0.7; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-cell {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-mute);
  font-size: 14px;
  font-family: var(--font-text);
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.cal-num { position: relative; z-index: 2; }
.cal-mark {
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
}
.cal-mark-free { background: var(--free-2); }
.cal-mark-busy { background: var(--accent-2); }
.cal-out { color: var(--ink-dim); opacity: 0.25; }
.cal-past { color: var(--ink-dim); opacity: 0.4; cursor: not-allowed; }
.cal-busy {
  background: rgba(162,53,65,0.18);
  color: var(--accent-2);
  border-color: rgba(162,53,65,0.35);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: rgba(196,74,85,0.6);
}
.cal-free {
  background: rgba(90,138,77,0.12);
  color: var(--ink);
  border-color: rgba(90,138,77,0.25);
  cursor: pointer;
}
.cal-free:hover {
  background: rgba(126,174,110,0.28);
  border-color: var(--free-2);
  color: var(--ink);
  transform: translateY(-1px);
}
.cal-today {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.cal-we { font-weight: 600; }

.cal-legend {
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-mute);
}
.cal-legend-item { display: inline-flex; align-items: center; gap: 8px; }
.cal-sw { width: 14px; height: 14px; border-radius: 5px; border: 1px solid; }
.cal-sw-free { background: rgba(90,138,77,0.18); border-color: rgba(90,138,77,0.4); }
.cal-sw-busy { background: rgba(162,53,65,0.18); border-color: rgba(162,53,65,0.4); }
.cal-legend-hint { margin-left: auto; color: var(--ink-dim); font-style: italic; font-size: 11px; }

@media (max-width: 880px) {
  .calendar-grid { grid-template-columns: 1fr; gap: 32px; }
  .calendar-wrap { padding: 18px; }
  .cal-cell { font-size: 13px; }
}

/* ─── GEOGRAPHY ─────────────────────────────────────────────────────────── */
.section-geo { background: var(--bg); }
.geo-inner { text-align: center; max-width: 740px; margin: 0 auto; }
.geo-text { color: var(--ink-mute); font-size: 17px; line-height: 1.7; }
.geo-text b { color: var(--gold); font-weight: 600; }
.geo-pins {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.geo-pin {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 14px;
  color: var(--ink-mute);
}
.geo-pin-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.geo-pin-main { border-color: var(--gold); color: var(--gold); font-weight: 600; }
.geo-pin-other { background: transparent; color: var(--ink-dim); font-style: italic; }

/* ─── CONTACT ───────────────────────────────────────────────────────────── */
.section-contact {
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  position: relative;
}
.contact-card {
  background:
    radial-gradient(800px 300px at 100% 0%, rgba(217,177,106,0.12), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(162,53,65,0.18), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.contact-lede { color: var(--ink-mute); font-size: 16px; line-height: 1.7; margin-bottom: 32px; max-width: 44ch; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-channel {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: all 0.2s ease;
}
.contact-channel:hover {
  border-color: var(--gold);
  background: rgba(217,177,106,0.05);
  transform: translateX(4px);
}
.contact-channel-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(217,177,106,0.16), rgba(217,177,106,0.04));
  border: 1px solid var(--line);
  color: var(--gold);
  flex: 0 0 auto;
}
.contact-channel-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-dim); }
.contact-channel-val { font-family: var(--font-display); font-weight: var(--font-display-weight); font-size: 19px; color: var(--ink); margin-top: 2px; }

.contact-right { position: relative; min-height: 460px; }
.contact-right .tunable-photo { width: 100%; min-height: 380px; }
.contact-right .tunable-photo img {
  width: 110%;
  max-width: 520px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.contact-quote {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  line-height: 1.5;
  opacity: 0.85;
}

@media (max-width: 880px) {
  .contact-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
}

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 40px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-mark { display: flex; align-items: center; gap: 12px; }
.footer-mono {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--bg);
  display: grid; place-items: center;
}
.footer-name { font-family: var(--font-display); font-weight: var(--font-display-weight); font-size: 20px; color: var(--ink); text-align: left; }
.footer-role { font-size: 12px; color: var(--ink-dim); text-align: left; }
.footer-slogans {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  opacity: 0.85;
}
.footer-meta { color: var(--ink-dim); font-size: 12px; }

/* ─── BOOKING MODAL ─────────────────────────────────────────────────────── */
.bm-overlay {
  position: fixed; inset: 0;
  background: rgba(8, 4, 6, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: bmFadeIn 0.25s ease;
}
@keyframes bmFadeIn { from { opacity: 0; } to { opacity: 1; } }
.bm-modal {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  animation: bmSlideUp 0.3s cubic-bezier(.2,.8,.2,1);
}
@keyframes bmSlideUp { from { opacity: 0; transform: translateY(24px) scale(0.98); } to { opacity: 1; transform: none; } }
.bm-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-mute);
  display: grid; place-items: center;
  transition: all 0.2s ease;
}
.bm-close:hover { color: var(--gold); border-color: var(--gold); }

.bm-head { margin-bottom: 24px; }
.bm-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.bm-title {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: 28px;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.15;
}
.bm-sub { color: var(--ink-mute); font-size: 14px; margin: 0; line-height: 1.6; }

.bm-form { display: flex; flex-direction: column; gap: 16px; }
.bm-row { display: flex; flex-direction: column; gap: 16px; }
.bm-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bm-field { display: flex; flex-direction: column; gap: 6px; }
.bm-lbl {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-dim);
}
.bm-lbl em { color: var(--accent-2); font-style: normal; margin-left: 2px; }
.bm-input {
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.bm-input:focus { border-color: var(--gold); background: var(--bg); }
.bm-input::placeholder { color: var(--ink-dim); }
.bm-textarea { padding: 12px 14px; height: auto; min-height: 80px; resize: vertical; line-height: 1.5; }
.bm-err { font-size: 12px; color: var(--accent-2); }

.bm-segments { display: flex; gap: 4px; padding: 4px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg-2); }
.bm-segments-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.bm-seg {
  flex: 1;
  height: 36px;
  padding: 0 8px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink-mute);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.bm-seg:hover { color: var(--ink); }
.bm-seg-on {
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.bm-actions {
  display: flex; gap: 12px; justify-content: flex-end;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.bm-btn-primary {
  height: 46px; padding: 0 24px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: var(--bg);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bm-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -8px rgba(217,177,106,0.4); }
.bm-btn-ghost {
  height: 46px; padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-mute);
  font: inherit;
  font-size: 14px;
}
.bm-btn-ghost:hover { color: var(--ink); border-color: var(--line-strong); }
.bm-fineprint { font-size: 11px; color: var(--ink-dim); margin: 8px 0 0; text-align: right; }

.bm-state { text-align: center; padding: 40px 20px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.bm-state .bm-title { margin: 0; }
.bm-state .bm-sub { max-width: 36ch; }
.bm-spinner {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--line);
  border-top-color: var(--gold);
  animation: bmSpin 0.9s linear infinite;
}
@keyframes bmSpin { to { transform: rotate(360deg); } }
.bm-check { color: var(--gold); animation: bmPop 0.4s cubic-bezier(.2,.8,.2,1); }
@keyframes bmPop { from { transform: scale(0.6); opacity: 0; } to { transform: none; opacity: 1; } }
.bm-state-done .bm-btn-primary { margin-top: 12px; }

@media (max-width: 600px) {
  .bm-modal { padding: 24px; }
  .bm-row-2 { grid-template-columns: 1fr; }
  .bm-segments-4 { grid-template-columns: repeat(2, 1fr); }
  .bm-actions { flex-direction: column-reverse; }
  .bm-actions .bm-btn-primary, .bm-actions .bm-btn-ghost { width: 100%; }
}

/* light theme tweaks */
[data-theme="light"] .hero-photo { filter: drop-shadow(0 30px 60px rgba(112,78,36,0.35)); }
[data-theme="light"] .nav-scrolled { background: color-mix(in srgb, var(--bg) 90%, transparent); }
[data-theme="light"] .price-card { background: linear-gradient(180deg, var(--surface), var(--surface-2)); }
[data-theme="light"] .price-card-num { background: linear-gradient(180deg, #c89343, #5c411a); -webkit-background-clip: text; background-clip: text; color: transparent; font-family: var(--font-text); font-weight: 700; }
[data-theme="light"] .star-photo::after { box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06); }
[data-theme="light"] .bm-input { background: var(--surface); }
[data-theme="light"] .bm-input:focus { background: #fff; }
[data-theme="light"] .bm-seg-on { color: var(--surface); }

/* ─── RESPONSIVE TWEAKS ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 36px; }
}


/* ─── TUNABLE PHOTO ──────────────────────────────────────────────────────── */
.tunable-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.tunable-photo > img {
  display: block;
  will-change: transform;
}
.tunable-photo.is-editing {
  cursor: grab;
  outline: 2px dashed var(--gold);
  outline-offset: -2px;
  background:
    repeating-linear-gradient(45deg, rgba(217,177,106,0.04) 0 8px, transparent 8px 16px);
}
.tunable-photo.is-editing:active { cursor: grabbing; }
.tp-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(20,10,12,0.92);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px;
  backdrop-filter: blur(8px);
  z-index: 5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
.tp-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--gold-2);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-family: var(--font-text);
  transition: background 0.15s, transform 0.15s;
}
.tp-btn:hover { background: var(--bg-3); transform: scale(1.06); }
.tp-btn:active { transform: scale(0.94); }
.tp-reset { font-size: 14px; }
.tp-scale {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--gold-2);
  min-width: 38px;
  text-align: center;
}
.tp-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,10,12,0.9);
  color: var(--ink-mute);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
}

/* Hero photo wrapper — let the tunable layer fill the frame */
.hero-photo-tunable {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  align-items: center;
  background: transparent;
  overflow: visible;
}
.hero-photo-tunable.is-editing {
  background: rgba(20,10,12,0.3);
  overflow: hidden;
}
.hero-photo-tunable > img.hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  margin: 0;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}


/* tunable-photo additions */
.tunable-photo.tp-no-clip { overflow: visible !important; }
.tp-sep { width: 1px; height: 18px; background: var(--line-strong); margin: 0 4px; }
.tp-btn-on { background: var(--gold); color: var(--bg); border-color: var(--gold); }
