/* ═══════════════════════════════════════════════════════
   SIR LEO — Design System
   ═══════════════════════════════════════════════════════ */

:root {
  /* ── Brand (fixed) ── */
  --blood:       #6B1A1A;
  --blood-mid:   #8B2020;
  --gold:        #B8922E;
  --gold-dim:    rgba(184,146,46,0.35);
  --border-gold: rgba(184,146,46,0.1);
  --serif:       'Cormorant Garamond', serif;
  --sans:        'Montserrat', sans-serif;

  /* ── Dark theme (default) ── */
  --bg:          #080706;
  --bg-alt:      #050403;
  --bg-deep:     #030202;
  --bg-card:     #0e0d0c;
  --bg-hover:    #0d0908;
  --text:        #F0E6CE;
  --text-sub:    rgba(210,190,165,0.9);
  --text-body:   #B0A080;
  --text-muted:  #A89878;
  --text-faint:  rgba(240,232,216,0.55);
  --border-red:  rgba(107,26,26,0.15);
  --nav-scrolled: rgba(8,7,6,0.97);
  --input-bg:    rgba(255,255,255,0.04);
  --input-border: rgba(107,26,26,0.25);

  /* ── Aliases ── */
  --black:   var(--bg);
  --surface: var(--bg-alt);
  --deep:    var(--bg-card);
  --cream:   var(--text);
  --muted:   var(--text-muted);
  --dim:     #6A5840;
}

/* ══════════════════════════════════════════════
   LIGHT THEME
   ══════════════════════════════════════════════ */
[data-theme="light"] {
  --bg:          #F4EBD9;
  --bg-alt:      #EDE3CF;
  --bg-deep:     #E6D9C4;
  --bg-card:     #EFE5D2;
  --bg-hover:    #E4D5BC;
  --text:        #1A0E06;
  --text-sub:    rgba(30,16,5,0.82);
  --text-body:   #5A3E1E;
  --text-muted:  #7A5830;
  --text-faint:  rgba(26,14,6,0.45);
  --border-red:  rgba(107,26,26,0.2);
  --nav-scrolled: rgba(244,235,217,0.97);
  --input-bg:    rgba(0,0,0,0.04);
  --input-border: rgba(107,26,26,0.35);
  --gold:        #9B7018;
  --blood-mid:   #8B2020;
  --dim:         #9A7850;

  --black:   var(--bg);
  --surface: var(--bg-alt);
  --deep:    var(--bg-card);
  --cream:   var(--text);
  --muted:   var(--text-muted);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--black); color: var(--cream); font-family: var(--sans); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
::selection { background: var(--blood); color: var(--cream); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--blood); }

/* ── Focus states ── */
:focus-visible {
  outline: 2px solid rgba(139,32,32,0.7);
  outline-offset: 3px;
}

