/* ============================================================
   WEEKLY — design system
   Palette: black / charcoal / ivory / cream / champagne / gold accent
   Type: editorial serif headlines, refined sans body
   ============================================================ */

:root {
  --black: #0a0908;
  --charcoal: #14120f;
  --espresso: #231b15;
  --stone: #8c8579;
  --taupe: #a79a86;
  --ivory: #f4efe4;
  --cream: #ece2d0;
  --champagne: #e8d7b7;
  --gold: #c9a768;
  --gold-soft: rgba(201, 167, 104, 0.35);
  --line: rgba(244, 239, 228, 0.14);

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --pad: clamp(24px, 5vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 0.4em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: 1.05; font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

p { margin: 0 0 1em; color: var(--taupe); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
}

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

section { position: relative; }

.section-pad { padding: clamp(70px, 12vw, 160px) 0; }

.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 28px 0;
}

.center { text-align: center; }
.max-w { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover { background: transparent; color: var(--gold); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-block { width: 100%; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
  background: linear-gradient(to bottom, rgba(10,9,8,0.85), transparent);
}
.nav.scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(10,9,8,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--ivory);
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 22px; }
.nav-login { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--taupe); }
.nav-login:hover { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: var(--ivory); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-actions .btn-primary { padding: 12px 20px; font-size: 0.68rem; }
}

/* ---------- hero ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 20%, #201a12 0%, #0a0908 65%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(201,167,104,0.10), transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(201,167,104,0.08), transparent 45%);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-20px) scale(1.04); }
}
.hero-glow {
  position: absolute;
  top: 12%; left: 50%;
  width: 2px; height: 220px;
  background: linear-gradient(to bottom, transparent, var(--gold-soft), transparent);
  transform: translateX(-50%);
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) 90px;
  width: 100%;
}
.hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero h1 { max-width: 900px; }
.hero-sub {
  max-width: 560px;
  font-size: 1.15rem;
  color: var(--champagne);
  margin: 26px 0 40px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-footnote {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--stone);
}
.hero-scroll {
  position: absolute;
  bottom: 34px; right: var(--pad);
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ---------- reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---------- problem / split ---------- */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.no-list {
  list-style: none;
  margin: 26px 0; padding: 0;
  display: grid;
  gap: 12px;
}
.no-list li {
  color: var(--stone);
  font-size: 0.98rem;
  padding-left: 22px;
  position: relative;
}
.no-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 10px; height: 1px;
  background: var(--gold);
}
.closing-line {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--champagne);
  margin-top: 30px;
}

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

/* ---------- method steps ---------- */

.method-steps { counter-reset: step; margin-top: 60px; }
.method-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 46px 0;
  border-top: 1px solid var(--line);
}
.method-step:last-child { border-bottom: 1px solid var(--line); }
.method-step-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold);
  opacity: 0.85;
}
.method-step h3 { margin-bottom: 10px; }
.method-step-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  columns: 2;
  gap: 24px;
  font-size: 0.92rem;
  color: var(--stone);
}
.method-step-list li { break-inside: avoid; padding: 4px 0; }

@media (max-width: 760px) {
  .method-step { grid-template-columns: 1fr; gap: 14px; }
  .method-step-list { columns: 1; }
}

/* ---------- dark panel section ---------- */

