:root {
  --ink: #05080d;
  --ink-2: #080e16;
  --navy: #071522;
  --navy-2: #0b1d2d;
  --blue: #19344d;
  --blue-soft: #2c4b64;
  --slate: #7e8790;
  --slate-light: #b8bec5;
  --ivory: #f5f1ea;
  --white: #ffffff;
  --sand: #c9a071;
  --sand-light: #e2c39a;
  --sand-pale: #ead9c2;
  --line: rgba(201, 160, 113, 0.34);
  --line-light: rgba(245, 241, 234, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --font-display: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  --font-sans: "Manrope", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --header-height: 86px;
  --shell: min(1240px, calc(100vw - 64px));
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% 8%, rgba(37, 75, 104, 0.13), transparent 34rem),
    var(--ink);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  content: "";
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

::selection {
  background: var(--sand);
  color: var(--ink);
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 10000;
  padding: 10px 14px;
  border: 1px solid var(--sand);
  background: var(--ivory);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5, 8, 13, 0.96), rgba(5, 8, 13, 0.78));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 8, 13, 0.94);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
}

.header-inner {
  width: var(--shell);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.wordmark span {
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 42px);
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(245, 241, 234, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--sand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--ivory);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(245, 241, 234, 0.22);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: var(--ivory);
  transition: transform 240ms var(--ease), top 240ms var(--ease);
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(780px, 100svh, 980px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 1) 0%, rgba(5, 11, 18, 0.98) 37%, rgba(7, 21, 34, 0.67) 67%, rgba(7, 21, 34, 0.08) 100%),
    var(--navy);
}

.hero::before {
  position: absolute;
  inset: var(--header-height) 0 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 83% 65%, rgba(201, 160, 113, 0.17), transparent 26rem),
    radial-gradient(circle at 68% 22%, rgba(37, 76, 107, 0.23), transparent 31rem);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  height: 150px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 8, 13, 0.98));
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-atmosphere::before,
.hero-atmosphere::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.hero-atmosphere::before {
  right: 5%;
  bottom: 12%;
  width: 10px;
  height: 10px;
  background: #c88b4d;
  box-shadow:
    -88px -14px 0 2px rgba(210, 144, 73, 0.62),
    -176px 20px 0 1px rgba(219, 167, 103, 0.5),
    74px -48px 0 1px rgba(63, 117, 173, 0.74),
    150px -20px 0 2px rgba(210, 144, 73, 0.7),
    198px -109px 0 1px rgba(233, 179, 99, 0.53),
    -260px -96px 0 1px rgba(77, 137, 197, 0.5);
  opacity: 0.65;
}

.hero-atmosphere::after {
  top: 18%;
  right: 16%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(201, 160, 113, 0.12);
  opacity: 0.4;
}

.hero-portrait {
  position: absolute;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  z-index: 0;
  width: min(52vw, 760px);
  margin: 0;
  overflow: hidden;
}

.hero-portrait::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(5, 8, 13, 0.8) 9%, rgba(5, 8, 13, 0.16) 31%, transparent 51%),
    linear-gradient(180deg, rgba(5, 8, 13, 0.12), transparent 35%, rgba(5, 8, 13, 0.06) 68%, rgba(5, 8, 13, 0.72) 100%);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.86) contrast(1.03);
}

