:root {
  --bg: #fffaf7;
  --paper: #ffffff;
  --ink: #271915;
  --muted: #756661;
  --rose: #b84a62;
  --rose-dark: #8f3046;
  --blush: #fde7ec;
  --line: rgba(39, 25, 21, 0.12);
  --shadow: 0 24px 70px rgba(69, 32, 28, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 247, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--blush);
  color: var(--rose-dark);
}

nav { display: flex; gap: 22px; flex-wrap: wrap; }

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

nav a:hover { color: var(--rose-dark); }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow { width: min(780px, calc(100% - 40px)); }

.section-pad { padding: clamp(72px, 10vw, 128px) 0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 28%, rgba(184, 74, 98, .22), transparent 31%),
    radial-gradient(circle at 15% 85%, rgba(253, 231, 236, .95), transparent 34%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.eyebrow {
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.center { text-align: center; }

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.06;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(3.25rem, 8vw, 6.9rem); letter-spacing: -0.055em; max-width: 960px; }

h2 { font-size: clamp(2.35rem, 5vw, 4.4rem); letter-spacing: -0.045em; margin-bottom: 24px; }

h3 { font-size: 1.55rem; margin-bottom: 12px; }

.lead {
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  max-width: 690px;
  color: var(--muted);
  margin: 24px 0 0;
}

.memory-line {
  margin: 28px 0 10px;
  padding-left: 20px;
  border-left: 4px solid var(--rose);
}

.dedication {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  color: var(--rose-dark);
  margin: 0 0 8px;
}

.legacy {
  color: var(--muted);
  margin: 0;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.center-actions {
  justify-content: center;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }

.primary { background: var(--rose); color: white; box-shadow: 0 14px 30px rgba(184, 74, 98, .25); }

.secondary { border: 1px solid var(--line); color: var(--ink); background: rgba(255,255,255,.72); }

.full { width: 100%; }

.hero-card, .contact-card, .steps article, .story-frame-wrap, .story-paper {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 34px;
}

.hero-card {
  padding: clamp(28px, 5vw, 44px);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.hero-card p { margin: 0 0 12px; }

.flower-icon { font-size: 3.4rem; color: var(--rose); margin-bottom: 26px; }

.light-section { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.narrow p, .split p, .dedication-section p { color: var(--muted); font-size: 1.1rem; }

blockquote {
  margin: 34px 0 0;
  padding-left: 24px;
  border-left: 4px solid var(--rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.involvement-intro {
  max-width: 780px;
  margin: 0 auto 44px;
  color: var(--muted);
  font-size: 1.12rem;
}

.story-frame-wrap {
  overflow: hidden;
  padding: 0;
}

.story-frame {
  display: block;
  width: 100%;
  height: 1100px;
  border: none;
  background: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.steps article {
  padding: 30px;
  box-shadow: none;
}

.steps span {
  display: inline-flex;
  color: var(--rose-dark);
  font-weight: 900;
  margin-bottom: 34px;
}

.steps p { color: var(--muted); margin: 0; }

.creed-section {
  background: linear-gradient(135deg, #2b171a, #5c2330);
  color: white;
}

.creed-section h2, .creed-section .eyebrow { color: white; }

.creed-section .eyebrow { opacity: .75; }

.creed {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 3.45rem);
  line-height: 1.14;
}

.creed p { margin: 0 0 10px; color: white; }

.split {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.contact-card { padding: 30px; }

.contact-card p { font-size: 1rem; }

.contact-card a { color: var(--rose-dark); font-weight: 800; }

.site-footer {
  background: #271915;
  color: rgba(255,255,255,.78);
  padding: 70px 20px 42px;
}

.site-footer h2, .site-footer h3 { color: white; }

.site-footer a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 40px;
  align-items: start;
}

.footer-motto {
  text-align: center;
  margin: 70px auto 30px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  color: white;
}

.footer-motto p { margin: 0 0 12px; }

.copyright {
  text-align: center;
  color: rgba(255,255,255,.55);
  margin: 0;
}

.skinny-page {
  min-height: 80vh;
}

.story-paper {
  padding: clamp(32px, 6vw, 72px);
}

.skinny-content p {
  font-size: 1.17rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .story-frame { height: 850px; }
}

@media (max-width: 830px) {
  .site-header { align-items: flex-start; gap: 12px; flex-direction: column; }
  nav { gap: 16px; }
  .hero { min-height: auto; }
  .hero-grid, .steps, .split, .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3rem, 15vw, 5.1rem); }
  .hero-card { max-width: 520px; }
}

@media (max-width: 600px) {
  .story-frame { height: 650px; }
  .button { width: 100%; }
  .hero-actions { width: 100%; }
}