/* ── Animations ── */
.reveal       { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

@keyframes fadeIn       { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideUp      { from { transform: translateY(28px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes scrollAnim   { 0%,100% { transform: scaleY(1); opacity: 0.5; } 50% { transform: scaleY(0.5); opacity: 1; } }
@keyframes panelIn      { from { transform: translateX(100%); opacity: 0 } to { transform: translateX(0); opacity: 1 } }
@keyframes heroFadeUp   { from { opacity: 0; transform: translateY(32px) } to { opacity: 1; transform: translateY(0) } }
@keyframes navFadeDown  { from { opacity: 0; transform: translateY(-14px) } to { opacity: 1; transform: translateY(0) } }
@keyframes lineDraw     { from { transform: scaleX(0) } to { transform: scaleX(1) } }
@keyframes dotPulse     { 0%,100% { box-shadow: 0 0 0 0 rgba(139,32,32,0.5) } 60% { box-shadow: 0 0 0 5px rgba(139,32,32,0) } }
@keyframes ambientBreath { 0%,100% { opacity: 0.5 } 50% { opacity: 1 } }

/* ── Layout helpers ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

.label-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(200,80,80,0.95); margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.label-tag::after {
  content: ''; display: block; width: 40px; height: 1px; background: rgba(200,80,80,0.6);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1) 0.5s;
}
.label-tag.visible::after { transform: scaleX(1); }

.section-title {
  font-family: var(--serif); font-size: clamp(52px,6vw,88px); font-weight: 300;
  line-height: 1.0; color: var(--cream); margin-bottom: 28px;
}
.section-title em { color: var(--blood-mid); font-style: italic; }

/* ── Buttons — min 52px tall, readable text ── */
.btn-primary {
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--blood); color: var(--cream); border: none; cursor: pointer;
  padding: 18px 44px; min-height: 52px;
  transition: background 0.3s, transform 0.2s; display: inline-flex; align-items: center;
}
.btn-primary:hover { background: var(--blood-mid); transform: translateY(-2px); }

.btn-ghost {
  font-size: 12px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  background: transparent; color: #D8C8A8; border: 1px solid rgba(200,185,170,0.35);
  cursor: pointer; padding: 18px 44px; min-height: 52px;
  transition: border-color 0.3s, color 0.3s; display: inline-flex; align-items: center;
}
.btn-ghost:hover { border-color: rgba(180,60,60,0.6); color: #C87070; }

/* ══════════════════════════════════════════════
   CURSOR
   ══════════════════════════════════════════════ */
#sl-cursor {
  position: fixed; width: 8px; height: 8px; background: rgba(155,32,32,0.9);
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); transition: transform 0.1s ease; top: 0; left: 0;
}
#sl-cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(155,32,32,0.35); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); transition: width 0.3s, height 0.3s; top: 0; left: 0;
}

/* ══════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════ */
nav {
  animation: navFadeDown 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s both;
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 60px;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled { background: var(--nav-scrolled); border-bottom-color: rgba(107,26,26,0.2); }

.nav-logo { display: inline-flex; align-items: center; }
.nav-logo-img { height: 48px; width: auto; display: block; transition: opacity 0.3s; }
.nav-logo-img:hover { opacity: 0.8; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: #D0C0A0;
  transition: color 0.3s; padding: 8px 4px; min-height: 44px;
  display: inline-flex; align-items: center;
}
.nav-links a:hover { color: var(--blood-mid); }
.nav-cta {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); background: var(--blood); border: none; cursor: pointer;
  padding: 14px 32px; min-height: 48px; transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--blood-mid); transform: translateY(-1px); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
#hero {
  position: relative; height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-photo { position: absolute; inset: 0; }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 72% 22%; filter: brightness(0.55) contrast(1.1);
  animation: heroFadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 0s both;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, rgba(8,7,6,0.65) 28%, transparent 55%),
    linear-gradient(to bottom, rgba(8,7,6,0.35) 0%, transparent 20%, transparent 60%, rgba(8,7,6,0.9) 100%);
}
.hero-photo::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 65% 40%, rgba(107,26,26,0.18) 0%, transparent 65%);
  animation: ambientBreath 7s ease-in-out infinite;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-inner {
  max-width: 640px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--blood-mid); margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
  animation: heroFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--blood-mid); }
.hero-title {
  font-family: var(--serif); font-size: clamp(80px,10vw,140px);
  font-weight: 300; line-height: 0.9; color: var(--cream); margin-bottom: 32px;
  animation: heroFadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}
.hero-title span { color: var(--blood-mid); display: block; }
.hero-tagline {
  font-family: var(--serif); font-size: clamp(18px,2vw,22px); font-weight: 300; font-style: italic;
  color: #D0C0A0; line-height: 1.6; margin-bottom: 20px;
  border-left: 2px solid rgba(107,26,26,0.8); padding-left: 20px;
  animation: heroFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.8s both;
}
.hero-bio {
  font-size: 15px; font-weight: 400; line-height: 2.0;
  color: rgba(210,190,165,0.9); margin-bottom: 48px;
  max-width: 460px;
  animation: heroFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.0s both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: heroFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.15s both; }
