@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Pinyon+Script&display=swap');

/* ============================================
   CSS VARIABLES — tuned to the invitation art
   warm oat cream + rust willow + quiet sage
   ============================================ */
:root {
  --cream: #F3ECDD;
  --cream-soft: #EFE6D3;
  --linen: #E8DDC6;
  --sage: #8C9B7E;
  --deep-sage: #5E6E58;
  --rust: #B06A3D;
  --rust-deep: #8D4F26;
  --rust-light: #D19771;
  --rust-ink: #6F3E1E;
  --charcoal: #3A2E22;
  --blush: #E6D2BE;
  --paper: #FBF5E8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --font-script: 'Pinyon Script', 'Cormorant Garamond', cursive;
  --transition: 0.3s ease;

  /* existing tokens kept for back-compat with inline styles */
  --ivory: var(--cream);
  --copper: var(--rust);
  --copper-light: var(--rust-light);
  --white: var(--paper);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(176,106,61,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 90% 100%, rgba(140,155,126,0.05) 0%, transparent 60%);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(243, 236, 221, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--blush);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.nav.hidden { transform: translateY(-100%); }

.nav-monogram {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--rust);
  letter-spacing: 0.02em;
  line-height: 1;
  padding-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--rust);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--rust); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--deep-sage); }
.nav-links a.active::after { transform: scaleX(1); background: var(--deep-sage); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--charcoal);
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--rust); }

.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--charcoal);
  font-family: var(--font-display);
}

/* ============================================
   BOTANICAL SVG DECORATIONS
   ============================================ */
.botanical-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 2.5rem 0;
  opacity: 0.6;
}

.botanical-corner-tl,
.botanical-corner-tr,
.botanical-corner-bl,
.botanical-corner-br {
  position: absolute;
  opacity: 0.35;
  pointer-events: none;
}

.botanical-corner-tl { top: 1.5rem; left: 1.5rem; }
.botanical-corner-tr { top: 1.5rem; right: 1.5rem; transform: scaleX(-1); }
.botanical-corner-bl { bottom: 1.5rem; left: 1.5rem; transform: scaleY(-1); }
.botanical-corner-br { bottom: 1.5rem; right: 1.5rem; transform: scale(-1); }

/* ============================================
   PAGE WRAPPER
   ============================================ */
.page { padding-top: 72px; min-height: 100vh; }

/* ============================================
   HERO SECTION — invitation-card feel
   ============================================ */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--cream);
}

.hero-arch {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 4.5rem 3.5rem 3.25rem;
  max-width: 540px;
  width: 100%;
  background: var(--paper);
  z-index: 2;
}

/* Outer arched frame (solid hairline, like the invitation's outer arch) */
.hero-arch::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(176,106,61,0.55);
  border-radius: 260px 260px 8px 8px;
  pointer-events: none;
}

/* Inner dashed arch — echoes the dotted rectangles on the Minted card */
.hero-arch::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(141,79,38,0.45);
  border-radius: 248px 248px 4px 4px;
  pointer-events: none;
}

/* Dotted inner frame around the text block */
.hero-inner-frame {
  position: relative;
  padding: 1.75rem 1.25rem 1.25rem;
  border-top: 1px dotted rgba(141,79,38,0.5);
  border-bottom: 1px dotted rgba(141,79,38,0.5);
  margin: 0.75rem 0 1.25rem;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
  animation: fadeUp 1s ease 0.2s both;
  display: block;
}

.hero-names {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--rust-ink);
  line-height: 1.02;
  margin-bottom: 0.25rem;
  animation: fadeUp 1s ease 0.4s both;
  letter-spacing: 0.01em;
}

.hero-ampersand {
  font-family: var(--font-script);
  color: var(--rust);
  display: block;
  font-size: 0.75em;
  font-style: normal;
  line-height: 0.8;
  margin: -0.1em 0 -0.05em;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--deep-sage);
  margin: 1.25rem 0 1.5rem;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  animation: fadeUp 1s ease 0.8s both;
}

.hero-date {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--rust);
  letter-spacing: 0.05em;
}

.hero-location {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}

.hero-rsvp-flourish {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--rust);
  margin-top: 1.5rem;
  line-height: 1;
  animation: fadeUp 1s ease 0.95s both;
}

/* ============================================
   COUNTDOWN
   ============================================ */
.countdown {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  margin-top: 3rem;
  animation: fadeUp 1s ease 1s both;
  position: relative;
  z-index: 2;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--rust);
  line-height: 1;
  min-width: 2.5ch;
  text-align: center;
}

