/* ==========================================================================
   Prakriti & Mantas — December 13, 2026
   A turquoise-green peacock theme: deep teals, turquoise, emerald & gold.
   ========================================================================== */

/* ---------- design tokens ---------- */
:root {
  --teal-abyss: #031718;
  --teal-deepest: #041e20;
  --teal-deep: #06282b;
  --teal-900: #0a3538;
  --teal-700: #0e5a5e;
  --teal-600: #12716f;
  --teal-500: #17847f;
  --turq: #2cc4b4;
  --turq-soft: #8fd8cf;
  --emerald: #1a7a5e;
  --gold: #c9a13b;
  --gold-bright: #e6c968;
  --gold-deep: #9a7a24;
  --ivory: #f8f3e9;
  --ivory-2: #f3ecdd;
  --paper: #fffdf7;
  --ink: #1d3735;
  --ink-soft: #4c6663;

  --font-serif: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-script: 'Great Vibes', 'Snell Roundhand', 'Brush Script MT', cursive;
  --font-sans: 'Jost', 'Century Gothic', 'Avenir Next', system-ui, sans-serif;

  --shadow-soft: 0 30px 60px -35px rgba(6, 40, 43, 0.45);
  --shadow-deep: 0 40px 90px -40px rgba(2, 16, 17, 0.85);
  --line-gold: rgba(201, 161, 59, 0.38);
  --line-gold-soft: rgba(201, 161, 59, 0.2);

  --bg-teal: url('../assets/raster/bg-teal.webp');
  --bg-ivory: url('../assets/raster/bg-ivory.webp');
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; margin: 0 0 0.6em; color: inherit; }
p { margin: 0 0 1.1em; }
a { color: var(--teal-700); text-decoration-color: var(--line-gold); text-underline-offset: 3px; }
a:hover { color: var(--gold-deep); }
::selection { background: var(--gold-bright); color: var(--teal-deepest); }
:focus-visible { outline: 2px solid var(--turq); outline-offset: 3px; border-radius: 2px; }
button { font: inherit; cursor: pointer; }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 2000;
  background: var(--gold-bright); color: var(--teal-deepest);
  padding: 0.7rem 1.2rem; border-radius: 0 0 10px 10px;
  font-family: var(--font-sans); letter-spacing: 0.08em; text-decoration: none;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 0; }

/* ---------- password gate ---------- */
html.locked body { overflow: hidden; }
html.locked .site { visibility: hidden; }

