:root {
  --ink: #2c1b20;
  --wine: #6f273d;
  --wine-deep: #491525;
  --rose: #bf6d7f;
  --blush: #f4dfe2;
  --cream: #fffaf3;
  --gold: #c69b52;
  --gold-light: #ead7ad;
  --green: #174c3b;
  --white: #ffffff;
  --muted: #76646a;
  --line: rgba(111, 39, 61, 0.16);
  --shadow: 0 24px 80px rgba(66, 20, 35, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 10px;
}
.site-header > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.wordmark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.wordmark small {
  margin-top: 5px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.86fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  padding: 56px 0 84px;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -80px;
  left: -20vw;
  width: 65vw;
  height: 730px;
  background: radial-gradient(circle at 55% 45%, rgba(244, 223, 226, 0.86), transparent 66%);
  pointer-events: none;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}
.eyebrow svg { width: 15px; height: 15px; color: var(--gold); }
.hero h1, .section-heading h2, .timeline-copy h2, .final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.047em;
}
.hero h1 {
  max-width: 660px;
  margin: 24px 0 22px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
}
.hero h1 em { display: block; color: var(--wine); font-weight: 700; }
.hero-lead {
  max-width: 600px;
  margin: 0 0 28px;
  color: #5f4d53;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.64;
}
.hero-lead strong { color: var(--wine); }

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), #0d382b);
  box-shadow: 0 13px 34px rgba(23, 76, 59, 0.22);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.025em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(23, 76, 59, 0.28); }
.primary-button:focus-visible, .mobile-sticky-cta a:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}
.primary-button svg { width: 20px; height: 20px; flex: 0 0 auto; }
.button-icon { font-size: 19px; line-height: 1; }
.primary-button .button-arrow { width: 17px; margin-left: 2px; opacity: 0.82; }

.quiet-group-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 570px;
  margin-top: 17px;
  color: var(--muted);
}
.quiet-group-note svg { width: 17px; height: 17px; margin-top: 2px; flex: 0 0 auto; color: var(--wine); }
.quiet-group-note > span { margin-top: 1px; flex: 0 0 auto; font-size: 14px; }
.quiet-group-note p { margin: 0; font-size: 12px; line-height: 1.55; }
.quiet-group-note strong { color: var(--ink); }

.countdown-shell {
  max-width: 520px;
  min-height: 100px;
  margin-top: 27px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
}
.countdown-shell > p {
  margin: 0 0 13px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.countdown-unit { position: relative; text-align: center; }
.countdown-unit:not(:last-child)::after {
  content: ":";
  position: absolute;
  top: 3px;
  right: -7px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 20px;
}
.countdown-unit strong { display: block; font-family: Georgia, serif; font-size: 27px; font-weight: 400; line-height: 1; }
.countdown-unit span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.countdown-loading { opacity: 0.45; }
.countdown-started { display: flex; align-items: center; gap: 14px; }
.countdown-started svg { width: 28px; height: 28px; color: var(--gold); }
.countdown-started > span { color: var(--gold); font-size: 28px; }
.countdown-started strong, .countdown-started span { display: block; }
.countdown-started strong { color: var(--wine); font-family: Georgia, serif; font-size: 20px; }
.countdown-started span { margin-top: 4px; color: var(--muted); font-size: 12px; }

.hero-visual { position: relative; min-height: 610px; }
.main-photo, .detail-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid rgba(255, 255, 255, 0.76);
  background: #ddd2cf;
  box-shadow: var(--shadow);
}
.main-photo { top: 0; right: 0; width: 78%; height: 540px; border-radius: 48% 48% 24px 24px; }
.detail-photo { bottom: 0; left: 0; width: 40%; height: 290px; border-radius: 120px 120px 20px 20px; }
.main-photo img, .detail-photo img { height: 100%; object-fit: cover; }
.main-photo img { object-position: center 12%; }
.detail-photo img { object-position: center top; }
.anniversary-seal {
  position: absolute;
  z-index: 3;
  top: 25px;
  left: -8px;
  display: grid;
  place-content: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 16px 36px rgba(73, 21, 37, 0.25);
  color: white;
  text-align: center;
  transform: rotate(-8deg);
}
.anniversary-seal::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(234, 215, 173, 0.7);
  border-radius: 50%;
}
.anniversary-seal strong { position: relative; font-family: Georgia, serif; font-size: 51px; font-weight: 400; line-height: 0.8; }
.anniversary-seal span {
  position: relative;
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.visual-caption {
  position: absolute;
  right: -18px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 260px;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 243, 0.92);
  box-shadow: 0 12px 32px rgba(66, 20, 35, 0.1);
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 1.25;
}
.visual-caption svg { width: 18px; flex: 0 0 auto; }
.visual-caption > span:first-child { flex: 0 0 auto; font-size: 20px; }

