/* =========================================================
   Auhoya — premium cigar lounge aesthetic
   Dark mahogany, aged leather, warm gold, serif elegance
   ========================================================= */

:root {
  /* Palette */
  --mahogany-950: #0e0806;
  --mahogany-900: #1a0f0a;
  --mahogany-800: #23150e;
  --mahogany-700: #2e1c14;
  --mahogany-600: #3b2418;
  --leather-500: #5a3a24;
  --leather-400: #7a5231;

  --gold-300: #e7c67a;
  --gold-400: #d4af6a;
  --gold-500: #c9a961;
  --gold-600: #a7853f;

  --cream-50: #f6ecd6;
  --cream-100: #efe2c4;
  --cream-200: #e3d3ae;
  --cream-300: #c9b58d;
  --cream-400: #a08a65;

  --ember: #c85a2a;

  /* Semantic */
  --bg: var(--mahogany-900);
  --bg-alt: var(--mahogany-800);
  --bg-card: #241610;
  --bg-card-2: #2b1b13;
  --text: var(--cream-100);
  --text-soft: var(--cream-300);
  --text-mute: var(--cream-400);
  --rule: rgba(201, 169, 97, 0.18);
  --rule-strong: rgba(201, 169, 97, 0.34);

  /* Type */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;

  /* Layout */
  --wrap: 1180px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;

  /* Shadow */
  --shadow-lg: 0 40px 80px -30px rgba(0, 0, 0, 0.7),
    0 10px 30px -15px rgba(0, 0, 0, 0.55);
  --shadow-sm: 0 6px 18px -6px rgba(0, 0, 0, 0.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(
      ellipse 1200px 600px at 80% -10%,
      rgba(201, 169, 97, 0.08),
      transparent 60%
    ),
    radial-gradient(
      ellipse 900px 500px at -10% 30%,
      rgba(200, 90, 42, 0.06),
      transparent 60%
    ),
    linear-gradient(180deg, var(--mahogany-900), var(--mahogany-950));
  background-attachment: fixed;
}

::selection {
  background: rgba(201, 169, 97, 0.35);
  color: var(--cream-50);
}

a {
  color: var(--gold-300);
  text-decoration: none;
}
a:hover {
  color: var(--cream-50);
}

img,
svg {
  max-width: 100%;
  display: block;
}

/* Utilities */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--gold-500);
  color: var(--mahogany-900);
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}

.italic {
  font-style: italic;
  color: var(--gold-300);
  font-weight: 500;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: var(--mahogany-950);
  box-shadow: 0 8px 20px -10px rgba(201, 169, 97, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-gold:hover {
  transform: translateY(-1px);
  color: var(--mahogany-950);
  box-shadow: 0 14px 28px -12px rgba(201, 169, 97, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-100);
  border-color: var(--rule-strong);
}
.btn-ghost:hover {
  color: var(--cream-50);
  border-color: var(--gold-400);
  background: rgba(201, 169, 97, 0.06);
}

.btn-link {
  padding: 14px 4px;
  color: var(--gold-300);
  border-bottom: 1px solid transparent;
  border-radius: 0;
}
.btn-link:hover {
  color: var(--cream-50);
}
.btn-link .arrow {
  transition: transform 0.2s ease;
}
.btn-link:hover .arrow {
  transform: translateX(4px);
}

/* -------------------- Header -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(
    180deg,
    rgba(14, 8, 6, 0.85),
    rgba(14, 8, 6, 0.55) 80%,
    rgba(14, 8, 6, 0)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream-50);
}
.brand:hover {
  color: var(--cream-50);
}
.brand-word {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 14px;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav a:hover {
  color: var(--cream-50);
  border-bottom-color: var(--gold-400);
}

.nav-cta {
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0 clamp(90px, 14vw, 180px);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      1400px 700px at 70% 20%,
      rgba(231, 198, 122, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 20% 80%,
      rgba(200, 90, 42, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, var(--mahogany-900), var(--mahogany-950));
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='260' height='260'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.3  0 0 0 0 0.2  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-smoke {
  position: absolute;
  inset: auto 0 -120px 0;
  height: 240px;
  z-index: -1;
  background: radial-gradient(
    ellipse 60% 100% at 50% 100%,
    rgba(231, 198, 122, 0.12),
    transparent 70%
  );
  filter: blur(20px);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 22px;
}
.eyebrow-sep {
  color: var(--gold-500);
  opacity: 0.6;
  margin: 0 4px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 7.2vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
  color: var(--cream-50);
  max-width: 14ch;
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-soft);
  max-width: 60ch;
  line-height: 1.6;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 48px;
}

.hero-meta {
  margin: 0;
  color: var(--text-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.15vw, 17px);
  letter-spacing: 0.01em;
  max-width: 46ch;
}

/* -------------------- Sections -------------------- */
.section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--rule);
}