.gate {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  transition: opacity 0.9s ease, transform 0.9s ease;
  overflow: hidden;
}
.gate__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 55% at 75% 12%, rgba(44, 196, 180, 0.14), transparent 62%),
    radial-gradient(55% 45% at 12% 88%, rgba(201, 161, 59, 0.12), transparent 60%),
    linear-gradient(168deg, rgba(6, 40, 43, 0.38) 0%, rgba(4, 30, 32, 0.55) 55%, rgba(3, 23, 24, 0.75) 100%),
    var(--bg-teal) center / cover no-repeat,
    var(--teal-deepest);
}
.gate__card {
  position: relative;
  width: min(620px, 100%);
  text-align: center;
  padding: clamp(2rem, 4.5vw, 3rem) clamp(1.6rem, 5vw, 3.4rem) clamp(1.9rem, 4vw, 2.7rem);
  background:
    linear-gradient(180deg, rgba(252, 248, 238, 0.55), rgba(248, 241, 227, 0.4)),
    var(--bg-ivory) center / cover no-repeat,
    #f6efdf;
  border: 1px solid rgba(154, 122, 36, 0.55);
  border-radius: 22px;
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.gate__card::after {
  content: ''; position: absolute; inset: 10px; pointer-events: none;
  border: 1px solid rgba(154, 122, 36, 0.35); border-radius: 14px;
}
.gate__corner {
  position: absolute; pointer-events: none; z-index: 1;
  width: clamp(84px, 21%, 132px); opacity: 0.9;
}
.gate__corner--tl { top: 16px; left: 16px; }
.gate__corner--tr { top: 16px; right: 16px; transform: scaleX(-1); }
.gate__corner--br { bottom: 16px; right: 16px; transform: scale(-1, -1); }
.gate__corner--bl { bottom: 16px; left: 16px; transform: scaleY(-1); }
.gate__arch {
  display: block; position: relative; z-index: 2;
  width: clamp(120px, 24vw, 152px); margin: 0 auto 0.7rem;
  -webkit-mask-image: linear-gradient(180deg, #000 72%, transparent 99%);
  mask-image: linear-gradient(180deg, #000 72%, transparent 99%);
}
.gate__eyebrow {
  position: relative; z-index: 2;
  font-family: var(--font-sans); font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 0.4rem;
}
.gate__names {
  position: relative; z-index: 2;
  font-family: var(--font-script); font-weight: 400;
  font-size: clamp(2.7rem, 8vw, 4rem);
  color: #22386e; margin: 0 0 0.35rem; line-height: 1.12;
}
.gate__date {
  position: relative; z-index: 2;
  font-family: var(--font-serif); font-style: italic; font-size: 1.12rem;
  color: var(--teal-700); margin: 0 0 1.3rem;
}
.gate__rule { position: relative; z-index: 2; display: flex; align-items: center; gap: 0.9rem; margin: 0 auto 1.4rem; max-width: 300px; }
.gate__rule span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(154, 122, 36, 0.6)); }
.gate__rule span:last-child { background: linear-gradient(270deg, transparent, rgba(154, 122, 36, 0.6)); }
.gate__rule i {
  width: 7px; height: 7px; background: var(--gold-deep);
  transform: rotate(45deg); border-radius: 1px;
}
.gate__form { position: relative; z-index: 2; }
.gate__label {
  display: block; font-size: 0.95rem; color: var(--ink-soft);
  margin-bottom: 0.9rem; letter-spacing: 0.04em;
}
.gate__row { display: flex; gap: 0.7rem; max-width: 420px; margin: 0 auto; }
.gate__input {
  flex: 1; min-width: 0;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(29, 55, 53, 0.28);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-sans); font-size: 1rem; letter-spacing: 0.08em;
  padding: 0.85rem 1.4rem; text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.gate__input::placeholder { color: rgba(76, 102, 99, 0.55); letter-spacing: 0.12em; }
.gate__input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 161, 59, 0.18);
  background: #fff;
}
.gate__btn {
  border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 999px;
  padding: 0.85rem 1.7rem;
  font-family: var(--font-sans); font-weight: 500; font-size: 0.86rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #241a04;
  background: linear-gradient(135deg, #ecd27e, var(--gold) 55%, #ad8526);
  box-shadow: 0 14px 30px -12px rgba(201, 161, 59, 0.6);
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}
.gate__btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.gate__error { min-height: 1.4em; margin: 0.9rem 0 0; font-size: 0.92rem; color: #a3492a; }
.gate__help { position: relative; z-index: 2; margin: 1.3rem 0 0; font-size: 0.85rem; color: var(--ink-soft); }
.gate__help a { color: var(--teal-700); }
/* ---- unlock: the pendant ripple ----
   Staged for smoothness: (1) the pendant flares while the form fades,
   (2) the ornate gate cross-fades into a flat teal veil (cheap layer),
   (3) an iris opens in the veil via an animated mask while gold rings
   ripple outward as pure transform/opacity animations. */
@property --gate-r {
  syntax: '<length>';
  initial-value: 0px;
  inherits: false;
}
.gate--flare .gate__form,
.gate--flare .gate__help,
.gate--flare .gate__rule,
.gate--flare .gate__error { opacity: 0; transition: opacity 0.3s ease; }
.gate--flare .gate__arch { animation: pendant-flare 0.62s ease; }
@keyframes pendant-flare {
  0% { filter: none; transform: none; }
  38% { filter: drop-shadow(0 0 24px rgba(230, 201, 104, 0.95)) brightness(1.45); transform: scale(1.05) rotate(2deg); }
  72% { filter: drop-shadow(0 0 12px rgba(230, 201, 104, 0.5)) brightness(1.15); transform: scale(1.02) rotate(-1.2deg); }
  100% { filter: none; transform: none; }
}
.gate--open {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gate-veil {
  position: fixed; inset: 0; z-index: 999;
  --gate-cx: 50%;
  --gate-cy: 38%;
  --gate-r: 0px;
  background: radial-gradient(120% 95% at 50% 30%, #0b3b3c, #041e20 72%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  will-change: opacity;
  -webkit-mask-image: radial-gradient(circle at var(--gate-cx) var(--gate-cy),
    transparent calc(var(--gate-r) - 5vmax), #000 var(--gate-r), #000 100%);
  mask-image: radial-gradient(circle at var(--gate-cx) var(--gate-cy),
    transparent calc(var(--gate-r) - 5vmax), #000 var(--gate-r), #000 100%);
}
.gate-veil--on { opacity: 1; }
.gate-veil--open {
  --gate-r: 100vmax;
  transition: opacity 0.3s ease, --gate-r 1.05s cubic-bezier(0.6, 0, 0.4, 1) 0.08s;
}
.gate-fx { position: fixed; inset: 0; z-index: 1001; pointer-events: none; }
.gate-fx__ring {
  position: absolute; border-radius: 50%;
  width: 190vmax; height: 190vmax;
  border: 5px solid rgba(230, 201, 104, 0.8);
  box-shadow: 0 0 34px rgba(230, 201, 104, 0.35);
  transform: translate(-50%, -50%) scale(0.04);
  opacity: 0;
  will-change: transform, opacity;
  animation: gate-ring 1.2s cubic-bezier(0.55, 0, 0.35, 1) forwards;
}
.gate-fx__ring--2 { animation-delay: 0.15s; border-width: 3px; }
@keyframes gate-ring {
  0% { transform: translate(-50%, -50%) scale(0.04); opacity: 0.95; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}
.gate-fx__spark {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f6e3a3, #c9a13b 65%, rgba(201, 161, 59, 0));
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform, opacity;
  animation: gate-spark 1.15s ease-out forwards;
}
@keyframes gate-spark {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, -40px))) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .gate--flare .gate__arch { animation: none; }
  .gate-veil { display: none; }
}
.gate__card--shake { animation: gate-shake 0.45s ease; }
@keyframes gate-shake {
  10%, 50%, 90% { transform: translateX(-9px); }
  30%, 70% { transform: translateX(9px); }
}

/* ---------- header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.15rem 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-header--scrolled {
  padding: 0.6rem 0;
  background: rgba(4, 30, 32, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(230, 201, 104, 0.16), 0 18px 40px -30px rgba(0, 0, 0, 0.7);
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav__logo {
  font-family: var(--font-script); font-size: 1.95rem; line-height: 1;
  color: var(--gold-bright); text-decoration: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  transition: color 0.25s;
}
.nav__logo:hover { color: var(--ivory); }
.nav__links { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2rem); margin-left: auto; }
.nav__links a:not(.btn) {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(248, 243, 233, 0.85); text-decoration: none;
  padding: 0.3rem 0.1rem; position: relative;
  transition: color 0.25s;
}
.nav__links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px;
  background: var(--gold-bright); transition: right 0.3s ease;
}
.nav__links a:not(.btn):hover { color: var(--gold-bright); }
.nav__links a:not(.btn):hover::after { right: 0; }
.nav__links a:not(.btn)[aria-current="page"] { color: var(--gold-bright); }
.nav__links a:not(.btn)[aria-current="page"]::after { right: 0; }
.nav .btn { padding: 0.62rem 1.5rem; font-size: 0.78rem; }

.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: 0; padding: 0.6rem;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--ivory);
  margin: 5.5px 0; border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem;
  background:
    radial-gradient(70% 55% at 80% 10%, rgba(44, 196, 180, 0.13), transparent 60%),
    linear-gradient(170deg, rgba(6, 40, 43, 0.72), rgba(3, 23, 24, 0.88)),
    var(--bg-teal) center / cover no-repeat,
    var(--teal-abyss);
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s;
}
.mobile-nav--open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-serif); font-size: 2rem; color: var(--ivory);
  text-decoration: none; padding: 0.55rem 1rem;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s;
}
.mobile-nav--open a { opacity: 1; transform: none; }
.mobile-nav a:nth-child(2) { transition-delay: 0.05s; }
.mobile-nav a:nth-child(3) { transition-delay: 0.1s; }
.mobile-nav a:nth-child(4) { transition-delay: 0.15s; }
.mobile-nav a:nth-child(5) { transition-delay: 0.2s; }
.mobile-nav a:nth-child(6) { transition-delay: 0.25s; }
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: var(--gold-bright); }
.mobile-nav .btn { font-family: var(--font-sans); font-size: 0.9rem; margin-top: 1.2rem; opacity: 0; transition-delay: 0.3s; }
.mobile-nav--open .btn { opacity: 1; transform: none; }
body.nav-locked { overflow: hidden; }

/* ---------- shared layout ---------- */
.container { width: min(1120px, 92vw); margin-inline: auto; }
.container--narrow { width: min(860px, 92vw); margin-inline: auto; }
.section { padding: clamp(4.2rem, 9vw, 7rem) 0; }
.sec--dark {
  background:
    linear-gradient(180deg, rgba(6, 40, 43, 0.35), rgba(4, 30, 32, 0.55)),
    var(--bg-teal) center / cover no-repeat,
    var(--teal-deepest);
  color: rgba(248, 243, 233, 0.9);
}
.sec--dark h2, .sec--dark h3 { color: var(--ivory); }
.sec--dark a { color: var(--turq-soft); }
.sec--dark a:hover { color: var(--gold-bright); }
/* The ivory wash lives on a viewport-fixed underlay so accordion/height
   changes never rescale it (background-size: cover tracks the element box). */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background: var(--bg-ivory) center / cover no-repeat, var(--ivory);
  pointer-events: none;
}
.sec--ivory { background: none; }
.sec--paper {
  background: linear-gradient(rgba(236, 226, 206, 0.5), rgba(236, 226, 206, 0.5));
}

.eyebrow {
  display: block;
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1rem;
}
.sec--dark .eyebrow { color: var(--gold-bright); }
.sec-head { text-align: center; margin-bottom: clamp(2.4rem, 6vw, 3.8rem); }
.sec-head h1, .sec-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.1rem); font-weight: 600; margin-bottom: 0.4em; }
.sec-head .lede { max-width: 640px; margin: 0 auto; color: var(--ink-soft); }
.sec--dark .sec-head .lede { color: rgba(248, 243, 233, 0.75); }

.flourish { display: block; width: min(260px, 62vw); margin: 1.3rem auto 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-sans); font-weight: 500; font-size: 0.88rem;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
  padding: 1rem 2.1rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn--gold {
  color: #241a04;
  background: linear-gradient(135deg, #ecd27e, var(--gold) 55%, #ad8526);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 34px -14px rgba(201, 161, 59, 0.65);
}
.btn--gold:hover { transform: translateY(-2px); filter: brightness(1.06); color: #241a04; }
.btn--ghost {
  color: var(--gold-bright); border-color: rgba(230, 201, 104, 0.55);
}
.btn--ghost:hover { background: rgba(230, 201, 104, 0.1); color: var(--gold-bright); transform: translateY(-2px); }
.btn--ghost-teal { color: var(--teal-700); border-color: rgba(14, 90, 94, 0.45); }
.btn--ghost-teal:hover { background: rgba(14, 90, 94, 0.07); color: var(--teal-700); transform: translateY(-2px); }

.text-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s, gap 0.25s;
}
.text-link:hover { color: var(--teal-700); border-color: var(--line-gold); gap: 0.7rem; }
.sec--dark .text-link { color: var(--gold-bright); }
.sec--dark .text-link:hover { color: var(--turq-soft); }

/* ---------- reveal animations (only when JS is on) ---------- */
html.js [data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.65, 0.25, 1), transform 0.8s cubic-bezier(0.2, 0.65, 0.25, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
html.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}

/* ---------- home hero ---------- */
.hero {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: 100svh;
  background:
    radial-gradient(65% 50% at 68% 8%, rgba(44, 196, 180, 0.14), transparent 60%),
    radial-gradient(45% 42% at 8% 90%, rgba(201, 161, 59, 0.11), transparent 60%),
    linear-gradient(165deg, rgba(6, 40, 43, 0.35) 0%, rgba(4, 30, 32, 0.55) 60%, rgba(3, 23, 24, 0.75) 100%),
    var(--bg-teal) center / cover no-repeat,
    var(--teal-deepest);
  color: var(--ivory);
  overflow: hidden;
}
.hero__content {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: clamp(7rem, 14vh, 9rem) clamp(1.6rem, 5vw, 4.6rem) clamp(4.5rem, 9vh, 6rem) clamp(1.6rem, 7vw, 6.5rem);
  position: relative; z-index: 2;
}
.hero__eyebrow {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-bright); margin: 0 0 1.6rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero__eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--line-gold); }
.hero__names {
  font-family: var(--font-script); font-weight: 400;
  font-size: clamp(3.4rem, 7.2vw, 5.9rem); line-height: 1.08;
  margin: 0 0 1rem; color: var(--ivory);
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
}
.hero__names em { font-style: normal; color: var(--gold-bright); }
.hero__sub {
  font-family: var(--font-serif); font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-style: italic;
  color: var(--turq-soft); margin: 0 0 2.1rem;
}
.hero__meta { margin: 0 0 2.6rem; }
.hero__meta-line {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-serif); font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: rgba(248, 243, 233, 0.92); margin-bottom: 0.35rem;
}
.hero__meta-line svg { width: 20px; height: 20px; color: var(--gold-bright); flex: none; }
.hero__meta-line small { font-family: var(--font-sans); font-size: 0.85em; color: rgba(248, 243, 233, 0.65); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__media { position: relative; z-index: 1; min-height: 480px; }
.hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 38%;
}
.hero__media::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, var(--teal-deepest) 0%, rgba(4, 30, 32, 0.4) 18%, transparent 42%),
    linear-gradient(0deg, rgba(4, 30, 32, 0.55) 0%, transparent 30%),
    linear-gradient(180deg, rgba(4, 30, 32, 0.42) 0%, transparent 26%);
}
.hero__media::after {
  content: ''; position: absolute; inset: 22px; z-index: 3; pointer-events: none;
  border: 1px solid rgba(230, 201, 104, 0.35); border-radius: 4px;
}
.hero__feather {
  position: absolute; z-index: 4; width: clamp(140px, 15vw, 205px);
  left: 0; bottom: 2vh; transform: translateX(-50%) rotate(3deg);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.5));
}
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 5;
  color: rgba(248, 243, 233, 0.55); display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; text-decoration: none;
}
.scroll-cue svg { width: 22px; height: 22px; animation: cue-bob 2.2s ease-in-out infinite; }
.scroll-cue:hover { color: var(--gold-bright); }
@keyframes cue-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ---------- info cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.6vw, 2rem); }
.info-card {
  background: var(--paper);
  border: 1px solid rgba(201, 161, 59, 0.28);
  border-radius: 18px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.info-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--turq), var(--gold-bright), var(--turq));
  opacity: 0.75;
}
.info-card:hover { transform: translateY(-5px); box-shadow: 0 36px 70px -34px rgba(6, 40, 43, 0.55); }
.info-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1.3rem;
  color: var(--teal-700);
  background: radial-gradient(circle at 30% 25%, rgba(44, 196, 180, 0.16), rgba(201, 161, 59, 0.12));
  border: 1px solid var(--line-gold);
}
.info-card__icon svg { width: 26px; height: 26px; }
.info-card h3 { font-size: 1.45rem; margin-bottom: 0.5rem; color: var(--teal-900); }
.info-card p { font-size: 0.96rem; color: var(--ink-soft); flex: 1; }
.info-card .text-link { margin-top: 0.6rem; }

