@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&family=Great+Vibes&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

@font-face {
  font-family: 'Adelia';
  src: url('../font/adelia.woff2') format('woff2'),
       url('../font/adelia.otf') format('opentype'),
       url('../font/adelia.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Sage */
  --sage:           #7B9EC5;
  --sage-mid:       #5A7DAF;
  --sage-deep:      #2D4A6B;
  --sage-deeper:    #1E3558;
  --sage-light:     #AABFD8;
  --sage-pale:      #EBF0F8;
  --sage-ultra:     #F3F7FC;
  /* Dusty blue */
  --dusty-blue:     #6B8FBF;
  --blue-pale:      #E5EEF8;
  /* Warm */
  --champagne:      #C9A87A;
  --champagne-pale: #F7F0E2;
  /* Neutrals */
  --white:          #FFFFFF;
  --off-white:      #FAFAF8;
  --charcoal:       #2D3748;
  --text-mid:       #4A5568;
  --text-light:     #718096;
  --border-light:   rgba(123, 158, 197, 0.18);
  --border-mid:     rgba(123, 158, 197, 0.35);
  /* Fonts */
  --font-display:   'Cinzel', 'Cormorant Garamond', serif;
  --font-script:    'Adelia', cursive;
  --font-names:     'Great Vibes', cursive;
  --font-heading:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'DM Sans', 'Helvetica Neue', sans-serif;
  /* Layout */
  --section-pad:    clamp(80px, 12vw, 140px);
  --container:      1100px;
  --transition:     0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--white); color: var(--charcoal); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(24px, 6vw, 64px); }

/* ── NAV ─────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background var(--transition), box-shadow var(--transition); }
.nav.scrolled { background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border-light); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(24px, 6vw, 64px); height: 70px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-names); font-size: 2.2rem; letter-spacing: 0.05em; transition: color var(--transition); }
.nav-logo .amp { color: var(--champagne); }
.nav.scrolled .nav-logo { color: var(--charcoal); }
.nav:not(.scrolled) .nav-logo { color: var(--white); }
.nav-links { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.nav-links a { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); transition: color var(--transition); }
.nav:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, 0.82); }
.nav-links a:hover { color: var(--sage-mid); }
.nav:not(.scrolled) .nav-links a:hover { color: var(--white); }
.nav-rsvp { border: 1px solid var(--sage) !important; color: var(--sage-mid) !important; padding: 8px 18px; transition: background var(--transition), color var(--transition) !important; }
.nav:not(.scrolled) .nav-rsvp { border-color: rgba(255, 255, 255, 0.55) !important; color: rgba(255, 255, 255, 0.88) !important; }
.nav-rsvp:hover { background: var(--sage) !important; color: var(--white) !important; border-color: var(--sage) !important; }
.nav-divider { width: 1px; height: 14px; background: rgba(123, 158, 197, 0.3); align-self: center; list-style: none; }
.nav:not(.scrolled) .nav-divider { background: rgba(255, 255, 255, 0.25); }
.nav-rsvp-soon { opacity: 0.4 !important; cursor: default !important; pointer-events: none; }
.mobile-link-soon { opacity: 0.4; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--charcoal); transition: var(--transition); }
.nav:not(.scrolled) .nav-hamburger span { background: var(--white); }
.nav-mobile { display: none; flex-direction: column; background: rgba(255, 255, 255, 0.98); padding: 20px clamp(24px, 6vw, 64px) 32px; gap: 4px; }
.nav-mobile.open { display: flex; }
.mobile-link { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-mid); padding: 12px 0; border-bottom: 1px solid var(--border-light); transition: color var(--transition); }
.mobile-link:hover { color: var(--sage-mid); }

/* ── HERO ────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-start; justify-content: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  /* ── Hero photo: drop your image at site/images/hero.jpg ── */
  background-image: url('../images/hero.jpg');
  background-size: cover; background-position: center;
  background-color: #c8d5e2;
  filter: saturate(0.78) brightness(1.04);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  /* Subtle top-to-bottom light wash to enhance text readability in the sky area */
  background: linear-gradient(to bottom, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.08) 50%, transparent 72%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(60, 121, 131, 0.6);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: clamp(110px, 18vh, 220px) clamp(24px, 6vw, 64px) 200px; width: 100%; }
