/* ═══════════════════════════════════════════
   VŌS — A Private Luxury Beauty Collective
   v3 — Darker, more readable, still sophisticated
   ═══════════════════════════════════════════ */

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

:root {
  /* Darker, richer palette with strong contrast */
  --bg-dark: #191613;
  --bg-warm: #2A2420;
  --bg-medium: #3D342B;
  --bg-light: #EDE8E0;
  --bg-cream: #F5F1EB;

  --text-light: #F0ECE4;
  --text-warm: #D4CCC0;
  --text-muted: #A89E92;
  --text-dark: #2A2420;
  --text-body: #4A3F35;

  --gold: #C4A76C;
  --gold-dim: rgba(196, 167, 108, 0.25);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--bg-dark);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--gold); color: #fff; }
img { max-width: 100%; height: auto; display: block; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(25, 22, 19, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 rgba(196, 167, 108, 0.1);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--text-light);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-light); }
.nav-cta {
  font-family: var(--sans) !important;
  font-size: 0.68rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: all 0.4s ease !important;
  cursor: pointer;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-dark) !important;
}

.mobile-menu-btn {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.5rem; z-index: 101;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 1px;
  background: var(--text-light);
  margin: 6px 0; transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  background: linear-gradient(170deg, #2A2420 0%, #1E1A16 50%, #191613 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 70%, rgba(196,167,108,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(196,167,108,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-overline {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1;
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-warm);
  margin-bottom: 2rem;
  max-width: 620px;
  line-height: 1.6;
  opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
.hero-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}
.hero-cta-group {
  display: flex; gap: 1.5rem; align-items: center;
  flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 1s 1.1s forwards;
}
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  text-decoration: none;
  transition: all 0.5s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background: #D4B87C;
  color: var(--bg-dark);
}
.btn-secondary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--text-muted);
  transition: all 0.4s;
}
.btn-secondary:hover {
  color: var(--text-light);
  border-color: var(--text-light);
}

/* ─── IMAGE BREAKS ─── */
.image-break {
  width: 100%; height: 50vh; min-height: 350px;
  position: relative; overflow: hidden;
}
.image-break img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.image-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(25,22,19,0.15) 0%, rgba(25,22,19,0.6) 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: center;
  padding: 3rem 2rem;
}
.image-break-text {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
}

/* ─── SECTIONS — SHARED ─── */
section { padding: 7rem 2rem; }
.section-inner { max-width: 900px; margin: 0 auto; }
.section-overline {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  text-align: center;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.section-subtitle {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}
.section-body {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.9;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.divider {
  width: 50px; height: 1px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}

/* ─── DARK SECTIONS (default) ─── */
.not-salon,
.standard-section,
.new-model,
.final-section {
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
}
.not-salon::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(196,167,108,0.03) 0%, transparent 70%);
}
.not-salon .section-title,
.standard-section .section-title { color: var(--text-light); }
.not-salon .section-body,
.standard-section .section-subtitle { color: var(--text-warm); }

/* ─── LIGHT SECTIONS ─── */
.who-section { background: var(--bg-light); }
.bring-section { background: linear-gradient(180deg, #E0D9CE 0%, var(--bg-light) 100%); }
.builds-section { background: var(--bg-cream); }
.exclusive-section { background: #DDD6CA; }
.independence-section { background: var(--bg-light); }
.founding-section { background: var(--bg-cream); text-align: center; }

/* Light section text colors */
.who-section .section-title,
.bring-section .section-title,
.builds-section .section-title,
.exclusive-section .section-title,
.independence-section .section-title,
.founding-section .section-title { color: var(--text-dark); }

.who-section .section-subtitle,
.bring-section .section-subtitle,
.exclusive-section .exclusive-statement,
.independence-section .section-subtitle,
.founding-section .section-subtitle { color: var(--text-body); }

.who-section .section-body,
.bring-section .section-body,
.builds-section .section-body,
.independence-section .section-body,
.founding-section .section-body { color: var(--text-body); }

/* ─── NEGATION LIST ─── */
.negation-list {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.2rem;
  max-width: 650px; margin: 3rem auto 0;
}
.negation-item {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-warm);
  padding-left: 1.5rem;
  position: relative;
}
.negation-item::before {
  content: '\2014'; position: absolute; left: 0;
  color: var(--gold);
}

/* ─── FOUNDER TRAITS ─── */
.founder-traits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 4rem;
  max-width: 750px; margin: 3rem auto 0;
}
.trait {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(42,36,32,0.12);
}
.trait-label {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.trait-desc {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.7;
}

/* ─── WHAT YOU BRING ─── */
.bring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 750px; margin: 3rem auto 0;
}
.bring-item { text-align: center; padding: 2rem 1rem; }
.bring-word {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.bring-detail {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-body);
  letter-spacing: 0.05em;
}

/* ─── WHAT VOS BUILDS ─── */
.builds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 850px; margin: 3rem auto 0;
}
.build-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(42,36,32,0.1);
  transition: all 0.5s ease;
}
.build-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(25,22,19,0.1);
}
.build-label {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.build-desc {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
}

/* ─── VOS STANDARD ─── */
.standard-criteria {
  max-width: 620px; margin: 3rem auto 0;
}
.criterion {
  display: flex; align-items: baseline; gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--gold-dim);
}
.criterion-number {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 400;
  min-width: 1.5rem;
}
.criterion-text {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-warm);
  line-height: 1.75;
}