.section.alt {
  background: linear-gradient(
    180deg,
    rgba(58, 32, 20, 0.32),
    rgba(26, 15, 10, 0) 80%
  );
}

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 20px;
}

.section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--cream-50);
  margin: 0 0 22px;
  max-width: 16ch;
}

.lede {
  font-size: clamp(16px, 1.2vw, 18.5px);
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 54ch;
  margin: 0 0 28px;
}

/* two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.two-col.reverse .col-visual {
  order: -1;
}

@media (max-width: 900px) {
  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
  }
  .two-col.reverse .col-visual {
    order: 0;
  }
}

/* Bullets */
/* Editorial prose (replaces bullets in premium sections) */
.prose p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: clamp(15.5px, 1.15vw, 17px);
  line-height: 1.7;
  max-width: 54ch;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream-50);
  font-size: 1.04em;
  letter-spacing: 0.01em;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bullets li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
  line-height: 1.6;
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    var(--gold-400),
    rgba(201, 169, 97, 0)
  );
}
.bullets strong {
  color: var(--cream-50);
  font-weight: 600;
}

/* Mode grid */
.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}
@media (max-width: 720px) {
  .mode-grid {
    grid-template-columns: 1fr;
  }
}
.mode {
  padding: 22px 20px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(201, 169, 97, 0.04),
    rgba(0, 0, 0, 0.12)
  );
}
.mode h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--cream-50);
}
.mode p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Level track */
.level-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 16px;
}
@media (max-width: 860px) {
  .level-track {
    grid-template-columns: 1fr;
  }
}
.level {
  padding: 26px 24px;
  background: linear-gradient(180deg, #2a1a12, #1f120c);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.level::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-400),
    transparent
  );
  opacity: 0.6;
}
.level-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 42px;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 6px;
}
.level-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream-50);
  margin-bottom: 10px;
}
.level p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14.5px;
}

/* -------------------- Cards (visual column) -------------------- */
.card {
  border-radius: var(--radius-lg);
  padding: 26px;
  background: linear-gradient(
    180deg,
    var(--bg-card-2) 0%,
    var(--bg-card) 100%
  );
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.3  0 0 0 0 0.2  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(231, 198, 122, 0.5),
    transparent
  );
}

