/* ═══════════════════════════════════════════════════════════
   CAMILLA & SAMU WEDDING WEBSITE — STYLESHEET
   Colour palette:
     --brown   #604000   dark warm brown
     --beige   #F4E8DC   neutral beige
     --white   #FDFBF9   soft white
     --peach   #FFDBB7   peach accent
   ═══════════════════════════════════════════════════════════ */

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

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

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #3d2800;
  background: #FDFBF9;
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: #604000; text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; }

address { font-style: normal; }

img, iframe { max-width: 100%; }

.hidden { display: none !important; }

/* ─── CSS VARIABLES ─── */
:root {
  --brown:       #604000;
  --brown-mid:   #7a5200;
  --brown-dark:  #3d2800;
  --beige:       #F4E8DC;
  --beige-light: #faf3ee;
  --white:       #FDFBF9;
  --peach:       #FFDBB7;
  --peach-light: #fff5ec;
  --shadow:      0 4px 24px rgba(96,64,0,0.10);
  --shadow-sm:   0 2px 12px rgba(96,64,0,0.08);
  --radius:      12px;
  --radius-sm:   8px;
  --max-width:   1100px;
  --section-pad: 80px 24px;
}

/* ─── FADE-IN ANIMATION ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════
   PASSWORD OVERLAY
   ═══════════════════════════════════════════════════════════ */
.password-overlay {
  position: fixed;
  inset: 0;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(255,219,183,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,219,183,0.3) 0%, transparent 50%);
}

.password-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(96,64,0,0.15);
  border: 1px solid rgba(96,64,0,0.08);
}

.pw-floral-svg { width: 100%; max-width: 220px; height: 60px; }

.pw-names {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.6;
  margin-top: 4px;
}

.pw-script {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--brown);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.pw-line {
  width: 60px;
  height: 1px;
  background: var(--peach);
  margin: 20px auto;
}

.pw-hint {
  font-size: 0.85rem;
  color: var(--brown-dark);
  opacity: 0.65;
  margin-bottom: 20px;
}

.pw-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.pw-form input[type="password"] {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid rgba(96,64,0,0.2);
  border-radius: var(--radius-sm);
  background: var(--beige-light);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--brown-dark);
  outline: none;
  transition: border-color 0.2s;
}
.pw-form input[type="password"]:focus {
  border-color: var(--brown);
}
.pw-form input[type="password"]::placeholder {
  color: rgba(96,64,0,0.4);
}

.pw-form button {
  padding: 12px 20px;
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.pw-form button:hover  { background: var(--brown-mid); }
.pw-form button:active { transform: scale(0.98); }

.pw-error {
  margin-top: 12px;
  font-size: 0.82rem;
  color: #b94040;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60%  { transform: translateX(-6px); }
  40%,80%  { transform: translateX(6px); }
}

/* ═══════════════════════════════════════════════════════════
   HEADER & HAMBURGER NAV
   ═══════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 800;
  background: rgba(253,251,249,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(96,64,0,0.07);
  transition: box-shadow 0.3s;
}
#site-header.scrolled {
  box-shadow: 0 2px 16px rgba(96,64,0,0.08);
}

.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.site-logo span { font-weight: 300; }

/* Hamburger button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s;
}
.hamburger-btn:hover { background: rgba(96,64,0,0.07); }
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── NAV DRAWER ─── */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--white);
  z-index: 900;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: -4px 0 32px rgba(96,64,0,0.12);
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }

.nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--brown);
  cursor: pointer;
  padding: 20px 24px 8px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-close:hover { opacity: 1; }

.nav-header-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--brown);
  text-align: center;
  padding: 8px 24px 24px;
  border-bottom: 1px solid rgba(96,64,0,0.08);
}

.nav-list {
  padding: 16px 0 32px;
}
.nav-list li { display: block; }
.nav-link {
  display: block;
  padding: 13px 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--brown-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent;
}
.nav-link:hover {
  background: var(--beige-light);
  color: var(--brown);
  border-left-color: var(--peach);
  text-decoration: none;
}
.rsvp-nav-link {
  margin: 8px 24px 0;
  padding: 11px 20px;
  background: var(--brown);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent !important;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}
