/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-body:   'Merriweather', Georgia, serif;
  --font-ui:     'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-script: 'Caveat Brush', 'Brush Script MT', cursive;
  --primary-ink: #1B1A32;
  --primary-blue: #1405E7;
  --primary-rose: #E6345E;
  --secondary-lilac: #D9D7FB;
  --secondary-peach: #FFCEAB;
  --secondary-green: #51B148;
  --tertiary-violet: #8200D2;
  --tertiary-silver: #D3D3D3;
  --tertiary-charcoal: #4D4D4D;
  --ocean:       #1405E7;
  --deep-ocean:  #1B1A32;
  --sky:         #D9D7FB;
  --sky-light:   #F4F3FF;
  --sand:        #FFCEAB;
  --coral:       #E6345E;
  --green:       #51B148;
  --teal:        #8200D2;
  --sunset:      #FFCEAB;
  --hibiscus:    #E6345E;
  --white:       #ffffff;
  --text:        #1B1A32;
  --text-light:  #4D4D4D;
  --radius:      16px;
  --shadow:      0 10px 30px rgba(27, 26, 50, .18);
  --site-bg-image: url('./beach-backrgound.png');
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 206, 171, .52), rgba(255, 206, 171, 0) 34%),
    radial-gradient(circle at 88% 6%, rgba(130, 0, 210, .26), rgba(130, 0, 210, 0) 30%),
    linear-gradient(to bottom, #D9D7FB 0%, #D3D3D3 42%, #FFCEAB 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: var(--site-bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.05) contrast(.95);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* ── Utility ──────────────────────────────────────────────────────────────── */
.container { max-width: 900px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Fonts ────────────────────────────────────────────────────────────────── */
.font-script { font-family: var(--font-script); }

/* ── Glass card ───────────────────────────────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
}

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes wave {
  0%   { transform: translateX(0);    }
  100% { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px);   }
  50%      { transform: translateY(-12px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes cloudDrift {
  0%   { transform: translateX(0px);  }
  50%  { transform: translateX(40px); }
  100% { transform: translateX(0px);  }
}
@keyframes waterSheen {
  0%   { transform: translateX(-160%) skewX(-15deg); opacity: 0;    }
  8%   {                                              opacity: 0.45; }
  92%  {                                              opacity: 0.45; }
  100% { transform: translateX(260%)  skewX(-15deg); opacity: 0;    }
}
@keyframes glint {
  0%,  65%, 100% { opacity: 0;   transform: scale(0.3) rotate(0deg);  }
  75%            { opacity: 1;   transform: scale(1)   rotate(45deg); }
  90%            { opacity: 0.4; transform: scale(1.3) rotate(90deg); }
}
@keyframes navFloat {
  0%, 100% { transform: translateX(-50%) translateY(0px);  }
  50%      { transform: translateX(-50%) translateY(-3px); }
}

.wave-anim        { animation: wave        14s linear      infinite; }
.float-anim       { animation: float        4s ease-in-out infinite; }
.cloud-drift      { animation: cloudDrift  25s ease-in-out infinite; }
.cloud-drift-slow { animation: cloudDrift  40s ease-in-out infinite reverse; }
.water-sheen      { animation: waterSheen   9s ease-in-out infinite; }
.glint-anim       { animation: glint        4s ease-in-out infinite; }

.fade-in-up { animation: fadeInUp 0.9s ease-out forwards; }
.fade-in-delay-1 { animation-delay: 0.10s; }
.fade-in-delay-2 { animation-delay: 0.25s; }
.fade-in-delay-3 { animation-delay: 0.40s; }
.fade-in-delay-4 { animation-delay: 0.55s; }
.fade-in-delay-5 { animation-delay: 0.70s; }

.shimmer-text {
  background: linear-gradient(90deg, #1405E7, #8200D2, #E6345E, #1405E7);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ── Sun glow ─────────────────────────────────────────────────────────────── */
.sun-glow {
  box-shadow: 0 0 60px rgba(130, 0, 210, .34), 0 0 120px rgba(130, 0, 210, .16);
}

/* ── Water sparkle cross ──────────────────────────────────────────────────── */
.water-sparkle {
  position: relative;
  width: 10px;
  height: 10px;
}
.water-sparkle::before,
.water-sparkle::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: 2px;
}
.water-sparkle::before { width: 100%; height: 2px; top: 4px; left: 0; }
.water-sparkle::after  { width: 2px; height: 100%; left: 4px; top: 0; }

/* ── Navigation bar ───────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  background: rgba(27, 26, 50, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 10px 35px rgba(27, 26, 50, .33);
  animation: navFloat 4s ease-in-out infinite, fadeInUp 0.8s ease-out 0.6s both;
  opacity: 0;
}
.nav-btn {
  font-family: var(--font-ui);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s, box-shadow .2s;
}
.nav-btn:hover {
  background: rgba(230, 52, 94, .30);
  box-shadow: 0 0 12px rgba(255,255,255,.15);
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 1.25rem 12rem;
  text-align: center;
}

/* Disable generated wave/surface effects when using the photo background. */
.hero-sky,
.hero-sun,
.hero-cloud,
.hero-water,
.hero-sheen-wrap,
.hero-sparkle,
.hero-wave {
  display: none;
}

/* Sky gradient */
.hero-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 6%, rgba(255, 170, 122, .5), rgba(255, 170, 122, 0) 35%),
    linear-gradient(to bottom, rgba(101, 209, 241, .74) 0%, rgba(118, 224, 240, .62) 32%, rgba(114, 212, 205, .52) 58%, rgba(247, 230, 197, .4) 83%, rgba(251, 222, 171, .55) 100%);
}

