/* ===== Kaylyn & Montague — Watercolor Garden ===== */

:root {
  /* Palette: Garden (default, matches the invitation) */
  --sky-top: #B7C2DD;      /* lavender-blue */
  --sky-mid: #DCD4DD;      /* dusty pink-lavender */
  --sky-low: #F5D7C2;      /* peach */
  --paper: #F4ECE0;        /* warm cream */
  --paper-deep: #EAD9C5;   /* deeper cream */
  --ink: #1E2233;          /* near-black navy (body) */
  --ink-soft: #545A75;     /* softer navy */
  --olive: #5A5C30;        /* olive-green (names / script) */
  --olive-deep: #3F4220;
  --sage: #8B9E7A;
  --rule: #B7A992;
  --coral: #C77D8B;        /* rose pink */
  --tulip: #B14857;        /* tulip red */
  --butter: #D9B859;       /* yellow flowers */
  --accent: var(--olive);
  --accent-2: var(--coral);

  /* Type */
  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-script:  "Sacramento", "Allura", cursive;
  --font-body:    "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-label:   "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Soft watercolor paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.30 0 0 0 0 0.20 0 0 0 0 0.15 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.4;
}

#root { position: relative; z-index: 2; }

/* Petals (optional) */
#petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -8vh;
  width: 22px;
  height: 22px;
  opacity: 0.7;
  will-change: transform;
  animation-name: petalFall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}
@keyframes petalFall {
  0%   { transform: translate3d(0, -10vh, 0) rotate(0deg); }
  100% { transform: translate3d(15vw, 110vh, 0) rotate(420deg); }
}

/* ===== Typography utilities ===== */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  color: var(--olive);
}
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.label, .tracked {
  font-family: var(--font-label);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 500;
}

/* ===== Layout primitives ===== */
.container {
  max-width: 980px;
  padding: 0 28px;
  margin: 0 auto;
  position: relative;
}
section {
  position: relative;
  padding: 90px 0;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 18px;
}
.section-eyebrow .rule {
  height: 1px;
  width: 44px;
  background: var(--rule);
}
.section-eyebrow .label {
  font-family: var(--font-label);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--ink);
  font-weight: 500;
}
.section-title {
  font-family: var(--font-script);
  font-size: clamp(64px, 10vw, 130px);
  text-align: center;
  color: var(--olive);
  margin: 0 0 36px;
  line-height: 1.1;
  font-weight: 400;
  padding-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--ink);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.85;
}

/* Watercolor sprig divider between sections */
.sprig-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0;
  margin: 0;
}
.sprig-divider .rule {
  height: 1px;
  width: 90px;
  background: linear-gradient(to right, transparent, var(--rule), transparent);
}
.sprig-divider .mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.7;
  box-shadow: -16px 0 0 -3px var(--olive), 16px 0 0 -3px var(--olive);
}

/* ============================================ */
/* HERO — mirrors the invitation                */
/* ============================================ */
.hero {
  min-height: 100vh;
  padding: 0;
  display: block;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Watercolor sky — lavender at top, peach mid, cream low */
  background:
    radial-gradient(80% 60% at 20% 30%, rgba(255,255,255,0.35), transparent 65%),
    radial-gradient(70% 50% at 80% 25%, rgba(255,220,200,0.40), transparent 60%),
    radial-gradient(90% 60% at 50% 75%, rgba(245,215,194,0.85), transparent 70%),
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 35%, var(--sky-low) 65%, #F3E0CB 100%);
}

/* Soft cloud blobs in the sky */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(45% 22% at 25% 18%, rgba(255,255,255,0.55), transparent 70%),
    radial-gradient(35% 18% at 70% 12%, rgba(255,255,255,0.45), transparent 70%),
    radial-gradient(40% 20% at 50% 38%, rgba(255,240,225,0.5), transparent 70%),
    radial-gradient(30% 14% at 85% 35%, rgba(255,240,228,0.45), transparent 70%);
  filter: blur(8px);
  opacity: 0.9;
}

/* Garden footer — watercolor strip from the invitation */
.hero-garden {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 38vh;
  min-height: 280px;
  max-height: 520px;
  background-image: url("assets/garden-strip.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}
/* Mask the top edge of the garden into the sky */
.hero-garden::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--sky-low), transparent);
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 80px 24px 42vh;
  max-width: 900px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-height: 800px) {
  .hero-inner { padding-bottom: 38vh; }
}

