/* ============================================================
   Lee-Anne & Tiaan — 24 July 2027
   Het Dikke Torentje, Eemnes
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --paper:        #F7F3EA;
  --paper-2:      #EFE9DB;
  --paper-3:      #E6DECC;
  --olive-deep:   #3C4133;
  --olive:        #5E6549;
  --sage:         #8A8B6C;
  --ink:          #2F3128;
  --body:         #5A5C4E;
  --muted:        #85846F;
  --gold:         #B08D4F;
  --gold-soft:    #C9AF7E;
  --line:         #D8D0BC;

  /* Light beige for type on the olive sections (was a greenish grey). */
  --dark-beige:     #D6CDB6;
  --dark-beige-dim: #A79E8A;

  /* Gold leaf. The stops repeat near-identical values on purpose: beaten gold
     has hard facet edges and burnished creases, and a smooth ramp just looks
     like an airbrushed peach. Same stops as the SVG gradients in index.html —
     change both together. */
  --gold-leaf: linear-gradient(115deg,
    #7A5B24 0%,  #B08D4F 7%,  #EFDFA9 14%, #E7D296 17%,
    #C0A056 26%, #8B6A2C 34%, #9A7734 38%, #E0C888 47%,
    #F6EBC4 55%, #DCC584 59%, #A98436 68%, #8A6829 76%,
    #C7A85E 82%, #F2E3B0 90%, #BE9A4C 96%, #8A6A2F 100%);

  --serif:  'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --script: 'Tangerine', 'Snell Roundhand', 'Apple Chancery', 'Gabriola',
            'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', 'Avenir Next', 'Segoe UI', system-ui, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 4rem);
  --measure: 34rem;
  --section-y: clamp(5rem, 12vw, 9.5rem);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--serif);
  font-size: clamp(1rem, .96rem + .25vw, 1.125rem);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  /* faint paper grain */
  background-image:
    radial-gradient(rgba(120,110,85,.035) 1px, transparent 1px),
    radial-gradient(rgba(120,110,85,.025) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 2px 3px;
}

img, svg { max-width: 100%; display: block; }
/* width/height attributes are presentational hints that beat aspect-ratio —
   neutralise the height so our own ratios win while the attributes still
   reserve space and prevent layout shift. */
img { height: auto; }
[hidden] { display: none !important; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--gold-soft); color: var(--olive-deep); }

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

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

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  background: var(--olive-deep); color: var(--paper);
  padding: .7rem 1.4rem; z-index: 200; font-family: var(--sans);
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* Gold-leaf fills. `.gilded` gilds text; `.gilt-edge` draws a gilded rim that
   follows border-radius (border-image cannot do rounded corners). */
.gilded {
  background-image: var(--gold-leaf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .gilded { color: var(--gold); -webkit-text-fill-color: var(--gold); }
}

.gilt-edge { position: relative; }
.gilt-edge::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  padding: var(--gilt-w, 2px);
  background-image: var(--gold-leaf);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
}

/* ---------- 3. Typography primitives ---------- */
h1, h2, h3 { font-weight: 300; color: var(--ink); margin: 0; line-height: 1.1; }