/* Sun */
.hero-sun {
  position: absolute;
  top: 2.5rem;
  right: 4rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: radial-gradient(circle, #fef08a 0%, #fbbf24 50%, #f59e0b 100%);
}

/* Clouds */
.hero-cloud {
  position: absolute;
  display: flex;
  gap: 0.25rem;
  align-items: flex-end;
}
.cloud-blob {
  background: #fff;
  border-radius: 9999px;
  opacity: 0.9;
}

/* Deep water */
.hero-water {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 14rem;
  background: linear-gradient(to top, #1B1A32, #1405E7, #8200D2);
  opacity: 0.8;
}

/* Water sheen bands */
.hero-sheen-wrap {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  height: 10rem;
  overflow: hidden;
  pointer-events: none;
}
.sheen-band {
  position: absolute;
  left: 0;
  background: rgba(255,255,255,.3);
  border-radius: 9999px;
  filter: blur(2px);
}

/* Sparkles */
.hero-sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 10;
}

/* Wave SVG layers */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-pre {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 6.4vw, 4.2rem);
  letter-spacing: .02em;
  text-transform: none;
  color: #1B1A32;
  font-weight: 400;
  line-height: 1;
  margin-bottom: .5rem;
  text-shadow: 0 2px 8px rgba(255,255,255,.5);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(3.8rem, 11vw, 7rem);
  font-weight: 400;
  color: #1B1A32;
  line-height: 1.05;
  text-shadow: 0 2px 10px rgba(255,255,255,.45);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.25s both;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #4D4D4D;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: .4rem;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-badges {
  font-family: var(--font-ui);
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.55s both;
}
.badge {
  background: rgba(217, 215, 251, .62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.78);
  color: #1B1A32;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }

.section .container {
  background: rgba(244, 243, 255, .72);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 42px rgba(27, 26, 50, .16);
}

.section-title {
  font-family: var(--font-script);
  font-size: clamp(2.3rem, 6vw, 4rem);
  font-weight: 400;
  color: #1B1A32;
  margin-bottom: .5rem;
  text-align: center;
}
.section-title-amber { color: #1B1A32; }

.section-sub {
  font-family: var(--font-ui);
  text-align: center;
  color: #4D4D4D;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.section-dancing {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #E6345E;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ── Event Details Section ────────────────────────────────────────────────── */
.details-section {
  background: transparent;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.info-card {
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 6px 24px rgba(27, 26, 50, .14);
  transition: box-shadow .3s;
}
.info-card:hover { box-shadow: 0 10px 34px rgba(27, 26, 50, .25); }
.info-card-icon { font-size: 2.25rem; margin-bottom: .75rem; display: block; transition: transform .3s; }
.info-card:hover .info-card-icon { transform: scale(1.1); }
.info-card-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #1405E7;
  margin-bottom: .25rem;
}
.info-card-value { font-weight: 700; color: #1B1A32; font-size: 1rem; }
.info-card-sub   { font-size: .82rem; color: #4D4D4D; margin-top: .2rem; }

/* Schedule */
.schedule-wrap {
  background: linear-gradient(135deg, #1B1A32 0%, #1405E7 55%, #8200D2 120%);
  border-radius: 1.5rem;
  padding: 2rem 2.25rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  color: #fff;
}
.schedule-title {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: #FFCEAB;
  text-align: center;
  margin-bottom: 1.5rem;
}
.schedule-list { display: flex; flex-direction: column; gap: .85rem; }
.schedule-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.1);
  border-radius: .75rem;
  padding: .8rem 1rem;
}
.schedule-time {
  font-size: .82rem;
  font-weight: 700;
  color: #FFCEAB;
  min-width: 3.5rem;
  padding-top: .1rem;
}
.schedule-icon { font-size: 1.4rem; flex-shrink: 0; }
.schedule-name { font-weight: 600; font-size: .95rem; }
.schedule-desc { font-size: .82rem; color: rgba(255,255,255,.75); margin-top: .1rem; }

/* ── Theme Section ────────────────────────────────────────────────────────── */
.theme-section { background: transparent; }

.theme-quote {
  max-width: 680px;
  margin: 0 auto 3rem;
  border-radius: 1.25rem;
  padding: 2rem 2.25rem;
  box-shadow: 0 8px 26px rgba(27, 26, 50, .16);
  border-left: 4px solid var(--coral);
  text-align: left;
}
.theme-quote p { color: #1B1A32; font-size: 1.05rem; line-height: 1.7; }
.theme-quote p + p { margin-top: 1rem; }

.theme-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.theme-card {
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(140deg, #1405E7 0%, #8200D2 52%, #E6345E 125%);
  color: #fff;
  box-shadow: 0 8px 26px rgba(27, 26, 50, .28);
  transition: transform .25s, box-shadow .25s;
}
.theme-card:hover { transform: translateY(-4px); box-shadow: 0 12px 34px rgba(27, 26, 50, .38); }
.theme-card-icon  { font-size: 2.25rem; margin-bottom: .75rem; }
.theme-card-title { font-weight: 700; font-size: 1.05rem; margin-bottom: .4rem; }
.theme-card-desc  { font-size: .85rem; color: rgba(255,255,255,.82); line-height: 1.5; }

.theme-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: linear-gradient(135deg, #E6345E 0%, #8200D2 52%, #1405E7 100%);
  color: #fff;
  border-radius: 9999px;
  padding: .75rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(104, 64, 67, .26);
  margin: 2.5rem auto 0;
  width: fit-content;
}

/* ── International Travel Section ───────────────────────────────────────── */
.travel-section { background: transparent; }

.travel-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 1.25rem;
  padding: 2rem 2.25rem;
  border-left: 4px solid var(--coral);
  box-shadow: 0 8px 30px rgba(27, 26, 50, .16);
}

.travel-title {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #1B1A32;
  text-align: center;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.travel-lead,
.travel-copy,
.travel-hotel,
.travel-contact {
  font-family: var(--font-ui);
  color: #1B1A32;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.travel-lead { font-size: 1.02rem; line-height: 1.75; }
.travel-copy { font-size: .98rem; line-height: 1.7; margin-top: .75rem; }

.travel-hotel {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #51B148;
}

.travel-contact {
  margin-top: .6rem;
  font-size: .95rem;
  font-weight: 600;
}

/* ── RSVP Section ─────────────────────────────────────────────────────────── */
.rsvp-section { background: transparent; }

.form-card {
  background: rgba(244, 243, 255, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(27, 26, 50, .18);
  padding: 2.25rem 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1.4rem; }

.form-group label {
  display: block;
  font-weight: 600;
  color: #1B1A32;
  margin-bottom: .5rem;
  font-size: .9rem;
}

.form-group input[type="text"] {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #D3D3D3;
  border-radius: .75rem;
  font-size: 1rem;
  color: var(--text);
  background: rgba(255,255,255,.8);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input[type="text"]:focus {
  border-color: #1405E7;
  box-shadow: 0 0 0 3px rgba(20, 5, 231, .2);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.radio-label { cursor: pointer; }
.radio-label input[type="radio"] { display: none; }

.radio-btn {
  display: inline-block;
  padding: .6rem 1.2rem;
  border: 1.5px solid #D3D3D3;
  border-radius: 9999px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all .2s;
  user-select: none;
}
.radio-label input[type="radio"]:checked + .radio-btn.yes    { background: #51B148; border-color: #51B148; color: #fff; }
.radio-label input[type="radio"]:checked + .radio-btn.yes    { background: #51B148; border-color: #51B148; color: #fff; }
.radio-label input[type="radio"]:checked + .radio-btn.no     { background: #E6345E; border-color: #E6345E; color: #fff; }
.radio-label input[type="radio"]:checked + .radio-btn.maybe  { background: #8200D2; border-color: #8200D2; color: #fff; }
.radio-label input[type="radio"]:checked + .radio-btn.flight-yes { background: #51B148; border-color: #51B148; color: #fff; }
.radio-label input[type="radio"]:checked + .radio-btn.flight-no  { background: #4D4D4D; border-color: #4D4D4D; color: #fff; }
.radio-btn:hover { border-color: #1405E7; color: #1405E7; }

.field-error { display: block; color: #E6345E; font-size: .82rem; margin-top: .3rem; min-height: 1rem; }

.btn-submit {
  width: 100%;
  padding: .9rem;
  background: linear-gradient(135deg, #E6345E, #8200D2 55%, #1405E7);
  color: var(--white);
  border: none;
  border-radius: .75rem;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .03em;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  margin-top: .5rem;
}
.btn-submit:hover { opacity: .92; transform: translateY(-1px); box-shadow: 0 8px 26px rgba(27, 26, 50, .35); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-feedback {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: .75rem;
  font-weight: 600;
  font-size: .95rem;
  text-align: center;
  display: none;
}
.form-feedback.success { background: #E7F7DF; color: #1F6C2F; display: block; }
.form-feedback.error   { background: #FFE4EA; color: #A51E40; display: block; }

/* ── Guest List ───────────────────────────────────────────────────────────── */
.guest-section { background: transparent; }

.guest-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.stat-pill {
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
}
.stat-pill.attending  { background: #E7F7DF; color: #1F6C2F; }
.stat-pill.not-coming { background: #FFE4EA; color: #A51E40; }
.stat-pill.maybe      { background: #F1E4FF; color: #5D1392; }
.stat-pill.total      { background: #E9E7FF; color: #1B1A32; }

.guest-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .75rem;
  max-width: 900px;
  margin: 0 auto;
}

.guest-card {
  background: rgba(255,252,245,.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .85rem;
  transition: transform .2s, box-shadow .2s;
}
.guest-card:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(27, 26, 50, .24); }

.guest-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.guest-avatar.yes   { background: #E7F7DF; }
.guest-avatar.no    { background: #FFE4EA; }
.guest-avatar.maybe { background: #F1E4FF; }

.guest-info { flex: 1; min-width: 0; }
.guest-name { font-weight: 700; color: var(--deep-ocean); font-size: .98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.guest-meta { font-size: .8rem; color: var(--text-light); margin-top: .15rem; }
.guest-team { font-size: .78rem; color: #1405E7; margin-top: .1rem; font-weight: 500; }
.guest-flight { font-size: .78rem; margin-top: .2rem; }

.loading  { text-align: center; color: var(--text-light); padding: 2rem; grid-column: 1/-1; }
.no-rsvps { text-align: center; color: var(--text-light); padding: 2rem; grid-column: 1/-1; font-size: 1rem; }

/* ── Important Notice Modal ──────────────────────────────────────────────── */
.notice-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) 1.25rem max(1rem, env(safe-area-inset-bottom));
  overflow: hidden;
  background: rgba(27, 26, 50, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeInUp 0.4s ease-out both;
}
.notice-overlay.hidden {
  display: none;
}
.notice-card {
  max-width: 540px;
  width: 100%;
  max-height: calc(100dvh - 2rem);
  margin: auto 0;
  border-radius: 1.5rem;
  padding: 2.25rem 2.5rem 2rem;
  box-shadow: 0 24px 64px rgba(27, 26, 50, .38);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
}
.notice-header {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.notice-icon {
  font-size: 2rem;
  line-height: 1;
  animation: float 3s ease-in-out infinite;
}
.notice-title {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 5vw, 2.4rem);
  font-weight: 400;
  color: var(--primary-ink);
  line-height: 1.1;
}
.notice-body {
  font-family: var(--font-ui);
  color: var(--tertiary-charcoal);
  font-size: .97rem;
  line-height: 1.7;
  border-left: 3px solid var(--primary-rose);
  padding-left: 1rem;
  overflow-y: auto;
  padding-right: .35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(130, 0, 210, .55) rgba(217, 215, 251, .4);
}
.notice-body p + p { margin-top: .75rem; }
.notice-body::-webkit-scrollbar {
  width: 8px;
}
.notice-body::-webkit-scrollbar-track {
  background: rgba(217, 215, 251, .4);
  border-radius: 999px;
}
.notice-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(130, 0, 210, .75), rgba(20, 5, 231, .75));
  border-radius: 999px;
}
.notice-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(130, 0, 210, .9), rgba(20, 5, 231, .9));
}
.notice-btn {
  align-self: stretch;
  padding: .875rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-rose), var(--tertiary-violet) 55%, var(--primary-blue));
  color: #fff;
  border: none;
  border-radius: .75rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .025em;
  transition: opacity .2s, transform .2s;
}
.notice-btn:hover { opacity: .9; transform: translateY(-1px); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(135deg, rgba(27, 26, 50, .9), rgba(20, 5, 231, .84));
  color: rgba(239,246,255,.92);
  text-align: center;
  padding: 3rem 1.25rem 2.5rem;
  font-size: .95rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.footer-title {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: #FFCEAB;
  margin-bottom: .4rem;
}
.footer p { line-height: 1.8; }
.footer-sub { font-size: .82rem; opacity: .7; margin-top: .6rem; }

/* ── Coming Soon overlay ──────────────────────────────────────────────────── */
.coming-soon-wrap {
  position: relative;
}

/* Blur the content underneath */
.coming-soon-wrap > :not(.coming-soon-overlay) {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}

/* Full overlay sitting on top */
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.coming-soon-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 1.5rem;
  padding: 2rem 3rem;
  box-shadow: 0 12px 48px rgba(27, 26, 50, .2);
  text-align: center;
}

.coming-soon-icon {
  font-size: 2.5rem;
  line-height: 1;
  animation: float 3s ease-in-out infinite;
}

.coming-soon-title {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: #1B1A32;
  line-height: 1.1;
}

.coming-soon-sub {
  font-size: .9rem;
  color: #4D4D4D;
  max-width: 22rem;
  line-height: 1.5;
}

/* ── Responsive tweaks ────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .site-nav {
    top: auto;
    bottom: calc(.65rem + env(safe-area-inset-bottom));
    left: .5rem;
    right: .5rem;
    transform: none;
    width: auto;
    max-width: 100%;
    padding: .4rem;
    gap: .3rem;
    border-radius: 1.1rem;
    background: rgba(27, 26, 50, .9);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    overflow: hidden;
  }

  .nav-btn {
    flex: 1 1 0;
    justify-content: center;
    min-height: 2.6rem;
    padding: .55rem .5rem;
    font-size: .78rem;
    min-width: 0;
  }

  main,
  .footer {
    padding-bottom: calc(5.1rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 600px) {
  .hero { padding-bottom: 10rem; }
  .hero-sun { width: 4rem; height: 4rem; right: 1.5rem; }
  .section .container {
    border-radius: 1.25rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }
  .form-card { padding: 1.5rem 1.25rem; }
  .travel-card { padding: 1.5rem 1.1rem; }
  .radio-group { flex-direction: column; }
  .schedule-wrap { padding: 1.5rem 1.1rem; }
  .nav-btn {
    font-size: .74rem;
    gap: .2rem;
    padding: .55rem .35rem;
  }

  .notice-overlay {
    padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  }

  .notice-card {
    border-radius: 1.1rem;
    padding: 1.25rem 1rem 1rem;
    gap: 1rem;
  }

  .notice-header {
    align-items: flex-start;
    gap: .625rem;
  }

  .notice-icon {
    font-size: 1.5rem;
    margin-top: .1rem;
  }

  .notice-title {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .notice-body {
    font-size: .92rem;
    line-height: 1.6;
    padding-left: .85rem;
  }

  .notice-btn {
    padding: .85rem 1rem;
    font-size: .95rem;
  }
}

@media (max-width: 700px) {
  .nav-btn {
    flex-direction: column;
    line-height: 1.1;
  }

  .nav-btn span:first-child {
    font-size: 1rem;
  }

  .nav-btn span:last-child {
    font-size: .65rem;
    letter-spacing: .01em;
  }
}

@media (max-width: 420px) {
  .nav-btn {
    padding: .55rem .3rem;
    min-height: 2.45rem;
  }

  .nav-btn span:last-child { display: none; }
}