.rsvp-nav-link:hover {
  background: var(--brown-mid);
  border-left-color: transparent !important;
}

/* Backdrop overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61,40,0,0.4);
  z-index: 850;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ═══════════════════════════════════════════════════════════
   COMMON SECTION STYLES
   ═══════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-pad);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-beige { background-color: var(--beige-light); }
.bg-white  { background-color: var(--white); }

.section-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-inner--narrow {
  max-width: 720px;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-ornament {
  display: block;
  font-size: 1.3rem;
  color: var(--peach);
  margin-bottom: 10px;
  letter-spacing: 0.2em;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.section-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--peach), transparent);
  margin: 16px auto 0;
}

.section-subtitle {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--brown);
  opacity: 0.65;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(255,219,183,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(244,232,220,0.4) 0%, transparent 55%),
    var(--white);
  overflow: hidden;
  padding-top: 80px;
  flex-direction: column;
}

/* Floral side decorations */
.hero-floral {
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-floral--left  { left: 0; }
.hero-floral--right { right: 0; transform: scaleX(-1); }
.hero-floral svg    { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.55;
  margin-bottom: 12px;
}

.hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 10vw, 5.5rem);
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 6px;
  font-weight: 400;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 300;
  color: var(--brown);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 20px;
}

.hero-ornament {
  font-size: 1rem;
  color: var(--peach);
  letter-spacing: 0.3em;
  margin-bottom: 24px;
  opacity: 0.8;
}

.hero-invite-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 300;
  color: var(--brown-dark);
  line-height: 1.9;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-church {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.05em;
  margin: 4px 0;
}

.hero-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 20px 32px;
  margin: 8px 0;
  border: 1px solid rgba(96,64,0,0.15);
  border-radius: var(--radius);
  background: rgba(255,219,183,0.15);
  backdrop-filter: blur(4px);
  position: relative;
}
.hero-date-block::before,
.hero-date-block::after {
  content: '❀';
  position: absolute;
  font-size: 0.8rem;
  color: var(--peach);
  opacity: 0.7;
}
.hero-date-block::before { top: 8px; left: 12px; }
.hero-date-block::after  { bottom: 8px; right: 12px; }

.hero-day {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.6;
}

.hero-big-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 300;
  color: var(--brown);
  line-height: 1;
  margin: 4px 0;
}

.hero-month-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--brown);
  letter-spacing: 0.08em;
  font-weight: 400;
}

.hero-time {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.7;
  margin-top: 6px;
}

.hero-rsvp-note {
  font-size: 0.88rem;
  opacity: 0.55;
  letter-spacing: 0.05em;
  font-style: italic;
}

.hero-welcome {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--brown);
  margin-top: 6px;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0 32px;
  padding: 16px 28px;
  background: var(--beige-light);
  border-radius: 100px;
  border: 1px solid rgba(96,64,0,0.1);
}

.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.cd-item span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1;
}

.cd-label {
  font-size: 0.62rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.55;
  font-family: 'Lato', sans-serif !important;
  margin-top: 2px;
}

.cd-sep {
  font-size: 1.2rem;
  color: var(--peach);
  opacity: 0.7;
  line-height: 1;
  padding-bottom: 12px;
}

/* Primary button */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--brown);
  color: var(--white);
  border-radius: 100px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(96,64,0,0.2);
}
.btn-primary:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(96,64,0,0.25);
  text-decoration: none;
  color: var(--white);
}
.btn-primary:active { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   VENUE SECTION
   ═══════════════════════════════════════════════════════════ */
.venue-section { min-height: auto; }

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.venue-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(96,64,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s;
}
.venue-card:hover { box-shadow: var(--shadow); }

.venue-icon { display: flex; align-items: center; }

.venue-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--peach-light);
  border: 1px solid rgba(255,219,183,0.8);
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--brown);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  align-self: flex-start;
}