.eyebrow {
  font-family: var(--sans);
  font-size: clamp(.62rem, .58rem + .18vw, .74rem);
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.script { font-family: var(--script); font-weight: 700; line-height: .9; color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 300;
}

.lede { max-width: var(--measure); margin-inline: auto; }

/* ---------- 4. Layout ---------- */
.section {
  padding-block: var(--section-y);
  padding-inline: var(--gutter);
  position: relative;
}
.wrap { max-width: 68rem; margin-inline: auto; }
.wrap--narrow { max-width: 46rem; }
.center { text-align: center; }

.section--dark {
  background: var(--olive-deep);
  color: var(--dark-beige);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #F2EDDF; }
.section--dark .eyebrow { color: var(--dark-beige-dim); }
.section--tint { background: var(--paper-2); }

/* Section header block */
.section-head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head .section-title + p { margin-top: 1.4rem; }

/* ---------- 5. Ornaments ---------- *
   Six assets, all in Assets/, one per section so nothing repeats:

     eucalyptus-h.png        cover, RSVP thank-you, closing  (gold line art)
     eucalyptus-swag.png     Our Story
     wedding-rings.png       The Timeline
     eucalyptus-bouquet.png  the three fact cards
     eucalyptus-sprig.png    the hotel card
     flying-in.png           the travelling block

   `.euc` is a single motif; `.euc-pair` sets two copies tip to tip as a
   symmetrical garland. Width comes from an inline style (single) or --euc-w
   (pair). Colour is baked into the artwork — to retint one, replace the PNG. */
.euc { display: block; margin-inline: auto; height: auto; }

.euc-pair {
  display: flex; justify-content: center; align-items: center;
  margin-inline: auto;
}
.euc-pair img { width: var(--euc-w, 130px); height: auto; display: block; }
.euc-pair img:last-child { transform: scaleX(-1); }

.rule {
  display: flex; align-items: center; justify-content: center;
  gap: 1.1rem; margin-inline: auto;
}
.rule::before, .rule::after {
  content: ""; height: 1px; flex: 1 1 auto; max-width: 5.5rem;
  background: linear-gradient(90deg, transparent, var(--line));
}
.rule::after { background: linear-gradient(90deg, var(--line), transparent); }
.rule > * { flex: 0 0 auto; }
.section--dark .rule::before { background: linear-gradient(90deg, transparent, rgba(201,175,126,.55)); }
.section--dark .rule::after  { background: linear-gradient(90deg, rgba(201,175,126,.55), transparent); }

.diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }

/* ---------- 6. Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--gutter);
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
}
.nav.is-stuck {
  background: rgba(247,243,234,.92);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  backdrop-filter: saturate(1.1) blur(10px);
  box-shadow: 0 1px 0 rgba(0,0,0,.055);
  padding-block: .6rem;
}
.nav__mark {
  font-family: var(--serif); font-size: 1.05rem; letter-spacing: .26em;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
  white-space: nowrap;
}
.nav__mark em {
  font-family: var(--script); font-style: normal; font-size: 1.7rem;
  color: var(--gold); letter-spacing: 0;
}
.nav__links { display: flex; gap: clamp(1rem, 2.4vw, 2.2rem); align-items: center; }
.nav__links a {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; text-decoration: none; color: var(--body);
  padding: .55rem 0; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold); transition: right .35s var(--ease);
}
.nav__links a:hover::after, .nav__links a:focus-visible::after { right: 0; }
.nav__cta {
  border: 1px solid var(--gold); padding: .5rem 1.1rem !important;
  color: var(--olive-deep) !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--gold); color: #fff !important; }

.nav__toggle {
  display: none; background: none; border: 0; padding: .5rem; color: var(--ink);
  min-width: 44px; min-height: 44px;
}
.nav__toggle svg { width: 24px; height: 24px; }

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 0; background: var(--paper);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem; font-size: 1.1rem;
    opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
  }
  .nav__links a { font-size: .9rem; padding: .6rem 1rem; min-height: 44px;
                  display: flex; align-items: center; }
  body.menu-open .nav__links { opacity: 1; visibility: visible; }
  body.menu-open { overflow: hidden; }
}

/* ---------- 7. Cover ---------- */
.cover {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(6rem, 14vh, 9rem) var(--gutter) clamp(3rem, 8vh, 5rem);
  gap: clamp(2.5rem, 6vw, 5rem);
  position: relative;
}
@media (min-width: 900px) {
  .cover { grid-template-columns: 1.05fr .95fr; padding-block: 7rem 4rem; }
}
.cover__inner { max-width: 34rem; margin-inline: auto; text-align: center; }
@media (min-width: 900px) { .cover__inner { text-align: left; margin-inline: 0 auto; } }

.cover__greeting {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.05rem, .95rem + .45vw, 1.35rem);
  color: var(--gold); margin: 1.5rem 0 0; line-height: 1.4;
  overflow-wrap: anywhere;   /* a very long name must not widen the page */
}
.cover__intro { margin: 1.6rem 0 1.4rem; }
.cover__greeting + .cover__intro { margin-top: .9rem; }