/* Scan card (discover) — three-regime confidence */
.scan-card {
  padding: 22px;
}
.scan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.14);
}
.scan-label {
  color: var(--text-mute);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.scan-thumb {
  position: relative;
  width: 52px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(180deg, #4a2f1c, #321d11);
  border: 1px solid rgba(201, 169, 97, 0.2);
  overflow: hidden;
}
.scan-thumb-band {
  position: absolute;
  inset: 12px 0;
  background: linear-gradient(
    180deg,
    var(--gold-600),
    var(--gold-400) 50%,
    var(--gold-600)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.regime-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.regime {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 97, 0.12);
  background: linear-gradient(180deg, #1c110b, #150c07);
}
.regime-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  background: rgba(0, 0, 0, 0.3);
}
.regime-target .regime-ico {
  color: var(--gold-300);
  border-color: rgba(231, 198, 122, 0.4);
  background: radial-gradient(
    circle at 50% 50%,
    rgba(231, 198, 122, 0.18),
    rgba(0, 0, 0, 0.35) 70%
  );
  box-shadow: 0 0 18px rgba(231, 198, 122, 0.18);
}
.regime-compass .regime-ico {
  color: var(--gold-400);
  border-color: rgba(201, 169, 97, 0.3);
}
.regime-warn .regime-ico {
  color: var(--ember);
  border-color: rgba(200, 90, 42, 0.45);
  background: radial-gradient(
    circle at 50% 50%,
    rgba(200, 90, 42, 0.15),
    rgba(0, 0, 0, 0.35) 70%
  );
}

.regime-body {
  min-width: 0;
}
.regime-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.regime-name {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--cream-50);
  line-height: 1.25;
}
.regime-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid currentColor;
}
.tag-target {
  color: var(--gold-300);
  background: rgba(231, 198, 122, 0.08);
}
.tag-compass {
  color: var(--cream-200);
  border-color: rgba(201, 169, 97, 0.35);
  background: rgba(201, 169, 97, 0.05);
}
.tag-warn {
  color: #ffb48e;
  border-color: rgba(200, 90, 42, 0.45);
  background: rgba(200, 90, 42, 0.08);
}
.regime-note {
  margin: 0;
  color: var(--text-mute);
  font-size: 13px;
  line-height: 1.45;
}

.scan-foot {
  margin: 18px 0 0;
  color: var(--text-mute);
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.5;
}

/* Chat card (companion) */
.chat-card .chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--text-mute);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ember {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb878, var(--ember) 70%);
  box-shadow: 0 0 14px rgba(200, 90, 42, 0.7);
  animation: ember 2.4s ease-in-out infinite;
}
@keyframes ember {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.chat-msg {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 12px;
  max-width: 92%;
  font-size: 15px;
  line-height: 1.55;
}
.chat-msg p {
  margin: 0;
}
.chat-msg.ai {
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.22);
  color: var(--cream-100);
  border-top-left-radius: 4px;
}
.chat-msg.you {
  background: linear-gradient(180deg, #3a251a, #2e1c14);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--cream-100);
  margin-left: auto;
  border-top-right-radius: 4px;
}
.chat-tick {
  display: flex;
  gap: 5px;
  padding-left: 6px;
  height: 12px;
}
.chat-tick span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(231, 198, 122, 0.7);
  animation: tick 1.3s ease-in-out infinite;
}
.chat-tick span:nth-child(2) {
  animation-delay: 0.15s;
}
.chat-tick span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes tick {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* Twins card (community) */
.twins-title {
  font-family: var(--serif);
  font-size: 20px;
  margin: 0 0 18px;
  color: var(--cream-50);
}
.twin {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.twin:last-of-type {
  border-bottom: 0;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--leather-500);
  border: 1px solid rgba(231, 198, 122, 0.25);
}
.twin-name {
  font-weight: 600;
  color: var(--cream-50);
}
.twin-tags {
  color: var(--text-mute);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.twin-score {
  font-family: var(--serif);
  color: var(--gold-300);
  font-size: 15px;
}
.twins-note {
  margin-top: 18px;
  color: var(--text-mute);
  font-size: 13.5px;
  font-style: italic;
}

/* Lounge card — mirrors in-app Lounges & Shops screen */
.lounge-card {
  padding: 20px;
  background: linear-gradient(180deg, #120a07, #0c0604);
}
.lounge-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px 22px;
  color: var(--gold-300);
}
.lounge-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream-50);
  letter-spacing: 0.005em;
}
.lounge-back,
.lounge-add {
  color: var(--gold-300);
}