.hero-together {
  font-family: var(--font-label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--ink);
  line-height: 2;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-names {
  font-family: var(--font-script);
  color: var(--olive);
  font-size: clamp(40px, 6.6vw, 86px);
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0;
  font-weight: 400;
  white-space: nowrap;
  max-width: 100%;
}
.hero-and {
  font-family: var(--font-script);
  color: var(--olive);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.4;
  font-style: italic;
  font-weight: 400;
  margin: -4px 0;
}
@media (max-width: 720px) {
  .hero-names { white-space: normal; text-align: center; }
}

.hero-divider {
  margin: 40px auto 28px;
  width: 60px;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}

.hero-invite {
  font-family: var(--font-label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--ink);
  line-height: 2;
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-date {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(22px, 3.6vw, 34px);
  color: var(--ink);
  margin-bottom: 30px;
}
.hero-detail {
  font-family: var(--font-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--ink);
  line-height: 2.1;
  margin-bottom: 14px;
  font-weight: 500;
}
.hero-detail.small { font-size: 11.5px; opacity: 0.92; }

.hero-rsvp-line {
  margin-top: 26px;
  font-family: var(--font-label);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.9;
  font-weight: 500;
}
.hero-rsvp-line a {
  color: var(--olive);
  text-decoration: none;
  border-bottom: 1px solid var(--olive);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.hero-rsvp-line a:hover { opacity: 0.7; }

.hero-scroll {
  margin-top: 28px;
  margin-bottom: 20px;
  font-family: var(--font-label);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 10.5px;
  color: var(--ink);
  opacity: 0.65;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll .line {
  width: 1px;
  height: 38px;
  background: var(--ink);
  opacity: 0.5;
  animation: drip 2.6s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drip {
  0%,100% { transform: scaleY(0.4); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 0.7; }
}

/* ============================================ */
/* Countdown                                    */
/* ============================================ */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.countdown .tile {
  text-align: center;
  padding: 28px 12px 22px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--rule);
  position: relative;
}
.countdown .tile::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(183, 169, 146, 0.4);
  pointer-events: none;
}
.countdown .num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
}
.countdown .lbl {
  font-family: var(--font-label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 10px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .countdown { gap: 8px; }
  .countdown .num { font-size: 38px; }
  .countdown .tile { padding: 18px 4px 14px; }
}

/* ============================================ */
/* Schedule timeline                            */
/* ============================================ */
.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--rule) 12%, var(--rule) 88%, transparent 100%);
  transform: translateX(-0.5px);
}
.event {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: center;
  padding: 30px 0;
}
.event .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  position: relative;
  box-shadow: 0 0 0 6px var(--paper), 0 0 0 7px var(--rule);
}
.event .time {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
}
.event .desc { line-height: 1.45; }
.event .desc .name {
  font-family: var(--font-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.event .desc .loc {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 16px;
  margin-top: 4px;
}
.event.left .time { text-align: right; }
.event.left .desc { text-align: left; }
.event.right .desc { text-align: right; order: 1; }
.event.right .dot { order: 2; }
.event.right .time { text-align: left; order: 3; }

@media (max-width: 700px) {
  .timeline { max-width: 100%; padding-left: 4px; }
  .timeline::before { left: 16px; }
  .event {
    grid-template-columns: 32px 1fr !important;
    grid-template-rows: auto auto !important;
    column-gap: 16px;
    row-gap: 2px;
    padding: 18px 0;
    text-align: left !important;
    align-items: start;
  }
  .event .dot {
    justify-self: center;
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    margin-top: 10px;
    order: 0 !important;
  }
  .event .time {
    grid-column: 2 !important;
    grid-row: 1 !important;
    text-align: left !important;
    font-size: 22px;
    line-height: 1.1;
    order: 0 !important;
  }
  .event .desc {
    grid-column: 2 !important;
    grid-row: 2 !important;
    text-align: left !important;
    margin-top: 2px;
    order: 0 !important;
  }
  .event .desc .loc { font-size: 15px; }
}

/* ============================================ */
/* Venue + Carousel                             */
/* ============================================ */
.venue {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.venue.venue-centered {
  grid-template-columns: 1fr;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.venue.venue-centered .address { text-align: center; }
.venue.venue-centered .btn { margin: 0 auto; }
@media (max-width: 820px) {
  .venue { grid-template-columns: 1fr; gap: 40px; }
}

.carousel {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow: 0 30px 60px -30px rgba(30, 34, 51, 0.3);
}
.carousel-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.7s cubic-bezier(0.7, 0, 0.2, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  background-size: cover;
  background-position: center;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(244, 236, 224, 0.9);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s;
  z-index: 2;
}
.carousel-nav:hover { background: var(--paper); }
.carousel-nav.prev { left: 16px; }
.carousel-nav.next { right: 16px; }
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244, 236, 224, 0.6);
  border: 1px solid var(--rule);
  padding: 0;
  cursor: pointer;
}
.carousel-dots button.active {
  background: var(--ink);
  border-color: var(--ink);
}

.venue-info h3 {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 0 0 4px;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 500;
}
.venue-info .where {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 18px;
  margin-bottom: 22px;
}
.venue-info .address {
  font-family: var(--font-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink);
  line-height: 2.1;
  margin-bottom: 28px;
  font-weight: 500;
}
.venue-info p {
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 28px;
  line-height: 1.6;
}

.map-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--rule);
  margin-top: 20px;
  background: var(--paper-deep);
  filter: sepia(0.1) saturate(0.85) hue-rotate(-8deg);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================ */
/* Reception + Menu                             */
/* ============================================ */
.reception-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .reception-card { grid-template-columns: 1fr; gap: 32px; }
}