.countdown-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--rust-light);
  align-self: center;
  padding-bottom: 1rem;
  opacity: 0.6;
}

/* ============================================
   HERO BOTANICALS (willow tendrils, like the invitation)
   ============================================ */
.hero-botanical-left,
.hero-botanical-right {
  position: absolute;
  opacity: 0.38;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  pointer-events: none;
  z-index: 1;
}

.hero-botanical-left { left: -60px; }
.hero-botanical-right { right: -60px; transform: translateY(-50%) scaleX(-1); }

@media (max-width: 900px) {
  .hero-botanical-left, .hero-botanical-right { opacity: 0.22; width: 220px; }
  .hero-botanical-left { left: -90px; }
  .hero-botanical-right { right: -90px; }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.section-inner.wide { max-width: 1100px; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--rust-ink);
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--sage);
  margin-top: 0.75rem;
  font-style: italic;
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  opacity: 0.55;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--rust);
}

.divider-leaf {
  color: var(--rust);
  font-size: 1rem;
}

/* Alternate linen section */
.section-linen {
  background: var(--cream-soft);
  border-top: 1px solid var(--blush);
  border-bottom: 1px solid var(--blush);
}

/* ============================================
   DETAIL CARDS
   ============================================ */
.detail-card {
  background: var(--paper);
  border: 1px solid var(--blush);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.detail-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dotted rgba(176,106,61,0.28);
  border-radius: 2px;
  pointer-events: none;
}

.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(141,79,38,0.08);
}

.detail-card-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
  position: relative;
}

.detail-card h2,
.detail-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 500;
  color: var(--rust-ink);
  margin-bottom: 0.75rem;
  position: relative;
}

.detail-card p {
  color: var(--charcoal);
  opacity: 0.82;
  font-size: 1rem;
  position: relative;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

/* ============================================
   ACCOMMODATION CARDS
   ============================================ */
.accom-message {
  background: var(--cream-soft);
  border: 1px solid var(--blush);
  border-radius: 4px;
  padding: 3rem;
  text-align: center;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.accom-message::before,
.accom-message::after {
  content: '"';
  font-size: 5rem;
  color: var(--rust);
  opacity: 0.2;
  font-family: var(--font-display);
  position: absolute;
  line-height: 1;
}

.accom-message::before { top: 0.5rem; left: 1rem; }
.accom-message::after { bottom: -1rem; right: 1rem; content: '"'; }

.accom-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.accom-card {
  background: var(--paper);
  border: 1px solid var(--blush);
  padding: 2.5rem;
  border-radius: 4px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.accom-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(141,79,38,0.08);
}

.accom-card-pin {
  width: 40px; height: 40px;
  margin: 0 auto 1.25rem;
  color: var(--rust);
}

.accom-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--rust-ink);
  margin-bottom: 0.75rem;
}

.accom-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  opacity: 0.78;
  font-style: italic;
}

/* ============================================
   DRESS CODE HIGHLIGHT
   ============================================ */
.dresscode-highlight {
  text-align: center;
  padding: 3.5rem 2rem;
  background: var(--paper);
  border: 1px solid var(--blush);
  border-radius: 4px;
  margin: 2rem 0;
  position: relative;
}

.dresscode-highlight::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dotted rgba(176,106,61,0.35);
  border-radius: 2px;
  pointer-events: none;
}

.dresscode-main {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-style: italic;
  color: var(--rust);
  margin-bottom: 1rem;
  position: relative;
}

.dresscode-note {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal);
  opacity: 0.78;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

/* ============================================
   RSVP FORM
   ============================================ */
.rsvp-container {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--blush);
}

.form-section:last-of-type { border-bottom: none; }

.form-section-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--blush);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-sage);
  margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--blush);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(176, 106, 61, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Radio toggles */
.radio-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--blush);
  border-radius: 2px;
  overflow: hidden;
}

.radio-toggle input { display: none; }

.radio-toggle label {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  background: var(--paper);
  color: var(--charcoal);
  transition: all var(--transition);
  border-right: 1px solid var(--blush);
  margin: 0;
  text-transform: none;
}

.radio-toggle label:last-child { border-right: none; }

.radio-toggle input:checked + label {
  background: var(--rust);
  color: var(--paper);
  border-color: var(--rust);
}

/* Meal choice */
.meal-choice {
  display: flex;
  gap: 1rem;
}

.meal-option {
  flex: 1;
  position: relative;
}

.meal-option input { display: none; }

.meal-option label {
  display: block;
  text-align: center;
  padding: 1rem;
  border: 1.5px solid var(--blush);
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal);
  background: var(--paper);
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

