@import url('https://fonts.googleapis.com/css2?family=Zen+Antique&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

/* ==========================================================================
   Lisa & Ezra — July 24, 2027
   Design tokens transcribed from the Claude Design system
   "lisa-ezra-design-system-3645045a". Component styles below reproduce the
   React components (Button, Card, Seal, PhotoFrame, ...) as plain CSS so the
   site ships as static HTML with no build step and no runtime framework.
   ========================================================================== */

/* --- Tokens: colour ------------------------------------------------------ */
:root {
  /* Base palette */
  --le-gold: #D39B44;
  --le-plum: #512F3D;
  --le-cream: #E4DCCE;
  --le-sage: #889E79;
  --le-sand: #E4D2AF;

  /* Derived tints & shades */
  --le-plum-ink: #3C222E;
  --le-plum-mid: #6E4356;
  --le-plum-soft: #B99AA6;
  --le-gold-deep: #B27C2B;
  --le-gold-soft: #E4BE83;
  --le-gold-wash: #EFDDBC;
  --le-sage-deep: #66805A;
  --le-sage-soft: #B4C2A8;
  --le-sage-wash: #DDE3D2;
  --le-paper-bright: #F0EADF;
  --le-paper-white: #F4EFE6;

  /* Semantic aliases */
  --surface-page: var(--le-cream);
  --surface-card: var(--le-paper-white);
  --surface-band: var(--le-sand);
  --surface-ink: var(--le-plum);
  --text-body: var(--le-plum-ink);
  --text-muted: #897174;
  --text-on-ink: var(--le-cream);
  --text-on-accent: var(--le-plum-ink);
  --accent: var(--le-gold);
  --accent-strong: var(--le-gold-deep);
  --accent-quiet: var(--le-sage);
  --border-soft: rgba(81, 47, 61, .18);
  --border-strong: rgba(81, 47, 61, .45);
  --focus-ring: var(--le-gold-deep);
  --link: var(--le-plum-mid);
  --link-hover: var(--le-gold-deep);
}

/* color-mix reproduces the design system's exact oklab blends where supported. */
@supports (color: color-mix(in oklab, red 50%, blue)) {
  :root {
    --text-muted: color-mix(in oklab, var(--le-plum) 62%, var(--le-cream));
  }
}

/* --- Tokens: type -------------------------------------------------------- */
:root {
  --font-display: 'Zen Antique', Georgia, 'Times New Roman', serif;
  --font-body: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', system-ui, sans-serif;

  --text-display-1: clamp(52px, 7vw, 92px);
  --text-display-2: clamp(36px, 4.5vw, 56px);
  --text-title: clamp(26px, 3vw, 34px);
  --text-subtitle: 22px;
  --text-body-size: 17px;
  --text-small: 14px;
  --text-eyebrow: 13px;

  --leading-display: 1.08;
  --leading-title: 1.25;
  --leading-body: 1.75;

  --tracking-display: .01em;
  --tracking-eyebrow: .28em;
  --tracking-caps: .12em;
}

/* --- Tokens: space, shape, motion ---------------------------------------- */
:root {
  --space-1: 4px;  --space-2: 8px;   --space-3: 12px; --space-4: 16px; --space-5: 24px;
  --space-6: 32px; --space-7: 48px;  --space-8: 64px; --space-9: 96px; --space-10: 128px;

  --radius-xs: 10px; --radius-sm: 14px; --radius-md: 18px;
  --radius-lg: 28px; --radius-xl: 40px; --radius-full: 999px;

  --shadow-lift: 0 1px 0 rgba(81, 47, 61, .06), 0 14px 28px -14px rgba(81, 47, 61, .28);
  --shadow-card: 0 1px 0 rgba(81, 47, 61, .05), 0 10px 22px -12px rgba(81, 47, 61, .22);
  --offset-gold: 4px 4px 0 var(--le-gold-soft);
  --offset-sage: 4px 4px 0 var(--le-sage-soft);
  --offset-plum: 4px 4px 0 var(--le-plum-soft);

  --ease-print: cubic-bezier(.33, 0, .2, 1);
  --time-quick: 160ms;
  --time-gentle: 320ms;

  --page-max: 1120px;
  --gutter: 40px;
}

/* --- Base ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  line-height: var(--leading-body);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--leading-title);
  margin: 0;
}

p { margin: 0; }

a {
  color: var(--link);
  text-decoration-color: rgba(110, 67, 86, .4);
  text-underline-offset: 3px;
  transition: color var(--time-quick) var(--ease-print);
}
a:hover { color: var(--link-hover); }

::selection { background: var(--le-gold-soft); color: var(--le-plum-ink); }

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.le-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--le-plum);
  color: var(--le-cream);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 100;
  font-weight: 700;
}
.le-skip-link:focus { left: 0; color: var(--le-cream); }

.le-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --- Layout: Section ----------------------------------------------------- */
.le-section { padding: 72px var(--gutter); }
.le-section > .le-inner { max-width: var(--page-max); margin: 0 auto; }
.le-section--band { background: var(--surface-band); }
.le-section--round { border-radius: var(--radius-xl); }
.le-section--tight { padding: 64px var(--gutter); }
.le-section--center { text-align: center; }

/* --- Nav ----------------------------------------------------------------- */
.le-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px var(--gutter);
  max-width: 1160px;
  margin: 0 auto;
}

