/**
 * Dark Luxury · Design System for nashvilletenn.vip
 * Extracted from index.html · 2026-05-22
 *
 * Deep espresso night + champagne gold + cream cream-soft + brass.
 * Cormorant Garamond serif for hero/titles + Inter for UI.
 * Whisper-quiet motion, italic emphasis on key words, hairline rules.
 *
 * Components: .nav, .hero, .section, .split, .exp-card, .concierge-form,
 *             .btn, .footer, .partner-network, .loader, .reveal, .page-head.
 * Inline <style> in each page for page-specific overrides only.
 */

/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  --bg: #0B0907;
  --bg-2: #13100C;
  --surface: #1A1612;
  --surface-2: #221C16;
  --gold: #C7A664;
  --gold-bright: #E1C381;
  --brass: #7A6038;
  --cream: #E8DDC6;
  --cream-soft: #A89E89;
  --mute: #5C5346;
  --rule: rgba(199,166,100,.18);
  --rule-soft: rgba(199,166,100,.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* Ambient gradient + vignette */
body::before {
  content: ""; position: fixed; inset: -20% -20%;
  background:
    radial-gradient(ellipse at 70% 18%, rgba(199,166,100,.06) 0%, transparent 55%),
    radial-gradient(ellipse at 18% 82%, rgba(199,166,100,.04) 0%, transparent 50%);
  z-index: 0; pointer-events: none;
}
body::after {
  content: ""; position: fixed; inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,.45) 100%);
  z-index: 1; pointer-events: none;
}
.layer { position: relative; z-index: 2; }

.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; }

/* ── LOADER ──────────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 1.1s ease;
}
.loader.hidden { opacity: 0; pointer-events: none; }
.loader-ring {
  width: 38px; height: 38px;
  border: 1px solid var(--rule);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: lr 1.4s linear infinite;
}
.loader-text {
  margin-top: 22px; font-size: .66rem;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--cream-soft); font-weight: 300;
}
@keyframes lr { to { transform: rotate(360deg); } }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 32px 56px;
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 10;
  transition: padding .5s ease, background .5s ease, border-color .5s ease;
}
.nav.scrolled {
  position: fixed; padding: 18px 56px;
  background: rgba(11,9,7,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 1.4rem;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
}
.nav-logo span { color: var(--cream); opacity: .7; margin-left: 6px; }
.nav-links { display: flex; gap: 42px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--cream-soft); text-decoration: none;
  font-size: .7rem; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 300; transition: color .4s ease;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 26px;
  border: 1px solid var(--gold);
  color: var(--gold) !important; text-decoration: none;
  font-size: .7rem; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 400;
  transition: background .5s ease, color .5s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--bg) !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 1px; background: var(--cream); transition: .3s; }

/* ── HERO (homepage scale) ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 140px 32px 80px;
  position: relative;
}
.hero-content { max-width: 1100px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.crest {
  width: 52px; height: 52px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 40px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.35rem; font-weight: 400;
}
.hero-mono, .eyebrow {
  font-size: .7rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); font-weight: 300;
  margin-bottom: 40px;
  display: flex; align-items: center; gap: 14px; justify-content: center;
}
.hero-mono::before, .hero-mono::after,
.eyebrow::before, .eyebrow::after {
  content: ""; display: block; width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 7.6vw, 7.2rem);
  line-height: 1.04; letter-spacing: -.02em;
  max-width: 18ch; color: var(--cream);
}
.hero h1 .gold, .hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub {
  margin-top: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 1.35rem; line-height: 1.6;
  color: var(--cream-soft); max-width: 58ch; letter-spacing: .005em;
}
.hero-rule {
  margin: 56px auto 0;
  width: 1px; height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

/* ── PAGE HEAD (inner-page hero — shorter, left-aligned eyebrow) ─ */
.page-head {
  padding: 180px 56px 80px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.page-head .eyebrow { margin-bottom: 28px; }
.page-head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 1.06; letter-spacing: -.02em;
  max-width: 22ch; margin: 0 auto;
  color: var(--cream);
}
.page-head h1 em, .page-head h1 .gold { font-style: italic; color: var(--gold); font-weight: 400; }
.page-head .lead {
  margin: 32px auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 1.25rem; line-height: 1.65;
  color: var(--cream-soft); max-width: 60ch;
}
.page-head .actions {
  margin-top: 48px;
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}