.meal-option input:checked + label {
  border-color: var(--rust);
  background: rgba(176, 106, 61, 0.08);
  color: var(--rust);
}

.meal-option label:hover {
  border-color: var(--sage);
}

/* Hidden sections */
.hidden-section {
  display: none;
  animation: fadeDown 0.4s ease;
}

.hidden-section.visible { display: block; }

/* Guest block */
.guest-block {
  background: var(--cream-soft);
  border: 1px solid var(--blush);
  border-radius: 3px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.guest-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.guest-block-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}

.remove-guest {
  background: none;
  border: none;
  color: var(--rust);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.75;
  transition: opacity var(--transition);
}

.remove-guest:hover { opacity: 1; }

.btn-add-guest {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1.5px solid var(--rust);
  color: var(--rust);
  padding: 0.6rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition);
  margin-top: 0.5rem;
}

.btn-add-guest:hover {
  background: var(--rust);
  color: var(--paper);
}

/* Transport helper */
.transport-helper {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--sage);
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(140, 155, 126, 0.1);
  border-left: 2px solid var(--sage);
  border-radius: 0 2px 2px 0;
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--rust);
  color: var(--paper);
  border: none;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 1rem;
}

.btn-submit:hover {
  background: var(--rust-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(141,79,38,0.25);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: var(--cream);
}

.thankyou-inner {
  max-width: 560px;
  position: relative;
  padding: 4rem 3rem;
  animation: fadeUp 1s ease 0.2s both;
  background: var(--paper);
}

.thankyou-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(176,106,61,0.55);
  border-radius: 280px 280px 4px 4px;
}

.thankyou-inner::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(141,79,38,0.4);
  border-radius: 268px 268px 2px 2px;
  pointer-events: none;
}

.thankyou-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  display: block;
  animation: fadeUp 1s ease 0.4s both;
  position: relative;
}

.thankyou-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  color: var(--rust-ink);
  margin-bottom: 1.5rem;
  line-height: 1.25;
  animation: fadeUp 1s ease 0.6s both;
  position: relative;
}

.thankyou-subtitle {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--rust);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.7s both;
  position: relative;
  line-height: 1.2;
}

.thankyou-body {
  font-size: 1rem;
  color: var(--charcoal);
  opacity: 0.78;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease 0.8s both;
  position: relative;
}

.thankyou-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color var(--transition);
  animation: fadeUp 1s ease 1s both;
  display: inline-block;
  position: relative;
}

.thankyou-link:hover { color: var(--rust); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--blush);
  text-align: center;
  padding: 3.5rem 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; max-width: 300px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rust), transparent);
  opacity: 0.5;
}

.footer-names {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--rust-light);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.footer-date {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes leafDrift {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-8px); }
}

@keyframes willowSway {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(-50%) rotate(1.2deg); }
}
@keyframes willowSwayRight {
  0%, 100% { transform: translateY(-50%) scaleX(-1) rotate(0deg); }
  50% { transform: translateY(-50%) scaleX(-1) rotate(1.2deg); }
}

.hero-botanical-left {
  transform-origin: top center;
  animation: willowSway 9s ease-in-out infinite;
}
.hero-botanical-right {
  transform-origin: top center;
  animation: willowSwayRight 11s ease-in-out infinite;
}

.leaf-drift { animation: leafDrift 6s ease-in-out infinite; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

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

  .section { padding: 4rem 1.5rem; }

  .hero-arch { padding: 3.25rem 1.75rem 2.5rem; }

  .countdown { gap: 1rem; }
  .countdown-sep { display: none; }

  .timeline::before { left: 12px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    text-align: left;
  }

  .accom-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-names { font-size: 2.6rem; }
  .countdown-number { font-size: 2rem; }
  .accom-message { padding: 2rem 1.5rem; }
  .hero-botanical-left, .hero-botanical-right { display: none; }
}

/* ── VALIDATION ── */
.field-error input,
.field-error textarea { border-color: #C0573A !important; box-shadow: 0 0 0 3px rgba(192,87,58,.12) !important; background: #FDF6F4 !important; }
.field-error .rtoggle { border-color: #C0573A !important; box-shadow: 0 0 0 3px rgba(192,87,58,.12) !important; }
.field-error .meal-choice .meal-option label { border-color: #C0573A !important; }
.error-msg { display: none; font-family: var(--font-display); font-style: italic; font-size: .82rem; color: #C0573A; margin-top: .35rem; }
.field-error .error-msg { display: block; }