.le-nav__home { display: inline-flex; text-decoration: none; flex-shrink: 0; }

.le-nav__links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.le-nav__link {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--le-plum-mid);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.le-nav__link[aria-current='page'] { font-weight: 700; color: var(--le-plum); }
.le-nav__link[aria-current='page']::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--le-gold);
}

.le-nav__toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 2px solid var(--le-plum);
  border-radius: var(--radius-full);
  color: var(--le-plum);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  cursor: pointer;
  align-items: center;
  gap: 8px;
}
.le-nav__toggle-bars { display: inline-flex; flex-direction: column; gap: 3px; }
.le-nav__toggle-bars span {
  display: block;
  width: 16px; height: 2px;
  border-radius: 1px;
  background: currentColor;
}

/* --- Footer -------------------------------------------------------------- */
.le-footer {
  background: var(--le-plum) url('../pattern-vine.svg');
  background-size: 130px;
  margin-top: 96px;
}
.le-footer__veil {
  background: linear-gradient(rgba(60, 34, 46, .55), rgba(60, 34, 46, .55));
  padding: 56px var(--gutter);
}
.le-footer__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.le-footer__name { font-family: var(--font-display); font-size: 26px; color: var(--le-cream); }
.le-footer__meta { color: var(--le-gold-soft); font-size: 14px; margin-top: 4px; }
.le-footer__cta {
  color: var(--le-cream);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--le-gold);
}
.le-footer__cta:hover { color: var(--le-gold-soft); }
.le-footer__colophon {
  max-width: var(--page-max);
  margin: 28px auto 0;
  font-size: 13px;
  color: rgba(228, 220, 206, .6);
}

/* --- Seal ---------------------------------------------------------------- */
.le-seal { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; }
.le-seal__mark {
  width: var(--seal-size, 96px);
  height: var(--seal-size, 96px);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: calc(var(--seal-size, 96px) * .4);
  line-height: 1;
  background: var(--le-plum);
  color: var(--le-cream);
  border: none;
}
.le-seal--round .le-seal__mark { border-radius: var(--radius-full); }
.le-seal--outline .le-seal__mark {
  background: transparent; color: var(--le-plum); border: 2.5px solid var(--le-plum);
}
.le-seal--gold .le-seal__mark { background: var(--le-gold); color: var(--le-plum-ink); }
.le-seal--cream .le-seal__mark { background: var(--le-cream); color: var(--le-plum); }
.le-seal__caption {
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Button -------------------------------------------------------------- */
.le-btn {
  font-family: var(--font-body);
  font-weight: 500;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all var(--time-quick) var(--ease-print);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  line-height: 1.2;
  padding: 12px 26px;
  font-size: 15px;
  background: var(--le-plum);
  color: var(--le-cream);
}
.le-btn--sm { padding: 8px 18px; font-size: 14px; }
.le-btn--lg { padding: 16px 34px; font-size: 17px; }

.le-btn--primary:hover {
  background: var(--le-plum-ink);
  color: var(--le-cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}
.le-btn--accent { background: var(--le-gold); color: var(--le-plum-ink); }
.le-btn--accent:hover {
  background: var(--le-gold-deep);
  color: var(--le-plum-ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}
.le-btn--secondary {
  background: transparent;
  color: var(--le-plum);
  box-shadow: inset 0 0 0 2px var(--le-plum);
}
.le-btn--secondary:hover {
  background: rgba(81, 47, 61, .08);
  color: var(--le-plum);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 2px var(--le-plum);
}
.le-btn--ghost {
  background: transparent;
  color: var(--le-plum-mid);
  text-decoration: underline;
  text-decoration-color: rgba(110, 67, 86, .4);
  text-underline-offset: 3px;
}
.le-btn--ghost:hover { color: var(--le-gold-deep); }

.le-btn:active { transform: translateY(1px); box-shadow: none; }
.le-btn:disabled, .le-btn[aria-disabled='true'] { opacity: .45; cursor: not-allowed; transform: none; }

/* --- Card ---------------------------------------------------------------- */
.le-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
  background: var(--surface-card);
  color: var(--text-body);
  border: 1px solid var(--border-soft);
}
.le-card--sand { background: var(--surface-band); border: none; }
.le-card--ink { background: var(--le-plum); color: var(--le-cream); border: none; }
.le-card--gold { background: var(--le-gold); color: var(--le-plum-ink); border: none; }
.le-card--pad-7 { padding: var(--space-7); }
.le-card--offset-gold { box-shadow: var(--offset-gold); }
.le-card--offset-sage { box-shadow: var(--offset-sage); }
.le-card--offset-plum { box-shadow: var(--offset-plum); }

/* --- Burst & OrnamentDivider --------------------------------------------- */
.le-burst {
  display: inline-block;
  width: var(--burst-size, 48px);
  height: var(--burst-size, 48px);
  background-color: var(--burst-color, var(--le-sage));
  -webkit-mask: url('../burst.svg') center / contain no-repeat;
  mask: url('../burst.svg') center / contain no-repeat;
  flex-shrink: 0;
}

.le-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 260px;
  max-width: 100%;
  margin: 18px 0 0;
}
.le-ornament::before, .le-ornament::after {
  content: '';
  flex: 1;
  height: 2px;
  border-radius: 1px;
  background: var(--le-plum-mid);
  opacity: .7;
}
.le-ornament__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--le-gold);
  flex-shrink: 0;
}
.le-ornament--center { margin: 18px auto 0; }
.le-ornament--cream::before, .le-ornament--cream::after { background: var(--le-cream); }
.le-ornament--cream .le-ornament__dot { background: var(--le-gold-soft); }
.le-ornament--cream .le-burst { --burst-color: var(--le-sage-soft); }