.date-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 6vw, 76px);
  padding: 24px 30px;
  background: var(--wine);
  box-shadow: inset 0 1px rgba(255,255,255,.1), inset 0 -1px rgba(0,0,0,.1);
  color: white;
}
.date-ribbon > div { display: flex; align-items: baseline; gap: 13px; }
.date-ribbon div > span { color: var(--gold-light); font-size: 11px; font-weight: 900; letter-spacing: 0.15em; }
.date-ribbon strong { font-family: Georgia, serif; font-size: 16px; font-weight: 400; }
.ribbon-star { color: var(--gold-light); }

.section-shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.benefits { padding: 116px 0 124px; }
.section-heading { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section-heading h2, .timeline-copy h2, .final-cta h2 {
  margin: 14px 0 15px;
  font-size: clamp(39px, 5vw, 58px);
  line-height: 1.04;
}
.section-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-grid article {
  padding: 29px 24px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.58);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.benefit-grid article:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(66, 20, 35, 0.09); }
.icon-wrap {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--wine);
}
.icon-wrap svg { width: 21px; height: 21px; }
.benefit-grid h3, .steps-grid h3, .faq-grid h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 20px;
}
.benefit-grid p, .steps-grid p, .faq-grid p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.timeline-section { overflow: hidden; background: var(--wine-deep); color: white; }
.timeline-inner {
  display: grid;
  grid-template-columns: minmax(300px, .76fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.timeline-photo { position: relative; }
.timeline-photo > img {
  height: 640px;
  border: 8px solid rgba(255,255,255,.1);
  border-radius: 190px 190px 22px 22px;
  object-fit: cover;
  object-position: center top;
}
.photo-note {
  position: absolute;
  right: -42px;
  bottom: 44px;
  width: min(270px, 80%);
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,250,243,.94);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  color: var(--ink);
}
.photo-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--wine);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.photo-note strong { font-family: Georgia, serif; font-size: 17px; font-weight: 400; }
.section-kicker.light { color: var(--gold-light); }
.timeline-copy h2 { max-width: 610px; margin-bottom: 38px; }
.timeline { display: grid; gap: 0; margin: 0 0 36px; padding: 0; list-style: none; }
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 0 0 30px;
}
.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 43px;
  bottom: 5px;
  left: 23px;
  width: 1px;
  background: rgba(234,215,173,.3);
}
.timeline-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(234,215,173,.45);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 13px;
}
.timeline strong { display: block; padding-top: 3px; color: white; font-family: Georgia, serif; font-size: 20px; font-weight: 400; }
.timeline p { margin: 8px 0 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.55; }
.timeline-copy .primary-button, .final-cta .primary-button { background: linear-gradient(135deg, #2f8e6f, var(--green)); }

.how-it-works { padding: 116px 0 80px; }
.section-heading.compact { margin-bottom: 44px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps-grid > div {
  position: relative;
  min-height: 245px;
  padding: 34px 28px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 14px 44px rgba(66,20,35,.07);
}
.steps-grid > div > span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--blush);
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1;
}
.steps-grid > div > svg { width: 31px; height: 31px; margin-bottom: 35px; color: var(--wine); }
.step-symbol {
  display: block;
  margin-bottom: 35px;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}

.faq { padding: 50px 0 116px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.faq-grid article {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.48);
}
.faq-grid article > svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  padding: 4px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--wine);
}
.faq-grid .check {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blush);
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
}
.faq-grid h3 { font-size: 17px; }
.faq-grid p { margin-top: 7px; }