.hero-eyebrow { font-family: var(--font-display); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.44em; text-transform: uppercase; color: rgba(255, 255, 255, 0.78); margin-bottom: 1.2rem; }
.hero-names { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 8rem); font-weight: 400; color: var(--white); line-height: 1; display: flex; align-items: center; justify-content: center; gap: clamp(1.2rem, 3.5vw, 4rem); letter-spacing: 0.1em; flex-wrap: wrap; }
.hero-and { font-family: var(--font-script); font-size: 0.46em; color: var(--white); align-self: center; line-height: 1; letter-spacing: 0; }
.hero-date { font-family: var(--font-display); font-size: clamp(1rem, 1.8vw, 1.5rem); font-weight: 400; color: rgba(255, 255, 255, 0.88); letter-spacing: 0.35em; margin-top: 1.8rem; }
.hero-scroll-hint { position: absolute; bottom: 180px; left: clamp(24px, 6vw, 64px); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll-hint span { font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(0.7); } }
.countdown-bar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(16px); border-top: 1px solid rgba(0, 0, 0, 0.07); display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 4vw, 4rem); padding: 24px clamp(24px, 6vw, 64px); }
.countdown-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cd-num { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-style: italic; font-weight: 300; color: var(--charcoal); line-height: 1; min-width: 2.5ch; text-align: center; }
.cd-label { font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(30, 30, 30, 0.45); }
.countdown-sep { font-size: 0.9rem; color: rgba(30, 30, 30, 0.25); align-self: center; padding-bottom: 16px; }

/* ── SECTION FOUNDATIONS ─────────────────────────────── */
.section { padding: var(--section-pad) 0; }
.alt-section { background: var(--sage-pale); }
.light-section { background: var(--off-white); }
.dark-section {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(60, 100, 160, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(45, 74, 107, 0.32) 0%, transparent 55%),
    linear-gradient(135deg, #1E3A5A 0%, #2D4F76 100%);
  color: var(--white);
}
.dark-section .section-label { color: rgba(255, 255, 255, 0.5); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-subtitle { color: rgba(255, 255, 255, 0.55); }
.section-label { font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.44em; text-transform: uppercase; color: var(--sage-mid); margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 4rem); font-style: italic; font-weight: 300; color: var(--charcoal); line-height: 1.15; margin-bottom: 1rem; }
.section-subtitle { font-family: var(--font-body); font-size: 0.9rem; font-weight: 300; color: var(--text-light); margin-bottom: 4rem; letter-spacing: 0.02em; line-height: 1.8; }

/* ── OUR STORY ───────────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 360px; gap: 5rem; align-items: start; margin-top: 3rem; }
.story-block { display: grid; grid-template-columns: 70px 1fr; gap: 2rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-light); }
.story-block:last-child { border-bottom: none; }
.story-year { font-family: var(--font-heading); font-size: 3.2rem; font-style: italic; font-weight: 300; color: var(--sage-light); line-height: 1; padding-top: 4px; }
.story-content h3 { font-family: var(--font-heading); font-size: 1.6rem; font-style: italic; font-weight: 400; color: var(--charcoal); margin-bottom: 0.5rem; line-height: 1.2; }
.story-content p { font-family: var(--font-body); font-size: 0.93rem; line-height: 1.9; color: var(--text-mid); font-weight: 300; }
.story-photo-frame { aspect-ratio: 3/4; background: linear-gradient(135deg, var(--sage-pale), var(--blue-pale)); border: 1px solid var(--border-mid); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.story-photo-frame::before { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(143, 168, 156, 0.22); pointer-events: none; z-index: 1; }
.story-photo-frame img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.photo-icon { font-size: 2rem; color: var(--sage-light); margin-bottom: 0.5rem; text-align: center; }
.story-photo-placeholder { text-align: center; color: var(--sage-mid); font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.1em; position: relative; z-index: 2; }
.story-quote { margin-top: 2rem; padding: 1.5rem; border-left: 2px solid var(--champagne); }
.story-quote blockquote { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 300; font-style: italic; color: var(--text-mid); line-height: 1.65; }

/* ── SCHEDULE ─────────────────────────────────────────── */
.timeline { position: relative; max-width: 700px; margin: 3rem auto 0; }
.timeline::before { content: ''; position: absolute; left: 110px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, var(--border-mid) 10%, var(--border-mid) 90%, transparent); }
.timeline-item { display: grid; grid-template-columns: 110px 20px 1fr; gap: 0 2rem; margin-bottom: 3rem; align-items: start; }
.timeline-time { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; color: var(--text-light); text-align: right; padding-top: 5px; }
.timeline-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sage); border: 2px solid var(--sage-pale); margin-top: 4px; justify-self: center; box-shadow: 0 0 0 2px var(--border-mid); }
.timeline-event h3 { font-family: var(--font-heading); font-size: 1.55rem; font-style: italic; font-weight: 400; color: var(--charcoal); margin-bottom: 0.35rem; line-height: 1.2; }
.timeline-event p { font-family: var(--font-body); font-size: 0.88rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; }

