:root {
  --ink: #1f2b31;
  --muted: #5c6f76;
  --sea: #58c4d8;
  --sea-deep: #1392aa;
  --foam: rgba(255,255,255,.78);
  --sand: #e7c59b;
  --sand-dark: #c69462;
  --gold: #f8c66a;
  --glow: rgba(255, 211, 132, .75);
  --card: rgba(255, 255, 255, .58);
  --line: rgba(255,255,255,.58);
  --shadow: 0 24px 80px rgba(24, 93, 111, .24);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 9%, rgba(255,255,255,.92) 0 0.4rem, transparent .45rem),
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.8) 0 .18rem, transparent .22rem),
    linear-gradient(180deg, #dff8ff 0%, #b7eff7 24%, #6ccfe0 46%, #e6d2b2 72%, #c99b69 100%);
  overflow-x: hidden;
}

body::before,
body::after,
.sea-sparkles,
.sand-grain {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(circle at 62% 10%, rgba(255,255,255,.72), transparent 12%),
    radial-gradient(circle at 85% 38%, rgba(255,255,255,.54), transparent 16%),
    radial-gradient(circle at 10% 42%, rgba(255,255,255,.55), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.5), transparent 55%);
  filter: blur(.3px);
}

body::after {
  z-index: -1;
  background:
    radial-gradient(circle at 15% 54%, rgba(255,255,255,.56) 0 .32rem, transparent .36rem),
    radial-gradient(circle at 25% 49%, rgba(255,255,255,.42) 0 .55rem, transparent .59rem),
    radial-gradient(circle at 80% 51%, rgba(255,255,255,.5) 0 .5rem, transparent .54rem),
    radial-gradient(circle at 92% 59%, rgba(255,255,255,.44) 0 .38rem, transparent .42rem);
  opacity: .9;
}

.sea-sparkles {
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.72) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255,248,226,.65) 0 1px, transparent 1.8px);
  background-size: 68px 68px, 113px 113px;
  background-position: 8px 280px, 30px 360px;
  mask-image: linear-gradient(180deg, transparent 0 38%, #000 41% 71%, transparent 74%);
  animation: shimmer 16s linear infinite;
}

.sand-grain {
  z-index: -1;
  background:
    radial-gradient(ellipse at 18% 73%, rgba(255,255,255,.34), transparent 32%),
    radial-gradient(ellipse at 76% 84%, rgba(255,248,226,.28), transparent 36%),
    url("data:image/svg+xml,%3Csvg width='820' height='430' viewBox='0 0 820 430' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M-30 70 C70 35 125 105 225 70 S390 43 500 80 660 110 850 55' stroke='rgba(255,255,255,.38)' stroke-width='8'/%3E%3Cpath d='M-10 130 C90 95 170 154 260 125 S430 92 530 136 710 167 850 112' stroke='rgba(39,151,171,.18)' stroke-width='5'/%3E%3Cpath d='M-70 205 C45 165 120 232 220 198 S380 166 505 210 665 250 870 178' stroke='rgba(255,255,255,.3)' stroke-width='7'/%3E%3Cpath d='M20 278 C120 240 210 310 310 274 S470 245 600 292 735 324 850 266' stroke='rgba(121,80,37,.12)' stroke-width='6'/%3E%3Cpath d='M-40 350 C85 310 155 378 270 338 S465 305 565 354 710 392 870 318' stroke='rgba(255,255,255,.24)' stroke-width='9'/%3E%3Cpath d='M80 28 C120 14 170 20 215 36' stroke='rgba(255,255,255,.36)' stroke-width='6'/%3E%3Cpath d='M560 35 C630 16 690 25 740 50' stroke='rgba(255,255,255,.32)' stroke-width='5'/%3E%3Cpath d='M360 384 C420 360 500 370 552 398' stroke='rgba(39,151,171,.14)' stroke-width='6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 900px 470px;
  background-position: 50% 66%, 52% 92%, 50% 72%;
  mask-image: linear-gradient(180deg, transparent 0 56%, rgba(0,0,0,.55) 61%, #000 73%);
  opacity: .9;
  animation: waterDrift 24s ease-in-out infinite alternate;
}

@keyframes shimmer {
  from { transform: translateY(0); }
  to { transform: translateY(-70px); }
}

@keyframes waterDrift {
  from { transform: translate3d(-18px, 0, 0) scale(1.02); }
  50% { transform: translate3d(14px, -10px, 0) scale(1.045); }
  to { transform: translate3d(24px, 8px, 0) scale(1.02); }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 24px clamp(16px, 4vw, 56px) 64px;
}

.topbar {
  position: absolute;
  inset: 22px clamp(16px, 4vw, 56px) auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand,
.nav-pill,
.primary-cta {
  color: var(--ink);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(255,255,255,.36);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(24, 93, 111, .13);
  font-weight: 700;
}

.rings {
  position: relative;
  width: 26px;
  height: 20px;
}
.rings::before,
.rings::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.rings::before { left: 0; }
.rings::after { right: 0; }

.nav-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(255,255,255,.65);
  font-weight: 700;
}

.hero-card,
.section-shell {
  width: min(100%, 980px);
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.34));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(130%);
}