.lounge-row {
  padding: 18px 18px 14px;
  background: linear-gradient(180deg, #1c110b, #15 0b07);
  background: linear-gradient(180deg, #1c110b, #160c08);
  border: 1px solid rgba(201, 169, 97, 0.14);
  border-radius: 14px;
}
.lounge-row-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.lounge-ico {
  color: var(--gold-400);
  flex: 0 0 auto;
}
.lounge-name {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--cream-50);
  line-height: 1.3;
}
.lounge-addr {
  margin: 0 0 10px;
  color: var(--cream-200);
  font-size: 14px;
  line-height: 1.4;
}
.lounge-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.stars {
  display: inline-flex;
  gap: 2px;
}
.star {
  width: 14px;
  height: 14px;
  background:
    linear-gradient(
      90deg,
      var(--gold-400) var(--fill, 100%),
      rgba(201, 169, 97, 0.25) var(--fill, 100%)
    );
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.9L22 10l-5.5 4.8L18.2 22 12 18.3 5.8 22l1.7-7.2L2 10l7.1-1.1z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.9L22 10l-5.5 4.8L18.2 22 12 18.3 5.8 22l1.7-7.2L2 10l7.1-1.1z'/></svg>") center/contain no-repeat;
}
.star.full { --fill: 100%; }
.star.half { --fill: 50%; }
.star.empty { --fill: 0%; }
.rating-num {
  font-weight: 600;
  color: var(--cream-100);
  font-size: 14px;
}
.rating-count {
  color: var(--cream-400);
  font-size: 14px;
}
.lounge-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  color: var(--gold-300);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.lounge-phone svg {
  color: var(--gold-400);
}
.lounge-note {
  margin: 0 0 16px;
  color: var(--cream-300);
  font-style: italic;
  font-size: 14px;
}
.lounge-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 169, 97, 0.12);
}
.lounge-tag {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 97, 0.25);
  color: var(--cream-200);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lounge-acts {
  display: flex;
  gap: 14px;
  color: var(--gold-400);
}
.act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

/* -------------------- Ritual blockquote -------------------- */
.ritual {
  padding: clamp(70px, 9vw, 120px) 0;
  text-align: center;
  background:
    radial-gradient(
      ellipse 800px 300px at 50% 50%,
      rgba(201, 169, 97, 0.08),
      transparent 70%
    );
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.ritual blockquote {
  max-width: 28ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.2;
  color: var(--cream-50);
  position: relative;
}
.ritual blockquote::before,
.ritual blockquote::after {
  content: '';
  display: block;
  margin: 28px auto;
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-400),
    transparent
  );
}
.ritual blockquote p {
  margin: 0;
}

/* -------------------- CTA -------------------- */
.cta {
  text-align: center;
}
.cta-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.cta h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}
.cta .lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.join-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 12px auto 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.join-form input {
  flex: 1 1 260px;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--rule-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--cream-50);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.join-form input::placeholder {
  color: var(--text-mute);
}
.join-form input:focus {
  border-color: var(--gold-400);
  background: rgba(201, 169, 97, 0.05);
}
.form-ok {
  flex-basis: 100%;
  margin: 10px 0 0;
  color: var(--gold-300);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
}
.form-err {
  flex-basis: 100%;
  margin: 10px 0 0;
  color: #ffb48e;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
}
.btn.is-loading {
  opacity: 0.82;
  cursor: default;
  pointer-events: none;
}
.btn-label {
  display: inline-block;
}
.fineprint {
  color: var(--text-mute);
  font-size: 13px;
  margin: 0;
}

/* -------------------- Footer -------------------- */
.site-footer {
  padding: 60px 0 50px;
  border-top: 1px solid var(--rule);
  background: var(--mahogany-950);
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
}
@media (max-width: 720px) {
  .footer-wrap {
    grid-template-columns: 1fr;
  }
}
.foot-brand .brand-word {
  font-size: 26px;
  color: var(--cream-50);
  display: inline-block;
  margin-bottom: 6px;
}
.foot-brand p {
  margin: 0;
  color: var(--text-mute);
  font-family: var(--serif);
}
.foot-meaning {
  color: var(--gold-300);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 4px !important;
}
.foot-au,
.foot-hoya {
  color: var(--cream-50);
  font-style: normal;
  font-weight: 500;
}
.foot-tagline {
  font-style: italic;
  color: var(--text-mute);
  font-size: 14px;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.foot-links a {
  color: var(--text-soft);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.foot-links a:hover {
  color: var(--cream-50);
}
.foot-legal {
  grid-column: 1 / -1;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
  color: var(--text-mute);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

/* -------------------- Reveal on scroll -------------------- */
.section,
.hero-wrap,
.ritual blockquote {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section.in,
.hero-wrap.in,
.ritual blockquote.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .section,
  .hero-wrap,
  .ritual blockquote {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* -------------------- Small screens -------------------- */
@media (max-width: 720px) {
  .nav {
    display: none;
  }
  .nav-cta {
    padding: 8px 14px;
  }
  .hero {
    padding: 80px 0 90px;
  }
}
