/* Variables */
:root {
  --bg: #faf7f2;
  --bg-warm: #f3ece0;
  --fg: #1c1612;
  --fg-muted: #6b5e52;
  --accent: #c9a96e;
  --accent-dark: #a8895a;
  --accent-warm: #d4b896;
  --ink: #2a2118;
  --card-bg: #fffdf9;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 500; }
p { font-size: 1rem; color: var(--fg-muted); }

.section__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section__title { margin-bottom: 0.75rem; }
.section__sub { max-width: 44ch; font-size: 1.05rem; color: var(--fg-muted); line-height: 1.7; }

/* Manifesto */
.manifesto {
  padding: 3.5rem 2rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.manifesto__eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 52ch;
  margin: 0 auto;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,169,110,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,169,110,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { max-width: 520px; }
.hero__headline {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 40ch;
  line-height: 1.7;
}
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero__card {
  background: var(--card-bg);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 2px;
  padding: 1.75rem 2rem;
  position: relative;
  box-shadow: 0 2px 20px rgba(44,33,24,0.06);
}
.hero__card--1 { transform: translateX(-20px); }
.hero__card--2 { transform: translateX(10px); }
.card__decoration {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.card__label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.card__meta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.card__excerpt p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.97rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.card__source {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(107,94,82,0.6);
  margin-top: 1rem;
  text-transform: uppercase;
}
.card__letter p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.97rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.card__letter--sig {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--accent-dark);
  margin-top: 0.75rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(107,94,82,0.5);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.4), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Process */
.process {
  background: var(--bg-warm);
  padding: 7rem 2rem;
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.process__inner { max-width: 1100px; margin: 0 auto; }
.process__inner .section__sub { margin-bottom: 4rem; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(201,169,110,0.2);
}
.process__step {
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(201,169,110,0.2);
  position: relative;
}
.step__number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(201,169,110,0.25);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.step__title {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.step__desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Keepsakes */
.keepsakes { padding: 7rem 2rem; }
.keepsakes__inner { max-width: 1100px; margin: 0 auto; }
.keepsakes__header { margin-bottom: 4rem; }
.keepsakes__lead {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 48ch;
  line-height: 1.7;
  margin-top: 1rem;
}
.keepsakes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.keepsake {
  background: var(--card-bg);
  border: 1px solid rgba(201,169,110,0.18);
  padding: 2.5rem;
  border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.keepsake:hover {
  border-color: rgba(201,169,110,0.4);
  box-shadow: 0 4px 24px rgba(44,33,24,0.07);
}
.keepsake__icon { margin-bottom: 1.5rem; }
.keepsake__type {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.keepsake__name {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.keepsake__desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.keepsake__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(201,169,110,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

/* Philosophy */
.philosophy {
  background: var(--ink);
  padding: 7rem 2rem;
}
.philosophy__inner { max-width: 1100px; margin: 0 auto; }
.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}
.philosophy__item .philosophy__icon { margin-bottom: 1.25rem; }
.philosophy__title {
  font-size: 1.1rem;
  color: #f3ece0;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.philosophy__desc {
  font-size: 0.9rem;
  color: rgba(243,236,224,0.55);
  line-height: 1.65;
}
.philosophy__quote {
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
  max-width: 60ch;
}
.philosophy__quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: #f3ece0;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.philosophy__quote cite {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}

/* Closing */
.closing { padding: 8rem 2rem; text-align: center; }
.closing__inner { max-width: 700px; margin: 0 auto; }
.closing__headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.closing__sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 44ch;
  margin: 0 auto 4rem;
  line-height: 1.7;
}
.closing__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.closing__tree { position: relative; width: 120px; height: 160px; }
.tree__root {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.tree__trunk {
  width: 2px;
  height: 60px;
  background: var(--accent);
  opacity: 0.4;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}
.tree__canopy {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 90px;
}
.leaf {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50% 0 50% 50%;
  opacity: 0.25;
}
.leaf--1 { top: 10px; left: 30%; width: 28px; height: 28px; }
.leaf--2 { top: 20px; left: 55%; width: 22px; height: 22px; opacity: 0.2; }
.leaf--3 { top: 0; left: 50%; width: 18px; height: 18px; opacity: 0.35; }
.leaf--4 { top: 35px; left: 20%; width: 24px; height: 24px; opacity: 0.15; }
.leaf--5 { top: 40px; left: 60%; width: 20px; height: 20px; opacity: 0.3; }
.leaf--6 { top: 25px; left: 10%; width: 16px; height: 16px; opacity: 0.2; }
.leaf--7 { top: 50px; left: 45%; width: 18px; height: 18px; opacity: 0.25; }

/* Footer */
.footer {
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 3rem 2rem;
  background: var(--bg-warm);
}
.footer__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer__brand { margin-bottom: 1.5rem; }
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.footer__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.footer__divider {
  width: 40px;
  height: 1px;
  background: rgba(201,169,110,0.3);
  margin: 1.5rem auto;
}
.footer__note {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { display: none; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .process__step { border-bottom: 1px solid rgba(201,169,110,0.2); }
  .keepsakes__grid { grid-template-columns: 1fr 1fr; }
  .philosophy__grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .process, .keepsakes, .philosophy, .closing { padding: 5rem 1.5rem; }
  .process__grid { grid-template-columns: 1fr; }
  .keepsakes__grid { grid-template-columns: 1fr; }
  .manifesto { padding: 2.5rem 1.5rem 2rem; }
}