/* ============================================================
   ElementalWellness — Homepage Stylesheet
   Theme: Dark near-black canvas + Mint accent (#2DD4BF)
   ============================================================ */

:root {
  --bg: #0B0E14;
  --bg-elevated: #11161F;
  --bg-panel: #151B26;
  --bg-soft: #1B222F;
  --ink: #E8EAED;
  --ink-soft: #C4CBD6;
  --ink-muted: #9AA4B4;
  --mint: #2DD4BF;
  --mint-deep: #14B8A6;
  --mint-light: #5EEAD4;
  --line: #232C3A;
  --line-soft: #1B222E;
  --white: #FFFFFF;
}

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

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--white);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   SYMMETRIC BRAND-CENTER NAV BAR
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}

.site-nav.scrolled {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  border-bottom-color: var(--line);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-links-left,
.nav-links-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links-left a,
.nav-links-right a {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links-left a:hover,
.nav-links-right a:hover {
  color: var(--mint);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
}

.nav-brand .brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--mint);
  box-shadow: 0 0 16px var(--mint);
}

.nav-brand .brand-accent {
  color: var(--mint);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background-color: var(--mint);
  color: #05201C;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background-color: var(--mint-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--ink);
  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);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background-color: var(--bg-elevated);
  border-bottom: 1px solid var(--line);
  padding: 12px 24px 20px;
  gap: 4px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--ink-soft);
  font-size: 16px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 500;
}

.nav-mobile a:hover {
  color: var(--mint);
}

.nav-mobile .nav-cta {
  margin-top: 14px;
  justify-content: center;
}

/* ============================================================
   HERO — RIPPLE RINGS
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background-color: var(--bg);
}

.hero-ripples {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.ripple.r1 {
  width: 180px;
  height: 180px;
  border-color: var(--mint-deep);
}

.ripple.r2 {
  width: 320px;
  height: 320px;
  border-color: var(--mint);
  animation: ripple-breathe 7s ease-in-out infinite;
}

.ripple.r3 {
  width: 460px;
  height: 460px;
  border-color: var(--line);
}

.ripple.r4 {
  width: 610px;
  height: 610px;
  border-color: var(--line-soft);
  animation: ripple-breathe 11s ease-in-out infinite;
}

.ripple.r5 {
  width: 780px;
  height: 780px;
  border-color: var(--line);
}

.ripple.r6 {
  width: 980px;
  height: 980px;
  border-color: var(--line-soft);
}

@keyframes ripple-breathe {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background-color: var(--bg-elevated);
  color: var(--mint);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--mint);
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--mint);
}

.hero-lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: var(--mint);
  color: #05201C;
}

.btn-primary:hover {
  background-color: var(--mint-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 56px;
}

.hero-meta-item {
  text-align: left;
}

.hero-meta-item .num {
  font-size: 26px;
  font-weight: 800;
  color: var(--mint);
}

.hero-meta-item .label {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   MARQUEE / TICKER STRIP
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background-color: var(--bg-elevated);
  padding: 20px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.ticker-track .tick-accent {
  color: var(--mint);
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   FULL-WIDTH STATEMENT ROW
   ============================================================ */
.statement-section {
  padding: 110px 0;
  background-color: var(--bg);
}

.statement-section .statement-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 700;
  margin-bottom: 20px;
}

.statement-section h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.01em;
  max-width: 900px;
  line-height: 1.15;
}

.statement-section h2 .accent {
  color: var(--mint);
}

.statement-section .statement-body {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.statement-section .statement-copy {
  flex: 1 1 380px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
}

.statement-section .statement-copy p + p {
  margin-top: 20px;
}

/* ============================================================
   NUMBERED SERVICE INDEX (big numerals, not card grid)
   ============================================================ */
.services-section {
  padding: 110px 0;
  background-color: var(--bg-elevated);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.section-head .kicker {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 40px;
  font-weight: 800;
}

.section-head .head-note {
  max-width: 380px;
  color: var(--ink-muted);
  font-size: 15px;
}

.service-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 8px;
  border-top: 1px solid var(--line);
  transition: background-color 0.25s ease, padding-left 0.25s ease;
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row:hover {
  background-color: var(--bg-panel);
  padding-left: 20px;
}

.service-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--line);
  transition: color 0.25s ease;
}

.service-row:hover .service-num {
  color: var(--mint);
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.service-desc {
  color: var(--ink-muted);
  font-size: 15px;
  max-width: 620px;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.service-tags span {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.service-tags .tag-mint {
  color: var(--mint);
  border-color: var(--mint-deep);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-section {
  padding: 110px 0;
  background-color: var(--bg);
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background-color: var(--bg-panel);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compare-table th,
.compare-table td {
  padding: 22px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}

.compare-table thead th {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background-color: var(--bg-soft);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--ink);
}

.compare-col-mint {
  color: var(--mint);
  font-weight: 700;
}

.compare-col-off {
  color: var(--ink-muted);
}

.check-mint {
  color: var(--mint);
  font-weight: 700;
}

.cross-muted {
  color: var(--ink-muted);
  font-weight: 700;
}

/* ============================================================
   PROCESS — numbered timeline
   ============================================================ */
.process-section {
  padding: 110px 0;
  background-color: var(--bg-elevated);
  border-top: 1px solid var(--line-soft);
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.process-item .step-index {
  font-size: 48px;
  font-weight: 800;
  color: var(--mint);
  line-height: 1;
}

.process-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-item p {
  color: var(--ink-muted);
  max-width: 640px;
}

/* ============================================================
   TESTIMONIAL SLIDER (horizontal scroll row)
   ============================================================ */
.testimonials-section {
  padding: 110px 0;
  background-color: var(--bg);
}

.testimonial-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  flex: 0 0 400px;
  scroll-snap-align: start;
  background-color: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
}

.testimonial-card .quote {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--white);
}

.testimonial-card .role {
  font-size: 14px;
  color: var(--ink-muted);
}

.testimonial-card .stars {
  color: var(--mint);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 110px 0;
  background-color: var(--bg-elevated);
  border-top: 1px solid var(--line-soft);
}

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

.contact-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-info > p {
  color: var(--ink-muted);
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-detail:last-of-type {
  border-bottom: 1px solid var(--line);
}

.contact-detail .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail .label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.contact-detail .value {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.contact-form {
  background-color: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--mint);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 12px;
}

/* ============================================================
   FOOTER — multi-column + watermark wordmark
   ============================================================ */
.site-footer {
  position: relative;
  background-color: var(--bg);
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 180px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bg-soft);
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 72px 0 48px;
}

.footer-brand .nav-brand {
  padding: 0;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--ink-muted);
  font-size: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 15px;
  padding: 7px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--mint);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--ink-muted);
  font-size: 14px;
}

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

.footer-legal-links a {
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-legal-links a:hover {
  color: var(--mint);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero h1 { font-size: 46px; }
  .statement-section h2 { font-size: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links-left,
  .nav-links-right {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-inner {
    justify-content: space-between;
  }
  .nav-brand {
    padding: 0;
  }
  .nav-inner .nav-cta {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: 38px; }
  .service-row {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }
  .service-tags {
    grid-column: 2;
    justify-content: flex-start;
  }
  .process-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .testimonial-card {
    flex-basis: 320px;
  }
}

@media (max-width: 560px) {
  .hero { padding: 80px 0 90px; }
  .hero h1 { font-size: 32px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { justify-content: center; }
  .statement-section h2 { font-size: 28px; }
  .section-head h2 { font-size: 30px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-watermark { font-size: 100px; bottom: -20px; }
  .contact-form { padding: 24px; }
  .service-num { font-size: 32px; }
}