/* ---------- story section ---------- */
.story { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.4rem, 6vw, 4.5rem); align-items: center; }
.story__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.9rem, 2vw, 1.4rem); }
.story__tiles figure {
  margin: 0; border-radius: 14px; overflow: hidden; position: relative;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(230, 201, 104, 0.25);
}
.story__tiles figure:nth-child(2) { transform: translateY(2.2rem); }
.story__tiles figure:nth-child(3) { grid-column: 1 / -1; width: 72%; margin: 0.4rem auto 0; transform: translateY(-0.6rem); }
.story__tiles img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; transition: transform 0.6s ease; }
.story__tiles figure:nth-child(3) img { aspect-ratio: 4 / 3.4; }
.story__tiles figure:hover img { transform: scale(1.045); }
.story__text .eyebrow { margin-bottom: 0.8rem; }
.story__text h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.story__script {
  font-family: var(--font-script); font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--turq-soft); display: block; margin: -0.3rem 0 1.1rem;
}
.story__text p { color: rgba(248, 243, 233, 0.82); max-width: 54ch; }

/* ---------- rsvp banner ---------- */
.rsvp-banner { text-align: center; }
.rsvp-banner__script {
  font-family: var(--font-script); font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--teal-700); display: block; margin-bottom: 0.6rem;
}
.rsvp-banner p { max-width: 560px; margin: 0 auto 1.8rem; color: var(--ink-soft); }