/* ── COUNTDOWN ───────────────────────────────────────────────── */
.countdown {
  margin-top: 56px;
  display: flex; gap: 0; align-items: baseline; justify-content: center;
}
.cd { padding: 0 32px; border-right: 1px solid var(--rule); text-align: center; }
.cd:last-child { border-right: none; }
.cd .n {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 1; color: var(--gold-bright);
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
  display: block;
}
.cd .l {
  display: block; font-size: .6rem; letter-spacing: .34em;
  text-transform: uppercase; color: var(--cream-soft);
  margin-top: 14px; font-weight: 300;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.hero-actions { margin-top: 64px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 38px;
  border: 1px solid var(--gold); color: var(--gold);
  text-decoration: none; font-size: .72rem;
  letter-spacing: .32em; text-transform: uppercase;
  font-weight: 400; background: transparent;
  transition: background .5s ease, color .5s ease, border-color .5s ease;
  cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-gold { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.btn-gold:hover { background: var(--cream); color: var(--bg); border-color: var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--bg); border-color: var(--cream); }

/* ── SECTIONS ────────────────────────────────────────────────── */
section { position: relative; }
.section {
  padding: 160px 56px;
  border-top: 1px solid var(--rule);
}
.section-header { max-width: 680px; margin: 0 auto 96px; text-align: center; }
.section-tag, .split-tag, .exp-card-label {
  font-size: .66rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); font-weight: 300;
  display: inline-block; margin-bottom: 28px;
}
.section-title, .split-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.1; letter-spacing: -.02em;
  color: var(--cream); margin-bottom: 28px;
}
.section-title em, .split-title em { font-style: italic; color: var(--gold); }
.section-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; line-height: 1.65;
  color: var(--cream-soft); font-weight: 400;
  max-width: 54ch; margin: 0 auto;
}

/* Prose for long-form pages */
.prose { max-width: 64ch; margin: 0 auto; font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; line-height: 1.75; color: var(--cream-soft); font-weight: 400; }
.prose h2, .prose h3, .prose h4 { font-family: 'Cormorant Garamond', serif; color: var(--cream); margin: 48px 0 16px; line-height: 1.2; font-weight: 400; }
.prose h2 { font-size: 2.1rem; letter-spacing: -.015em; }
.prose h3 { font-size: 1.5rem; }
.prose h4 { font-size: 1.2rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.prose p { margin: 0 0 24px; }
.prose a { color: var(--gold); border-bottom: 1px solid var(--rule); padding-bottom: 1px; text-decoration: none; transition: color .3s ease, border-color .3s ease; }
.prose a:hover { color: var(--gold-bright); border-bottom-color: var(--gold); }
.prose ul, .prose ol { margin: 0 0 24px 1.2em; padding: 0; }
.prose li { margin: 0 0 10px; line-height: 1.7; }
.prose strong { color: var(--cream); font-weight: 500; }

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── EXPERIENCE CARDS ────────────────────────────────────────── */
.exp-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
.exp-card { display: flex; flex-direction: column; background: transparent; }
.exp-card-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--rule-soft);
}
.exp-card-img-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,9,7,.55) 100%);
  pointer-events: none;
}
.exp-card-img-wrap::before {
  content: ""; position: absolute; inset: 0;
  border: 1px solid transparent;
  z-index: 2;
  transition: border-color .5s ease;
  pointer-events: none;
}
.exp-card:hover .exp-card-img-wrap::before { border-color: rgba(201,169,97,.35); }
.exp-card-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85) brightness(.78) contrast(1.05);
  transition: transform 1.6s cubic-bezier(.16,1,.3,1), filter .8s ease;
}
.exp-card:hover .exp-card-img { transform: scale(1.06); filter: saturate(1) brightness(.92) contrast(1.05); }
.exp-card-body { padding: 36px 4px 0; }
.exp-card-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 1.7rem; line-height: 1.2; letter-spacing: -.01em;
  color: var(--cream); margin-bottom: 14px;
  transition: color .4s ease;
}
.exp-card:hover .exp-card-title { color: var(--gold-bright); }
.exp-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem; line-height: 1.6;
  color: var(--cream-soft); font-weight: 400;
  margin-bottom: 24px;
}
.exp-card-price {
  display: block;
  font-size: .64rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--mute); font-weight: 300;
  padding-top: 20px; border-top: 1px solid var(--rule);
}

/* ── SPLIT SECTIONS ──────────────────────────────────────────── */
.split-section { padding: 160px 56px; border-top: 1px solid var(--rule); }
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.split-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; line-height: 1.65;
  color: var(--cream-soft); margin-bottom: 32px;
  font-weight: 400; max-width: 48ch;
}
.split-features {
  list-style: none; margin: 0 0 40px; padding: 0;
  border-top: 1px solid var(--rule);
}
.split-features li {
  padding: 18px 0; border-bottom: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--cream); font-weight: 400;
  display: flex; align-items: baseline; gap: 18px;
}
.split-features li::before {
  content: "·";
  color: var(--gold); font-size: 1.6rem; line-height: 0;
  position: relative; top: -2px;
}
.split-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--rule-soft);
}
.split-img-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,9,7,.5) 100%);
  pointer-events: none;
}
.split-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85) brightness(.78) contrast(1.05);
}