/* --- SectionHeader ------------------------------------------------------- */
.le-header__eyebrow {
  font-size: var(--text-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--le-gold-deep);
  margin-bottom: 10px;
}
.le-header__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-display-2);
  line-height: var(--leading-display);
  color: var(--le-plum);
  margin: 0;
}
.le-header__lede {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 14px 0 0;
}
.le-header--center { text-align: center; }
.le-header--center .le-header__lede { margin-left: auto; margin-right: auto; }

/* --- RibbonBanner -------------------------------------------------------- */
.le-ribbon {
  display: inline-block;
  border-radius: var(--radius-sm);
  padding: 12px 30px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  background: var(--le-paper-white);
  color: var(--le-plum);
  border: 2px solid var(--le-plum);
  transform: rotate(-2.5deg);
  box-shadow: var(--offset-gold);
}
.le-ribbon--gold {
  background: var(--le-gold);
  color: var(--le-plum-ink);
  border-color: var(--le-gold-deep);
  transform: rotate(1.5deg);
  box-shadow: var(--offset-plum);
}
.le-ribbon--ink {
  background: var(--le-plum);
  color: var(--le-cream);
  border-color: var(--le-plum);
}

/* --- Tag ----------------------------------------------------------------- */
.le-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--le-gold);
  background: var(--le-gold-wash);
  color: var(--le-gold-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-family: var(--font-body);
}
.le-tag--sage {
  background: var(--le-sage-wash); color: var(--le-sage-deep); border-color: var(--le-sage);
}
.le-tag--plum {
  background: #D5CBC0; color: var(--le-plum); border-color: var(--le-plum-soft);
}
.le-tag--ink {
  background: var(--le-plum); color: var(--le-cream); border-color: var(--le-plum);
}
.le-tag__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

@supports (color: color-mix(in oklab, red 50%, blue)) {
  .le-tag--plum { background: color-mix(in oklab, var(--le-plum) 10%, var(--le-cream)); }
}

/* --- PhotoFrame ---------------------------------------------------------- */
.le-photo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0;
  max-width: 100%;
  /* Pages set --photo-w-set to the design's intended width; the min() keeps a
     wide frame from overflowing a phone without needing a media query, and the
     arch/circle radii below stay correct because they derive from --photo-w. */
  --photo-w: min(var(--photo-w-set, 200px), calc(100vw - 2 * var(--gutter) - 16px));
}
.le-photo__mat {
  width: var(--photo-w, 200px);
  padding: 10px;
  background: var(--le-paper-white);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  max-width: 100%;
}
.le-photo__crop {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--le-gold-wash);
}
.le-photo__crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Most of these photographs are portrait; the circle and rounded frames crop
     hard. --photo-pos steers which part of the frame survives the crop. */
  object-position: var(--photo-pos, center);
}