/* ─── NOT EVERYONE ─── */
.exclusive-statement {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── INDEPENDENCE ─── */
.independence-cols {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 3rem; max-width: 800px;
  margin: 3rem auto 0; align-items: start;
}
.independence-divider {
  width: 1px; height: 100%;
  background: rgba(42,36,32,0.15);
}
.indep-col { padding: 1rem; }
.indep-col-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  text-align: center;
}
.indep-col-text {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.85;
  text-align: center;
}

/* ─── NEW MODEL ─── */
.new-model {
  background: linear-gradient(170deg, var(--bg-dark) 0%, #252019 100%);
}
.new-model::before {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
.new-model .section-body { color: var(--text-warm); }

/* ─── FOUNDING CIRCLE ─── */
.founding-badge {
  display: inline-block;
  padding: 0.65rem 2rem;
  border: 1px solid var(--gold);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}

/* ─── APPLICATION ─── */
.apply-section {
  background: var(--bg-warm);
  padding: 7rem 2rem;
}
.apply-section .section-overline { color: var(--gold); }
.apply-section .section-title { color: var(--text-light); }
.apply-section .section-body { color: var(--text-warm); }

.form-container {
  max-width: 640px; margin: 0 auto;
  background: var(--bg-cream);
  padding: 4rem 3.5rem;
  border: 1px solid rgba(196,167,108,0.2);
  box-shadow: 0 20px 60px rgba(25,22,19,0.3);
}
.form-header { text-align: center; margin-bottom: 3rem; }
.form-header .section-title { color: var(--text-dark); }
.form-header .section-body { color: var(--text-body); }

.form-group { margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.6rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid rgba(42,36,32,0.15);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-muted); font-weight: 300;
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%234A3F35' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-submit {
  width: 100%; padding: 1.2rem; margin-top: 2rem;
  background: var(--bg-dark);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 0.5s ease;
}
.form-submit:hover { background: var(--gold); color: var(--bg-dark); }

.form-note {
  text-align: center; margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-body);
  font-style: italic;
}
.form-message {
  text-align: center; margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.6;
}
.form-message-success {
  background: rgba(196, 167, 108, 0.12);
  border: 1px solid var(--gold);
  color: var(--text-dark);
}
.form-message-error {
  background: rgba(180, 60, 60, 0.08);
  border: 1px solid rgba(180, 60, 60, 0.25);
  color: #7A2E2E;
}

/* ─── FINAL SECTION ─── */
.final-section {
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  padding: 10rem 2rem;
}
.final-statement {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: var(--text-light);
}
.final-sub {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-warm);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.final-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 4rem;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--gold-dim);
  padding: 2.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-left {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.footer-center {
  display: flex; align-items: center; gap: 0.8rem;
  flex-wrap: wrap; justify-content: center;
}
.footer-contact {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact:hover { color: var(--gold); }
.footer-divider { color: var(--text-muted); font-size: 0.6rem; }
.footer-right { display: flex; gap: 2rem; }
.footer-right a {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-right a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(25,22,19,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.08em;
}
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.8rem; color: var(--text-light);
  line-height: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }

  section { padding: 4.5rem 1.5rem; }

  .negation-list { gap: 1rem; }
  .founder-traits { grid-template-columns: 1fr; gap: 0; }
  .bring-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .builds-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .independence-cols { grid-template-columns: 1fr; gap: 2rem; }
  .independence-divider { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-container { padding: 2.5rem 1.8rem; }
  .footer {
    flex-direction: column; text-align: center;
    padding: 2rem 1.5rem;
  }
  .footer-center { margin: 0.5rem 0; }
  .footer-right { gap: 1.5rem; }

  .image-break { height: 35vh; min-height: 250px; }
}