/* ── SCHEDULE PAGE LINKS ─────────────────────────────── */
.schedule-page-links { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border-light); }
.schedule-page-link { font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-mid); border-bottom: 1px solid rgba(90, 125, 175, 0.4); padding-bottom: 2px; transition: color var(--transition), border-color var(--transition); }
.schedule-page-link:hover { color: var(--sage-deep); border-color: var(--sage-deep); }

/* ── SUBPAGE ──────────────────────────────────────────── */
.subpage-hero { height: 70px; }

/* ── VENUE ───────────────────────────────────────────── */
.venue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 3rem; }
.venue-card { background: var(--white); padding: 2.5rem; border: 1px solid var(--border-light); border-top: 2px solid var(--sage-light); transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); }
.venue-card:hover { border-top-color: var(--sage-mid); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45, 55, 72, 0.08); }
.venue-card-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.venue-card h3 { font-family: var(--font-heading); font-size: 1.5rem; font-style: italic; font-weight: 400; color: var(--charcoal); margin-bottom: 0.75rem; line-height: 1.2; }
.venue-card p { font-family: var(--font-body); font-size: 0.88rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; }
.venue-link { display: inline-block; margin-top: 1rem; font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.1em; color: var(--sage-mid); font-weight: 500; transition: color var(--transition); }
.venue-link:hover { color: var(--champagne); }
.venue-card-wide { grid-column: 1 / -1; }
.venue-links-row { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; }
.venue-note { margin-top: 2.5rem; padding: 1.5rem 2rem; background: var(--sage-ultra); border-left: 2px solid var(--sage-mid); }
.venue-note p { font-family: var(--font-body); font-size: 0.88rem; line-height: 1.75; color: var(--text-mid); }