.venue-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brown);
  line-height: 1.2;
}

.venue-address {
  font-size: 0.9rem;
  color: var(--brown-dark);
  opacity: 0.7;
  line-height: 1.6;
}

.venue-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--brown-dark);
  opacity: 0.8;
}

.map-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(96,64,0,0.1);
  margin-top: 4px;
}

.map-placeholder {
  background: var(--beige-light);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-inner {
  text-align: center;
  color: var(--brown);
  opacity: 0.5;
  font-size: 0.85rem;
  line-height: 1.8;
}

.map-link {
  font-size: 0.82rem;
  color: var(--brown);
  opacity: 0.7;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
  display: inline-block;
  margin-top: 4px;
}
.map-link:hover { opacity: 1; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   GETTING THERE
   ═══════════════════════════════════════════════════════════ */
.getting-section { min-height: auto; }

.getting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
  background: var(--beige-light);
  border-radius: var(--radius);
  padding: 28px 28px;
  border: 1px solid rgba(96,64,0,0.06);
  transition: box-shadow 0.3s;
}
.info-card:hover { box-shadow: var(--shadow-sm); }

.info-card--wide { grid-column: 1 / -1; }

.info-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
}

.info-card p, .info-card li {
  font-size: 0.9rem;
  color: var(--brown-dark);
  opacity: 0.8;
  line-height: 1.75;
}

.info-card ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-card ul li {
  padding-left: 16px;
  position: relative;
}
.info-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--peach);
  font-weight: 400;
}

.info-card a {
  color: var(--brown);
  border-bottom: 1px solid rgba(96,64,0,0.3);
  transition: border-color 0.2s;
}
.info-card a:hover { border-color: var(--brown); text-decoration: none; }

.info-note {
  margin-top: 10px;
  background: rgba(255,219,183,0.3);
  padding: 8px 12px;
  border-radius: 6px;
  border-left: 3px solid var(--peach);
  font-size: 0.82rem !important;
  opacity: 1 !important;
  color: var(--brown) !important;
}

.distance-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.distance-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(96,64,0,0.07);
  font-size: 0.88rem;
}
.distance-list li span:last-child {
  font-weight: 400;
  color: var(--brown);
  opacity: 1 !important;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.hotel-item {
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.hotel-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 4px;
}
.hotel-item p {
  font-size: 0.82rem !important;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════════════ */
.timeline-section { min-height: auto; }

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--peach) 10%, var(--peach) 90%, transparent);
  opacity: 0.5;
}

.tl-item {
  display: grid;
  grid-template-columns: 100px 40px 1fr;
  gap: 0 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.tl-item:last-child { margin-bottom: 0; }

.tl-time {
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--brown);
  opacity: 0.6;
  padding-top: 2px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--peach);
  margin: 4px auto 0;
  position: relative;
  flex-shrink: 0;
}
.tl-dot--main {
  width: 18px;
  height: 18px;
  background: var(--peach);
  border-color: var(--brown);
  margin: 2px auto 0;
  box-shadow: 0 0 0 4px rgba(255,219,183,0.3);
}

.tl-content {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(96,64,0,0.05);
}

.tl-icon {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.tl-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}

.tl-content p {
  font-size: 0.88rem;
  color: var(--brown-dark);
  opacity: 0.75;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   MENU SECTION
   ═══════════════════════════════════════════════════════════ */
.menu-sec { min-height: auto; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.menu-card {
  background: var(--beige-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(96,64,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.menu-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }

.menu-card--main {
  grid-column: span 1;
  background: var(--white);
  border-color: rgba(255,219,183,0.6);
  border-width: 1.5px;
}

.menu-card-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }

.menu-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}

.menu-card p {
  font-size: 0.88rem;
  color: var(--brown-dark);
  opacity: 0.75;
  line-height: 1.7;
}

.menu-choice-label {
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown) !important;
  opacity: 0.5 !important;
  margin-bottom: 8px !important;
}

.menu-choices { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }

.menu-choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--beige-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--peach);
}

