*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B89B6A;
  --gold-light: #D4B88A;
  --gold-pale: #F5EDD8;
  --dark: #0A0906;
  --dark-2: #13100C;
  --dark-3: #1E1A14;
  --text-primary: #F0EBE0;
  --text-muted: #8A8072;
  --text-subtle: #5A5248;
  --border: rgba(184,155,106,0.15);
  --border-strong: rgba(184,155,106,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,9,6,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.nav-badge {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(184,155,106,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 70%, rgba(184,155,106,0.03) 0%, transparent 60%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,155,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,155,106,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 0.5px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  position: relative;
  margin-bottom: 8px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 48px;
  position: relative;
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 64px;
  position: relative;
}

/* COUNTDOWN */
.countdown-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-subtle);
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}

.countdown {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 72px;
}

.count-unit {
  text-align: center;
  padding: 0 28px;
  position: relative;
}

.count-unit + .count-unit::before {
  content: ':';
  position: absolute;
  left: -4px;
  top: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--text-subtle);
}

.count-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  min-width: 72px;
}

.count-name {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-subtle);
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* WAITLIST FORM */
.waitlist-wrap {
  position: relative;
  display: flex;
  gap: 0;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
}

.waitlist-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--border-strong);
  border-right: none;
  border-radius: 2px 0 0 2px;
  padding: 14px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-input::placeholder { color: var(--text-subtle); }
.waitlist-input:focus { border-color: rgba(184,155,106,0.5); }

.waitlist-btn {
  background: var(--gold);
  border: none;
  border-radius: 0 2px 2px 0;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--dark);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.waitlist-btn:hover { background: var(--gold-light); }

/* DIVIDER */
.section-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--border);
}

.section-divider span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-subtle);
  text-transform: uppercase;
  white-space: nowrap;
}

/* PILLARS */
.pillars {
  padding: 80px 24px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.pillars-header {
  text-align: center;
  margin-bottom: 72px;
}

.pillars-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pillars-header p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}

.pillar {
  background: var(--dark);
  padding: 48px 36px;
  transition: background 0.3s;
}

.pillar:hover { background: var(--dark-2); }

.pillar-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 24px;
  line-height: 1;
}

.pillar-num {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-subtle);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.pillar p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}

.pillar-weight {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.8;
}

/* EQS SECTION */
.eqs-section {
  padding: 100px 24px;
  text-align: center;
  background: var(--dark-2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.eqs-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eqs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
}

.eqs-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 64px;
  line-height: 1.8;
}

.eqs-scale {
  display: flex;
  max-width: 700px;
  margin: 0 auto;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}

.eqs-band {
  flex: 1;
  padding: 24px 16px 20px;
  text-align: left;
  background: var(--dark-2);
  transition: background 0.2s;
}

.eqs-band:hover { background: var(--dark-3); }

.eqs-band-range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 8px;
  display: block;
}

.eqs-band-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.eqs-band-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-subtle);
  line-height: 1.5;
}

.band-elite .eqs-band-name { color: var(--gold-light); }
.band-alto .eqs-band-name  { color: #A8C4A0; }
.band-medio .eqs-band-name { color: var(--text-muted); }
.band-baixo .eqs-band-name { color: var(--text-subtle); }

/* COMING SOON */
.coming-soon {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coming-soon-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(184,155,106,0.05) 0%, transparent 70%);
}

.coming-soon-inner { position: relative; max-width: 600px; margin: 0 auto; }

.coming-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 10vw, 110px);
  font-weight: 300;
  font-style: italic;
  color: rgba(184,155,106,0.2);
  line-height: 1;
  margin-bottom: -20px;
  letter-spacing: -0.02em;
}

.coming-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.coming-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}

/* FOOTER */
footer {
  padding: 40px 48px;
  border-top: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-subtle);
}

/* SUCCESS MESSAGE */
.success-msg {
  display: none;
  font-size: 13px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 16px;
  text-align: center;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow   { animation: fadeUp 0.8s ease 0.10s both; }
.hero-title     { animation: fadeUp 0.8s ease 0.25s both; }
.hero-subtitle  { animation: fadeUp 0.8s ease 0.35s both; }
.hero-desc      { animation: fadeUp 0.8s ease 0.45s both; }
.countdown-label{ animation: fadeUp 0.8s ease 0.55s both; }
.countdown      { animation: fadeUp 0.8s ease 0.60s both; }
.waitlist-wrap  { animation: fadeUp 0.8s ease 0.70s both; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .eqs-scale { flex-direction: column; }
  .count-unit { padding: 0 16px; }
  footer { flex-direction: column; align-items: flex-start; }
}
