:root{
  --bg: #fbfaf6;
  --card: #ffffff;
  --ink: #1b1b1b;
  --muted: #6c6c6c;
  --line: rgba(0,0,0,.08);
  --accent: #a7a18a;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(0,0,0,.06);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(#f8f6ef, var(--bg));
}

h1,h2,h3{
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .2px;
  margin: 0 0 .35rem;
}
h1{ font-size: clamp(2.2rem, 4vw, 3.1rem); }
h2{ font-size: clamp(1.8rem, 3vw, 2.3rem); }
h3{ font-size: 1.35rem; }

.container{
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(251,250,246,.7);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:center;
  padding: 12px 10px;
  flex-wrap: wrap;
}
.nav a{
  text-decoration:none;
  color: var(--ink);
  font-size: 14px;
  opacity: .9;
}
.nav a:hover{ opacity: 1; }

.section{ padding: 70px 0; }

.hero{
  padding: 70px 0 40px;
}
.hero__inner{
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}
.kicker{
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.subtitle{
  color: var(--muted);
  margin: 12px 0 0;
}

.hero__photos{
  display:flex;
  justify-content:center;
  gap: 16px;
  margin: 26px 0 10px;
  flex-wrap: wrap;
}
.pill{
  width: 110px;
  height: 170px;
  border-radius: 999px;
  overflow: hidden;
  background: #eee;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.pill img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.hero__cta{
  display:flex;
  gap: 14px;
  justify-content:center;
  align-items:center;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  text-decoration:none;
  border: 1px solid rgba(0,0,0,.2);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  font-weight: 600;
  font-size: 14px;
}
.btn.small{ padding: 10px 14px; font-size: 13px; }
.btn.ghost{
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.link{ color: var(--ink); text-decoration: underline; }

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.note{ border-left: 4px solid var(--accent); }

.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

.countdown{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 18px;
}
.countdown__cell{
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 10px;
}
.countdown__num{
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
}
.countdown__lbl{
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}
.stack{ display:grid; gap: 12px; margin-top: 14px; }

.gallery{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-top: 16px;
}
.gallery img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}
.field{ display:grid; gap: 6px; }
label{ font-size: 13px; color: var(--muted); }
input, textarea, select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  outline: none;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(0,0,0,.25);
}

.footer{
  padding: 40px 0 60px;
  text-align:center;
  color: var(--muted);
}

@media (max-width: 760px){
  .grid2{ grid-template-columns: 1fr; }
  .countdown{ grid-template-columns: repeat(2, 1fr); }
}