/* ---------- page hero (subpages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(8.5rem, 17vh, 11rem) 0 clamp(3.2rem, 7vh, 4.6rem);
  background:
    radial-gradient(60% 60% at 78% 0%, rgba(44, 196, 180, 0.13), transparent 60%),
    radial-gradient(40% 45% at 6% 100%, rgba(201, 161, 59, 0.1), transparent 55%),
    linear-gradient(170deg, rgba(6, 40, 43, 0.35), rgba(4, 30, 32, 0.55) 70%, rgba(3, 23, 24, 0.72)),
    var(--bg-teal) center / cover no-repeat,
    var(--teal-deepest);
  color: var(--ivory);
  text-align: center;
  border-bottom: 1px solid rgba(230, 201, 104, 0.16);
}
.page-hero .eyebrow { color: var(--gold-bright); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 3.9rem); margin-bottom: 0.25em; }
.page-hero__script {
  font-family: var(--font-script); font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--turq-soft); display: block; margin-top: 0.2rem;
}
.page-hero .flourish { margin-top: 1.6rem; }

/* ---------- schedule timeline ---------- */
.timeline { position: relative; max-width: 850px; margin: 0 auto; padding: 1rem 0 0.4rem; }
.timeline::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; transform: translateX(-0.5px);
  background: linear-gradient(180deg, transparent, var(--line-gold) 8%, var(--line-gold) 92%, transparent);
}
.timeline__item { position: relative; width: 50%; padding: 0 clamp(1.8rem, 4vw, 3rem) 2.6rem 0; }
.timeline__item:nth-child(even) { left: 50%; padding: 0 0 2.6rem clamp(1.8rem, 4vw, 3rem); }
.timeline__dot {
  position: absolute; top: 26px; right: -9px; z-index: 2;
  width: 17px; height: 17px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--turq), var(--teal-700) 70%);
  border: 2px solid var(--gold-bright);
  box-shadow: 0 0 0 5px rgba(230, 201, 104, 0.12), 0 0 18px rgba(44, 196, 180, 0.4);
}
.timeline__item:nth-child(even) .timeline__dot { right: auto; left: -8px; }
.t-card {
  background: var(--paper); border: 1px solid rgba(201, 161, 59, 0.26); border-radius: 16px;
  padding: 1.5rem 1.7rem 1.4rem; box-shadow: var(--shadow-soft);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.t-card:hover { transform: translateY(-4px); box-shadow: 0 34px 64px -34px rgba(6, 40, 43, 0.5); }
.t-card__top { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 0.55rem; }
.t-card__icon {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; color: var(--teal-700);
  background: radial-gradient(circle at 30% 25%, rgba(44, 196, 180, 0.18), rgba(201, 161, 59, 0.12));
  border: 1px solid var(--line-gold);
}
.t-card__icon svg { width: 22px; height: 22px; }
.t-card__icon img { width: 32px; height: auto; }
.t-card__time {
  font-family: var(--font-serif); font-style: italic; font-size: 1.06rem;
  color: var(--gold-deep); letter-spacing: 0.02em;
}
.t-card h3 { font-size: 1.4rem; margin: 0; color: var(--teal-900); }
.t-card p { margin: 0.4rem 0 0; font-size: 0.94rem; color: var(--ink-soft); }
.schedule-note {
  max-width: 780px; margin: 2.4rem auto 0;
  background: linear-gradient(180deg, rgba(23, 132, 127, 0.07), rgba(201, 161, 59, 0.06));
  border: 1px dashed rgba(201, 161, 59, 0.45); border-radius: 16px;
  padding: 1.6rem 1.9rem; text-align: center;
}
.schedule-note p { margin: 0 0 1rem; color: var(--ink-soft); font-size: 0.97rem; }
.schedule-note p:last-child { margin: 0; }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.5rem);
}
.gallery-item {
  position: relative; display: block; overflow: hidden; border-radius: 14px;
  border: 1px solid rgba(201, 161, 59, 0.25);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 4;
  background: var(--teal-900);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.6, 0.25, 1), filter 0.5s ease;
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 30, 32, 0.72));
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item .cap {
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: 0.95rem; z-index: 2;
  font-family: var(--font-serif); font-style: italic; font-size: 1.05rem;
  color: var(--ivory);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.055); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:hover .cap, .gallery-item:focus-visible .cap { opacity: 1; transform: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s ease;
  pointer-events: none;
}
.lightbox--open { opacity: 1; pointer-events: auto; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(3, 20, 21, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox__stage {
  position: relative; z-index: 2; margin: 0;
  max-width: min(1100px, 92vw); max-height: 86vh;
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
}
.lightbox__img {
  max-width: 100%; max-height: calc(86vh - 4rem);
  border-radius: 8px;
  box-shadow: 0 50px 120px -40px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(230, 201, 104, 0.25);
  opacity: 0; transform: scale(0.985);
}
.lightbox__img--in { opacity: 1; transform: none; transition: opacity 0.35s ease, transform 0.35s ease; }
.lightbox__caption {
  display: flex; align-items: baseline; gap: 1rem;
  color: rgba(248, 243, 233, 0.85);
}
.lightbox__text { font-family: var(--font-serif); font-style: italic; font-size: 1.12rem; }
.lightbox__count { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.22em; color: var(--gold-bright); }
.lightbox__btn {
  position: absolute; z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(248, 243, 233, 0.06);
  border: 1px solid rgba(248, 243, 233, 0.28);
  color: var(--ivory); font-size: 1.05rem; line-height: 1;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.lightbox__btn:hover { background: rgba(230, 201, 104, 0.18); border-color: var(--gold-bright); color: var(--gold-bright); transform: scale(1.06); }
.lightbox__btn--close { top: 1.2rem; right: 1.2rem; }
.lightbox__btn--prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__btn--prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__btn--next:hover { transform: translateY(-50%) scale(1.06); }

/* ---------- faq ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--paper); border: 1px solid rgba(201, 161, 59, 0.26);
  border-radius: 14px; margin-bottom: 0.9rem;
  box-shadow: 0 18px 40px -30px rgba(6, 40, 43, 0.4);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item[open] { border-color: rgba(201, 161, 59, 0.55); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-serif); font-size: 1.32rem; font-weight: 600; color: var(--teal-900);
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal-700); }
.faq-item summary .faq-q { flex: 1; }
.faq-mark {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-gold); color: var(--gold-deep);
  display: grid; place-items: center;
  transition: transform 0.35s ease, background 0.3s, color 0.3s;
}
.faq-mark svg { width: 14px; height: 14px; }
.faq-item[open] .faq-mark { transform: rotate(45deg); background: var(--gold-bright); color: var(--teal-deepest); border-color: var(--gold-bright); }
.faq-body { padding: 0 1.5rem 1.4rem 1.5rem; color: var(--ink-soft); font-size: 0.99rem; }
.faq-body p:last-child { margin-bottom: 0; }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .faq-item[open] .faq-body { animation: faq-in 0.4s ease; }
}

/* ---------- "coming soon" pill ---------- */
.soon {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); border: 1px dashed rgba(76, 102, 99, 0.45);
  padding: 0.85rem 1.7rem; border-radius: 999px;
  margin-top: 0.4rem;
}

/* ---------- rsvp page ---------- */
.rsvp-layout {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.4rem, 6vw, 4.5rem); align-items: start;
}
.rsvp-aside .eyebrow { margin-bottom: 0.7rem; }
.rsvp-aside h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.rsvp-aside__script {
  font-family: var(--font-script); font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--teal-500); display: block; margin: -0.2rem 0 1rem;
}
.rsvp-aside p { color: var(--ink-soft); max-width: 46ch; }
.rsvp-aside .deadline {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: linear-gradient(135deg, rgba(44, 196, 180, 0.1), rgba(201, 161, 59, 0.12));
  border: 1px solid var(--line-gold); border-radius: 12px;
  padding: 0.85rem 1.3rem; margin: 0.4rem 0 1.2rem;
  font-family: var(--font-serif); font-size: 1.12rem; color: var(--teal-900);
}
.rsvp-aside .deadline svg { width: 20px; height: 20px; color: var(--gold-deep); flex: none; }
.rsvp-card {
  background: var(--paper); border: 1px solid rgba(201, 161, 59, 0.3); border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.rsvp-card::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, var(--turq), var(--gold-bright), var(--turq));
  border-radius: 0 0 6px 6px; opacity: 0.8;
}
.field { margin-bottom: 1.35rem; }
.field__label {
  display: block; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 0.5rem;
}
.field__input, .field__select, .field__textarea {
  width: 100%;
  font-family: var(--font-sans); font-size: 1rem; color: var(--ink);
  background: #fff;
  border: 1px solid rgba(29, 55, 53, 0.22); border-radius: 12px;
  padding: 0.9rem 1.05rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field__textarea { resize: vertical; min-height: 96px; }
.field__input:focus, .field__select:focus, .field__textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 161, 59, 0.16);
}
.field__select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%239a7a24' stroke-width='1.8' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: right 1.05rem center;
  padding-right: 2.6rem;
}
.pill-group { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.pill { position: relative; }
.pill input { position: absolute; opacity: 0; inset: 0; pointer-events: none; }
.pill span {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.8rem 1.5rem; border-radius: 999px; cursor: pointer;
  font-size: 0.92rem; letter-spacing: 0.05em; color: var(--ink-soft);
  border: 1px solid rgba(29, 55, 53, 0.25); background: #fff;
  transition: all 0.25s ease;
}
.pill span::before {
  content: ''; width: 9px; height: 9px; border-radius: 50%;
  border: 1.5px solid rgba(29, 55, 53, 0.35);
  transition: all 0.25s ease;
}
.pill:hover span { border-color: var(--gold); }
.pill input:checked + span {
  background: linear-gradient(135deg, #ecd27e, var(--gold) 60%, #b98f2e);
  border-color: rgba(255, 255, 255, 0.4); color: #241a04;
  box-shadow: 0 12px 26px -12px rgba(201, 161, 59, 0.6);
}
.pill input:checked + span::before { background: var(--teal-deep); border-color: var(--teal-deep); }
.pill input:focus-visible + span { outline: 2px solid var(--turq); outline-offset: 3px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-error {
  background: rgba(196, 90, 56, 0.08); border: 1px solid rgba(196, 90, 56, 0.35);
  color: #8c3f22; border-radius: 12px; padding: 0.85rem 1.1rem;
  font-size: 0.94rem; margin-bottom: 1.2rem;
}
.form-error a { color: #8c3f22; font-weight: 500; }
.rsvp-submit { width: 100%; position: relative; }
.rsvp-submit.is-loading { color: transparent; pointer-events: none; }
.rsvp-submit.is-loading::after {
  content: ''; position: absolute; width: 20px; height: 20px;
  top: calc(50% - 10px); left: calc(50% - 10px);
  border-radius: 50%; border: 2.5px solid rgba(36, 26, 4, 0.25); border-top-color: #241a04;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.rsvp-fineprint { margin: 1rem 0 0; font-size: 0.84rem; color: var(--ink-soft); text-align: center; }
.rsvp-success {
  background: var(--paper); border: 1px solid rgba(201, 161, 59, 0.35); border-radius: 22px;
  box-shadow: var(--shadow-soft);
  text-align: center; padding: clamp(2.4rem, 5vw, 3.6rem);
}
.rsvp-success__script { font-family: var(--font-script); font-size: clamp(2.6rem, 6vw, 3.6rem); color: var(--teal-500); display: block; margin-bottom: 0.4rem; }
.rsvp-success p { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }
.success-feather { width: 132px; margin: 0 auto 0.8rem; display: block; }

/* ---------- footer ---------- */
.site-footer {
  background:
    linear-gradient(180deg, rgba(4, 30, 32, 0.55), rgba(3, 23, 24, 0.78)),
    var(--bg-teal) center / cover no-repeat,
    var(--teal-abyss);
  color: rgba(248, 243, 233, 0.75);
  text-align: center;
  padding: clamp(3.4rem, 7vw, 5rem) 0 2.2rem;
  border-top: 1px solid rgba(230, 201, 104, 0.14);
}
.site-footer__names { font-family: var(--font-script); font-size: 2.5rem; color: var(--gold-bright); margin: 0.8rem 0 0.3rem; }
.site-footer__date {
  font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(248, 243, 233, 0.6); margin-bottom: 1.6rem;
}
.site-footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; margin-bottom: 1.8rem; }
.site-footer__nav a {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(248, 243, 233, 0.7); text-decoration: none;
}
.site-footer__nav a:hover { color: var(--gold-bright); }
.site-footer__contact { font-size: 0.92rem; margin-bottom: 2rem; }
.site-footer__contact a { color: var(--turq-soft); }
.site-footer__fine {
  border-top: 1px solid rgba(248, 243, 233, 0.1); padding-top: 1.6rem;
  font-size: 0.8rem; color: rgba(248, 243, 233, 0.4);
}
.footer-feather { width: 74px; margin: 0 auto; opacity: 0.95; }
.banner-peacocks {
  display: block; width: min(430px, 76vw); margin: 0 auto 1.2rem;
  filter: drop-shadow(0 18px 32px rgba(6, 40, 43, 0.28));
}

/* ---------- responsive ---------- */
@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr 0.85fr; }
}
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav-toggle { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding-top: clamp(7.5rem, 16vh, 9rem); align-items: center; text-align: center; }
  .hero__eyebrow::before { display: none; }
  .hero__meta-line { justify-content: center; }
  .hero__cta { justify-content: center; }
  .hero__media { min-height: 0; height: min(88vw, 560px); margin: 0 clamp(1.2rem, 5vw, 3rem) 3.4rem; }
  .hero__media img { position: absolute; }
  .hero__media { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-deep); }
  .hero__media::before { background: linear-gradient(0deg, rgba(4, 30, 32, 0.35), transparent 40%); }
  .hero__feather { display: none; }
  .scroll-cue { display: none; }
  .cards { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .story { grid-template-columns: 1fr; }
  .story__text { text-align: center; }
  .story__text p { margin-inline: auto; }
  .story__tiles { max-width: 560px; margin-inline: auto; }
  .rsvp-layout { grid-template-columns: 1fr; }
  .rsvp-aside { text-align: center; }
  .rsvp-aside p { margin-inline: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 20px; }
  .timeline__item, .timeline__item:nth-child(even) {
    width: 100%; left: 0; padding: 0 0 2rem 54px;
  }
  .timeline__dot, .timeline__item:nth-child(even) .timeline__dot { left: 12px; right: auto; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gate__row { flex-direction: column; }
  .gate__btn { width: 100%; }
  .gate__corner { width: 74px; }
  .gate__corner--bl, .gate__corner--br { display: none; }
  .gate__arch { width: 106px; }
  .form-row { grid-template-columns: 1fr; }
  .lightbox__btn--prev { left: 0.5rem; }
  .lightbox__btn--next { right: 0.5rem; }
  .lightbox__btn { width: 42px; height: 42px; }
}