.reception-info {
  padding-top: 14px;
}
.reception-tag {
  font-family: var(--font-label);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-weight: 500;
}
.reception-name {
  font-family: var(--font-display);
  font-size: 40px;
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
}
.reception-address {
  font-family: var(--font-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink);
  line-height: 2.1;
  margin-bottom: 16px;
  font-weight: 500;
}
.reception-hours {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 22px;
}
.reception-detail {
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  margin: 0 0 28px;
}
.reception-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* The menu — styled like a printed menu card */
.menu-card {
  background: rgba(255, 252, 245, 0.7);
  border: 1px solid var(--rule);
  padding: 44px 40px 36px;
  position: relative;
}
.menu-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(183, 169, 146, 0.45);
  pointer-events: none;
}
@media (max-width: 720px) {
  .menu-card { padding: 32px 24px 28px; }
}

.menu-header {
  text-align: center;
  margin-bottom: 30px;
}
.menu-flourish {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--coral);
  line-height: 1;
  margin: 4px 0;
}
.menu-title {
  font-family: var(--font-script);
  font-size: 50px;
  color: var(--olive);
  line-height: 1.1;
  margin: 4px 0 6px;
}
.menu-sub {
  font-family: var(--font-label);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 500;
}

.menu-section {
  margin-bottom: 22px;
}
.menu-section:last-of-type {
  margin-bottom: 14px;
}

.menu-course {
  font-family: var(--font-label);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink);
  text-align: center;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
}
.menu-course::before,
.menu-course::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 1px;
  background: var(--rule);
  margin: 0 14px;
}

.menu-items {
  display: grid;
  gap: 10px;
}
.menu-item {
  text-align: center;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
}
.menu-item-note {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.4;
  margin-top: 2px;
}

.menu-footnote {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
  padding-top: 22px;
  margin-top: 6px;
  border-top: 1px solid var(--rule);
}

