/* ============================================================
   LuvSelf — Turquoise on Dark
   Accent: #0D9488 | Support: #0F766E / #99F6E4 / #062321
   Body: #141012 | Text: #F2EBF0
   ============================================================ */

:root {
  --bg: #141012;
  --bg-2: #1B1418;
  --surface: #21171D;
  --surface-2: #2A1D24;
  --line: #3A2A33;
  --line-soft: #2B1E26;
  --text: #F2EBF0;
  --muted: #C9BAC2;
  --soft: #E4D7DE;
  --accent: #0D9488;
  --accent-dark: #0F766E;
  --accent-light: #99F6E4;
  --accent-deep: #062321;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #141012;
  color: #F2EBF0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.home-page {
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #99F6E4;
  margin: 0 0 14px;
}

.section-title {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #F2EBF0;
  margin: 0 0 16px;
}

.section-sub {
  font-size: 17px;
  color: #C9BAC2;
  max-width: 640px;
  margin: 0 0 40px;
}

/* ============================ NAVIGATION ============================ */

.heart-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #141012;
  border-bottom: 1px solid #2B1E26;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.heart-nav.scrolled {
  background-color: #1B1418;
  box-shadow: 0 12px 30px -18px #062321;
}

.heart-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.heart-shape {
  position: relative;
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
  background: #0D9488;
  flex-shrink: 0;
  margin: 6px 4px 0 0;
}

.heart-shape::before,
.heart-shape::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0D9488;
}

.heart-shape::before {
  top: -10px;
  left: 0;
  background: #0F766E;
}

.heart-shape::after {
  top: 0;
  left: 10px;
  background: #99F6E4;
}

.wordmark {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #F2EBF0;
}

.wordmark span {
  color: #99F6E4;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
  margin: 0 auto;
  padding: 0;
}

.nav-links a {
  color: #C9BAC2;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #99F6E4;
}