.hero-card {
  text-align: center;
  padding: clamp(34px, 8vw, 88px) clamp(20px, 5vw, 72px);
  transform: translateY(16px);
}

.eyebrow,
.section-kicker {
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
  color: var(--sea-deep);
}

h1 {
  margin: .05em 0 .08em;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(4.2rem, 16vw, 10rem);
  font-weight: 400;
  line-height: .88;
  color: #fff7e8;
  text-shadow:
    0 0 5px #fff,
    0 0 14px var(--glow),
    0 5px 18px rgba(172, 109, 34, .45);
}

.subtitle {
  margin: 0 auto 28px;
  max-width: 670px;
  font-size: clamp(1.25rem, 3.2vw, 2rem);
  line-height: 1.45;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px auto;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 92px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.65);
  text-align: left;
}


.icon-bubble {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  color: #126f82;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.98), rgba(255,255,255,.34) 44%, transparent 45%),
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(248,198,106,.46));
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 12px 26px rgba(24, 93, 111, .16), 0 0 24px rgba(255,255,255,.7) inset;
}
.icon-bubble svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-block;
  color: var(--ink);
}
.icon.calendar {
  background:
    linear-gradient(currentColor, currentColor) 8px 11px/20px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 8px 19px/20px 2px no-repeat;
  border: 2px solid currentColor;
  border-radius: 7px;
  position: relative;
}
.icon.calendar::before {
  content: "";
  position: absolute;
  inset: 7px 7px auto;
  height: 2px;
  background: currentColor;
}
.icon.pin {
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) scale(.82);
}
.icon.pin::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.icon.dress {
  position: relative;
}
.icon.dress::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 1px;
  width: 12px;
  height: 9px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}
.icon.dress::after {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 1px;
  width: 24px;
  height: 25px;
  border: 2px solid currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff8e8, #f8c66a);
  box-shadow: 0 14px 34px rgba(168, 100, 23, .25), 0 0 22px rgba(255,255,255,.8) inset;
  font-weight: 900;
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  font-size: 1.6rem;
  animation: bob 1.7s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 6px); } }

main {
  display: grid;
  gap: 34px;
  padding: 28px clamp(16px, 4vw, 56px) 62px;
}

.section-shell {
  padding: clamp(24px, 5vw, 48px);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 26px;
  align-items: center;
}

h2 {
  margin: .18em 0;
  font-size: clamp(2rem, 5vw, 3.9rem);
  line-height: 1.05;
  font-weight: 800;
}

.intro p,
.faq-heading p,
.closing p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.faq-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(24, 93, 111, .10);
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
}
.faq-card summary::-webkit-details-marker { display: none; }
.question-text {
  font-size: 1.12rem;
  font-weight: 900;
}
.plus {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(19,146,170,.12);
}
.plus::before,
.plus::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 12px;
  height: 2px;
  background: var(--sea-deep);
  transition: transform .2s ease;
}
.plus::after { transform: rotate(90deg); }
details[open] .plus::after { transform: rotate(0deg); }
.answer {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.75;
}

.empty-state {
  text-align: center;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.5);
  color: var(--muted);
}

.closing {
  text-align: center;
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,241,211,.52));
}
.shell-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #f8c66a);
  box-shadow: 0 0 28px rgba(255,255,255,.8);
  font-size: 1.4rem;
}

footer {
  padding: 26px 16px 38px;
  text-align: center;
  color: rgba(31,43,49,.72);
  font-weight: 700;
}

@media (max-width: 760px) {
  .hero { padding-top: 86px; }
  .topbar { position: absolute; }
  .hero-card { padding-block: 36px; }
  .info-grid,
  .intro { grid-template-columns: 1fr; }
  .info-item { justify-content: flex-start; }
  .faq-card summary {
    grid-template-columns: 1fr 28px;
    gap: 10px;
    padding: 18px;
  }
  .answer {
    padding: 0 18px 18px;
  }
}

@media (max-width: 430px) {
  .brand span:last-child { display: none; }
  .nav-pill { padding-inline: 14px; }
  h1 { font-size: 4.4rem; }
  .subtitle { font-size: 1.18rem; }
  .section-shell { border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