/* ============================================ */
/* Where to Stay                                */
/* ============================================ */
.stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .stay-grid { grid-template-columns: 1fr; gap: 24px; }
}
.stay-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--rule);
  position: relative;
  display: flex;
  flex-direction: column;
}
.stay-card::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(183, 169, 146, 0.4);
  pointer-events: none;
  z-index: 2;
}
.stay-map {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 1;
  filter: sepia(0.1) saturate(0.85) hue-rotate(-8deg);
}
.stay-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.stay-body {
  padding: 26px 26px 28px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.stay-tag {
  font-family: var(--font-label);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 10.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.stay-area {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}
.stay-blurb {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
}
.stay-hotels {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}
.stay-hotels li { line-height: 1.4; position: relative; }
.stay-hotels li.featured {
  padding: 14px 16px;
  margin: -4px -2px;
  background: rgba(199, 125, 139, 0.08);
  border: 1px solid rgba(90, 92, 48, 0.25);
  border-radius: 2px;
}
.stay-badge {
  display: inline-block;
  font-family: var(--font-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 9.5px;
  color: var(--paper);
  background: var(--olive);
  padding: 3px 9px 2px;
  margin-bottom: 6px;
  font-weight: 500;
}
.stay-hotels li a {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--olive);
  text-decoration: none;
  border-bottom: 1px solid rgba(90, 92, 48, 0.3);
  padding-bottom: 1px;
  font-weight: 500;
}
.stay-hotels li a:hover { border-bottom-color: var(--olive); }
.stay-hotel-note {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.4;
  margin-top: 2px;
}
.stay-card .btn { align-self: flex-start; margin-top: 6px; }

/* ============================================ */
/* Getting Here (parking) cards                 */
/* ============================================ */
.park-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .park-grid { grid-template-columns: 1fr; gap: 18px; }
}
.park-card {
  position: relative;
  padding: 32px 30px 30px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--rule);
}
.park-card::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(183, 169, 146, 0.4);
  pointer-events: none;
}
.park-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.park-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  flex: 0 0 auto;
}
.park-tag {
  font-family: var(--font-label);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 10.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.park-title {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 4px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
}
.park-where {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 14px;
}
.park-detail {
  font-style: italic;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.park-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.park-links a {
  font-family: var(--font-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--olive);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--olive);
  padding-bottom: 2px;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.park-links a:hover { opacity: 0.7; }
.park-links a .arrow { font-family: var(--font-display); letter-spacing: 0; font-size: 13px; }
.park-note {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.park-note em {
  font-style: normal;
  font-family: var(--font-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}

/* ============================================ */
/* Buttons                                      */
/* ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}
.btn:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn.primary {
  background: var(--olive);
  color: #F4ECE0;
  border-color: var(--olive);
}
.btn.primary:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
}
.btn .arrow { font-family: var(--font-display); font-size: 14px; letter-spacing: 0; }

/* ============================================ */
/* Dress code                                   */
/* ============================================ */
.dress-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 820px) { .dress-grid { grid-template-columns: 1fr; gap: 56px; } }

.dress-card { position: relative; }
.dress-card h3 {
  font-family: var(--font-script);
  font-size: 60px;
  margin: 0 0 8px;
  color: var(--olive);
  line-height: 0.95;
  font-weight: 400;
}
.dress-card .who {
  font-family: var(--font-label);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-weight: 500;
}
.dress-card p {
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 24px;
  line-height: 1.6;
}

.swatch-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}
.swatch-row.swatch-row-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 360px;
}
.swatch-row.swatch-row-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 420px;
}

/* Hue row — the named "color families" guests can pull from */
.hue-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 44px;
  max-width: 520px;
}
.hue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hue-dot {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow:
    inset 0 -8px 18px rgba(0,0,0,0.08),
    0 8px 18px -8px rgba(0,0,0,0.18);
}
.hue-label {
  font-family: var(--font-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 9.5px;
  color: var(--ink-soft);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .hue-row { gap: 10px; }
  .hue-label { font-size: 8.5px; letter-spacing: 0.1em; }
}

/* Palette reference image below swatches */
.palette-ref {
  margin-top: 36px;
  max-width: 460px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--rule);
  position: relative;
  box-shadow: 0 24px 48px -28px rgba(30, 34, 51, 0.3);
}
.palette-ref::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(183, 169, 146, 0.4);
  pointer-events: none;
  z-index: 2;
}
.palette-ref-caption {
  font-family: var(--font-label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 10.5px;
  color: var(--ink-soft);
  font-weight: 500;
  text-align: center;
  padding: 6px 0 10px;
  position: relative;
  z-index: 3;
}
.palette-ref img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* Paint chip strip — Benjamin Moore style */
.paint-chips {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.paint-chip {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--rule);
  text-align: center;
  padding: 0 0 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.paint-swatch {
  aspect-ratio: 1 / 1.1;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: inset 0 -10px 14px rgba(0,0,0,0.06);
}
.paint-name {
  font-family: var(--font-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 9.5px;
  color: var(--ink);
  font-weight: 600;
  margin-top: 8px;
  line-height: 1.2;
}
.paint-hex {
  font-family: "Courier New", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-top: 2px;
}
.swatch {
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  box-shadow: inset 0 -8px 18px rgba(0,0,0,0.08), 0 8px 18px -8px rgba(0,0,0,0.18);
}
.swatch::after {
  content: attr(data-name);
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 9px;
  color: var(--ink-soft);
  white-space: nowrap;
  font-weight: 500;
}

.dress-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  margin-top: 18px;
  box-shadow: 0 30px 60px -30px rgba(30, 34, 51, 0.3);
}

.suit-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.suit-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--font-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink);
  font-weight: 500;
  background: rgba(255,255,255,0.4);
}
.suit-chip .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.15);
}