.hero-scroll {
  animation: heroFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.4s both;
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(180,140,120,0.5); z-index: 2;
}
.scroll-bar {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(107,26,26,0.7), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════
   PHILOSOPHY
   ══════════════════════════════════════════════ */
#philosophy { padding: 200px 0; background: var(--surface); position: relative; }
#philosophy::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(107,26,26,0.07) 0%, transparent 70%);
}
.philosophy-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 820px; margin: 0 auto; position: relative; z-index: 1;
}
.philosophy-quote {
  font-family: var(--serif); font-size: clamp(34px,5vw,64px);
  font-weight: 300; font-style: italic; line-height: 1.3;
  color: var(--cream); margin-bottom: 48px;
}
.philosophy-quote em { color: var(--blood-mid); }
.philosophy-body {
  font-size: 16px; font-weight: 400; line-height: 2.1;
  color: var(--text-body); max-width: 640px; margin-bottom: 64px;
}
.principles-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1px;
  background: rgba(184,146,46,0.1); width: 100%; text-align: left;
}
.principle { background: var(--surface); padding: 36px 40px; transition: background 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1); }
.principle:hover { background: var(--bg-hover); transform: translateY(-5px); }
.principle-line {
  width: 32px; height: 1px; background: var(--blood); margin-bottom: 18px;
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}
.principle:hover .principle-line { width: 56px; }
.principle-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--cream); margin-bottom: 10px; }
.principle-desc { font-size: 14px; font-weight: 400; line-height: 2.0; color: var(--text-body); }

/* ══════════════════════════════════════════════
   PHOTO BREAK
   ══════════════════════════════════════════════ */
#photo-break { height: 70vh; position: relative; overflow: hidden; }
#photo-break img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: brightness(0.75) contrast(1.1); }
#photo-break::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(5,4,3,0.55) 0%, transparent 30%, transparent 60%, rgba(5,4,3,0.85) 100%);
}
.photo-break-text {
  position: absolute; bottom: 10%; left: 50%; transform: translateX(-50%);
  z-index: 2; white-space: nowrap;
  font-family: var(--serif); font-size: clamp(22px,3.5vw,42px);
  font-weight: 300; font-style: italic; color: var(--cream); letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════
   WHO I SERVE
   ══════════════════════════════════════════════ */
#serve { padding: 200px 0; background: var(--bg-alt); }
.serve-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 100px; align-items: start; }
.serve-left { position: sticky; top: 120px; }
.serve-intro { font-size: 15px; font-weight: 400; line-height: 2.0; color: var(--text-body); margin-top: 20px; }
.serve-item {
  padding: 40px 0 40px 0; border-bottom: 1px solid rgba(107,26,26,0.15);
  border-left: 2px solid transparent;
  padding-left: 0;
  transition: border-color 0.35s ease, padding-left 0.35s cubic-bezier(0.16,1,0.3,1);
}
.serve-item:first-child { border-top: 1px solid rgba(107,26,26,0.15); }
.serve-item:hover { border-left-color: rgba(200,80,80,0.55); padding-left: 18px; }
.serve-num { font-family: var(--serif); font-size: 12px; letter-spacing: 0.3em; color: rgba(190,70,70,0.8); margin-bottom: 6px; }
.serve-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(200,80,80,0.95); margin-bottom: 12px; }
.serve-name { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--cream); margin-bottom: 14px; }
.serve-desc { font-size: 15px; font-weight: 400; line-height: 2.0; color: var(--text-body); margin-bottom: 20px; }
.serve-cta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(200,80,80,0.95); cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.25s, gap 0.25s; min-height: 44px; padding: 0;
}
.serve-cta span { transition: transform 0.25s; }
.serve-cta:hover { color: #e06060; }
.serve-cta:hover span { transform: translateX(4px); }
.serve-item { cursor: pointer; }
.serve-item:hover .serve-cta { color: #e06060; }

/* ══════════════════════════════════════════════
   OFFERINGS
   ══════════════════════════════════════════════ */
#offerings { padding: 200px 0; background: var(--black); }
.offerings-header { margin-bottom: 72px; }
.offerings-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(107,26,26,0.1); }
.offering {
  background: var(--black); padding: 56px 48px 64px;
  position: relative; transition: background 0.4s;
}
.offering:hover { background: var(--bg-hover); }
.offering::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--blood); transform: scaleY(0); transform-origin: bottom; transition: transform 0.45s ease;
}
.offering:hover::before { transform: scaleY(1); }
.offering-icon { width: 36px; height: 36px; margin-bottom: 28px; }
.offering-icon svg { width: 100%; height: 100%; }
.offering-num { font-size: 11px; font-weight: 500; letter-spacing: 0.3em; color: rgba(107,26,26,0.65); margin-bottom: 4px; }
.offering-sub { font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(200,80,80,0.9); margin-bottom: 16px; }
.offering-title { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--cream); margin-bottom: 16px; }
.offering-desc { font-size: 15px; font-weight: 400; line-height: 2.0; color: var(--text-body); margin-bottom: 28px; }
.offering-detail {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blood-mid); display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s, color 0.3s;
}
.offering:hover .offering-detail { gap: 14px; color: var(--gold); }