.nav-cta {
  background-color: #0D9488;
  color: #062321;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background-color: #99F6E4;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid #3A2A33;
  border-radius: 8px;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #F2EBF0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================ HERO ============================ */

.mirror-hero {
  padding: 160px 0 90px;
  background:
    radial-gradient(900px 500px at 85% 0%, #0D9488 0%, #141012 60%),
    linear-gradient(180deg, #141012 0%, #1B1418 100%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #99F6E4;
  margin: 0 0 18px;
}

.hero-title {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  color: #F2EBF0;
  margin: 0 0 24px;
}

.hero-sub {
  font-size: 18px;
  color: #C9BAC2;
  margin: 0 0 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: #0D9488;
  color: #062321;
}

.btn-primary:hover {
  background-color: #99F6E4;
  transform: translateY(-1px);
}

.btn-ghost {
  background-color: transparent;
  color: #99F6E4;
  border-color: #0F766E;
}

.btn-ghost:hover {
  background-color: #062321;
  border-color: #99F6E4;
  transform: translateY(-1px);
}

/* Vanity mirror */
.mirror-scene {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.mirror {
  position: relative;
  width: 300px;
  height: 440px;
}

.mirror-face {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 330px;
  border-radius: 50%;
  border: 10px solid #0D9488;
  background: linear-gradient(150deg, #99F6E4 0%, #0D9488 42%, #062321 100%);
  box-shadow:
    0 0 0 8px #0F766E,
    0 0 42px 4px #0D9488,
    0 34px 70px -22px #062321;
  overflow: hidden;
}

.mirror-sheen {
  position: absolute;
  top: 12%;
  left: 16%;
  width: 42%;
  height: 20%;
  border-radius: 50%;
  background: #F2EBF0;
  transform: rotate(-26deg);
}

.glow-dot {
  position: absolute;
  border-radius: 50%;
  background: #F2EBF0;
  box-shadow: 0 0 12px 4px #99F6E4, 0 0 24px 8px #0D9488;
}

.gd1 {
  width: 12px;
  height: 12px;
  top: 24%;
  right: 22%;
}

.gd2 {
  width: 7px;
  height: 7px;
  top: 46%;
  right: 34%;
}

.gd3 {
  width: 9px;
  height: 9px;
  bottom: 26%;
  left: 30%;
}

.mirror-stem {
  position: absolute;
  top: 328px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 64px;
  background: #0F766E;
  border-radius: 0 0 14px 14px;
}

.mirror-arc {
  position: absolute;
  top: 372px;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  height: 46px;
  border: 12px solid #0D9488;
  border-top: none;
  border-radius: 0 0 95px 95px;
}

.mirror-feet {
  position: absolute;
  top: 398px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 22px;
}

.mirror-feet::before,
.mirror-feet::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 92px;
  height: 20px;
  border-radius: 50%;
  background: #0D9488;
}

.mirror-feet::before {
  left: 4px;
}

.mirror-feet::after {
  right: 4px;
}

/* ============================ STATEMENT ============================ */

.statement {
  background-color: #0D9488;
  padding: 80px 0;
}

.statement-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.statement-text {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
  color: #062321;
  margin: 0 0 18px;
}

.statement-sub {
  font-size: 18px;
  color: #062321;
  margin: 0;
}

/* ============================ ABOUT ============================ */

.about-section {
  padding: 96px 0;
  background-color: #141012;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: center;
}

.about-copy p {
  color: #C9BAC2;
  font-size: 17px;
  margin: 0 0 18px;
}

.value-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.value-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 18px 20px;
  background-color: #21171D;
  border: 1px solid #2B1E26;
  border-left: 3px solid #0D9488;
  border-radius: 10px;
}

.value-item strong {
  color: #99F6E4;
  font-size: 16px;
}

.value-item span {
  color: #C9BAC2;
  font-size: 15px;
}

.about-panel {
  display: flex;
  justify-content: center;
}

.panel-card {
  background: linear-gradient(160deg, #0F766E 0%, #062321 100%);
  border: 1px solid #0D9488;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 30px 60px -30px #062321;
}

.panel-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #99F6E4;
  margin: 0 0 18px;
}

.panel-quote {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  color: #F2EBF0;
  margin: 0 0 18px;
}

.panel-note {
  font-size: 15px;
  color: #99F6E4;
  margin: 0;
}

/* ============================ STATS ============================ */

.stats-section {
  background-color: #1B1418;
  padding: 72px 0;
  border-top: 1px solid #2B1E26;
  border-bottom: 1px solid #2B1E26;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 28px 16px;
}

.stat-num {
  display: block;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  color: #99F6E4;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #C9BAC2;
  letter-spacing: 0.5px;
}

/* ============================ PROCESS ============================ */

.process-section {
  padding: 96px 0;
  background-color: #141012;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 820px;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 39px;
  width: 2px;
  background: #0F766E;
}

.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 20px 0;
  position: relative;
}

.process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #0D9488;
  color: #062321;
  font-size: 24px;
  font-weight: 800;
  z-index: 1;
  box-shadow: 0 0 0 6px #141012, 0 0 0 8px #0F766E;
}

.process-body {
  padding-top: 6px;
}

.process-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: #F2EBF0;
  margin: 0 0 8px;
}

.process-body p {
  font-size: 16px;
  color: #C9BAC2;
  margin: 0;
  max-width: 620px;
}

/* ============================ PROGRAMS ============================ */

.programs-section {
  padding: 96px 0;
  background-color: #1B1418;
  border-top: 1px solid #2B1E26;
  border-bottom: 1px solid #2B1E26;
}

.program-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 24px 28px;
  max-width: 1200px;
  margin: 0 auto;
  scroll-snap-type: x mandatory;
}

.program-scroll::-webkit-scrollbar {
  height: 8px;
}

.program-scroll::-webkit-scrollbar-track {
  background: #141012;
  border-radius: 4px;
}

.program-scroll::-webkit-scrollbar-thumb {
  background: #0D9488;
  border-radius: 4px;
}

.program-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background-color: #21171D;
  border: 1px solid #2B1E26;
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: #0D9488;
}

.card-tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #062321;
  background-color: #99F6E4;
  padding: 5px 12px;
  border-radius: 999px;
}

.program-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: #F2EBF0;
  margin: 0;
}

.program-card p {
  font-size: 15px;
  color: #C9BAC2;
  margin: 0;
  flex-grow: 1;
}