/* ── VESSEL SECTION ───────────────────────────────────── */
.vessel-section { background: rgba(173, 209, 219); overflow: hidden; }
.vessel-img { display: block; width: 100%; height: auto; }
.vessel-details { padding: clamp(2.5rem, 4vw, 4rem) 0 clamp(3rem, 5vw, 5rem); }
.vessel-details-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(24px, 6vw, 64px); }
.vessel-section-label { font-family: var(--font-body); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.44em; text-transform: uppercase; color: rgba(100, 120, 126, 1); margin-bottom: 1.5rem; }
.vessel-list { margin-bottom: 2.5rem; }
.vessel-info-desc { font-family: var(--font-heading); font-size: clamp(0.95rem, 1.3vw, 1.18rem); font-weight: 300; color: rgba(100, 120, 126, 1); line-height: 1.65; padding: 0.85rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.vessel-list .vessel-info-desc:last-child { border-bottom: none; }
.vessel-links { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.vessel-link { font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(100, 120, 126, 1); border-bottom: 1px solid rgba(100, 120, 126, 0.4); padding-bottom: 2px; transition: color var(--transition), border-color var(--transition); }
.vessel-link:hover { color: rgba(70, 90, 95, 1); border-color: rgba(70, 90, 95, 0.7); }

/* ── CEREMONY SECTION ─────────────────────────────────── */
.ceremony-section { background: rgba(150, 190, 200); overflow: hidden; }
.ceremony-img { display: block; width: 100%; height: auto; }
.ceremony-details { padding: clamp(2.5rem, 4vw, 4rem) 0 clamp(3rem, 5vw, 5rem); }
.ceremony-details-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(24px, 6vw, 64px); }
.ceremony-section-label { font-family: var(--font-body); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.44em; text-transform: uppercase; color: rgba(100, 120, 126, 1); margin-bottom: 1.5rem; }
.ceremony-list { margin-bottom: 2.5rem; }
.ceremony-info-desc { font-family: var(--font-heading); font-size: clamp(0.95rem, 1.3vw, 1.18rem); font-weight: 300; color: rgba(100, 120, 126, 1); line-height: 1.65; padding: 0.85rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.ceremony-list .ceremony-info-desc:last-child { border-bottom: none; }
.ceremony-links { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.ceremony-link { font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(100, 120, 126, 1); border-bottom: 1px solid rgba(100, 120, 126, 0.4); padding-bottom: 2px; transition: color var(--transition), border-color var(--transition); }
.ceremony-link:hover { color: rgba(70, 90, 95, 1); border-color: rgba(70, 90, 95, 0.7); }

/* ── EASTER EGG ──────────────────────────────────────── */
.easter-egg {
  display: inline-block;
  color: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  margin-top: 0.75rem;
  transition: color 0.4s ease;
  cursor: pointer;
  text-decoration: none;
}
.easter-egg:hover { color: rgba(255, 255, 255, 0.35); }

/* ── GALLERY ─────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 3rem; }
.gallery-item { aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-placeholder { width: 100%; height: 100%; background: rgba(143, 168, 156, 0.1); border: 1px solid var(--border-mid); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; transition: border-color var(--transition), background var(--transition); }
.gallery-placeholder:hover { background: rgba(143, 168, 156, 0.18); border-color: var(--sage-light); }
.gallery-placeholder span { font-size: 1.4rem; color: var(--sage-light); }
.gallery-placeholder p { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-light); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; font-family: var(--font-heading); font-size: 1.35rem; font-style: italic; font-weight: 400; color: var(--charcoal); text-align: left; gap: 1rem; transition: color var(--transition); line-height: 1.3; }
.faq-q:hover { color: var(--sage-mid); }
.faq-icon { font-size: 1.3rem; font-weight: 300; color: var(--sage); flex-shrink: 0; transition: transform var(--transition); font-family: var(--font-body); font-style: normal; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding-bottom: 1.5rem; font-family: var(--font-body); font-size: 0.9rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; }
.faq-item.open .faq-a { max-height: 300px; }

/* ── RSVP ────────────────────────────────────────────── */
.rsvp-container { max-width: 660px; text-align: center; }
.rsvp-form { margin-top: 3rem; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.form-group label { font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); }
.form-group input, .form-group select, .form-group textarea { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18); color: var(--white); padding: 14px 16px; font-family: var(--font-body); font-size: 0.88rem; font-weight: 300; transition: border-color var(--transition), background var(--transition); outline: none; appearance: none; -webkit-appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255, 255, 255, 0.28); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.13); }
.form-group select option { background: var(--sage-deep); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.radio-group { display: flex; gap: 2rem; flex-wrap: wrap; }
.radio-label { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; font-family: var(--font-body); font-size: 0.88rem; font-weight: 300; color: var(--white); }
.radio-label input[type="radio"] { display: none; }
.radio-custom { width: 18px; height: 18px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color var(--transition); }
.radio-custom::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--white); opacity: 0; transition: opacity var(--transition); }
.radio-label input[type="radio"]:checked ~ .radio-custom { border-color: var(--white); }
.radio-label input[type="radio"]:checked ~ .radio-custom::after { opacity: 1; }
.rsvp-submit { width: 100%; padding: 18px; background: var(--white); color: var(--sage-deep); font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; border: none; cursor: pointer; margin-top: 0.5rem; transition: background var(--transition), transform var(--transition), color var(--transition); }
.rsvp-submit:hover { background: var(--sage-pale); color: var(--sage-deep); transform: translateY(-2px); }
.rsvp-message { margin-top: 1.5rem; text-align: center; font-family: var(--font-body); font-size: 0.88rem; min-height: 1.5rem; font-weight: 300; }
.rsvp-message.success { color: rgba(255, 255, 255, 0.88); }
.rsvp-message.error { color: #ffd0c8; }

/* ── RSVP COMING SOON ────────────────────────────────── */
.rsvp-soon-section { background: var(--sage-pale); text-align: center; }
.rsvp-soon-section .section-title { font-style: italic; color: var(--charcoal); }
.rsvp-soon-section .section-subtitle { max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: var(--charcoal); border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 3rem clamp(24px, 6vw, 64px); }
.footer-inner { max-width: var(--container); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.footer-names { font-family: var(--font-names); font-size: 3rem; color: var(--white); }
.footer-names .amp { color: rgba(201, 168, 122, 0.75); }
.footer-date { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.38); }
.footer-heart { font-size: 0.9rem; color: rgba(143, 168, 156, 0.55); margin-top: 0.5rem; }

/* ── REVEAL ANIMATIONS ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-visual { order: -1; max-width: 320px; }
  .venue-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 90px; }
  .timeline-item { grid-template-columns: 90px 18px 1fr; }
}
@media (max-width: 600px) {
  .hero-names { flex-direction: column; gap: 0.4rem; }
  .hero-and { font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .countdown-bar { flex-wrap: wrap; gap: 1rem; }
  .countdown-sep { display: none; }
  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 75px 1fr; gap: 1rem; }
  .timeline-dot { display: none; }
  .story-block { grid-template-columns: 45px 1fr; gap: 1rem; }
  .story-year { font-size: 2.8rem; }
}