/* ============================================ */
/* Bouquet mosaic                               */
/* ============================================ */
.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 720px;
  max-width: 880px;
  margin: 0 auto;
}
.mosaic .tile {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(30, 34, 51, 0.35);
  transition: transform 0.5s ease;
}
.mosaic .tile:hover { transform: scale(1.02); }
.mosaic .tile.tall { grid-row: 1 / span 2; }
.mosaic .tile .caption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--font-script);
  font-size: 28px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  line-height: 1;
}
@media (max-width: 700px) {
  .mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(3, 240px); height: auto; }
  .mosaic .tile.tall { grid-row: auto; }
}

/* ============================================ */
/* Bouquet moodboard                            */
/* ============================================ */
.moodboard {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  padding: 18px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--rule);
  box-shadow: 0 30px 60px -30px rgba(30, 34, 51, 0.35);
}
.moodboard::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(183, 169, 146, 0.4);
  pointer-events: none;
  z-index: 2;
}
.moodboard img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* ============================================ */
/* Registry                                     */
/* ============================================ */
.registry {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.registry-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* ============================================ */
/* RSVP                                         */
/* ============================================ */
.rsvp-form {
  max-width: 580px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--font-label);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  font-style: italic;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--olive);
}
.field textarea { resize: vertical; min-height: 80px; }

.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.choice {
  border: 1px solid var(--rule);
  background: rgba(255,255,255,0.4);
  padding: 18px 20px;
  cursor: pointer;
  text-align: center;
  font-family: var(--font-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink);
  transition: all 0.2s;
  font-weight: 500;
}
.choice.selected {
  background: var(--olive);
  color: var(--paper);
  border-color: var(--olive);
}
.choice .em {
  display: block;
  font-family: var(--font-script);
  font-size: 36px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--olive);
  margin-bottom: 4px;
  line-height: 1;
}
.choice.selected .em { color: var(--paper); }

.rsvp-submit { margin-top: 14px; justify-self: center; }

.rsvp-deadline {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

.rsvp-success {
  text-align: center;
  padding: 60px 20px;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,0.45);
}
.rsvp-success .script {
  font-size: 90px;
  color: var(--olive);
  display: block;
  margin-bottom: 12px;
}

/* ============================================ */
/* FAQ                                          */
/* ============================================ */
.faq {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  transition: color 0.2s;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--olive); }
.faq-item summary .plus {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--olive);
  transition: transform 0.3s;
  line-height: 0.6;
  font-weight: 300;
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .answer {
  padding-top: 14px;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

/* ============================================ */
/* Footer with watercolor garden                */
/* ============================================ */
footer {
  padding: 100px 28px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-monogram {
  font-family: var(--font-script);
  font-size: 110px;
  color: var(--olive);
  line-height: 0.9;
  margin-bottom: 18px;
}
.footer-names {
  font-family: var(--font-label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 500;
}
.footer-date {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
}
.footer-mark {
  margin-top: 30px;
  font-family: var(--font-label);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 10.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.footer-garden {
  margin-top: 60px;
  height: 240px;
  background-image: url("assets/garden-strip.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

/* ============================================ */
/* Section background variants                  */
/* ============================================ */
section.tone-sky {
  background: linear-gradient(to bottom, rgba(183, 194, 221, 0.18) 0%, rgba(245, 215, 194, 0.12) 100%);
}
section.tone-blush {
  background: linear-gradient(to bottom, transparent 0%, rgba(199, 125, 139, 0.06) 50%, transparent 100%);
}
section.tone-sage {
  background: linear-gradient(to bottom, transparent 0%, rgba(139, 158, 122, 0.08) 50%, transparent 100%);
}

/* Print-friendly */
@media print {
  body::before, body::after { display: none; }
  #petals { display: none; }
}