/* ── CONCIERGE FORM ──────────────────────────────────────────── */
.concierge-section {
  padding: 160px 32px; border-top: 1px solid var(--rule);
  background: linear-gradient(180deg, transparent 0%, rgba(199,166,100,.025) 100%);
}
.concierge { max-width: 720px; margin: 0 auto; text-align: center; }
.concierge-form {
  margin-top: 64px; text-align: left;
  display: flex; flex-direction: column; gap: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.concierge-form label {
  display: block;
  font-size: .6rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--cream-soft); font-weight: 300; margin-bottom: 14px;
}
.concierge-form input,
.concierge-form select,
.concierge-form textarea {
  width: 100%;
  background: transparent; border: 0;
  border-bottom: 1px solid var(--rule);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400;
  padding: 12px 0;
  transition: border-color .4s ease;
  letter-spacing: .005em;
}
.concierge-form input::placeholder,
.concierge-form textarea::placeholder { color: var(--mute); font-style: italic; }
.concierge-form input:focus,
.concierge-form select:focus,
.concierge-form textarea:focus { outline: none; border-bottom-color: var(--gold); }
.concierge-form select {
  appearance: none; -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 14px) calc(50% - 2px), calc(100% - 8px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px; cursor: pointer;
}
.concierge-form select option { background: var(--bg); color: var(--cream); }
.concierge-form textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.form-submit { margin-top: 24px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ── PRICE TAG (contact-only) ────────────────────────────────── */
.price-tag {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--gold);
  font-size: 1rem; letter-spacing: .04em;
  padding: 6px 0;
  border-bottom: 1px solid var(--rule);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  padding: 120px 56px 60px;
  border-top: 1px solid var(--rule);
  position: relative;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px; max-width: 1280px; margin: 0 auto 80px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 1.4rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-about {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; line-height: 1.6;
  color: var(--cream-soft); max-width: 36ch; font-weight: 400;
}
.footer-heading {
  font-size: .62rem; letter-spacing: .36em; text-transform: uppercase;
  color: var(--cream); font-weight: 400; margin-bottom: 24px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  color: var(--cream-soft); text-decoration: none;
  font-size: .82rem; letter-spacing: .04em; font-weight: 300;
  transition: color .4s ease;
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-bar {
  max-width: 1280px; margin: 0 auto;
  padding-top: 48px; border-top: 1px solid var(--rule);
  text-align: center;
  color: var(--mute); font-size: .72rem;
  letter-spacing: .12em; line-height: 1.8; font-weight: 300;
}
.footer-disclaimer {
  margin-top: 14px; font-size: .7rem; opacity: .65;
  max-width: 920px; margin-left: auto; margin-right: auto;
  line-height: 1.7; letter-spacing: .04em;
}
.footer-ecosystem {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
}
.footer-ecosystem a {
  color: var(--cream-soft); text-decoration: none;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  font-weight: 300;
  transition: color .4s ease;
  border-bottom: 1px solid var(--rule-soft); padding-bottom: 4px;
}
.footer-ecosystem a:hover { color: var(--gold-bright); border-bottom-color: var(--gold); }

.partner-network {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--rule-soft); text-align: center;
}
.partner-network .partner-label {
  font-size: .6rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 18px; font-weight: 300;
}
.partner-network .partner-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 18px; align-items: center;
}
.partner-network .partner-row a {
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream-soft); text-decoration: none; font-weight: 300;
  transition: color .4s ease;
}
.partner-network .partner-row a:hover { color: var(--gold-bright); }
.partner-network .partner-row .sep { color: var(--mute); opacity: .5; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .exp-grid { grid-template-columns: 1fr; gap: 64px; max-width: 560px; }
  .split { grid-template-columns: 1fr; gap: 56px; }
  .split-img-wrap { aspect-ratio: 5/4; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 760px) {
  .nav { padding: 22px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #0B0907;
    backdrop-filter: blur(16px);
    padding: 32px 24px; gap: 24px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 16px 48px rgba(0,0,0,.7);
    z-index: 60;
  }
  .nav.scrolled { background: #0B0907; }
  .nav-links.open { display: flex; }
  .hero { padding: 120px 24px 64px; min-height: 90vh; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .page-head { padding: 130px 24px 60px; }
  .countdown { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .cd { border-right: none; padding: 0 14px; }
  .section, .split-section, .concierge-section { padding: 96px 24px; }
  .section-header { margin-bottom: 64px; }
  .form-row { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 80px 24px 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-ecosystem { gap: 18px; }
}