.panel-dark {
  background: linear-gradient(180deg, var(--charcoal), var(--black));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- concierge chat preview ---------- */

.concierge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.chat-card {
  background: var(--espresso);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.chat-bubble {
  max-width: 86%;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 0.94rem;
  line-height: 1.55;
}
.chat-concierge {
  background: rgba(201,167,104,0.12);
  border: 1px solid var(--gold-soft);
  color: var(--champagne);
  border-bottom-left-radius: 2px;
}
.chat-member {
  background: rgba(244,239,228,0.06);
  color: var(--ivory);
  margin-left: auto;
  border-bottom-right-radius: 2px;
}
.chat-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .concierge-layout { grid-template-columns: 1fr; }
}

/* ---------- feature card grid ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 50px;
}
.feature-card {
  background: var(--black);
  padding: 34px 30px;
  transition: background 0.4s ease;
}
.feature-card:hover { background: #100e0b; }
.feature-card .num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 14px;
  display: block;
}
.feature-card h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--ivory);
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.88rem; margin: 0; }

/* ---------- phone mockup ---------- */

.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 320px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #17130f, #0a0908);
  padding: 18px;
  box-shadow: 0 60px 120px rgba(0,0,0,0.6);
}
.phone-notch {
  width: 90px; height: 6px;
  background: rgba(244,239,228,0.15);
  border-radius: 10px;
  margin: 0 auto 16px;
}
.phone-notification {
  background: rgba(244,239,228,0.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.phone-notification .title { font-size: 0.8rem; color: var(--ivory); margin-bottom: 3px; }
.phone-notification .body { font-size: 0.76rem; color: var(--stone); margin: 0; }
.phone-card {
  background: rgba(244,239,228,0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.phone-photo {
  height: 200px;
  background: linear-gradient(160deg, #2a2118, #0e0b08 70%);
  position: relative;
}
.phone-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(201,167,104,0.25), transparent 55%);
}
.phone-body { padding: 18px; }
.phone-name { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 2px; }
.phone-meta { font-size: 0.75rem; color: var(--stone); margin-bottom: 12px; }
.phone-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.phone-note {
  font-size: 0.8rem;
  color: var(--champagne);
  background: rgba(201,167,104,0.08);
  border-left: 2px solid var(--gold);
  padding: 10px 12px;
  margin: 12px 0;
}
.phone-actions { display: flex; gap: 8px; margin-top: 14px; }
.phone-actions .btn { flex: 1; padding: 10px; font-size: 0.62rem; }

/* ---------- comparison split ---------- */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  margin-top: 50px;
}
.compare-col { padding: 44px 40px; }
.compare-col.dim { background: #0d0b09; }
.compare-col.lit { background: linear-gradient(160deg, #1a140c, #0d0b09); border-left: 1px solid var(--gold-soft); }
.compare-col h4 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--stone);
  margin-bottom: 24px;
}
.compare-col.lit h4 { color: var(--gold); }
.compare-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.compare-col li { font-size: 0.92rem; color: var(--taupe); padding-left: 18px; position: relative; }
.compare-col li::before { content: '—'; position: absolute; left: 0; color: var(--stone); }
.compare-col.lit li { color: var(--ivory); }
.compare-col.lit li::before { content: '—'; color: var(--gold); }

@media (max-width: 860px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-col.lit { border-left: none; border-top: 1px solid var(--gold-soft); }
}

/* ---------- standard cards ---------- */

.standard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 50px;
}
.standard-card { border-top: 1px solid var(--gold-soft); padding-top: 20px; }
.standard-card h4 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 8px; }
.standard-card p { font-size: 0.92rem; }

/* ---------- membership ---------- */

.membership-box {
  border: 1px solid var(--line);
  padding: clamp(30px, 6vw, 70px);
  margin-top: 50px;
  background: radial-gradient(circle at 20% 0%, rgba(201,167,104,0.06), transparent 60%);
}
.membership-list {
  list-style: none;
  margin: 30px 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 30px;
}
.membership-list li {
  font-size: 0.92rem;
  color: var(--ivory);
  padding-left: 20px;
  position: relative;
}
.membership-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.65em;
  width: 8px; height: 1px;
  background: var(--gold);
}
.membership-actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- cities ---------- */

.city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}
.city-card {
  position: relative;
  height: 420px;
  border: 1px solid var(--line);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.city-card.la { background: radial-gradient(circle at 70% 20%, rgba(201,167,104,0.14), transparent 55%), linear-gradient(180deg, #1b150e, #0a0908 75%); }
.city-card.ny { background: radial-gradient(circle at 30% 15%, rgba(168,154,134,0.14), transparent 55%), linear-gradient(180deg, #17140f, #0a0908 75%); }
.city-card h3 { font-size: 2rem; margin-bottom: 10px; }
.city-card p { color: var(--champagne); font-size: 0.92rem; }
.city-soon {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.city-pill {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 20px;
}

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

/* ---------- timeline ---------- */

.timeline {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-left: 1px solid var(--line);
  padding-left: 30px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute; left: -5px; top: calc(50% - 4px);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-item span { font-size: 1rem; color: var(--ivory); }
.timeline-item small { color: var(--stone); font-size: 0.8rem; margin-left: auto; }

/* ---------- safety ---------- */

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px 40px;
  margin-top: 46px;
  list-style: none;
  padding: 0;
}
.safety-grid li {
  font-size: 0.92rem;
  color: var(--ivory);
  padding-left: 20px;
  position: relative;
}
.safety-grid li::before {
  content: '';
  position: absolute; left: 0; top: 0.65em;
  width: 8px; height: 1px;
  background: var(--gold);
}

/* ---------- testimonials ---------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
  margin-top: 50px;
}
.testimonial-card {
  border: 1px solid var(--line);
  padding: 34px;
}
.testimonial-card p.quote {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--champagne);
  font-style: italic;
}
.testimonial-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- FAQ ---------- */

.faq-list { margin-top: 40px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.15rem;
  text-align: left;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-q .plus { color: var(--gold); font-family: var(--sans); font-size: 1.4rem; transition: transform 0.3s ease; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1);
}
.faq-a p { padding-bottom: 24px; max-width: 760px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- about ---------- */

.about-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--champagne);
  line-height: 1.4;
  max-width: 800px;
  margin-top: 30px;
}

/* ---------- CTA band ---------- */

.cta-band {
  text-align: center;
  padding: clamp(70px, 12vw, 130px) var(--pad);
  background: radial-gradient(circle at 50% 0%, rgba(201,167,104,0.1), transparent 60%);
  border-top: 1px solid var(--line);
}

/* ---------- footer ---------- */

footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 70px var(--pad) 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-logo { font-family: var(--serif); font-size: 1.6rem; }
.footer-tag { color: var(--stone); font-size: 0.85rem; margin-top: 10px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px 60px;
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links a { font-size: 0.85rem; color: var(--taupe); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 0.75rem;
  color: var(--stone);
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 760px) {
  .footer-top, .footer-bottom { flex-direction: column; }
  .footer-links { grid-template-columns: repeat(2, auto); }
}

/* ---------- utility ---------- */
.mono-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