.card-meta {
  font-size: 13px;
  font-weight: 700;
  color: #99F6E4;
  letter-spacing: 0.4px;
}

/* ============================ COMPARE ============================ */

.compare-section {
  padding: 96px 0;
  background-color: #141012;
}

.table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 16px;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid #2B1E26;
}

.compare-table thead th {
  background-color: #0D9488;
  color: #062321;
  font-weight: 800;
}

.compare-table thead th:first-child {
  background-color: #0F766E;
  color: #F2EBF0;
  border-top-left-radius: 10px;
}

.compare-table thead th:last-child {
  border-top-right-radius: 10px;
}

.compare-table tbody tr:nth-child(even) {
  background-color: #1B1418;
}

.compare-table tbody td:first-child {
  color: #99F6E4;
  font-weight: 700;
}

.compare-table tbody td {
  color: #C9BAC2;
}

/* ============================ SNAPSHOT (TABS) ============================ */

.snapshot-section {
  padding: 96px 0;
  background-color: #1B1418;
  border-top: 1px solid #2B1E26;
  border-bottom: 1px solid #2B1E26;
}

.tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tab-btn {
  background-color: #21171D;
  border: 1px solid #2B1E26;
  color: #C9BAC2;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tab-btn:hover {
  border-color: #0D9488;
  color: #99F6E4;
}

.tab-btn.active {
  background-color: #0D9488;
  color: #062321;
  border-color: #0D9488;
}

.tab-panel {
  display: none;
  background-color: #21171D;
  border: 1px solid #2B1E26;
  border-left: 4px solid #0D9488;
  border-radius: 12px;
  padding: 28px 30px;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-size: 22px;
  font-weight: 800;
  color: #F2EBF0;
  margin: 0 0 12px;
}

.tab-panel p {
  font-size: 16px;
  color: #C9BAC2;
  margin: 0;
  max-width: 760px;
}

/* ============================ CTA ============================ */

.cta-section {
  padding: 96px 0;
  background:
    radial-gradient(700px 400px at 20% 50%, #0F766E 0%, #141012 70%),
    #141012;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.cta-copy p {
  color: #C9BAC2;
  font-size: 17px;
  margin: 0 0 28px;
  max-width: 480px;
}

.contact-form {
  background-color: #21171D;
  border: 1px solid #2B1E26;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 700;
  color: #99F6E4;
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 16px;
  color: #F2EBF0;
  background-color: #141012;
  border: 1px solid #3A2A33;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7A6B74;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0D9488;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  font-size: 14px;
  color: #99F6E4;
  margin: 0;
  min-height: 20px;
}

/* ============================ FOOTER ============================ */

.footer {
  background-color: #141012;
  border-top: 3px solid #0D9488;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #99F6E4;
  margin: 0 0 16px;
}

.footer-col p {
  font-size: 15px;
  color: #C9BAC2;
  margin: 0;
  max-width: 320px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col ul a {
  color: #C9BAC2;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: #99F6E4;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 0;
  border-top: 1px solid #2B1E26;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
  color: #7A6B74;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  font-size: 14px;
  color: #99F6E4;
  text-decoration: none;
  font-weight: 600;
}

.footer-legal a:hover {
  color: #F2EBF0;
}

/* ============================ REVEAL ============================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================ RESPONSIVE ============================ */

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

  .mirror-scene {
    order: 2;
  }

  .hero-title {
    font-size: 42px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #1B1418;
    border-bottom: 1px solid #2B1E26;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    margin: 0;
  }

  .nav-links.open {
    max-height: 360px;
  }

  .nav-links li {
    padding: 0;
  }

  .nav-links a {
    display: block;
    padding: 16px 24px;
    border-top: 1px solid #2B1E26;
  }

  .nav-cta {
    display: none;
  }

  .hero-title {
    font-size: 34px;
  }

  .statement-text {
    font-size: 26px;
  }

  .section-title {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-list::before {
    left: 27px;
  }

  .process-item {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .process-num {
    width: 56px;
    height: 56px;
    font-size: 18px;
    box-shadow: 0 0 0 4px #141012, 0 0 0 6px #0F766E;
  }

  .value-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mirror {
    transform: scale(0.9);
  }
}
