/* =====================================================
   SNAPMOMENT — Homepage Style
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg:          #FDFAF6;
  --gold:        #C9A96E;
  --gold-dark:   #8B6914;
  --gold-light:  #E8D5B0;
  --gold-xlight: #F5ECD9;
  --text:        #2C2C2C;
  --text-muted:  #888;
  --white:       #FFFFFF;
  --shadow:      0 4px 24px rgba(0,0,0,0.07);
  --shadow-gold: 0 8px 32px rgba(201,169,110,0.22);
  --radius:      16px;
  --transition:  all 0.25s ease;
}

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

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  background: linear-gradient(160deg, #FDFAF6 0%, #F5ECD9 60%, #EDD8A8 100%);
  position: relative;
  overflow: hidden;
}

/* decorative circles */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(201,169,110,0.13) 0%, transparent 70%);
}
.hero::after {
  width: 400px; height: 400px;
  bottom: -150px; left: -150px;
  background: radial-gradient(circle, rgba(201,169,110,0.10) 0%, transparent 70%);
}

.hero-logo {
  width: min(420px, 85vw);
  margin: 0 auto 48px;
  animation: fadeUp 0.7s ease both;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.35;
  max-width: 600px;
  margin: 0 auto 16px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin: 0 auto 48px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,169,110,0.35);
}

/* ── DIVIDER ── */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* ── HOW IT WORKS ── */
.section {
  padding: 80px 24px;
  text-align: center;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gold-light);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold-xlight);
  border: 2px solid var(--gold-light);
  margin: 0 auto 20px;
}

.step-num svg {
  width: 26px; height: 26px;
  color: var(--gold-dark);
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── FEATURES ── */
.features-bg {
  background: linear-gradient(135deg, var(--gold-xlight) 0%, #FDFAF6 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.feature-icon svg {
  width: 22px; height: 22px;
  color: var(--gold);
}

.feature-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.feature-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #b8912a 100%);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.cta-section .section-label {
  color: rgba(255,255,255,0.65);
}

.cta-section .section-title {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section .section-desc {
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--gold-dark);
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.cta-email:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.cta-email svg {
  width: 20px; height: 20px;
}

/* ── FOOTER ── */
.site-footer {
  background: #2C2C2C;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.site-footer a {
  color: var(--gold-light);
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}