/* ══════════════════════════════════════════════
   KINK AFTERDARK
   ══════════════════════════════════════════════ */
#afterdark {
  padding: 200px 0 100px; background: var(--bg-deep);
  border-top: 1px solid rgba(107,26,26,0.3); border-bottom: 1px solid rgba(107,26,26,0.3);
  position: relative; overflow: hidden;
}
.afterdark-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--serif); font-size: clamp(80px,14vw,180px); font-weight: 600;
  letter-spacing: 0.1em; white-space: nowrap;
  -webkit-text-stroke: 1px rgba(107,26,26,0.08); color: transparent;
  pointer-events: none; user-select: none;
}
.afterdark-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; position: relative; z-index: 1; align-items: start; }
.afterdark-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(200,80,80,0.95); margin-bottom: 8px; }
.afterdark-date { font-size: 13px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(184,146,46,0.75); margin-bottom: 28px; }
.afterdark-title { font-family: var(--serif); font-size: clamp(42px,5.5vw,72px); font-weight: 300; color: var(--cream); line-height: 1; margin-bottom: 32px; }
.afterdark-title em { color: var(--blood-mid); font-style: italic; }
.afterdark-body { font-size: 15px; font-weight: 400; line-height: 2.0; color: var(--text-body); margin-bottom: 40px; }
.afterdark-stats { display: flex; gap: 32px; margin-bottom: 44px; padding-top: 32px; border-top: 1px solid rgba(107,26,26,0.2); flex-wrap: wrap; }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(139,32,32,0.65); margin-bottom: 6px; }
.stat-val { font-family: var(--serif); font-size: 18px; font-weight: 400; color: rgba(240,232,216,0.9); }
.afterdark-features { display: flex; flex-direction: column; }
.afterdark-feature { padding: 18px 0; border-bottom: 1px solid rgba(107,26,26,0.15); display: flex; align-items: center; gap: 18px; min-height: 56px; }
.afterdark-feature:first-child { border-top: 1px solid rgba(107,26,26,0.15); }
.feature-dot {
  width: 5px; height: 5px; background: rgba(180,60,60,0.85); flex-shrink: 0; border-radius: 50%;
  animation: dotPulse 2.8s ease-in-out infinite;
}
.afterdark-feature:nth-child(2) .feature-dot { animation-delay: 0.4s; }
.afterdark-feature:nth-child(3) .feature-dot { animation-delay: 0.8s; }
.afterdark-feature:nth-child(4) .feature-dot { animation-delay: 1.2s; }
.afterdark-feature:nth-child(5) .feature-dot { animation-delay: 1.6s; }
.afterdark-feature:nth-child(6) .feature-dot { animation-delay: 2.0s; }
.feature-name { font-family: var(--serif); font-size: 18px; font-weight: 400; color: rgba(240,232,216,0.85); letter-spacing: 0.04em; }

/* ══════════════════════════════════════════════
   HUB
   ══════════════════════════════════════════════ */
#hub { background: var(--bg-deep); padding: 80px 0 0; position: relative; overflow: hidden; }
#hub::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(107,26,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hub-inner { position: relative; z-index: 1; }

