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

:root {
  --cream: #FAF7F0;
  --forest: #1A3A2A;
  --forest-light: #2D5A3D;
  --terracotta: #A85C38;
  --warm-gold: #C9973E;
  --sage: #7A9E7E;
  --charcoal: #2C2C2C;
  --warm-gray: #6B6560;
  --light-warm: #EDE8DF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max-w: 1100px;
  --section-pad: clamp(4rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--warm-gold); color: var(--cream); }

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

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(26,58,42,0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-image-wrap {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,58,42,0.25) 0%, transparent 70%);
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  background: var(--forest);
  color: var(--cream);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 1.2rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(250,247,240,0.8);
  max-width: 38ch;
}

/* ===== INTRO ===== */
.intro {
  background: var(--light-warm);
  padding: var(--section-pad) 2rem;
}
.intro-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.intro-ornament {
  color: var(--warm-gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3em;
}
.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.intro-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  background: var(--cream);
  color: var(--forest);
  border: 1px solid rgba(26,58,42,0.15);
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 2px;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 2.5rem;
}

/* ===== STORIES ===== */
.stories {
  padding: var(--section-pad) 2rem;
  background: var(--cream);
}
.stories-inner { max-width: var(--max-w); margin: 0 auto; }
.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.story-card {
  padding: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
}
.story-card--legacy { background: var(--forest); color: var(--cream); }
.story-card--celebration { background: var(--light-warm); color: var(--charcoal); }
.story-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
}
.story-card--legacy .story-card-icon { background: rgba(250,247,240,0.1); color: var(--cream); }
.story-card--celebration .story-card-icon { background: var(--forest); color: var(--cream); }
.story-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.story-card-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}
.story-card--legacy .story-card-body { color: rgba(250,247,240,0.85); }
.story-card-prices { margin-bottom: 1.2rem; }
.price-tag {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
}
.story-card--legacy .price-tag { color: var(--warm-gold); }
.story-card--celebration .price-tag { color: var(--forest); }
.story-card-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  opacity: 0.75;
  transition: opacity 0.2s;
  display: inline-block;
}
.story-card-link:hover { opacity: 1; }

/* ===== PRICING ===== */
.pricing {
  padding: var(--section-pad) 2rem;
  background: var(--forest);
}
.pricing-inner { max-width: var(--max-w); margin: 0 auto; }
.pricing .section-label { color: var(--warm-gold); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.pricing-card {
  background: rgba(250,247,240,0.06);
  border: 1px solid rgba(250,247,240,0.12);
  padding: 2.2rem;
  color: var(--cream);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  background: rgba(201,151,62,0.15);
  border-color: rgba(201,151,62,0.4);
}
.pricing-card-header {
  margin-bottom: 1rem;
}
.pricing-tier {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 0.4rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}
.pricing-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(250,247,240,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}
.pricing-features li {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(250,247,240,0.75);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(250,247,240,0.07);
  line-height: 1.5;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-note {
  font-size: 0.75rem;
  color: var(--warm-gold);
  font-style: italic;
  text-align: center;
}
.pricing-footer {
  text-align: center;
  color: rgba(250,247,240,0.5);
  font-size: 0.88rem;
}
.pricing-footer a { color: var(--warm-gold); }
.pricing-footer a:hover { text-decoration: underline; }

/* ===== WHY ===== */
.why {
  padding: var(--section-pad) 2rem;
  background: var(--cream);
}
.why-inner { max-width: var(--max-w); margin: 0 auto; }
.why-quote-block {
  border-left: 3px solid var(--warm-gold);
  padding-left: 2rem;
  margin-bottom: 3.5rem;
  max-width: 640px;
}
.why-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.why-attr {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  text-transform: uppercase;
}
.why-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.why-point-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.why-point-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: clamp(4rem, 8vw, 7rem) 2rem;
  background: var(--light-warm);
  text-align: center;
}
.closing-inner { max-width: 620px; margin: 0 auto; }
.closing-ornament {
  color: var(--warm-gold);
  font-size: 1rem;
  letter-spacing: 0.4em;
  margin-bottom: 1.5rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.closing-cta {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--forest);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--forest);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
}
.footer-location {
  font-size: 0.78rem;
  color: rgba(250,247,240,0.5);
  font-weight: 300;
}
.footer-contact { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-link {
  font-size: 0.82rem;
  color: rgba(250,247,240,0.7);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--cream); }
.footer-seal {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(250,247,240,0.4);
}
.footer-separator { opacity: 0.4; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-wrap { height: 50vw; min-height: 280px; }
  .hero-img-overlay { background: linear-gradient(to bottom, rgba(26,58,42,0.4) 0%, transparent 60%); }

  .stories-grid { grid-template-columns: 1fr; gap: 2px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .why-points { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0.9rem 1.25rem; }
  .hero-eyebrow { font-size: 0.68rem; }
  .pricing-card { padding: 1.6rem; }
  .why-quote-block { padding-left: 1.2rem; }
  .intro-badges { gap: 0.6rem; }
  .badge { font-size: 0.72rem; padding: 0.3rem 0.7rem; }
}