.final-cta {
  padding: 104px 20px;
  background:
    radial-gradient(circle at 18% 20%, rgba(244,223,226,.32), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(198,155,82,.18), transparent 23%),
    var(--wine);
  color: white;
  text-align: center;
}
.final-cta-content { max-width: 700px; margin: 0 auto; }
.mini-seal {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  border: 1px dashed var(--gold-light);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-style: italic;
}
.final-cta h2 { margin-top: 12px; }
.final-cta p {
  max-width: 590px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.75);
  font-size: 16px;
  line-height: 1.65;
}
.final-cta small { display: block; margin-top: 16px; color: rgba(255,255,255,.58); font-size: 10px; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 92px;
  color: var(--muted);
  font-size: 11px;
}
.footer-wordmark { justify-self: start; color: var(--ink); }
.footer-info { text-align: center; }
.footer-info p { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 3px 0; }
.footer-info svg { width: 13px; height: 13px; }
footer > a:last-child { justify-self: end; text-decoration: underline; text-underline-offset: 3px; }
.mobile-sticky-cta { display: none; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr 380px; gap: 32px; }
  .hero h1 { font-size: 56px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-inner { gap: 62px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 77px; }
  .site-header { width: min(100% - 30px, 560px); padding-top: 18px; }
  .site-header > p { font-size: 8px; }
  .wordmark span { font-size: 22px; }
  .hero {
    display: flex;
    flex-direction: column;
    width: min(100% - 30px, 560px);
    min-height: 0;
    padding: 42px 0 58px;
  }
  .hero-copy { display: contents; }
  .eyebrow { align-self: flex-start; order: 1; font-size: 9px; }
  .hero h1 { order: 2; margin: 17px 0; font-size: clamp(43px, 13vw, 61px); line-height: .98; }
  .hero-lead { order: 3; margin-bottom: 21px; font-size: 16px; line-height: 1.56; }
  .hero-visual { order: 4; width: 100%; min-height: 465px; margin: 6px 0 25px; }
  .main-photo { left: 7%; right: auto; width: 86%; height: 440px; }
  .detail-photo { display: none; }
  .anniversary-seal { top: 20px; left: -4px; width: 94px; height: 94px; }
  .anniversary-seal strong { font-size: 42px; }
  .visual-caption { right: 0; bottom: 0; max-width: 225px; padding: 12px 14px; font-size: 12px; }
  .hero .primary-button { order: 5; width: 100%; min-height: 60px; }
  .quiet-group-note { order: 6; margin-top: 15px; }
  .countdown-shell { order: 7; width: 100%; margin-top: 24px; }
  .date-ribbon { flex-direction: column; align-items: stretch; gap: 14px; padding: 22px 26px; }
  .date-ribbon > div { justify-content: space-between; }
  .ribbon-star { display: none; }
  .date-ribbon strong { max-width: 210px; text-align: right; }
  .section-shell { width: min(100% - 30px, 560px); }
  .benefits, .how-it-works { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .timeline-copy h2, .final-cta h2 { font-size: 39px; }
  .benefit-grid, .steps-grid, .faq-grid { grid-template-columns: 1fr; }
  .benefit-grid article { display: grid; grid-template-columns: 48px 1fr; column-gap: 17px; padding: 22px; }
  .benefit-grid .icon-wrap { grid-row: 1 / span 2; margin: 0; }
  .benefit-grid p { margin-top: 7px; }
  .timeline-inner {
    display: flex;
    flex-direction: column;
    width: min(100% - 30px, 560px);
    gap: 58px;
    padding: 75px 0 82px;
  }
  .timeline-photo { width: 86%; align-self: flex-start; }
  .timeline-photo > img { height: 480px; }
  .photo-note { right: -16%; bottom: 28px; }
  .timeline-copy { width: 100%; }
  .timeline-copy .primary-button { width: 100%; }
  .steps-grid > div { min-height: 205px; }
  .faq { padding: 10px 0 82px; }
  .final-cta { padding: 82px 20px; }
  .final-cta .primary-button { width: 100%; }
  footer { grid-template-columns: 1fr; justify-items: center; padding: 34px 0 30px; text-align: center; }
  .footer-wordmark, footer > a:last-child { justify-self: center; }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,.12);
    background: rgba(23, 76, 59, .97);
    backdrop-filter: blur(12px);
  }
  .mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-weight: 800;
  }
  .mobile-sticky-cta svg { width: 20px; height: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