.le-photo--circle .le-photo__mat { border-radius: 50%; }
.le-photo--circle .le-photo__crop { border-radius: 50%; aspect-ratio: 1 / 1; }

.le-photo--arch .le-photo__mat {
  border-radius: calc(var(--photo-w, 200px) / 2 + 10px) calc(var(--photo-w, 200px) / 2 + 10px) 28px 28px;
}
.le-photo--arch .le-photo__crop {
  border-radius: calc(var(--photo-w, 200px) / 2) calc(var(--photo-w, 200px) / 2) 18px 18px;
  aspect-ratio: 3 / 4;
}

.le-photo__caption { font-size: 14px; color: var(--text-muted); text-align: center; }

/* --- TimelineItem -------------------------------------------------------- */
.le-timeline { max-width: 640px; margin: 48px auto 0; list-style: none; padding: 0; }
.le-tl {
  display: grid;
  grid-template-columns: 92px 28px 1fr;
  gap: 0 14px;
  align-items: start;
}
.le-tl__time {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--le-gold-deep);
  text-align: right;
  line-height: 1.4;
  padding-top: 2px;
}
.le-tl__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}
.le-tl__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--le-gold);
  border: 2.5px solid var(--le-plum);
  flex-shrink: 0;
  margin-top: 7px;
}
.le-tl--sage .le-tl__dot { background: var(--le-sage); }
.le-tl__line {
  width: 2px;
  flex: 1;
  background: var(--border-strong);
  border-radius: 1px;
  margin-top: 4px;
}
.le-tl__body { padding-bottom: 26px; }
.le-tl--last .le-tl__body { padding-bottom: 0; }
.le-tl__title { font-weight: 700; font-size: 17px; color: var(--text-body); }
.le-tl__note { color: var(--text-muted); font-size: 15px; margin-top: 4px; line-height: 1.6; }