.hub-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(139,32,32,0.8); margin-bottom: 12px; }
.hub-dialog-title { font-family: var(--serif); font-size: clamp(26px,3.5vw,40px); font-weight: 300; line-height: 1.2; color: var(--cream); margin-bottom: 32px; }
.hub-panel-options { display: flex; flex-direction: column; gap: 1px; background: rgba(107,26,26,0.1); margin-bottom: 4px; }
.hub-panel-option {
  background: var(--deep); padding: 20px 24px; min-height: 64px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; border: none; color: var(--cream); width: 100%;
  text-align: left; transition: background 0.25s;
}
.hub-panel-option:hover { background: #1a0f0f; }
.hub-card-label { font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(225,215,200,0.9); }
.hub-card-sub { font-family: var(--serif); font-size: 14px; font-style: italic; color: rgba(240,232,216,0.5); margin-top: 4px; }
.hub-arrow { font-size: 14px; color: rgba(139,32,32,0.6); }
.hub-back {
  background: none; border: none; cursor: pointer; margin-bottom: 20px;
  padding: 10px 0; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,232,216,0.4); transition: color 0.2s; min-height: 44px;
  display: inline-flex; align-items: center;
}
.hub-back:hover { color: rgba(240,232,216,0.7); }
.hub-form { display: flex; flex-direction: column; gap: 20px; }
.hub-field { display: flex; flex-direction: column; gap: 10px; }
.hub-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(240,232,216,0.5); }
.hub-input, .hub-select, .hub-textarea {
  background: var(--input-bg); border: 1px solid var(--input-border);
  color: var(--cream); padding: 14px 18px; font-size: 15px; font-weight: 400; min-height: 52px;
  outline: none; transition: border-color 0.25s; width: 100%; font-family: var(--sans);
}
.hub-input:focus, .hub-select:focus, .hub-textarea:focus { border-color: rgba(139,32,32,0.6); }
.hub-select { appearance: none; }
.hub-select option { background: var(--deep); }
.hub-textarea { min-height: 90px; resize: vertical; }
.hub-submit {
  margin-top: 8px; padding: 18px 36px; min-height: 56px; background: var(--blood); color: var(--cream);
  border: none; cursor: pointer; font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; transition: background 0.3s, transform 0.2s;
}
.hub-submit:hover { background: var(--blood-mid); transform: translateY(-1px); }
.hub-expand-options { padding: 0 28px 20px; display: flex; flex-direction: column; gap: 2px; }
.hub-expand-opt {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; min-height: 52px; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(220,200,180,0.75); transition: color 0.2s;
}
.hub-expand-opt:last-child { border-bottom: none; }
.hub-expand-opt:hover { color: rgba(220,200,180,0.95); }

/* ══════════════════════════════════════════════
   CONNECT
   ══════════════════════════════════════════════ */