.seat-note {
  font-family: var(--sans); font-size: .8rem; font-style: normal;
  color: var(--muted); margin: .55rem 0 1.3rem;
}

.cover__names {
  font-size: clamp(3.1rem, 1.2rem + 8.4vw, 6.4rem);
  line-height: .96;
  letter-spacing: .02em;
  color: var(--ink);
  font-weight: 300;
}
.cover__names .amp {
  display: block;
  font-family: var(--script); font-weight: 400;
  font-size: .78em; color: var(--gold); line-height: .7;
  margin: .06em 0 .04em;
}
.cover__sub { margin: 1.6rem 0 0; color: var(--body); }

.cover__meta { margin-top: 2.2rem; }
.cover__date {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(.82rem, .76rem + .3vw, 1rem);
  letter-spacing: .3em; text-transform: uppercase; color: var(--ink);
}
.cover__venue {
  font-family: var(--script); font-weight: 700;
  font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem);
  color: var(--olive); margin-top: .35rem; line-height: 1;
}
.cover__place {
  font-family: var(--sans); font-size: .68rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--muted); margin-top: .5rem;
}
@media (min-width: 900px) {
  .cover__inner .rule { margin-inline: 0; justify-content: flex-start; }
  .cover__inner .rule::before { display: none; }
  .cover__inner .euc { margin-inline: 0; }
}

/* Arched cover photo */
.arch {
  position: relative;
  border-radius: 50% 50% 6px 6px / 38% 38% 6px 6px;
  overflow: hidden;
  background: var(--paper-3);
}
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  padding: 3px;
  background-image: var(--gold-leaf);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
}
.cover__figure {
  position: relative;
  max-width: 26rem; width: 100%; margin-inline: auto;
  aspect-ratio: 3 / 4;
}
.cover__figure .arch { position: absolute; inset: 0; }
.cover__figure::before {
  content: ""; position: absolute; inset: -16px;
  border-radius: 50% 50% 6px 6px / 38% 38% 6px 6px;
  padding: 1.5px;
  background-image: var(--gold-leaf);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  opacity: .75;
  pointer-events: none;
}

.scroll-cue {
  padding: .5rem 1rem;
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .6rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
}
.scroll-cue span.line {
  display: block; width: 1px; height: 42px;
  background: linear-gradient(var(--line), transparent);
  animation: cue 2.6s var(--ease) infinite;
  transform-origin: top;
}
@keyframes cue { 0%,100% { transform: scaleY(.35); opacity: .5; } 45% { transform: scaleY(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue span.line { animation: none; transform: scaleY(1); } }
@media (max-width: 899px) { .scroll-cue { display: none; } }

/* ---------- 8. Our Story ---------- */
.story { position: relative; }
.story__list { position: relative; margin: 0; padding: 0; list-style: none; }
.story__list::before {
  content: ""; position: absolute; top: .5rem; bottom: .5rem; left: 9px; width: 1px;
  background: linear-gradient(var(--line), var(--line));
}
.story__item { position: relative; padding: 0 0 clamp(3rem, 7vw, 4.5rem) 3rem; }
.story__item:last-child { padding-bottom: 0; }
.story__item::before {
  content: ""; position: absolute; left: 5px; top: .85rem;
  width: 9px; height: 9px; background: var(--paper);
  border: 1px solid var(--gold); transform: rotate(45deg);
}
.story__year {
  font-family: var(--script); font-weight: 700; color: var(--gold);
  font-size: clamp(2.6rem, 2rem + 2.4vw, 3.6rem); line-height: .8;
}
.story__head {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(.78rem, .74rem + .2vw, .88rem);
  letter-spacing: .24em; text-transform: uppercase; color: var(--ink);
  margin: .85rem 0 .9rem;
}
.story__body { margin: 0; max-width: 30rem; }
.story__body em { font-style: italic; color: var(--muted); }
.story__figure { margin: 1.6rem 0 0; max-width: 19rem; position: relative; }
.story__figure::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50% 50% 5px 5px / 30% 30% 5px 5px;
  padding: 2.5px;
  background-image: var(--gold-leaf);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
}
.story__figure img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 50% 50% 5px 5px / 30% 30% 5px 5px;
}