.menu-choice-badge { font-size: 1.2rem; flex-shrink: 0; }
.menu-choice strong { display: block; font-size: 0.9rem; color: var(--brown); }
.menu-choice p { font-size: 0.82rem; opacity: 0.7; margin: 0; }

.menu-allergy-note {
  font-size: 0.78rem !important;
  font-style: italic;
  opacity: 0.55 !important;
  border-top: 1px solid rgba(96,64,0,0.08);
  padding-top: 10px;
  margin-top: 6px !important;
}

/* ═══════════════════════════════════════════════════════════
   GIFTS SECTION
   ═══════════════════════════════════════════════════════════ */
.gifts-section { min-height: auto; }

.gifts-content {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gifts-icon { margin-bottom: 8px; }

.gifts-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  font-weight: 400;
  color: var(--brown);
  font-style: italic;
}

.gifts-content p {
  font-size: 0.95rem;
  color: var(--brown-dark);
  opacity: 0.8;
  line-height: 1.8;
  max-width: 520px;
}

.gifts-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  border: 1px solid rgba(96,64,0,0.1);
  text-align: center;
  width: 100%;
}
.gifts-box-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}
.gifts-box p { font-size: 0.88rem; opacity: 0.7; }

.gifts-thankyou {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brown);
  opacity: 0.75;
}

/* ═══════════════════════════════════════════════════════════
   OUR STORY
   ═══════════════════════════════════════════════════════════ */
.story-section { min-height: auto; }

.story-blocks {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.story-block--right .story-text { order: 1; }
.story-block--right .story-photo { order: 2; }

.story-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--beige-light);
  border: 1px solid rgba(96,64,0,0.08);
}

.story-photo--placeholder .story-photo-inner {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--brown);
  font-size: 0.8rem;
  opacity: 0.45;
  text-align: center;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-year {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--peach-light);
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,219,183,0.7);
  margin-bottom: 12px;
}

.story-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 12px;
  line-height: 1.3;
}

.story-text p {
  font-size: 0.92rem;
  color: var(--brown-dark);
  opacity: 0.78;
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════ */
.gallery-section { min-height: auto; }

.gallery-content {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gallery-icon { margin-bottom: 8px; }

.gallery-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  font-weight: 400;
  color: var(--brown);
  font-style: italic;
}

.gallery-content p {
  font-size: 0.93rem;
  color: var(--brown-dark);
  opacity: 0.78;
  line-height: 1.8;
}

.gallery-cta-wrap { margin-top: 8px; }

.gallery-btn {
  font-size: 0.92rem;
  padding: 14px 40px;
  letter-spacing: 0.05em;
}

.gallery-note {
  font-size: 0.78rem;
  color: var(--brown);
  opacity: 0.45;
  font-style: italic;
  margin-top: 8px !important;
}

.gallery-hashtag {
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--brown);
  opacity: 0.65;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.gallery-hashtag strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--brown);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   RSVP SECTION
   ═══════════════════════════════════════════════════════════ */
.rsvp-section { min-height: auto; }

/* Success state */
.rsvp-success {
  text-align: center;
  padding: 48px 24px;
  background: var(--beige-light);
  border-radius: var(--radius);
  border: 1px solid rgba(96,64,0,0.08);
}
.rsvp-success-icon { font-size: 3rem; margin-bottom: 16px; }
.rsvp-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 12px;
}
.rsvp-success p { font-size: 0.95rem; color: var(--brown-dark); opacity: 0.8; line-height: 1.8; }

/* Form */
.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-fieldset {
  border: 1px solid rgba(96,64,0,0.1);
  border-radius: var(--radius);
  padding: 28px 28px 20px;
  background: var(--beige-light);
}

.form-legend {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown);
  padding: 0 8px;
  letter-spacing: 0.03em;
}

.form-group {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.05em;
  font-family: 'Lato', sans-serif;
}
.form-group label .required { color: #b94040; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(96,64,0,0.15);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--brown-dark);
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(96,64,0,0.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(61,40,0,0.35);
  font-style: italic;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--brown);
  opacity: 0.55;
  font-style: italic;
  margin-top: 2px;
}

