:root {
  --bg: #faf6f1;
  --bg-warm: #f3ebe0;
  --bg-deep: #2c1810;
  --fg: #2c1810;
  --fg-muted: #6b5b50;
  --fg-light: #9a8a7e;
  --accent: #c4704b;
  --accent-soft: #e8a985;
  --accent-glow: rgba(196, 112, 75, 0.15);
  --green: #5a7a5c;
  --green-soft: #8aad7a;
  --cream: #fffbf5;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --radius: 20px;
  --max-w: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 48px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  gap: 60px;
}

.hero-inner {
  max-width: 580px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.7;
}

/* Hero visual - concentric rings */
.hero-visual {
  position: relative;
  width: 340px;
  height: 340px;
  flex-shrink: 0;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent-soft);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.35;
}

.ring-1 { width: 340px; height: 340px; animation: pulse 6s ease-in-out infinite; }
.ring-2 { width: 240px; height: 240px; animation: pulse 6s ease-in-out 1s infinite; opacity: 0.5; }
.ring-3 { width: 140px; height: 140px; animation: pulse 6s ease-in-out 2s infinite; opacity: 0.7; }

.ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(196, 112, 75, 0.3);
}

.ring-icon {
  font-size: 32px;
  filter: grayscale(1) brightness(10);
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.35; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.55; }
}

/* ---- PHILOSOPHY ---- */
.philosophy {
  background: var(--bg-deep);
  padding: 100px 48px;
}

.philosophy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.philosophy-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 20px;
}

.philosophy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 700px;
}

.philosophy p {
  color: var(--fg-light);
  max-width: 600px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 251, 245, 0.6);
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.features-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 44px 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.feature-warm {
  background: linear-gradient(135deg, #f7e8dc 0%, #f0d8c4 100%);
}

.feature-discover {
  background: linear-gradient(135deg, #e6eed6 0%, #d4e2c0 100%);
}

.feature-journal {
  background: linear-gradient(135deg, #dce4ee 0%, #c4d4e8 100%);
}

.feature-legacy {
  background: linear-gradient(135deg, #f5e6d8 0%, var(--bg-warm) 100%);
  border: 1.5px solid rgba(196, 112, 75, 0.15);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-light);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--fg);
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ---- COUPLES ---- */
.couples {
  padding: 100px 48px;
  background: var(--bg-warm);
}

.couples-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.couples-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.couples-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 600px;
}

.couples-text > p {
  color: var(--fg-muted);
  max-width: 560px;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.couples-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--fg);
}

.stat-desc {
  font-size: 14px;
  color: var(--fg-light);
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(44, 24, 16, 0.08);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--fg);
}

.footer-note {
  font-size: 13px;
  color: var(--fg-light);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 60px 24px 40px;
    min-height: auto;
    gap: 40px;
    text-align: center;
  }

  .hero-inner { max-width: 100%; }

  .hero-sub {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-visual {
    width: 240px;
    height: 240px;
  }

  .ring-1 { width: 240px; height: 240px; }
  .ring-2 { width: 170px; height: 170px; }
  .ring-3 { width: 100px; height: 100px; }

  .philosophy { padding: 64px 24px; }

  .features { padding: 64px 24px; }

  .features-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card { padding: 32px 28px; }

  .couples { padding: 64px 24px; }

  .couples-stats {
    flex-direction: column;
    gap: 24px;
  }

  .closing { padding: 80px 24px; }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}