/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF6F0;
  --cream-dark: #F0EAE0;
  --green: #1B3D2F;
  --green-mid: #2D5A45;
  --green-light: #E8F0EB;
  --terracotta: #C4603A;
  --terracotta-light: #F0DDD4;
  --ink: #1C1C1E;
  --ink-mid: #5C5C60;
  --ink-light: #9A9A9E;
  --white: #FFFFFF;
  --shadow: 0 8px 40px rgba(27,61,47,0.12);
  --shadow-sm: 0 2px 12px rgba(27,61,47,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  border-bottom: 1px solid rgba(27,61,47,0.06);
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { font-size: 24px; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.3px;
}

.btn-nav {
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  border: 1.5px solid var(--green);
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.2s;
}
.btn-nav:hover { background: var(--green); color: var(--white); }

/* === HERO === */
.hero {
  padding: 80px 48px 100px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-lede {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 100px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(196,96,58,0.35);
}
.btn-primary:hover { background: #A84E2C; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(196,96,58,0.4); }
.btn-full { width: 100%; text-align: center; }

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

.france-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 16px;
  background: var(--green-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  border: 1px solid rgba(27,61,47,0.12);
}

.france-flag {
  font-size: 16px;
}

/* === HERO VISUAL === */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
  height: 420px;
}

.phone-frame {
  width: 240px;
  background: var(--ink);
  border-radius: 28px;
  padding: 20px 16px 24px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.phone-top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.phone-name { font-size: 11px; color: #888; font-weight: 500; }
.phone-verified { font-size: 10px; color: #4CAF50; }

.chat-bubble-in {
  background: #2A2A2E;
  border-radius: 16px 16px 16px 4px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.chat-bubble-in.last { margin-bottom: 0; }
.chat-bubble-out {
  background: var(--terracotta);
  border-radius: 16px 16px 4px 16px;
  padding: 10px 12px;
  margin-top: 8px;
}
.chat-time {
  font-size: 10px;
  color: #666;
  margin-bottom: 6px;
}
.chat-msg {
  font-size: 12px;
  color: #D0D0D0;
  line-height: 1.5;
}
.chat-photo { margin-bottom: 8px; }
.chat-photo-img {
  width: 100%;
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F4A261 0%, #E76F51 50%, #264653 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

/* === POSTCARD === */
.postcard-shadow {
  position: relative;
  z-index: 1;
  transform: rotate(6deg);
}

.postcard-card {
  width: 200px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}

.pc-photo {
  height: 120px;
  background: linear-gradient(160deg, #F4A261 0%, #E76F51 40%, #264653 100%);
  position: relative;
  overflow: hidden;
}
.pc-sun {
  position: absolute;
  bottom: 20px;
  right: 30px;
  width: 28px;
  height: 28px;
  background: #F4A261;
  border-radius: 50%;
  opacity: 0.9;
}
.pc-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: rgba(38,70,83,0.4);
}

.pc-back {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pc-stamp {
  width: 28px;
  height: 36px;
  background: var(--terracotta-light);
  border-radius: 3px;
  opacity: 0.8;
}
.pc-address { text-align: right; }
.pc-addr-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.pc-addr-line { font-size: 10px; color: var(--ink-mid); line-height: 1.4; }

/* === HOW === */
.how {
  background: var(--green);
  padding: 100px 48px;
}

.how-inner { max-width: 1000px; margin: 0 auto; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--cream);
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step { padding: 0 24px; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(250,246,240,0.15);
  margin-bottom: 8px;
}
.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.step-desc { font-size: 14px; color: rgba(250,246,240,0.6); line-height: 1.6; }
.step-divider {
  font-size: 24px;
  color: rgba(250,246,240,0.2);
  padding-top: 32px;
}

/* === EMOTION === */
.emotion { padding: 100px 48px; }
.emotion-inner { max-width: 1000px; margin: 0 auto; }

.emotion-quote {
  background: var(--green);
  border-radius: 24px;
  padding: 56px;
  margin-bottom: 32px;
  position: relative;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--terracotta);
  line-height: 0.5;
  margin-bottom: 24px;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 32px;
}

.quote-author { display: flex; align-items: center; gap: 16px; }
.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
}
.quote-name { font-weight: 600; color: var(--cream); font-size: 15px; }
.quote-location { font-size: 13px; color: rgba(250,246,240,0.5); }

.emotion-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quote-card {
  background: var(--cream-dark);
  border-radius: 20px;
  padding: 36px;
}

.quote-text-sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 20px;
}

.quote-author-sm { display: flex; align-items: center; gap: 12px; }
.quote-avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 700;
}
.quote-name-sm { font-size: 14px; color: var(--ink-mid); font-weight: 500; }

/* === PRICING === */
.pricing { padding: 100px 48px; background: var(--cream-dark); }
.pricing-inner { max-width: 480px; margin: 0 auto; text-align: center; }

.pricing-card {
  background: var(--white);
  border-radius: 32px;
  padding: 56px 48px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27,61,47,0.06);
}

.price-tag { display: flex; align-items: flex-start; justify-content: center; gap: 2px; margin-bottom: 8px; }
.price-currency { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--ink); margin-top: 16px; }
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 80px; font-weight: 700; color: var(--green); line-height: 1; }
.price-cents { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--ink); margin-top: 16px; }
.price-unit { font-size: 16px; color: var(--ink-mid); margin-bottom: 32px; }

.price-features { list-style: none; text-align: left; margin-bottom: 36px; }
.price-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink); padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.check { color: var(--terracotta); font-weight: 700; font-size: 16px; }

/* === CLOSING === */
.closing {
  background: var(--green);
  padding: 120px 48px;
  text-align: center;
}

.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-icon { font-size: 56px; margin-bottom: 32px; }
.closing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.closing-text {
  font-size: 18px;
  color: rgba(250,246,240,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}
.closing-text-sm {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(250,246,240,0.45);
}

/* === FOOTER === */
.footer {
  background: var(--cream);
  padding: 48px;
  border-top: 1px solid rgba(27,61,47,0.08);
}

.footer-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.footer-icon { font-size: 28px; }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--green); }
.footer-tagline { font-size: 15px; color: var(--ink-mid); margin-bottom: 8px; }
.footer-legal { font-size: 13px; color: var(--ink-light); }

/* === MOBILE === */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 300px; }
  .phone-frame { width: 180px; }
  .postcard-card { width: 150px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step-divider { display: none; }
  .step { padding: 0; }
  .emotion-quote { padding: 36px 28px; }
  .emotion-secondary { grid-template-columns: 1fr; }
  .how, .emotion, .pricing, .closing { padding: 72px 24px; }
  .pricing-card { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .price-amount { font-size: 60px; }
}