#connect { padding: 200px 0; background: var(--bg-deep); text-align: center; border-top: 1px solid rgba(107,26,26,0.15); }
.connect-inner { max-width: 760px; margin: 0 auto; }
.connect-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(139,32,32,0.8); margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.connect-label::before, .connect-label::after { content: ''; display: block; width: 40px; height: 1px; background: rgba(139,32,32,0.4); }
.connect-headline { font-family: var(--serif); font-size: clamp(42px,6vw,80px); font-weight: 300; font-style: italic; line-height: 1.05; color: var(--cream); margin-bottom: 24px; }
.connect-headline em { color: var(--blood-mid); }
.connect-sub { font-size: 16px; font-weight: 400; line-height: 2.0; color: var(--text-body); margin-bottom: 56px; }
.connect-cta { margin-bottom: 72px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.connect-socials { display: flex; gap: 40px; justify-content: center; padding-top: 40px; border-top: 1px solid rgba(107,26,26,0.15); flex-wrap: wrap; }
.connect-social {
  font-size: 12px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(210,195,170,0.65); transition: color 0.3s;
  padding: 10px 0; min-height: 44px; display: inline-flex; align-items: center;
}
.connect-social:hover { color: rgba(210,195,170,0.9); }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
  padding: 36px 60px; background: var(--bg-deep);
  border-top: 1px solid rgba(107,26,26,0.12);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo-img { height: 36px; width: auto; display: block; opacity: 0.55; transition: opacity 0.3s; }
.footer-logo-img:hover { opacity: 0.8; }
.footer-copy { font-size: 13px; font-weight: 400; letter-spacing: 0.1em; color: rgba(240,232,216,0.45); }
.footer-ig { font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(210,195,170,0.55); transition: color 0.3s; }
.footer-ig:hover { color: rgba(210,195,170,0.8); }

/* ══════════════════════════════════════════════
   BOOK PAGE
   ══════════════════════════════════════════════ */
.book-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: rgba(107,26,26,0.2); z-index: 200; }
.book-progress-bar { height: 100%; background: var(--blood); transition: width 0.55s cubic-bezier(0.16,1,0.3,1); }
.book-counter { position: fixed; top: 28px; right: 60px; z-index: 200; font-size: 13px; font-weight: 500; letter-spacing: 0.25em; color: rgba(139,32,32,0.7); }
.book-home {
  position: fixed; top: 22px; left: 60px; z-index: 200; font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(240,232,216,0.4); transition: color 0.2s;
  min-height: 44px; display: inline-flex; align-items: center;
}
.book-home:hover { color: rgba(240,232,216,0.75); }
.book-slide {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 60px; transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.book-slide.exit { opacity: 0; transform: translateX(-60px); pointer-events: none; position: absolute; }
.book-slide.enter { animation: panelIn 0.5s cubic-bezier(0.16,1,0.3,1) forwards; }
.book-slide-inner { max-width: 600px; width: 100%; }
.book-step-label { font-size: 11px; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(139,32,32,0.75); margin-bottom: 24px; }
.book-headline { font-family: var(--serif); font-size: clamp(38px,5.5vw,72px); font-weight: 300; line-height: 1.05; color: var(--cream); margin-bottom: 48px; }
.book-headline em { color: var(--blood-mid); font-style: italic; }
.book-options { display: flex; flex-direction: column; gap: 1px; background: rgba(107,26,26,0.1); }
.book-option {
  background: #0c0b0a; padding: 22px 32px; min-height: 72px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; border: none; color: var(--cream); width: 100%;
  text-align: left; transition: background 0.25s;
}
.book-option:hover { background: #1c1010; }
.book-option-label { font-size: 14px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(225,215,200,0.9); }
.book-option-sub { font-family: var(--serif); font-size: 15px; font-style: italic; color: rgba(240,232,216,0.45); margin-top: 4px; }
.book-option-arrow { font-size: 16px; color: rgba(139,32,32,0.6); }
.book-back {
  margin-top: 32px; background: none; border: none; cursor: pointer;
  padding: 10px 0; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(240,232,216,0.35); transition: color 0.2s;
  display: flex; align-items: center; gap: 8px; min-height: 44px;
}
.book-back:hover { color: rgba(240,232,216,0.65); }
.book-form { display: flex; flex-direction: column; gap: 22px; }
.book-field { display: flex; flex-direction: column; gap: 10px; }
.book-field-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(240,232,216,0.5); }
.book-input, .book-select, .book-textarea {
  background: var(--input-bg); border: 1px solid var(--input-border);
  color: var(--cream); padding: 16px 20px; font-size: 16px; font-weight: 400; min-height: 56px;
  outline: none; transition: border-color 0.25s; width: 100%; font-family: var(--sans);
}
.book-input:focus, .book-select:focus, .book-textarea:focus { border-color: rgba(139,32,32,0.6); }
.book-select { appearance: none; }
.book-select option { background: var(--deep); }
.book-textarea { min-height: 110px; resize: vertical; }
.book-submit {
  margin-top: 12px; padding: 20px 52px; min-height: 60px; background: var(--blood); color: var(--cream);
  border: none; cursor: pointer; font-size: 13px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}
.book-submit:hover { background: var(--blood-mid); transform: translateY(-2px); }
.book-confirm { text-align: center; padding: 60px 0; }
.book-confirm-icon { font-size: 36px; color: var(--gold); margin-bottom: 24px; }
.book-confirm-title { font-family: var(--serif); font-size: clamp(30px,4vw,50px); font-weight: 300; font-style: italic; color: var(--cream); margin-bottom: 20px; }
.book-confirm-sub { font-size: 15px; font-weight: 400; color: rgba(240,232,216,0.5); letter-spacing: 0.06em; line-height: 2.0; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   LIGHT THEME OVERRIDES
   ══════════════════════════════════════════════ */
[data-theme="light"] body { background: var(--bg); color: var(--text); }
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg); }

