:root {
  --black: #050505;
  --black-2: #0d0d0d;
  --cream: #f4f0e7;
  --gold: #d6b56a;
  --gold-light: #f1dfa8;
  --text: #f7f4ed;
  --muted: #a9a49a;
  --dark-text: #171613;
  --radius: 30px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--black); color: var(--text); font-family: var(--sans); font-weight: 300; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
.grain { position: fixed; inset: 0; pointer-events: none; z-index: 100; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero { min-height: 100svh; position: relative; display: grid; place-items: center; overflow: hidden; isolation: isolate; }
.hero__image { position: absolute; inset: 0; background: url("../images/hero.jpg") center/cover no-repeat; transform: scale(1.04); animation: heroZoom 14s ease-out forwards; z-index: -3; }
.hero__overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.68) 75%, #050505 100%); }
.hero__content { text-align: center; padding: 40px 20px; }
.eyebrow { display: block; font-size: 10px; letter-spacing: .35em; font-weight: 500; margin-bottom: 18px; }
.gold { color: var(--gold-light); }
.dark { color: #625a4c; }
.hero h1 { font-family: var(--serif); font-size: clamp(76px, 19vw, 170px); line-height: .75; font-weight: 500; margin: 0; letter-spacing: -.04em; }
.hero__line { width: 70px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 32px auto 18px; }
.hero__subtitle { font-family: var(--serif); font-size: 24px; letter-spacing: .45em; margin: 0 0 22px 0; }
.hero__date { font-size: 10px; letter-spacing: .28em; margin: 0; }
.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 8px; letter-spacing: .24em; opacity: .8; }
.scroll-indicator i { font-size: 18px; font-style: normal; animation: float 2s ease-in-out infinite; }
.section { padding: 110px 20px; position: relative; overflow: hidden; }
.section__inner { width: min(1080px, 100%); margin: 0 auto; }
.center { text-align: center; }
.section--black { background: var(--black); }
.section--cream { background: var(--cream); color: var(--dark-text); }
.section--gold { background: radial-gradient(circle at 50% 10%, #f3e3b5 0, #d6b56a 42%, #b58e42 100%); color: var(--dark-text); }
.section--dark-gradient { background: radial-gradient(circle at 50% 20%, rgba(214,181,106,.13), transparent 35%), linear-gradient(145deg, #050505, #12100c 52%, #050505); }
.section h2 { font-family: var(--serif); font-size: clamp(44px, 9vw, 82px); line-height: .9; font-weight: 500; letter-spacing: -.03em; margin: 0 0 28px; }
.dark-title { color: var(--dark-text); }
.muted { color: var(--muted); line-height: 1.8; font-size: 14px; }
.dark-copy { color: #5e5a51; line-height: 1.8; font-size: 14px; max-width: 470px; margin: 0 auto 30px; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 55px auto 0; max-width: 700px; }
.countdown div { border-top: 1px solid rgba(214,181,106,.5); padding-top: 18px; }
.countdown strong { display: block; font-family: var(--serif); font-size: clamp(42px, 9vw, 70px); font-weight: 500; color: var(--gold-light); line-height: 1; }
.countdown span { font-size: 8px; letter-spacing: .22em; color: var(--muted); }
.gallery { margin-top: 55px; }
.gallery--large { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 270px 270px; gap: 14px; }
.gallery--large .photo--1 { grid-row: 1 / 3; }
.gallery--large .photo--2 { grid-column: 2; }
.gallery--large .photo--3 { grid-column: 2; }
.photo { overflow: hidden; border-radius: var(--radius); background: #1a1916; min-height: 220px; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.photo:hover img { transform: scale(1.045); }
.gallery--strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery--strip .photo { aspect-ratio: 3/4; min-height: 0; }
.big-number { font-family: var(--serif); font-size: clamp(130px, 28vw, 250px); line-height: .65; margin: 55px 0 0; color: var(--gold-light); }
.month { font-size: 14px; letter-spacing: .5em; margin: 22px 0 0  .5em; }
.year { font-family: var(--serif); font-size: 32px; margin: 6px 0 0; color: var(--gold); }
.gold-divider { width: 1px; height: 55px; background: var(--gold); margin: 35px auto; opacity: .7; }
.info-label { font-size: 8px; letter-spacing: .3em; color: var(--muted); margin-bottom: 7px; }
.info-value { font-family: var(--serif); font-size: 27px; margin: 0; }
.location-card { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.location-copy, .map-placeholder { border-radius: var(--radius); background: #0d0d0d; border: 1px solid rgba(214,181,106,.14); padding: 50px; }
.location-copy h2 { font-size: clamp(42px, 6vw, 68px); }
.map-placeholder { min-height: 440px; display: grid; place-items: center; background: radial-gradient(circle, rgba(214,181,106,.11), transparent 50%), #101010; color: rgba(214,181,106,.45); letter-spacing: .4em; font-size: 10px; }
.button { border: 1px solid rgba(214,181,106,.65); background: transparent; color: var(--text); border-radius: 999px; padding: 15px 21px; display: inline-flex; gap: 18px; align-items: center; cursor: pointer; font-size: 9px; letter-spacing: .18em; transition: .35s ease; }
.button:hover { background: var(--gold); color: #111; border-color: var(--gold); transform: translateY(-2px); }
.button--dark { color: var(--dark-text); border-color: rgba(23,22,19,.5); }
.button--dark:hover { background: var(--dark-text); color: var(--cream); border-color: var(--dark-text); }
.dress-mark { font-size: 32px; margin-top: 35px; color: #5b4520; }
.message-section { min-height: 65vh; display: grid; place-items: center; }
.footer { padding: 28px 20px 38px; display: flex; justify-content: space-between; font-size: 8px; letter-spacing: .25em; color: #706d66; background: var(--black); border-top: 1px solid rgba(255,255,255,.06); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
@keyframes heroZoom { to { transform: scale(1); } }
@keyframes float { 50% { transform: translateY(5px); } }
@media (max-width: 700px) {
  .section { padding: 88px 16px; }
  .countdown { gap: 4px; }
  .countdown strong { font-size: 39px; }
  .countdown span { font-size: 7px; letter-spacing: .12em; }
  .gallery--large { grid-template-columns: 1fr 1fr; grid-template-rows: 230px 160px; }
  .location-card { grid-template-columns: 1fr; }
  .location-copy, .map-placeholder { padding: 32px; }
  .map-placeholder { min-height: 270px; }
  .gallery--strip { gap: 8px; }
  .photo { border-radius: 22px; }
  .footer { flex-direction: column; gap: 10px; text-align: center; }
}