.form-desc {
  font-size: 0.88rem;
  color: var(--brown-dark);
  opacity: 0.75;
  line-height: 1.7;
  margin-top: 4px;
}

/* Radio group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--brown-dark);
  opacity: 0.85;
  transition: opacity 0.2s;
  user-select: none;
}
.radio-label:hover { opacity: 1; }

.radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(96,64,0,0.25);
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--white);
  position: relative;
  transition: border-color 0.2s;
}
.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: var(--brown);
  background: var(--white);
}
.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--brown);
}

/* Radio group inline */
.radio-group--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

/* Range slider */
.form-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(96,64,0,0.15);
  outline: none;
  cursor: pointer;
  margin: 8px 0 4px;
}
.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brown);
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(96,64,0,0.25);
  transition: box-shadow 0.2s;
}
.form-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: var(--brown);
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(96,64,0,0.25);
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(96,64,0,0.15);
}

/* Child name + age 2-column row */
.child-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.child-fields-row .form-group {
  margin-top: 0;
}
.child-fields-row input[type="number"] {
  -moz-appearance: textfield;
}
.child-fields-row input[type="number"]::-webkit-outer-spin-button,
.child-fields-row input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Submit */
.form-submit-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-submit {
  padding: 16px 52px;
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(96,64,0,0.2);
}
.btn-submit:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(96,64,0,0.25);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-deadline {
  font-size: 0.8rem;
  color: var(--brown);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

.rsvp-error {
  background: #fff0f0;
  border: 1px solid #f5c6c6;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #b94040;
  text-align: center;
}

.field-error {
  outline: 1.5px solid #b94040;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--brown);
  color: var(--beige-light);
  text-align: center;
  padding: 40px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-floral { width: 100%; max-width: 400px; margin-bottom: 12px; opacity: 0.4; }

.footer-names {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  color: var(--peach);
  line-height: 1.2;
}

.footer-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  opacity: 0.75;
}

.footer-copy {
  font-size: 0.78rem;
  opacity: 0.45;
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════════════════ */
.br-desktop { display: inline; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-pad: 64px 20px; }

  .venue-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  .getting-grid { grid-template-columns: 1fr; }
  .info-card--wide { grid-column: 1; }
  .hotel-grid { grid-template-columns: 1fr; }

  .menu-grid { grid-template-columns: 1fr 1fr; }

  .story-block { grid-template-columns: 1fr; gap: 24px; }
  .story-block--right .story-text { order: 1; }
  .story-block--right .story-photo { order: 2; }
  .story-photo { max-width: 400px; margin: 0 auto; width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --section-pad: 52px 16px; }

  .br-desktop { display: none; }

  /* Hero */
  .hero-floral { width: 70px; }
  .hero-date-block { padding: 16px 20px; }
  .countdown { padding: 12px 16px; gap: 4px; flex-wrap: wrap; justify-content: center; }
  .cd-item span:first-child { font-size: 1.4rem; }
  .cd-sep { display: none; }

  /* Timeline */
  .timeline::before { left: 72px; }
  .tl-item { grid-template-columns: 60px 30px 1fr; gap: 0 12px; }
  .tl-time { font-size: 0.85rem; }

  /* Menu */
  .menu-grid { grid-template-columns: 1fr; }

  /* Story */
  .story-blocks { gap: 36px; }

  /* Forms */
  .form-fieldset { padding: 20px 16px 16px; }
  .child-fields-row { grid-template-columns: 1fr; }

  /* Password */
  .password-box { padding: 36px 24px; }
  .pw-form { flex-direction: column; }
  .pw-form button { width: 100%; }

  /* Getting there */
  .distance-list li { flex-direction: column; gap: 0; }

  /* Hero text */
  .hero-invite-text { font-size: 0.95rem; }
}

@media (max-width: 400px) {
  .countdown { gap: 2px; }
  .cd-item { min-width: 40px; }
}