[data-theme="light"] .nav-links a { color: #4A3018; }
[data-theme="light"] .btn-ghost { color: #3A2010; border-color: rgba(107,26,26,0.3); }
[data-theme="light"] .btn-ghost:hover { color: var(--blood-mid); border-color: rgba(107,26,26,0.6); }

[data-theme="light"] .hero-photo img { filter: brightness(0.65) contrast(1.05); }
[data-theme="light"] .hero-photo::after {
  background:
    linear-gradient(to right, var(--bg) 0%, rgba(244,235,217,0.75) 28%, transparent 55%),
    linear-gradient(to bottom, rgba(244,235,217,0.3) 0%, transparent 20%, transparent 60%, rgba(244,235,217,0.88) 100%);
}
[data-theme="light"] .hero-tagline { color: #5A3A18; border-left-color: rgba(107,26,26,0.5); }
[data-theme="light"] .hero-bio { color: rgba(40,20,8,0.82); }
[data-theme="light"] .hero-scroll { color: rgba(60,35,12,0.5); }

[data-theme="light"] #philosophy::before { background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(107,26,26,0.05) 0%, transparent 70%); }
[data-theme="light"] .philosophy-quote em { color: var(--blood-mid); }
[data-theme="light"] .principle:hover { background: var(--bg-hover); }

[data-theme="light"] #photo-break::before { background: linear-gradient(to bottom, rgba(244,235,217,0.4) 0%, transparent 30%, transparent 60%, rgba(244,235,217,0.75) 100%); }

[data-theme="light"] .afterdark-bg-text { -webkit-text-stroke: 1px rgba(107,26,26,0.07); }
[data-theme="light"] .afterdark-date { color: rgba(120,90,15,0.85); }
[data-theme="light"] .stat-label { color: rgba(107,26,26,0.65); }
[data-theme="light"] .stat-val { color: rgba(26,14,6,0.9); }
[data-theme="light"] .feature-name { color: rgba(26,14,6,0.85); }

[data-theme="light"] #hub::before { background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(107,26,26,0.06) 0%, transparent 70%); }
[data-theme="light"] #faq { background: var(--bg-deep) !important; }
[data-theme="light"] .hub-panel-option { background: var(--bg-card); color: var(--text); }
[data-theme="light"] .hub-panel-option:hover { background: var(--bg-hover); }
[data-theme="light"] .hub-card-label { color: rgba(26,14,6,0.9); }
[data-theme="light"] .hub-card-sub { color: rgba(26,14,6,0.45); }
[data-theme="light"] .hub-arrow { color: rgba(107,26,26,0.7); }
[data-theme="light"] .hub-back { color: rgba(26,14,6,0.45); }
[data-theme="light"] .hub-back:hover { color: rgba(26,14,6,0.75); }
[data-theme="light"] .hub-label { color: rgba(26,14,6,0.55); }
[data-theme="light"] .hub-input, [data-theme="light"] .hub-select, [data-theme="light"] .hub-textarea { color: var(--text); }
[data-theme="light"] .hub-select option { background: var(--bg-card); color: var(--text); }
[data-theme="light"] .hub-expand-opt { color: rgba(40,20,5,0.7); border-bottom-color: rgba(107,26,26,0.12); }
[data-theme="light"] .hub-expand-opt:hover { color: rgba(40,20,5,0.95); }

[data-theme="light"] .connect-label { color: rgba(107,26,26,0.85); }
[data-theme="light"] .connect-label::before, [data-theme="light"] .connect-label::after { background: rgba(107,26,26,0.35); }
[data-theme="light"] .connect-social { color: rgba(40,20,5,0.55); }
[data-theme="light"] .connect-social:hover { color: rgba(40,20,5,0.85); }

[data-theme="light"] .footer-logo { color: rgba(26,14,6,0.5); }
[data-theme="light"] .footer-copy { color: rgba(26,14,6,0.45); }
[data-theme="light"] .footer-ig { color: rgba(40,20,5,0.5); }
[data-theme="light"] .footer-ig:hover { color: rgba(40,20,5,0.8); }

[data-theme="light"] .book-option { background: var(--bg-card); color: var(--text); }
[data-theme="light"] .book-option:hover { background: var(--bg-hover); }
[data-theme="light"] .book-option-label { color: rgba(26,14,6,0.9); }
[data-theme="light"] .book-option-sub { color: rgba(26,14,6,0.45); }
[data-theme="light"] .book-option-arrow { color: rgba(107,26,26,0.6); }
[data-theme="light"] .book-step-label { color: rgba(107,26,26,0.85); }
[data-theme="light"] .book-home { color: rgba(26,14,6,0.45); }
[data-theme="light"] .book-home:hover { color: rgba(26,14,6,0.8); }
[data-theme="light"] .book-back { color: rgba(26,14,6,0.4); }
[data-theme="light"] .book-back:hover { color: rgba(26,14,6,0.7); }
[data-theme="light"] .book-field-label { color: rgba(26,14,6,0.55); }
[data-theme="light"] .book-input, [data-theme="light"] .book-select, [data-theme="light"] .book-textarea { color: var(--text); }
[data-theme="light"] .book-select option { background: var(--bg-card); color: var(--text); }
[data-theme="light"] .book-counter { color: rgba(107,26,26,0.65); }
[data-theme="light"] .book-confirm-sub { color: rgba(26,14,6,0.5); }

/* theme toggle button */
.nav-theme {
  background: none; border: 1px solid rgba(107,26,26,0.3); cursor: pointer;
  color: rgba(200,80,80,0.85); font-size: 15px; width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, color 0.3s; border-radius: 0; margin-left: 12px;
}
.nav-theme:hover { border-color: rgba(200,80,80,0.6); color: rgba(200,80,80,1); }

/* ── Footer version ── */
.footer-version {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(160,136,104,0.3);
}

/* ── Hide custom cursor on touch devices ── */
@media (hover: none) and (pointer: coarse) {
  #sl-cursor, #sl-cursor-ring { display: none; }
  * { cursor: auto !important; }
}

@media (max-width: 900px) {
  .section-inner { padding: 0 28px; }
  nav { padding: 18px 28px; }
  .nav-links { display: none; }
  .hero-title { font-size: clamp(60px,14vw,100px); }
  .serve-grid { grid-template-columns: 1fr; gap: 48px; }
  .serve-left { position: static; }
  .offerings-grid { grid-template-columns: 1fr; }
  .afterdark-grid { grid-template-columns: 1fr; gap: 56px; }
  .afterdark-bg-text { font-size: 60px; }
  .principles-grid { grid-template-columns: 1fr; }
  footer { padding: 28px 28px; flex-direction: column; gap: 14px; text-align: center; }
  .book-counter { top: 18px; right: 24px; }
  .book-home { left: 24px; top: 16px; }
  .book-slide { padding: 80px 28px; }
}

@media (max-width: 480px) {
  .section-inner { padding: 0 20px; }
  nav { padding: 16px 20px; gap: 12px; }
  .nav-theme { display: none; }

  #hero { height: 100svh; }
  .hero-content { padding-top: 80px; }
  .hero-title { font-size: clamp(52px,17vw,80px); }
  .hero-bio { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  .section-title { font-size: clamp(36px,10vw,56px); }

  .serve-item { padding: 24px 20px 20px; }

  .afterdark-title { font-size: clamp(36px,10vw,56px); }
  .afterdark-bg-text { display: none; }
  .afterdark-stats { grid-template-columns: 1fr 1fr; }

  .connect-cta { flex-direction: column; width: 100%; }
  .connect-cta a { width: 100%; justify-content: center; text-align: center; }

  footer { padding: 24px 20px; }

  /* Modals full-screen on small phones */
  #hub-root [style*="maxWidth: 480px"],
  #hub-root [style*="max-width: 480px"] {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100dvh !important;
    padding: 56px 24px 40px !important;
    border-left: none !important;
    border-right: none !important;
  }
}