@media (min-width: 860px) {
  .story__list::before { left: 50%; }
  .story__item {
    width: 50%; padding: 0 0 clamp(3.5rem, 6vw, 5rem) 0;
  }
  .story__item:nth-child(odd)  { margin-left: 0;    padding-right: clamp(2.5rem, 5vw, 4.5rem); text-align: right; }
  .story__item:nth-child(even) { margin-left: 50%;  padding-left:  clamp(2.5rem, 5vw, 4.5rem); }
  .story__item:nth-child(odd)::before  { left: auto; right: -5px; }
  .story__item:nth-child(even)::before { left: -4px; }
  .story__item:nth-child(odd) .story__body,
  .story__item:nth-child(odd) .story__figure { margin-left: auto; }
}

/* ---------- 9. Details ---------- */
/* The watercolour is a transparent PNG, so the page's cream shows through on its
   own — no blend mode, no mask (either would eat the soft painted edges). It
   sits directly on the paper the way the illustration in the concept does. */
.venue-art {
  margin: 0 auto;
  max-width: 54rem;
  padding-inline: clamp(0rem, 2vw, 1.5rem);
}
.venue-art img { width: 100%; }
.venue-art figcaption {
  font-family: var(--sans); font-size: .66rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
  text-align: center; margin-top: clamp(.75rem, 2vw, 1.4rem);
}

.venue-card {
  display: grid; gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center; justify-items: center; text-align: center;
}
.venue-logo { width: clamp(120px, 22vw, 172px); }
.venue-address {
  font-family: var(--sans); font-weight: 300; font-style: normal;
  font-size: .94rem; letter-spacing: .1em; line-height: 2;
  color: var(--dark-beige);
}

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase; text-decoration: none;
  padding: .95rem 1.9rem;
  border: 1px solid var(--gold);
  color: var(--gold-soft); background: transparent;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  min-height: 44px;
}
.btn:hover, .btn:focus-visible { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--light { color: var(--olive-deep); border-color: var(--gold); }
.btn--light:hover { background: var(--gold); color: #fff; }
.btn svg { width: 15px; height: 15px; flex: none; }

.photo-pair {
  display: grid; gap: clamp(1rem, 2.5vw, 1.75rem);
  grid-template-columns: 1fr;
  margin-top: clamp(3rem, 7vw, 4.5rem);
}
@media (min-width: 700px) { .photo-pair { grid-template-columns: 1fr 1fr; } }
.photo-pair figure { margin: 0; position: relative; }
.photo-pair figure::after {
  content: ""; position: absolute; inset: 0; bottom: 2.4rem;
  padding: 2.5px;
  background-image: var(--gold-leaf);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
}
.photo-pair img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-pair figcaption {
  font-family: var(--sans); font-size: .66rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); margin-top: .9rem; text-align: center;
}

.fact-grid {
  display: grid; gap: clamp(1.6rem, 4vw, 2.75rem);
  grid-template-columns: 1fr;
  margin-top: clamp(3rem, 7vw, 4.5rem);
  text-align: center;
}
@media (min-width: 640px) { .fact-grid { grid-template-columns: repeat(3, 1fr); } }
.fact h3 {
  font-family: var(--sans); font-weight: 400; font-size: .72rem;
  letter-spacing: .24em; text-transform: uppercase; color: var(--ink);
  margin: 1rem 0 .5rem;
}
.fact p { margin: 0; font-size: .98rem; }
.fact .euc { margin-bottom: .35rem; }
/* the bouquet is portrait, so it needs less width and a touch more room */
.euc--bouquet { margin-bottom: .6rem; }
/* a pictorial object rather than a botanical flourish — it needs air under it */
.euc--scene { margin-bottom: .9rem; }
.section-head .euc--scene { margin-top: 1.4rem; }

/* ---------- 10. Timeline ---------- */
.timeline { list-style: none; margin: 0 auto; padding: 0; max-width: 40rem; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 1rem; bottom: 1rem; width: 1px; background: var(--line);
}
.timeline li {
  position: relative; padding: 0 0 clamp(2rem, 4.5vw, 2.9rem) 2.6rem;
  display: grid; gap: .3rem;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 3px; top: .6rem;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--paper-2); border: 1px solid var(--gold);
}
.timeline li:nth-child(2)::before { background: var(--gold); }
.timeline__time {
  font-family: var(--sans); font-size: .74rem; font-weight: 400;
  letter-spacing: .22em; color: var(--gold);
}
.timeline__label {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  font-weight: 300; color: var(--ink); line-height: 1.25;
}
.timeline__note { font-size: .95rem; color: var(--muted); }

