/* ============================================
   LANDING PAGE
   ============================================ */

/* SITE HEADER (top of landing) */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: var(--space-5) 0 var(--space-3);
}

.site-logo {
  display: inline-block;
  width: 180px;
  color: var(--burgundy);
  transition: opacity 0.2s;
}

.site-logo:hover {
  opacity: 0.7;
}

.site-logo svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .site-header { padding: var(--space-4) 0; }
  .site-logo { width: 140px; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-9) 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(232, 213, 208, 0.4), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.15), transparent 50%),
    var(--cream);
  overflow: hidden;
}

.hero-botanical {
  position: absolute;
  width: 200px;
  height: 400px;
  color: var(--burgundy);
  opacity: 0.18;
  pointer-events: none;
}

.hero-botanical-left {
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
}

.hero-botanical-right {
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .hero-botanical {
    opacity: 0.08;
    width: 140px;
  }
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--burgundy-deep);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

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

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto var(--space-7);
  font-family: var(--font-body);
}

.hero-subtitle em {
  font-style: italic;
  color: var(--burgundy);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.hero-cta-note {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin: 0;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.trust-stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.trust-divider {
  color: var(--gold);
}

.hero-scroll-cue {
  position: absolute;
  bottom: var(--space-5);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--ink-muted);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: floatCentered 3s ease-in-out infinite;
}

@keyframes floatCentered {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -12px); }
}

@media (max-width: 768px) {
  .hero-scroll-cue { display: none; }
}

/* EMPATHY */
.empathy {
  background: var(--white);
  position: relative;
}

.empathy-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.25;
  color: var(--burgundy-deep);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}

@media (max-width: 700px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
}

.pain-item {
  padding: var(--space-5);
  background: var(--cream-soft);
  border-left: 2px solid var(--gold);
  position: relative;
}

.pain-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: var(--space-2);
  line-height: 1;
}

.pain-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.pain-item p em {
  font-style: italic;
  color: var(--burgundy);
}

.empathy-resolution {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* HOW IT WORKS */
.how-it-works {
  background: var(--cream);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.08), transparent 40%);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
  margin-top: var(--space-8);
  position: relative;
}

@media (max-width: 800px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.step-block {
  text-align: center;
  position: relative;
}

.step-roman {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.step-block h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: var(--space-3);
  color: var(--burgundy-deep);
}

.step-block p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* WHAT'S INSIDE */
.whats-inside {
  background: var(--white);
}

.inside-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-9);
  align-items: center;
}

@media (max-width: 900px) {
  .inside-layout {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
}

.inside-text h2 {
  margin: var(--space-3) 0 var(--space-6);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  line-height: 1.2;
}

.inside-text h2 em {
  font-style: italic;
  color: var(--burgundy);
}

.inside-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inside-list li {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--cream-darker);
}

.inside-list li:last-child {
  border-bottom: none;
}

.list-icon {
  flex-shrink: 0;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 24px;
  font-style: italic;
}

.inside-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--burgundy-deep);
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.inside-list p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.inside-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.planner-mockup {
  position: relative;
  width: 320px;
  aspect-ratio: 8.5 / 11;
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.planner-mockup:hover {
  transform: perspective(1200px) rotateY(-3deg) rotateX(0deg) translateY(-8px);
}

.mockup-cover {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-soft) 100%);
  border: 1px solid var(--gold-soft);
  padding: var(--space-7) var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 30px 60px rgba(107, 39, 55, 0.18), inset 0 1px 0 rgba(255,255,255,0.8);
  position: relative;
}

.mockup-cover::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  pointer-events: none;
}

.mockup-eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.mockup-names {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  color: var(--burgundy-deep);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.mockup-names em {
  font-style: italic;
  color: var(--burgundy);
}

.mockup-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: var(--space-3) 0;
}

.mockup-divider .divider-symbol {
  font-size: 28px;
  color: var(--gold);
}

.mockup-date {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-muted);
  margin-top: var(--space-3);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--cream-soft);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial {
  background: var(--white);
  padding: var(--space-6);
  border-top: 2px solid var(--gold);
  position: relative;
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: var(--space-4);
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--burgundy-deep);
  margin: 0 0 var(--space-4);
  quotes: '"' '"';
}

.testimonial blockquote::before {
  content: open-quote;
  font-size: 32px;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.testimonial cite {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ink-muted);
  font-style: normal;
  text-transform: uppercase;
}

/* PRICING */
.pricing {
  background: var(--cream);
  padding: var(--space-9) 0;
}

.pricing-card {
  position: relative;
  background: var(--white);
  padding: var(--space-9) var(--space-7);
  text-align: center;
  border: 1px solid var(--gold-soft);
}

.pricing-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
}

.pricing-corner-tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.pricing-corner-tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.pricing-corner-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.pricing-corner-br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.pricing-title {
  margin: var(--space-3) 0 var(--space-5);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.price-old {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink-muted);
  text-decoration: line-through;
  text-decoration-color: var(--gold);
}

.price-new {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
}

.pricing-subtitle {
  color: var(--ink-muted);
  font-style: italic;
}

.guarantee {
  padding: var(--space-4);
  background: var(--cream-soft);
  border-left: 2px solid var(--gold);
  text-align: left;
}

.guarantee strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: var(--space-1);
}

.guarantee p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: var(--burgundy-deep);
  color: var(--cream);
  padding: var(--space-7) 0 var(--space-5);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(250, 246, 241, 0.15);
}

.footer-wordmark {
  display: block;
  width: 200px;
  margin-bottom: var(--space-2);
  color: var(--gold);
}

.footer-wordmark svg {
  width: 100%;
  height: auto;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: var(--cream);
  opacity: 0.7;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: var(--space-5);
}

.footer-links a {
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--cream);
  opacity: 0.5;
  margin: var(--space-5) 0 0;
}