.hero-shell {
  position: relative;
  z-index: 3;
  width: var(--shell);
  min-height: clamp(780px, 100svh, 980px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-content {
  width: min(59%, 760px);
  padding: 78px 0 100px;
}

.eyebrow,
.section-number,
.form-kicker,
.story-card-kicker,
.event-label,
.candle-kicker {
  margin: 0;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  font-size: clamp(0.76rem, 1.2vw, 1rem);
}

.eyebrow::after {
  width: 78px;
  height: 2px;
  background: var(--sand);
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(5.8rem, 9.5vw, 9.45rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-wrap: balance;
}

.hero-kicker {
  margin: 30px 0 0;
  color: var(--sand-light);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.3vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.hero-summary {
  margin: 28px 0 0;
  color: rgba(245, 241, 234, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 180ms var(--ease),
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.share-button:focus-visible,
.primary-nav a:focus-visible,
.wordmark:focus-visible,
.event-map-link:focus-visible,
.footer-nav a:focus-visible {
  outline: 2px solid var(--sand-light);
  outline-offset: 4px;
}

.button-primary {
  border-color: var(--sand);
  background: linear-gradient(135deg, var(--sand-light), var(--sand));
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(201, 160, 113, 0.15);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--sand-pale);
  box-shadow: 0 20px 42px rgba(201, 160, 113, 0.22);
}

.button-secondary {
  border-color: rgba(245, 241, 234, 0.72);
  background: rgba(5, 8, 13, 0.34);
  color: var(--ivory);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--sand-light);
  background: rgba(201, 160, 113, 0.11);
}

.hero-event-teaser {
  width: fit-content;
  margin-top: 44px;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 14px;
  color: rgba(245, 241, 234, 0.74);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-event-label {
  color: var(--sand-light);
}

.hero-event-date {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.hero-event-arrow {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.hero-event-teaser:hover .hero-event-arrow,
.hero-event-teaser:focus-visible .hero-event-arrow {
  transform: translate(3px, 3px);
}

.scroll-cue {
  position: absolute;
  right: 42px;
  bottom: 28px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(245, 241, 234, 0.52);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}

.scroll-line {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--sand), transparent);
}

.section {
  position: relative;
  padding: 144px 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-heading {
  max-width: 960px;
  margin-bottom: 70px;
}

.section-heading h2,
.memories-intro h2,
.celebration-heading h2 {
  margin: 17px 0 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-wrap: balance;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.section-deck {
  margin: 0 0 8px;
  color: rgba(245, 241, 234, 0.62);
  font-size: 1.05rem;
  line-height: 1.75;
}

.story-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 27%, rgba(29, 65, 93, 0.23), transparent 33rem),
    var(--ink);
}

.story-section::before {
  position: absolute;
  top: 82px;
  right: -110px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(201, 160, 113, 0.12);
  border-radius: 50%;
  content: "";
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.75fr);
  gap: clamp(70px, 10vw, 140px);
  align-items: start;
}

.story-copy {
  max-width: 740px;
}

.story-copy p {
  margin: 0 0 28px;
  color: rgba(245, 241, 234, 0.68);
  font-size: 1.07rem;
  line-height: 1.95;
}

.story-copy .lead {
  margin-bottom: 34px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
  line-height: 1.08;
}

.story-card {
  position: relative;
  padding: 42px 42px 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(23, 51, 75, 0.4), rgba(5, 8, 13, 0.78)),
    var(--navy);
  box-shadow: var(--shadow);
}

.story-card::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(245, 241, 234, 0.06);
  pointer-events: none;
  content: "";
}

.story-facts {
  margin: 28px 0 40px;
  padding: 0;
  list-style: none;
}

.story-facts li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
}

.story-facts li span {
  color: var(--sand);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.story-signoff {
  margin: 0;
  color: rgba(226, 195, 154, 0.75);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  text-align: right;
}

.statement-section {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(201, 160, 113, 0.16);
  border-bottom: 1px solid rgba(201, 160, 113, 0.16);
  background:
    linear-gradient(115deg, rgba(5, 8, 13, 0.94), rgba(9, 28, 44, 0.82)),
    var(--navy);
}

.statement-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 80% 50%, rgba(201, 160, 113, 0.15), transparent 18rem),
    repeating-linear-gradient(90deg, transparent 0, transparent 86px, rgba(245, 241, 234, 0.022) 87px);
}

.statement-glow {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(201, 160, 113, 0.1);
  filter: blur(36px);
  transform: translateY(-50%);
}