@media (min-width: 640px) {
  .timeline li {
    grid-template-columns: 8.5rem 1fr;
    align-items: baseline; column-gap: 1.6rem;
  }
  .timeline__time { padding-top: .35rem; text-align: right; }
  .timeline__note { grid-column: 2; }
}

.timeline-actions { margin-top: clamp(2.5rem, 6vw, 3.5rem); text-align: center; }

/* ---------- 11. Accommodation ---------- */
.placeholder-card {
  border: 1px solid var(--line);
  padding: clamp(2.2rem, 6vw, 3.6rem) clamp(1.4rem, 5vw, 3rem);
  text-align: center;
  background: rgba(255,255,255,.42);
  max-width: 40rem; margin-inline: auto;
}
.placeholder-card p { margin: 1.2rem auto 0; max-width: 28rem; }
.placeholder-card .tag {
  font-family: var(--sans); font-size: .62rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-soft); padding: .35rem .8rem; display: inline-block;
}

/* Recommended hotel */
.stay-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.45);
  padding: clamp(2rem, 5.5vw, 3.6rem) clamp(1.4rem, 5vw, 3.4rem);
  max-width: 44rem; margin-inline: auto;
  text-align: center;
}
.stay-card__label { margin-bottom: 1.1rem; }
.stay-card__name {
  font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.9rem);
  font-weight: 300; letter-spacing: .04em; color: var(--ink); line-height: 1.1;
}
.stay-card__chain {
  font-family: var(--sans); font-size: .68rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--muted); margin: .7rem 0 0;
}
.stay-card__body { margin: 0 auto; max-width: 32rem; }
.stay-card__address {
  font-family: var(--sans); font-style: normal; font-size: .82rem;
  letter-spacing: .12em; color: var(--muted); margin-top: 1.4rem;
}

/* No separator glyphs: the row wraps, and any ::before/::after marker ends up
   stranded at the start or end of a wrapped line. Spacing carries it instead. */
.stay-facts {
  list-style: none; margin: 2rem auto 0; padding: 0; max-width: 30rem;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .9rem 2rem;
  font-family: var(--sans); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--body);
}

.stay-actions {
  margin-top: 2.4rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem;
}

.stay-note {
  margin: 2.2rem auto 0; max-width: 32rem;
  font-size: .95rem; line-height: 1.7; color: var(--body);
}
.stay-note { line-height: 1.85; }
.stay-note a {
  color: var(--gold); text-underline-offset: 3px;
  /* inline links in a sentence are exempt from the 44px target rule, but the
     phone number and address get tapped on a phone — buy what height we can
     without opening up the paragraph. */
  display: inline-block; padding-block: .3rem;
}
.stay-note strong { font-weight: 500; color: var(--ink); }
.stay-note--quiet {
  margin-top: 1.4rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: .88rem; color: var(--muted);
}

/* Travelling from abroad */
.travel {
  max-width: 52rem; margin: clamp(3.5rem, 8vw, 5.5rem) auto 0;
}
.travel__head { text-align: center; margin-bottom: clamp(2.2rem, 5vw, 3.2rem); }
.travel__title {
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.85rem);
  font-weight: 300; letter-spacing: .04em; color: var(--ink);
  margin-top: 1.2rem;
}
.travel__intro {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .14em;
  color: var(--muted); margin: .8rem 0 0;
}

.travel__grid {
  display: grid; gap: clamp(1.8rem, 4vw, 2.6rem) clamp(2rem, 5vw, 3.4rem);
  grid-template-columns: 1fr; margin: 0;
}
@media (min-width: 720px) { .travel__grid { grid-template-columns: 1fr 1fr; } }