/* --- Accordion ----------------------------------------------------------- */
.le-acc {
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.le-acc__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-body);
  text-align: left;
}
.le-acc__sign {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--le-gold-wash);
  color: var(--le-gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: all var(--time-quick) var(--ease-print);
  font-weight: 400;
}
.le-acc__q[aria-expanded='true'] .le-acc__sign {
  background: var(--le-plum);
  color: var(--le-cream);
  transform: rotate(45deg);
}
.le-acc__a {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.le-acc__a[hidden] { display: none; }

/* --- Forms --------------------------------------------------------------- */
.le-field { display: block; }
.le-field__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--le-plum);
  margin-bottom: 8px;
}
.le-input {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
  background: var(--le-paper-white);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  outline: none;
  transition: border-color var(--time-quick) var(--ease-print),
              box-shadow var(--time-quick) var(--ease-print);
}
.le-input:focus {
  border-color: var(--le-gold-deep);
  box-shadow: 0 0 0 3px var(--le-gold-wash);
}
textarea.le-input { resize: vertical; line-height: 1.6; }
.le-field__hint {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}
.le-field__error {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #A33A3A;
  margin-top: 6px;
}
.le-input[aria-invalid='true'] { border-color: #A33A3A; }

.le-radio {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-body);
  position: relative;
}
.le-radio input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.le-radio__box {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--le-plum);
  background: var(--le-paper-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.le-radio__box::after {
  content: '';
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--le-gold);
  transform: scale(0);
  transition: transform var(--time-quick) var(--ease-print);
}
.le-radio input:checked + .le-radio__box::after { transform: scale(1); }
.le-radio input:focus-visible + .le-radio__box {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.le-fieldset { border: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.le-fieldset__legend {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--le-plum);
  padding: 0;
}

/* Honeypot — never visible, never announced, but not display:none
   (some bots skip display:none fields). */
.le-hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* --- Page: Home ---------------------------------------------------------- */
.le-hero {
  position: relative;
  overflow: hidden;
  background: var(--le-paper-bright);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.le-hero__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 84px var(--gutter) 300px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.le-hero__eyebrow {
  font-size: var(--text-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--le-gold-deep);
}
.le-hero__names {
  font-family: var(--font-display);
  font-size: var(--text-display-1);
  line-height: var(--leading-display);
  color: var(--le-plum);
  margin: 18px 0 0;
}
.le-hero__lede { font-size: 19px; color: var(--text-muted); margin: 18px 0 26px; }
.le-hero__actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.le-hero__range {
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: bottom;
}

.le-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.le-tags { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.le-photo-pair {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.le-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.le-trio--center { text-align: center; }
.le-trio .le-card { display: flex; flex-direction: column; }
/* Cards are flex columns so "More →" can sit on the baseline; that makes
   inline-level children stretch, so pin their alignment explicitly. */
.le-trio .le-burst, .le-trio .le-tag { align-self: flex-start; }
.le-trio--center .le-burst, .le-trio--center .le-tag { align-self: center; }
.le-trio h3 { font-size: 24px; color: var(--le-plum); margin: 12px 0 8px; }
.le-trio p { color: var(--text-muted); font-size: 15px; margin: 0 0 16px; }
.le-trio .le-btn--ghost { margin-top: auto; align-self: center; }

.le-card h3 { font-size: 22px; color: var(--le-plum); margin: 14px 0 6px; }
.le-card p { color: var(--text-muted); font-size: 15px; margin: 0; }

/* --- Page: Gallery ------------------------------------------------------- */
.le-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 34px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 56px;
}

/* --- Page: RSVP ---------------------------------------------------------- */
.le-rsvp-wrap { max-width: 560px; margin: 44px auto 0; }
.le-rsvp-form { display: grid; gap: 22px; }
.le-guest-row { display: flex; gap: 10px; align-items: center; }
.le-guest-row > .le-field { flex: 1; }
.le-guest-remove {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--le-plum-mid);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  padding: 8px;
  border-radius: var(--radius-full);
}
.le-guest-remove:hover { color: var(--le-gold-deep); background: rgba(81, 47, 61, .06); }
.le-guest-stack { display: grid; gap: 12px; }
.le-rsvp-ok { text-align: center; }
.le-rsvp-ok h3 { font-size: 28px; color: var(--le-plum); margin: 18px 0 8px; }
.le-rsvp-ok p { color: var(--text-muted); margin: 0; }
.le-form-error {
  background: #F6E3E3;
  border: 1.5px solid #A33A3A;
  color: #7C2A2A;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 15px;
}
.le-btn.is-busy { opacity: .7; pointer-events: none; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1000px) {
  :root { --gutter: 28px; }
  .le-split { grid-template-columns: 1fr; gap: 40px; }
  .le-trio { grid-template-columns: 1fr; }
  .le-section { padding: 56px var(--gutter); }
  .le-hero__inner { padding: 64px var(--gutter) 220px; }
  .le-hero__range { height: 200px; }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; }

  .le-nav { flex-wrap: wrap; gap: 12px; padding: 14px var(--gutter); }
  .le-nav__toggle { display: inline-flex; }
  .le-nav__links {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    gap: 4px;
    justify-content: flex-start;
    padding: 8px 0 4px;
    border-top: 1px solid var(--border-soft);
    margin-top: 4px;
  }
  .le-nav__links.is-open { display: flex; }
  .le-nav__link { padding: 10px 4px; font-size: 16px; }
  .le-nav > .le-btn { order: 2; }

  .le-footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .le-footer__veil { padding: 40px var(--gutter); }

  .le-section { padding: 48px var(--gutter); }
  .le-section--round { border-radius: var(--radius-lg); }

  .le-hero__inner { padding: 48px var(--gutter) 150px; }
  .le-hero__range { height: 140px; }
  .le-hero__lede { font-size: 17px; }
  .le-hero__actions .le-btn { flex: 1 1 auto; }

  .le-tl { grid-template-columns: 72px 24px 1fr; gap: 0 10px; }
  .le-tl__time { font-size: 17px; }

  .le-gallery { gap: 28px 20px; }
  /* Stagger offsets and rotations fight legibility on narrow screens. */
  .le-gallery .le-photo,
  .le-photo-pair .le-photo { margin-top: 0 !important; transform: none !important; }

  .le-card--pad-7 { padding: var(--space-6); }
  .le-ribbon { font-size: 18px; padding: 10px 22px; }
}

@media (max-width: 420px) {
  .le-tl { grid-template-columns: 1fr; gap: 0; }
  .le-tl__time { text-align: left; margin-bottom: 2px; }
  .le-tl__rail { display: none; }
  .le-tl__body {
    padding-bottom: 22px;
    border-left: 2px solid var(--border-strong);
    padding-left: 14px;
    margin-left: 2px;
  }
  .le-tl--last .le-tl__body { border-left-color: transparent; }
  .le-hero__actions { flex-direction: column; }
}

/* --- Motion & print ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .le-ribbon, .le-photo { transform: none !important; }
}

@media print {
  .le-nav, .le-footer, .le-btn, .le-hero__range { display: none !important; }
  body { background: #fff; }
  .le-section { padding: 24px 0; }
}
