/* ============ SkyCare Landing Page ============ */
:root {
  --black: #070707;
  --ink: #0d0d0c;
  --panel: #121210;
  --white: #f5f2ea;
  --muted: #b3ada0;
  --gold: #d4af37;
  --gold-deep: #8a5a1e;
  --gold-light: #f0d97c;
  --gold-grad: linear-gradient(120deg, #8a5a1e, #d4af37 45%, #f0d97c 70%, #b07d2a);
  --serif: 'Marcellus', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; text-align: center; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-grad);
  color: #1a1206;
}
.btn-gold:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn-outline {
  border-color: rgba(245, 242, 234, 0.45);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-sm { padding: 9px 22px; font-size: 0.8rem; }
.btn-lg { padding: 16px 48px; }

/* ============ Age Gate ============ */
.age-gate[hidden] { display: none; }
.age-gate {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(5, 5, 5, 0.96);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate-card {
  text-align: center;
  max-width: 440px;
  padding: 56px 40px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: var(--ink);
}
.age-gate-logo {
  width: min(260px, 70%);
  margin-bottom: 22px;
}
.age-gate-question { color: var(--muted); margin-bottom: 28px; }
.age-gate-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.age-gate-note { margin-top: 22px; font-size: 0.75rem; color: #6d675c; }

/* ============ Nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 36px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.18);
}
.nav-brand {
  text-decoration: none; color: var(--white); line-height: 1.2;
  display: flex; align-items: center; gap: 12px;
}
.nav-brand-mark {
  height: 40px;
}
.nav-brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.32em;
  white-space: nowrap;
}
.nav-brand-tag {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.btn) {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: color 0.25s, opacity 0.25s;
}
.nav-links a:not(.btn):hover { color: var(--gold-light); opacity: 1; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  background: url('../assets/hero.jpg') center 32% / cover no-repeat;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,7,0.55) 0%, rgba(7,7,7,0.28) 40%, rgba(7,7,7,0.88) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 24px 80px; max-width: 900px; }
.hero-logo {
  width: clamp(120px, 16vw, 180px);
  margin-bottom: 26px;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,0.55));
}
.hero-kicker {
  position: absolute;
  top: clamp(84px, 12vh, 150px);
  left: 24px; right: 24px;
  z-index: 2;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  margin: 26px auto;
  max-width: 420px;
}
.hero-divider .line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,242,234,0.7)); }
.hero-divider .line:last-child { background: linear-gradient(90deg, rgba(245,242,234,0.7), transparent); }
.hero-divider .diamond { color: var(--gold-light); font-size: 0.9rem; }
.hero-divider .geometry {
  width: 24px; height: 24px;
  flex: 0 0 auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23f0d97c' stroke-width='2'%3E%3Ccircle cx='50' cy='50' r='16'/%3E%3Ccircle cx='50' cy='34' r='16'/%3E%3Ccircle cx='50' cy='66' r='16'/%3E%3Ccircle cx='36.1' cy='42' r='16'/%3E%3Ccircle cx='63.9' cy='42' r='16'/%3E%3Ccircle cx='36.1' cy='58' r='16'/%3E%3Ccircle cx='63.9' cy='58' r='16'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.5));
}
.hero-divider.small { margin: 14px auto; max-width: 220px; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,242,234,0.92);
  max-width: 560px;
  margin: 0 auto 36px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 1.4rem;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============ Sections ============ */
.section { padding: 110px 0; }
.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.section-title.left { text-align: left; }

/* Seed of life mark (7 overlapping circles, echoes the logo) */
.seed-mark {
  width: 74px; height: 74px;
  margin: 0 auto 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d4af37' stroke-width='1.4'%3E%3Ccircle cx='50' cy='50' r='16'/%3E%3Ccircle cx='50' cy='34' r='16'/%3E%3Ccircle cx='50' cy='66' r='16'/%3E%3Ccircle cx='36.1' cy='42' r='16'/%3E%3Ccircle cx='63.9' cy='42' r='16'/%3E%3Ccircle cx='36.1' cy='58' r='16'/%3E%3Ccircle cx='63.9' cy='58' r='16'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  opacity: 0.9;
}
.seed-mark-sm { width: 54px; height: 54px; margin-bottom: 4px; }

/* ============ Mission ============ */
.mission { background: var(--black); }
.mission-text {
  font-size: 1.25rem;
  line-height: 1.9;
  color: rgba(245,242,234,0.94);
}
.mission-text em { color: var(--gold-light); font-style: italic; }
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 70px;
}
.pillar {
  padding: 36px 30px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: var(--panel);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pillar:hover { border-color: rgba(212, 175, 55, 0.55); transform: translateY(-4px); }
.pillar h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.pillar p { color: var(--muted); font-size: 0.98rem; }

/* ============ Story ============ */
.story { background: linear-gradient(180deg, var(--black), #0c0b08 50%, var(--black)); }
.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.story-copy p { color: rgba(245,242,234,0.88); font-size: 1.05rem; margin-bottom: 24px; }
.story-list { list-style: none; }
.story-list li {
  display: flex; gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--muted);
}
.story-list li:last-child { border-bottom: none; }
.coming-soon {
  display: block;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.story-visual { display: flex; justify-content: center; }
.seed-of-life-lg {
  width: min(340px, 70vw);
  aspect-ratio: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23f5f2ea' stroke-width='0.8' opacity='0.85'%3E%3Ccircle cx='100' cy='100' r='30'/%3E%3Ccircle cx='100' cy='70' r='30'/%3E%3Ccircle cx='100' cy='130' r='30'/%3E%3Ccircle cx='74' cy='85' r='30'/%3E%3Ccircle cx='126' cy='85' r='30'/%3E%3Ccircle cx='74' cy='115' r='30'/%3E%3Ccircle cx='126' cy='115' r='30'/%3E%3Ccircle cx='100' cy='100' r='60' stroke='%23d4af37' stroke-width='1.2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  animation: slowSpin 90s linear infinite;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }

/* ============ Movement ============ */
.movement { background: var(--black); }
.movement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 50px;
}
.movement-card {
  padding: 44px 34px;
  background: var(--panel);
  border: 1px solid rgba(245, 242, 234, 0.08);
  border-top: 2px solid var(--gold);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.movement-card:hover { transform: translateY(-5px); border-color: rgba(212, 175, 55, 0.4); }
.card-emblem {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.movement-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.movement-card p { color: var(--muted); }

/* ============ Waitlist ============ */
.waitlist {
  background: linear-gradient(180deg, var(--black), #0e0c07 55%, var(--black));
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.waitlist-intro { color: var(--muted); max-width: 520px; margin: 0 auto 36px; }
.waitlist-row {
  display: flex;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}
.waitlist-row input {
  flex: 1;
  min-width: 0;
  background: rgba(245, 242, 234, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: 2px;
  transition: border-color 0.25s ease;
}
.waitlist-row input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245, 242, 234, 0.08);
}
.waitlist-row input::placeholder { color: #6d675c; }
.waitlist-note { margin-top: 18px; font-size: 0.8rem; color: #6d675c; }
.waitlist-success {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-top: 10px;
}
.promo-code-label {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 18px;
}
.promo-code {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.8rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  border: 1px dashed rgba(212, 175, 55, 0.6);
  padding: 10px 28px;
  margin-top: 10px;
  background: rgba(212, 175, 55, 0.07);
}
.promo-code-fine {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: #6d675c;
  margin-top: 12px;
}
.nav-links .label-short { display: none; }

/* ============ Contact ============ */
.contact { background: linear-gradient(180deg, var(--black), #0d0c09); }
.contact-intro { color: var(--muted); max-width: 540px; margin: 0 auto 44px; }
.contact-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: block; margin-bottom: 20px; }
.contact-form label span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(245, 242, 234, 0.04);
  border: 1px solid rgba(245, 242, 234, 0.18);
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 13px 16px;
  border-radius: 2px;
  transition: border-color 0.25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245, 242, 234, 0.06);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #6d675c; }
.contact-form button { display: block; margin: 10px auto 0; }
.contact-alt { text-align: center; margin-top: 22px; color: var(--muted); font-size: 0.95rem; }
.contact-alt a { color: var(--gold-light); text-decoration: none; }
.contact-alt a:hover { text-decoration: underline; }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 64px 0 44px;
  text-align: center;
  background: var(--black);
}
.footer-logo {
  width: min(280px, 72%);
}
.footer-note { margin-top: 26px; color: var(--muted); font-size: 0.9rem; }
.footer-note a { color: var(--gold-light); text-decoration: none; }
.footer-legal { margin-top: 20px; font-size: 0.75rem; color: #6d675c; }

/* ============ Reveal animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .mission-pillars, .movement-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { order: -1; }
  .seed-of-life-lg { width: 200px; }
  .section { padding: 80px 0; }
}
@media (max-width: 640px) {
  .nav { padding: 14px 18px; }
  .nav-links a:not(.btn) { display: none; }
  .nav-brand-tag { display: none; }
  .nav-brand-name { font-size: 1.15rem; }
  .nav-brand-mark { height: 32px; }
  .nav-links .label-full { display: none; }
  .nav-links .label-short { display: inline; }
  .waitlist-row { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-content { padding-top: 100px; }
}