.travel__item dt {
  font-family: var(--sans); font-size: .68rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink);
  padding-bottom: .8rem; margin-bottom: .9rem;
  border-bottom: 1px solid var(--line);
}
.travel__item dd { margin: 0; font-size: .98rem; line-height: 1.75; }
.travel__item dd strong { font-weight: 500; color: var(--ink); }

/* the visa note is the one item with a deadline attached to it */
.travel__item--flag dt { color: var(--gold); border-bottom-color: var(--gold-soft); }

.travel__foot {
  margin: clamp(2.4rem, 6vw, 3.4rem) auto 0; max-width: 34rem;
  text-align: center; font-size: .95rem; color: var(--muted);
}

/* ---------- 12. RSVP ---------- */
.rsvp-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 5vw, 3.4rem);
  max-width: 44rem; margin-inline: auto;
}
.form-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .span-2 { grid-column: 1 / -1; }
}

.field { display: grid; gap: .5rem; }
.field > label, .fieldset-legend {
  font-family: var(--sans); font-size: .66rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.field .req { color: var(--gold); }

input[type="text"], input[type="email"], textarea, select {
  font-family: var(--serif); font-size: 1rem; color: var(--ink);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line);
  padding: .6rem .1rem; width: 100%;
  border-radius: 0; -webkit-appearance: none; appearance: none;
  transition: border-color .3s var(--ease);
  min-height: 44px;
}
textarea { min-height: 96px; resize: vertical; line-height: 1.6; }
input:focus, textarea:focus { outline: none; border-bottom-color: var(--gold); }
input::placeholder, textarea::placeholder { color: #B3AE9B; font-style: italic; }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-bottom-color: #A6543F; }

fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: .85rem; }

.choice-row { display: grid; gap: .75rem; }
@media (min-width: 520px) { .choice-row { grid-template-columns: 1fr 1fr; } }
.choice {
  position: relative; display: flex; align-items: center; gap: .75rem;
  border: 1px solid var(--line); padding: .95rem 1.1rem;
  cursor: pointer; transition: border-color .25s var(--ease), background .25s var(--ease);
  font-size: 1rem; min-height: 44px;
}
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; margin: 0; }
.choice .dot {
  width: 12px; height: 12px; border: 1px solid var(--sage); border-radius: 50%;
  flex: none; position: relative;
}
.choice .dot::after {
  content: ""; position: absolute; inset: 2px; border-radius: 50%;
  background: var(--gold); transform: scale(0); transition: transform .22s var(--ease);
}
.choice:hover { border-color: var(--gold-soft); }
.choice:has(input:checked) { border-color: var(--gold); background: rgba(201,175,126,.11); }
.choice:has(input:checked) .dot::after { transform: scale(1); }
.choice:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }

/* checkbox variant of .choice */
.choice--check { align-items: flex-start; line-height: 1.55; }
.choice--check .tick {
  width: 14px; height: 14px; flex: none; margin-top: .28rem;
  border: 1px solid var(--sage); position: relative;
}
.choice--check .tick::after {
  content: ""; position: absolute; left: 3px; top: 0px;
  width: 5px; height: 9px; border: solid var(--gold);
  border-width: 0 1.5px 1.5px 0; transform: rotate(45deg) scale(0);
  transition: transform .2s var(--ease);
}
.choice--check:has(input:checked) { border-color: var(--gold); background: rgba(201,175,126,.11); }
.choice--check:has(input:checked) .tick::after { transform: rotate(45deg) scale(1); }
.choice--check:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }

/* guest name rows */
.guest-row { display: flex; align-items: flex-end; gap: .6rem; }
.guest-row .field { flex: 1 1 auto; }
.guest-remove {
  background: none; border: 1px solid var(--line); color: var(--muted);
  width: 40px; height: 40px; flex: none; line-height: 1;
  display: grid; place-items: center;
  transition: color .25s var(--ease), border-color .25s var(--ease);
  margin-bottom: .25rem;
}
.guest-remove:hover { color: #8C4B37; border-color: #C9A091; }
.guest-remove svg { width: 13px; height: 13px; }

.link-btn {
  background: none; border: 0; padding: .5rem 0; color: var(--gold);
  font-family: var(--sans); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; text-align: left; justify-self: start;
  border-bottom: 1px solid transparent; min-height: 44px;
}
.link-btn:hover { border-bottom-color: var(--gold); }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-submit {
  margin-top: 2.4rem; display: flex; flex-direction: column;
  align-items: center; gap: 1rem; text-align: center;
}
.btn--solid {
  background: var(--olive-deep); border-color: var(--olive-deep); color: #F2EDDF;
  padding: 1.05rem 2.6rem;
}
.btn--solid:hover, .btn--solid:focus-visible { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn[disabled] { opacity: .55; cursor: progress; }

.form-note { font-family: var(--sans); font-size: .72rem; letter-spacing: .06em; color: var(--muted); }

.form-status {
  margin-top: 1.4rem; padding: 1rem 1.2rem; font-size: .98rem; text-align: center;
  border: 1px solid transparent;
}
.form-status[hidden] { display: none !important; }
.form-status.is-ok    { border-color: #A9B48C; background: rgba(169,180,140,.16); color: #4C5738; }
.form-status.is-error { border-color: #C9A091; background: rgba(201,160,145,.16); color: #7E4231; }
.form-status a { color: inherit; }

.rsvp-success { text-align: center; }
.rsvp-success .script { font-size: clamp(3rem, 2rem + 4vw, 4.6rem); }

/* ---------- 13. Closing ---------- */
.closing { text-align: center; }
.closing__title {
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.2rem);
  font-weight: 300; line-height: 1.2; max-width: 20ch; margin-inline: auto;
}
.closing__sign { margin-top: 2.4rem; }
.closing__sign p { margin: 0; font-family: var(--sans); font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--dark-beige); }
.closing__names {
  font-family: var(--script); font-weight: 700;
  font-size: clamp(3.2rem, 2rem + 5vw, 5.2rem); color: var(--gold-soft); line-height: 1;
  margin-top: .3rem;
  background-image: var(--gold-leaf);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.countdown { display: flex; justify-content: center; gap: clamp(1.4rem, 5vw, 3rem); margin-top: 2.8rem; }
.countdown div { text-align: center; }
.countdown .n {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 1.3rem + 2vw, 2.8rem);
  line-height: 1; color: var(--gold-soft);
  background-image: var(--gold-leaf);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.countdown .l {
  font-family: var(--sans); font-size: .58rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--dark-beige); margin-top: .5rem;
}

.footer {
  padding: 2.2rem var(--gutter) 2.6rem;
  text-align: center; background: var(--olive-deep);
  border-top: 1px solid rgba(201,175,126,.18);
}
.footer p {
  margin: 0; font-family: var(--sans); font-size: .62rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--dark-beige-dim);
}

/* ---------- 14. Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Gilded text relies on a transparent fill over a clipped gradient. Anywhere the
   gradient will not paint — print, forced-colors — that leaves invisible text,
   so both modes have to hand the fill back. */
@media (forced-colors: active) {
  .gilded, .closing__names, .countdown .n {
    background-image: none !important;
    -webkit-text-fill-color: currentColor !important;
    color: CanvasText !important;
  }
  .gilt-edge::after, .arch::after, .story__figure::after,
  .photo-pair figure::after, .cover__figure::before { background: Highlight !important; }
}

/* ---------- 15. Print ---------- */
@media print {
  .gilded, .closing__names, .countdown .n {
    background-image: none !important;
    -webkit-text-fill-color: #000 !important;
    color: #000 !important;
  }
  .arch::after, .story__figure::after, .photo-pair figure::after,
  .cover__figure::before { display: none !important; }
  .btn { border-image: none !important; border: 1px solid #000 !important; }
  .nav, .scroll-cue, .timeline-actions, form, .footer { display: none !important; }
  body { background: #fff; color: #000; }
  .section--dark { background: #fff !important; color: #000 !important; }
  .section--dark h2, .section--dark h3, .closing__names { color: #000 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