.statement {
  position: relative;
  margin: 0;
  color: rgba(245, 241, 234, 0.52);
  font-family: var(--font-display);
  font-size: clamp(4rem, 7.8vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.statement span {
  color: var(--ivory);
}

.legacy-section {
  background:
    radial-gradient(circle at 8% 88%, rgba(201, 160, 113, 0.08), transparent 28rem),
    var(--navy-2);
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.legacy-card {
  position: relative;
  min-height: 390px;
  padding: 42px 34px 38px;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.12);
  background: linear-gradient(145deg, rgba(5, 8, 13, 0.68), rgba(15, 40, 61, 0.44));
  transition: transform 280ms var(--ease), border-color 280ms ease, background 280ms ease;
}

.legacy-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(201, 160, 113, 0.16);
  border-radius: 50%;
  content: "";
  transition: transform 420ms var(--ease);
}

.legacy-card:hover {
  border-color: rgba(201, 160, 113, 0.48);
  background: linear-gradient(145deg, rgba(5, 8, 13, 0.76), rgba(22, 53, 79, 0.55));
  transform: translateY(-8px);
}

.legacy-card:hover::after {
  transform: scale(1.22);
}

.legacy-index {
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.legacy-card h3 {
  margin: 98px 0 22px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 3.7vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.legacy-card p {
  margin: 0;
  color: rgba(245, 241, 234, 0.62);
  line-height: 1.85;
}

.legacy-cta {
  margin-top: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(245, 241, 234, 0.13);
}

.legacy-cta p {
  margin: 0;
  color: rgba(245, 241, 234, 0.55);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  color: var(--sand-light);
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.memories-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(54, 92, 120, 0.19), transparent 28rem),
    var(--ink);
}

.memories-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: start;
}

.memories-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.memories-intro h2 {
  margin-top: 18px;
}

.memories-intro > p:not(.section-number) {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(245, 241, 234, 0.64);
  font-size: 1.04rem;
  line-height: 1.85;
}

.memory-prompts {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.memory-prompts span {
  padding: 9px 13px;
  border: 1px solid rgba(201, 160, 113, 0.25);
  border-radius: 999px;
  color: rgba(245, 241, 234, 0.66);
  font-size: 0.77rem;
}

.archive-note {
  position: relative;
  margin-top: 58px;
  padding: 29px 26px 24px 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.archive-mark {
  position: absolute;
  top: 9px;
  left: 0;
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  opacity: 0.65;
}

.archive-note p {
  margin: 0;
  color: var(--sand-pale);
  font-family: var(--font-display);
  font-size: 1.48rem;
  line-height: 1.28;
}

.memory-form-card {
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(201, 160, 113, 0.3);
  background:
    linear-gradient(145deg, rgba(17, 42, 62, 0.62), rgba(5, 8, 13, 0.86)),
    var(--navy);
  box-shadow: var(--shadow);
}

.form-heading {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(245, 241, 234, 0.11);
}

.form-heading h3 {
  margin: 8px 0 5px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.form-heading > p:last-child {
  margin: 0;
  color: rgba(245, 241, 234, 0.55);
  font-size: 0.88rem;
}

.memory-form {
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.memory-form label:not(.consent-row) {
  display: grid;
  gap: 8px;
  margin-bottom: 19px;
}

.memory-form label > span {
  color: rgba(245, 241, 234, 0.74);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.memory-form input,
.memory-form textarea {
  width: 100%;
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 0;
  outline: none;
  background: rgba(3, 7, 11, 0.56);
  color: var(--ivory);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.memory-form input {
  min-height: 52px;
  padding: 11px 13px;
}

.memory-form textarea {
  min-height: 170px;
  padding: 13px;
  resize: vertical;
}

.memory-form input::placeholder,
.memory-form textarea::placeholder {
  color: rgba(184, 190, 197, 0.48);
}

.memory-form input:focus,
.memory-form textarea:focus {
  border-color: var(--sand);
  background: rgba(3, 7, 11, 0.76);
  box-shadow: 0 0 0 3px rgba(201, 160, 113, 0.1);
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 6px 0 24px;
  color: rgba(245, 241, 234, 0.58);
  cursor: pointer;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--sand);
}

.consent-row span {
  font-size: 0.78rem;
  line-height: 1.55;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--sand-light);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-privacy {
  margin: 9px 0 0;
  color: rgba(245, 241, 234, 0.42);
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: center;
}

.form-privacy a {
  color: var(--sand-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-media-hint {
  margin: -6px 0 0;
  color: rgba(245, 241, 234, 0.48);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-media-hint a {
  color: var(--sand-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.gallery-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(54, 92, 120, 0.18), transparent 30rem),
    radial-gradient(circle at 10% 90%, rgba(201, 160, 113, 0.07), transparent 24rem),
    var(--navy);
}

.gallery-contribute {
  max-width: 720px;
  margin: 0 0 42px;
  color: rgba(245, 241, 234, 0.62);
  font-size: 1.02rem;
  line-height: 1.75;
}

.gallery-contribute a {
  color: var(--sand-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gallery-empty {
  display: grid;
  gap: 18px;
  justify-items: start;
  max-width: 640px;
  padding: 42px 36px;
  border: 1px solid rgba(245, 241, 234, 0.12);
  background: linear-gradient(145deg, rgba(5, 8, 13, 0.55), rgba(15, 40, 61, 0.4));
}

.gallery-empty[hidden] {
  display: none;
}

.gallery-empty-kicker {
  margin: 0;
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.gallery-empty p {
  margin: 0;
  color: rgba(245, 241, 234, 0.62);
  line-height: 1.75;
}

.gallery-empty a:not(.button) {
  color: var(--sand-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(245, 241, 234, 0.1);
  background: rgba(5, 8, 13, 0.55);
  padding: 0;
  cursor: zoom-in;
  color: inherit;
  text-align: left;
  transition: border-color 280ms ease, transform 280ms var(--ease);
}

.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: rgba(201, 160, 113, 0.55);
  transform: translateY(-4px);
  outline: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 13, 0.88));
}

.gallery-item-meta p {
  margin: 0;
  color: rgba(245, 241, 234, 0.86);
  font-size: 0.92rem;
  line-height: 1.4;
}

.gallery-item-meta small {
  display: block;
  margin-top: 6px;
  color: rgba(226, 195, 154, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.gallery-lightbox {
  width: min(1080px, calc(100vw - 32px));
  max-width: none;
  margin: auto;
  padding: 0;
  border: 1px solid rgba(201, 160, 113, 0.28);
  background: rgba(5, 8, 13, 0.96);
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.gallery-lightbox::backdrop {
  background: rgba(5, 8, 13, 0.78);
}

.gallery-lightbox-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 56px 18px 22px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--sand-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-lightbox-figure {
  margin: 0;
  min-width: 0;
}

.gallery-lightbox-figure img {
  width: 100%;
  max-height: min(72vh, 820px);
  object-fit: contain;
  background: rgba(0, 0, 0, 0.35);
}

.gallery-lightbox-figure figcaption {
  margin-top: 16px;
  text-align: center;
}

.gallery-lightbox-figure figcaption p {
  margin: 0;
  color: rgba(245, 241, 234, 0.78);
}

.gallery-lightbox-figure figcaption p + p {
  margin-top: 6px;
  color: rgba(226, 195, 154, 0.72);
  font-size: 0.85rem;
}

.gallery-lightbox-nav {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 241, 234, 0.18);
  background: rgba(7, 21, 34, 0.7);
  color: var(--ivory);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  border-color: rgba(201, 160, 113, 0.55);
  color: var(--sand-light);
  outline: none;
}

.celebration-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 160, 113, 0.2), transparent 30rem),
    linear-gradient(135deg, #e8dfd3 0%, #f5f1ea 50%, #ddd0bf 100%);
  color: var(--ink);
}

.celebration-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: repeating-linear-gradient(90deg, transparent 0, transparent 119px, rgba(7, 21, 34, 0.035) 120px);
}

.celebration-heading {
  position: relative;
  max-width: 880px;
  margin-bottom: 58px;
}

.celebration-heading .section-number {
  color: #8a6339;
}

.celebration-heading h2 {
  color: var(--navy);
}

.celebration-heading > p:last-child {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(5, 8, 13, 0.66);
  font-size: 1.05rem;
  line-height: 1.8;
}

.celebration-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 22px;
}

.event-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 100%, rgba(201, 160, 113, 0.18), transparent 24rem),
    var(--navy);
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.event-date-block {
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(201, 160, 113, 0.26);
  background: rgba(5, 8, 13, 0.24);
  text-align: center;
}

.event-date-block span {
  color: var(--sand-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.event-date-block strong {
  margin-top: 58px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 7.5rem;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.event-date-block small {
  margin-top: 28px;
  color: rgba(245, 241, 234, 0.42);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.event-details {
  padding: clamp(38px, 5vw, 62px);
}

.event-details h3 {
  margin: 13px 0 34px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.event-details dl {
  margin: 0;
  display: grid;
  gap: 22px;
}

.event-details dl > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
}

.event-details dt {
  color: var(--sand-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-details dd {
  margin: 0;
  color: rgba(245, 241, 234, 0.78);
  line-height: 1.65;
}

.event-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button-light {
  border-color: var(--sand-light);
  background: var(--sand-light);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--ivory);
}

.button-outline-light {
  border-color: rgba(245, 241, 234, 0.55);
  background: transparent;
  color: var(--ivory);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: var(--sand-light);
  background: rgba(201, 160, 113, 0.1);
}

.event-map-link {
  margin-left: 4px;
  color: var(--sand-light);
  font-size: 0.82rem;
  font-weight: 700;
}

.event-fineprint {
  margin: 23px 0 0;
  color: rgba(245, 241, 234, 0.42);
  font-size: 0.72rem;
}

.candle-card {
  min-height: 500px;
  padding: 42px 34px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(7, 21, 34, 0.18);
  background: rgba(245, 241, 234, 0.56);
  box-shadow: 0 24px 70px rgba(7, 21, 34, 0.12);
}

.candle-visual {
  position: relative;
  width: 100px;
  height: 160px;
  margin-bottom: 25px;
}

.candle-body {
  position: absolute;
  bottom: 0;
  left: 27px;
  width: 46px;
  height: 98px;
  border: 1px solid rgba(7, 21, 34, 0.18);
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(90deg, #d6c2aa, #fbf4e9 50%, #d3bda4);
  box-shadow: 0 12px 28px rgba(7, 21, 34, 0.1);
}

.candle-wick {
  position: absolute;
  bottom: 95px;
  left: 49px;
  z-index: 3;
  width: 2px;
  height: 15px;
  background: #2a2623;
}

.candle-flame {
  position: absolute;
  bottom: 107px;
  left: 39px;
  z-index: 4;
  width: 22px;
  height: 39px;
  border-radius: 50% 50% 50% 50% / 68% 68% 36% 36%;
  background: linear-gradient(180deg, #fff9cc 0%, #e4a54f 58%, #bf6b2a 100%);
  box-shadow: 0 0 17px rgba(213, 146, 68, 0.68);
  opacity: 0.24;
  transform: scale(0.82) rotate(2deg);
  transform-origin: center bottom;
  transition: opacity 300ms ease, transform 300ms var(--ease);
}

.candle-glow {
  position: absolute;
  bottom: 78px;
  left: 1px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: rgba(213, 146, 68, 0.18);
  filter: blur(22px);
  opacity: 0;
  transition: opacity 300ms ease;
}

.candle-card.is-lit .candle-flame {
  opacity: 1;
  transform: scale(1) rotate(-2deg);
  animation: flame-flicker 2.2s ease-in-out infinite alternate;
}

.candle-card.is-lit .candle-glow {
  opacity: 1;
}

@keyframes flame-flicker {
  0% { transform: scale(0.98, 1.03) rotate(-2deg); }
  45% { transform: scale(1.04, 0.96) rotate(2deg); }
  100% { transform: scale(0.95, 1.05) rotate(-1deg); }
}

.candle-card h3 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.8vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.candle-card > p:not(.candle-kicker):not(.candle-status) {
  margin: 0 0 26px;
  color: rgba(5, 8, 13, 0.62);
  line-height: 1.7;
}

.candle-card .candle-kicker {
  color: #8a6339;
}

.button-dark {
  margin-top: auto;
  border-color: var(--navy);
  background: var(--navy);
  color: var(--ivory);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--blue);
}

.button-dark[disabled] {
  cursor: default;
  opacity: 0.68;
  transform: none;
}

.candle-status {
  min-height: 22px;
  margin: 13px 0 0;
  color: #76542f;
  font-size: 0.75rem;
}

.support-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 160, 113, 0.12), transparent 28rem),
    radial-gradient(circle at 90% 80%, rgba(54, 92, 120, 0.2), transparent 30rem),
    var(--ink-2);
}

.support-layout {
  max-width: 820px;
}

.support-copy .section-number {
  margin-bottom: 18px;
}

.support-copy h2 {
  margin: 0 0 28px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.support-lead {
  margin: 0 0 18px;
  color: rgba(245, 241, 234, 0.82);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.support-copy > p:not(.section-number):not(.support-lead) {
  margin: 0 0 34px;
  max-width: 640px;
  color: rgba(245, 241, 234, 0.62);
  font-size: 1.05rem;
  line-height: 1.8;
}

.support-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.support-fineprint {
  margin: 0;
  color: rgba(245, 241, 234, 0.42);
  font-size: 0.82rem;
}

.site-footer {
  padding: 70px 0 44px;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-shell {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(300px, 0.9fr) minmax(250px, 0.7fr);
  gap: 60px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
}

.footer-brand p {
  margin: 4px 0 0;
  color: rgba(245, 241, 234, 0.5);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
}

.footer-brand .footer-name {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: normal;
  line-height: 1;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 26px;
}

.footer-nav a {
  color: rgba(245, 241, 234, 0.56);
  font-size: 0.78rem;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--sand-light);
}

.footer-actions {
  text-align: right;
}

.share-button {
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--sand-light);
  font-weight: 700;
  cursor: pointer;
}

.footer-actions p {
  margin: 15px 0 0;
  color: rgba(245, 241, 234, 0.34);
  font-size: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 820ms var(--ease), transform 820ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + 90px) 0 110px;
  background:
    radial-gradient(circle at 80% 18%, rgba(28, 67, 95, 0.18), transparent 30rem),
    var(--ink);
}

.legal-shell {
  width: min(860px, calc(100vw - 48px));
  margin: 0 auto;
}

.legal-shell h1 {
  margin: 12px 0 30px;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.legal-shell h2 {
  margin: 46px 0 12px;
  color: var(--sand-light);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.legal-shell p,
.legal-shell li {
  color: rgba(245, 241, 234, 0.67);
}

.legal-shell a {
  color: var(--sand-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-back {
  display: inline-flex;
  margin-top: 48px;
  color: var(--sand-light);
  font-weight: 700;
}

.thank-you-card {
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18, 43, 64, 0.68), rgba(5, 8, 13, 0.9));
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card img {
  width: 108px;
  margin: 0 auto 28px;
}

.thank-you-card h1 {
  margin-top: 0;
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 48px, 1120px);
  }

  .hero-content {
    width: 62%;
  }

  .hero-portrait {
    width: 53vw;
  }

  .story-grid {
    gap: 70px;
  }

  .section-heading-split {
    gap: 46px;
  }

  .legacy-card {
    min-height: 410px;
  }

  .memories-grid {
    grid-template-columns: minmax(0, 0.76fr) minmax(500px, 1.24fr);
    gap: 58px;
  }

  .event-card {
    grid-template-columns: 150px 1fr;
  }

  .event-date-block strong {
    font-size: 6.2rem;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }

  .footer-actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .footer-actions p {
    margin: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
    --shell: min(100% - 38px, 820px);
  }

  .menu-toggle {
    position: relative;
    display: inline-block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 999;
    padding: 28px 24px 36px;
    display: grid;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 8, 13, 0.98);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms var(--ease);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 13px 4px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: 930px;
  }

  .hero-portrait {
    top: var(--header-height);
    width: 72vw;
    max-width: 660px;
    height: 68%;
    opacity: 0.92;
  }

  .hero-portrait::before {
    background:
      linear-gradient(90deg, rgba(5, 8, 13, 0.82), transparent 44%),
      linear-gradient(180deg, transparent 42%, rgba(5, 8, 13, 0.2) 58%, rgba(5, 8, 13, 0.98) 96%);
  }

  .hero-shell {
    min-height: 930px;
    align-items: flex-end;
  }

  .hero-content {
    width: 100%;
    max-width: 720px;
    padding: 460px 0 88px;
  }

  .hero h1 {
    font-size: clamp(5.4rem, 15vw, 8rem);
  }

  .hero-kicker {
    max-width: 650px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 112px 0;
  }

  .section-heading-split,
  .story-grid,
  .memories-grid,
  .celebration-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading-split {
    gap: 25px;
  }

  .section-deck {
    max-width: 620px;
  }

  .story-card {
    max-width: 620px;
  }

  .legacy-grid {
    grid-template-columns: 1fr;
  }

  .legacy-card {
    min-height: 320px;
  }

  .legacy-card h3 {
    margin-top: 58px;
  }

  .memories-intro {
    position: static;
  }

  .memory-form-card {
    max-width: 720px;
  }

  .event-card {
    grid-template-columns: 150px 1fr;
  }

  .candle-card {
    min-height: 390px;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .wordmark {
    font-size: 1.05rem;
    letter-spacing: 0.2em;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox-shell {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .gallery-lightbox-nav {
    justify-self: center;
  }

  .gallery-lightbox-prev {
    order: 2;
  }

  .gallery-lightbox-figure {
    order: 1;
  }

  .gallery-lightbox-next {
    order: 3;
  }

  .hero {
    min-height: 900px;
  }

  .hero::before {
    background: radial-gradient(circle at 76% 36%, rgba(43, 83, 112, 0.22), transparent 24rem);
  }

  .hero-portrait {
    top: 76px;
    right: -18vw;
    width: 104vw;
    height: 61%;
  }

  .hero-portrait::before {
    background:
      linear-gradient(90deg, rgba(5, 8, 13, 0.58), transparent 40%),
      linear-gradient(180deg, transparent 31%, rgba(5, 8, 13, 0.16) 50%, rgba(5, 8, 13, 1) 96%);
  }

  .hero-shell {
    min-height: 900px;
  }

  .hero-content {
    padding: 405px 0 56px;
  }

  .eyebrow {
    margin-bottom: 18px;
    gap: 12px;
    font-size: 0.7rem;
  }

  .eyebrow::after {
    width: 60px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(4.7rem, 22vw, 6.7rem);
    line-height: 0.8;
  }

  .hero-kicker {
    margin-top: 23px;
    font-size: clamp(1.8rem, 8.8vw, 2.75rem);
  }

  .hero-summary {
    margin-top: 20px;
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .hero-actions {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-event-teaser {
    margin-top: 25px;
    gap: 9px;
    font-size: 0.66rem;
  }

  .hero-event-date {
    padding-left: 9px;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2,
  .memories-intro h2,
  .celebration-heading h2 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
    line-height: 0.94;
  }

  .story-section::before {
    display: none;
  }

  .story-copy .lead {
    font-size: 2rem;
  }

  .story-copy p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .story-card {
    padding: 32px 24px 28px;
  }

  .story-facts li {
    font-size: 1.28rem;
  }

  .statement-section {
    min-height: 380px;
  }

  .statement {
    font-size: clamp(3.55rem, 18vw, 5.5rem);
  }

  .legacy-card {
    min-height: 300px;
    padding: 32px 24px;
  }

  .legacy-card h3 {
    font-size: 3.2rem;
  }

  .legacy-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .archive-note {
    margin-top: 42px;
  }

  .memory-form-card {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-date-block {
    min-height: 138px;
    padding: 25px 28px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 160, 113, 0.26);
    text-align: left;
  }

  .event-date-block span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .event-date-block strong {
    margin: 0;
    font-size: 5.3rem;
  }

  .event-date-block small {
    margin: 0;
  }

  .event-details {
    padding: 34px 24px 38px;
  }

  .event-details h3 {
    font-size: 3.2rem;
  }

  .event-details dl > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .event-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .event-actions .button {
    width: 100%;
  }

  .event-map-link {
    margin: 6px 0 0;
    text-align: center;
  }

  .candle-card {
    padding: 34px 26px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-actions {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.legal-request-form {
  margin: 1.75rem 0 2.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(205, 169, 118, 0.28);
  background: rgba(7, 21, 34, 0.48);
}
