*{box-sizing:border-box}
:root{
  --bg:#f6efe8;
  --paper:#fffaf6;
  --ink:#241f1b;
  --ink-soft:#504740;
  --muted:#84786f;
  --line:#e6d9d0;
  --accent:#d3a18a;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
}
button,input,textarea{font:inherit}
button{cursor:pointer}
.hidden{display:none!important}
.site{overflow:hidden}
.micro-label{
  display:inline-block;
  margin:0;
  color:var(--muted);
  font-size:10px;
  line-height:1.2;
  letter-spacing:.24em;
  text-transform:uppercase;
}
.micro-label.light{color:rgba(255,255,255,.75)}

/* COVER */
.cover{
  position:relative;
  min-height:100svh;
  display:grid;
  grid-template-rows:auto 1fr auto;
  color:#fff;
  background:#2e2926;
  overflow:hidden;
}
.cover-photo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}
.cover-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom,rgba(0,0,0,.16),rgba(0,0,0,.10) 32%,rgba(0,0,0,.30) 60%,rgba(0,0,0,.65)),
    linear-gradient(to right,rgba(0,0,0,.15),transparent 55%);
}
.cover-top,.cover-main,.cover-foot{position:relative;z-index:2}
.cover-top{
  padding:24px 20px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}
.cover-year{
  font-size:10px;
  letter-spacing:.20em;
  opacity:.82;
}
.cover-main{
  align-self:end;
  padding:30px 20px 24px;
}
.cover-number{
  position:absolute;
  right:10px;
  top:-126px;
  font:400 clamp(138px,36vw,235px)/.78 Georgia,serif;
  letter-spacing:-.08em;
  color:rgba(255,255,255,.18);
  pointer-events:none;
}
.cover-kicker{
  position:relative;
  margin:0 0 7px;
  font-size:10px;
  letter-spacing:.15em;
  text-transform:uppercase;
  opacity:.78;
}
.cover h1{
  position:relative;
  max-width:760px;
  margin:0 0 18px;
  font:400 clamp(54px,13vw,96px)/.88 Georgia,serif;
  letter-spacing:-.045em;
  text-transform:uppercase;
}
.cover-event-title{
  position:relative;
  margin:-8px 0 18px;
  font:400 16px/1.3 Georgia,serif;
  opacity:.82;
}
.cover-date{
  display:flex;
  flex-direction:column;
  gap:2px;
  margin:0 0 18px;
}
.cover-date span{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.15em;
  opacity:.72;
}
.cover-date strong{
  font:400 17px/1.2 Georgia,serif;
}
.guest-card{
  width:min(100%,260px);
  margin:0 0 12px;
  padding:10px 13px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:16px;
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(10px);
}
.guest-card span{
  display:block;
  font-size:9px;
  letter-spacing:.05em;
  opacity:.68;
  margin-bottom:2px;
}
.guest-card strong{
  display:block;
  font-size:16px;
}
.cover-foot{
  padding:0 20px 20px;
  display:flex;
  justify-content:space-between;
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.18em;
  opacity:.72;
}
.pill-btn{
  border:0;
  border-radius:999px;
  padding:13px 20px;
  min-height:46px;
}
.light-btn{background:#fff;color:var(--ink)}
.dark-btn{background:var(--ink);color:#fff}

/* COMMON */
.section{
  position:relative;
  padding:76px 18px;
}
.section-head{
  max-width:980px;
  margin:0 auto 28px;
}
.section-head.centered{text-align:center}
.section-head h2{
  margin:8px 0 0;
  font:400 clamp(42px,10vw,72px)/.96 Georgia,serif;
  letter-spacing:-.025em;
}
.section-description{
  max-width:560px;
  margin:16px auto 0;
  color:var(--muted);
  line-height:1.7;
}

/* OPENING */
.opening{
  min-height:680px;
  display:grid;
  place-items:center;
  text-align:center;
  background:var(--bg);
  overflow:hidden;
  isolation:isolate;
}
.intro-inner{
  width:min(100%,700px);
  margin:auto;
  position:relative;
  z-index:2;
}
.intro-number{
  position:absolute;
  left:50%;
  top:44px;
  transform:translateX(-50%);
  z-index:0;
  font:400 clamp(210px,45vw,390px)/.8 Georgia,serif;
  letter-spacing:-.09em;
  color:rgba(36,31,27,.035);
  user-select:none;
}
.opening h2{
  margin:18px 0 8px;
  font:400 clamp(64px,17vw,122px)/.86 Georgia,serif;
  letter-spacing:-.045em;
}
.intro-meta{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin:0 0 26px;
  color:var(--muted);
  font:400 14px/1.3 Georgia,serif;
}
.intro-star{
  font-size:9px;
  color:var(--accent);
}
.opening-copy{
  max-width:590px;
  margin:0 auto;
  color:var(--ink-soft);
  line-height:1.9;
  font-size:14px;
}
.intro-date{
  margin:34px auto 0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:10px;
  letter-spacing:.2em;
}
.intro-date i{
  width:20px;
  height:1px;
  background:var(--line);
}

/* COUNTDOWN */
.countdown{
  position:relative;
  background:var(--ink);
  color:#fff;
  overflow:hidden;
}
.countdown::after{
  content:"17";
  position:absolute;
  right:-18px;
  bottom:-52px;
  font:400 clamp(180px,34vw,360px)/.75 Georgia,serif;
  letter-spacing:-.08em;
  color:rgba(255,255,255,.025);
  pointer-events:none;
}
.countdown-inner{
  position:relative;
  z-index:2;
  max-width:980px;
  margin:0 auto;
}
.countdown-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
}
.countdown-heading h2{
  margin:10px 0 0;
  font:400 clamp(48px,10vw,82px)/.9 Georgia,serif;
  letter-spacing:-.035em;
}
.countdown-mark{
  padding-bottom:7px;
  color:rgba(255,255,255,.36);
  font:400 18px/1 Georgia,serif;
  letter-spacing:.18em;
}
.count-line{
  width:100%;
  height:1px;
  margin:30px 0 24px;
  background:rgba(255,255,255,.12);
}
.count-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.count-box{
  min-width:0;
  padding:27px 10px 22px;
  text-align:left;
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  background:rgba(255,255,255,.018);
}
.count-box strong{
  display:block;
  font:400 clamp(42px,8vw,72px)/.9 Georgia,serif;
  letter-spacing:-.035em;
}
.count-box span{
  display:block;
  margin-top:14px;
  color:rgba(255,255,255,.52);
  font-size:9px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.countdown-footer{
  min-height:28px;
  margin-top:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.count-status{
  margin:0;
  color:rgba(255,255,255,.58);
  font-size:11px;
}
.countdown-note{
  color:rgba(255,255,255,.42);
  font-size:9px;
  letter-spacing:.2em;
}

/* DETAILS */
.details{
  background:var(--paper);
}
.details-inner{
  max-width:980px;
  margin:0 auto;
}
.details-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
}
.details-mark{
  padding-bottom:9px;
  color:var(--accent);
  font-size:16px;
}
.event-panel{
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  background:rgba(255,255,255,.24);
}
.date-feature{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:12px;
  padding:28px 22px 30px;
  border-bottom:1px solid var(--line);
}
.event-index{
  color:var(--muted);
  font-size:9px;
  letter-spacing:.12em;
  padding-top:4px;
}
.detail-weekday{
  display:block;
  margin-bottom:8px;
  color:var(--muted);
  font-size:9px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.detail-date-lockup{
  display:flex;
  align-items:flex-end;
  gap:14px;
}
.detail-date-lockup>strong{
  font:400 clamp(74px,14vw,118px)/.72 Georgia,serif;
  letter-spacing:-.055em;
}
.detail-date-lockup>div{
  display:flex;
  flex-direction:column;
  padding-bottom:3px;
}
.detail-date-lockup span:first-child{
  font:400 24px/1.05 Georgia,serif;
}
.detail-date-lockup span:last-child{
  margin-top:3px;
  color:var(--muted);
  font-size:10px;
  letter-spacing:.14em;
}
.sr-date{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
}
.event-row{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:12px;
  padding:24px 22px;
  border-bottom:1px solid var(--line);
}
.event-row:last-child{border-bottom:0}
.event-row small{
  display:block;
  margin-bottom:6px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:9px;
}
.event-row strong{
  display:block;
  max-width:720px;
  font:400 25px/1.28 Georgia,serif;
  overflow-wrap:anywhere;
}
.location-note{
  margin:12px 0 0;
  color:var(--muted);
  font-size:11px;
  letter-spacing:.02em;
}
.maps-button{
  width:max-content;
  min-width:154px;
  margin-top:18px;
  padding:12px 16px;
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  border:1px solid var(--ink);
  border-radius:999px;
  color:var(--ink);
  text-decoration:none;
  font-size:10px;
  letter-spacing:.08em;
  transition:background .2s ease,color .2s ease;
}
.maps-button:hover{
  background:var(--ink);
  color:#fff;
}
.maps-button span:last-child{
  font-size:16px;
  line-height:1;
}
.maps-button.hidden{
  display:none;
}

/* STATEMENT PHOTO */
.statement-photo{
  position:relative;
  min-height:700px;
  overflow:hidden;
  background:#2e2926;
  color:#fff;
}
.statement-photo img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.statement-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom,rgba(0,0,0,.10),rgba(0,0,0,.08) 45%,rgba(0,0,0,.68)),
    linear-gradient(to right,rgba(0,0,0,.12),transparent 55%);
}
.statement-topline{
  position:absolute;
  z-index:2;
  top:24px;
  left:20px;
  right:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.statement-index{
  color:rgba(255,255,255,.64);
  font-size:10px;
  letter-spacing:.18em;
}
.statement-copy{
  position:absolute;
  left:20px;
  right:20px;
  bottom:34px;
  z-index:2;
}
.statement-copy h2{
  max-width:760px;
  margin:0;
  font:400 clamp(48px,11vw,84px)/.94 Georgia,serif;
  letter-spacing:-.035em;
}
.statement-copy p{
  max-width:560px;
  margin:16px 0 0;
  color:rgba(255,255,255,.72);
  font-size:12px;
  line-height:1.7;
}

/* GALLERY */
.gallery-section{
  background:var(--bg);
}
.gallery-head{
  max-width:1020px;
  margin:0 auto 30px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
}
.gallery-head h2{
  margin:8px 0 0;
  font:400 clamp(42px,10vw,72px)/.96 Georgia,serif;
  letter-spacing:-.025em;
}
.gallery-counter{
  min-width:74px;
  text-align:right;
}
.gallery-counter span{
  display:block;
  font:400 28px/1 Georgia,serif;
}
.gallery-counter small{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:9px;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.editorial-gallery{
  max-width:1020px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:12px;
}
.editorial-gallery figure{
  position:relative;
  margin:0;
  overflow:hidden;
  border-radius:24px;
  background:#ddd;
}
.editorial-gallery figure::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  border-radius:inherit;
}
.editorial-gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}
@media (hover:hover) and (pointer:fine){
  .editorial-gallery figure:hover img{transform:scale(1.025)}
}

/* 1 photo */
.editorial-gallery[data-count="1"] figure{
  grid-column:3 / span 8;
  aspect-ratio:4/5;
}

/* 2 photos */
.editorial-gallery[data-count="2"] figure:nth-child(1){
  grid-column:1 / span 7;
  aspect-ratio:4/5;
}
.editorial-gallery[data-count="2"] figure:nth-child(2){
  grid-column:8 / span 5;
  aspect-ratio:3/4;
  margin-top:90px;
}

/* 3 photos */
.editorial-gallery[data-count="3"] figure:nth-child(1){
  grid-column:1 / span 7;
  aspect-ratio:4/5;
}
.editorial-gallery[data-count="3"] figure:nth-child(2){
  grid-column:8 / span 5;
  aspect-ratio:3/4;
  margin-top:90px;
}
.editorial-gallery[data-count="3"] figure:nth-child(3){
  grid-column:4 / span 6;
  aspect-ratio:1/1;
}

/* 4+ photos editorial rhythm */
.editorial-gallery[data-count="many"] figure:nth-child(6n+1){
  grid-column:span 7;
  aspect-ratio:4/5;
}
.editorial-gallery[data-count="many"] figure:nth-child(6n+2){
  grid-column:span 5;
  aspect-ratio:3/4;
  margin-top:80px;
}
.editorial-gallery[data-count="many"] figure:nth-child(6n+3){
  grid-column:span 5;
  aspect-ratio:4/3;
}
.editorial-gallery[data-count="many"] figure:nth-child(6n+4){
  grid-column:span 7;
  aspect-ratio:5/4;
}
.editorial-gallery[data-count="many"] figure:nth-child(6n+5),
.editorial-gallery[data-count="many"] figure:nth-child(6n+6){
  grid-column:span 6;
  aspect-ratio:1/1;
}

/* WISHES */
.wishes{
  background:var(--paper);
}
.wishes-inner{
  max-width:820px;
  margin:0 auto;
}
.wishes-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
}
.wishes-heading h2{
  margin:8px 0 0;
  font:400 clamp(48px,11vw,78px)/.92 Georgia,serif;
  letter-spacing:-.035em;
}
.wishes-mark{
  padding-bottom:8px;
  color:var(--accent);
  font-size:16px;
}
.wishes-intro{
  max-width:470px;
  margin:18px 0 32px;
  color:var(--muted);
  font-size:13px;
  line-height:1.75;
}
.wish-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(255,255,255,.34);
}
.field{
  margin-bottom:22px;
}
.field label{
  display:block;
  margin-bottom:8px;
  color:var(--muted);
  font-size:9px;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.field input,
.field textarea{
  width:100%;
  padding:0 0 12px;
  border:0;
  border-bottom:1px solid var(--line);
  border-radius:0;
  outline:none;
  background:transparent;
  color:var(--ink);
}
.field input{
  font:400 22px/1.3 Georgia,serif;
}
.field textarea{
  min-height:112px;
  resize:vertical;
  font-size:14px;
  line-height:1.7;
}
.field input:focus,
.field textarea:focus{
  border-bottom-color:var(--ink);
}
.field-foot{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:8px;
  color:var(--muted);
  font-size:9px;
}
.wish-submit{
  width:100%;
  min-height:50px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 18px;
  border:0;
  border-radius:999px;
  background:var(--ink);
  color:#fff;
}
.wish-submit span:first-child{
  font-size:11px;
  letter-spacing:.08em;
}
.wish-submit span:last-child{
  font-size:18px;
}
.form-status{
  min-height:18px;
  margin:12px 0 0;
  color:var(--muted);
  font-size:11px;
}
.comments-header{
  margin:48px auto 0;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-end;
  padding-bottom:17px;
  border-bottom:1px solid var(--line);
}
.comments-header h3{
  margin:6px 0 0;
  font:400 30px/1 Georgia,serif;
}
.comment-count{
  color:var(--muted);
  font-size:10px;
}
.comments{
  margin:0 auto;
}
.comment{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:14px;
  padding:20px 0;
  border-bottom:1px solid var(--line);
}
.comment-avatar{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#eee2db;
  display:grid;
  place-items:center;
  font:400 16px Georgia,serif;
}
.comment-body strong{
  display:block;
  margin-bottom:6px;
  font:400 15px Georgia,serif;
}
.comment-body div{
  color:var(--ink-soft);
  line-height:1.7;
  font-size:13px;
}
.comment-body time{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:9px;
  letter-spacing:.04em;
}

/* CLOSING */
.closing{
  position:relative;
  min-height:760px;
  display:grid;
  grid-template-rows:auto 1fr auto;
  overflow:hidden;
  background:#2e2926;
  color:#fff;
}
.closing-photo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}
.closing-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom,rgba(0,0,0,.14),rgba(0,0,0,.08) 36%,rgba(0,0,0,.68)),
    linear-gradient(to right,rgba(0,0,0,.16),transparent 60%);
}
.closing-top,
.closing-content,
.closing-foot{
  position:relative;
  z-index:2;
}
.closing-top{
  padding:24px 20px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}
.closing-roman{
  color:rgba(255,255,255,.64);
  font:400 12px Georgia,serif;
  letter-spacing:.18em;
}
.closing-number{
  position:absolute;
  z-index:1;
  right:-8px;
  bottom:178px;
  font:400 clamp(150px,38vw,290px)/.76 Georgia,serif;
  letter-spacing:-.08em;
  color:rgba(255,255,255,.11);
  pointer-events:none;
}
.closing-content{
  align-self:end;
  padding:40px 20px 28px;
}
.closing-kicker{
  margin:0 0 8px;
  color:rgba(255,255,255,.72);
  font-size:9px;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.closing-content h2{
  margin:0;
  font:400 clamp(68px,18vw,128px)/.82 Georgia,serif;
  letter-spacing:-.055em;
  text-transform:uppercase;
}
.closing-rule{
  width:42px;
  height:1px;
  margin:22px 0 16px;
  background:rgba(255,255,255,.5);
}
.closing-message{
  max-width:470px;
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.75;
  font-size:12px;
}
.closing-date{
  margin-top:25px;
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.68);
  font-size:9px;
  letter-spacing:.2em;
}
.closing-date i{
  width:18px;
  height:1px;
  background:rgba(255,255,255,.34);
}
.closing-foot{
  padding:0 20px 22px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:rgba(255,255,255,.54);
  font-size:8px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

@media(max-width:700px){
  .closing{min-height:720px}
  .closing-number{right:-5px;bottom:184px;font-size:clamp(155px,46vw,210px)}
  .closing-content h2{font-size:clamp(68px,20vw,94px)}
  .closing-message{max-width:88%;font-size:11px}
  .closing-foot{font-size:7px}

  .wishes-heading h2{font-size:clamp(48px,15vw,66px)}
  .wishes-intro{margin-bottom:26px}
  .wish-card{padding:18px 16px;border-radius:23px}
  .field{margin-bottom:20px}
  .comments-header{margin-top:40px}
  .comment{grid-template-columns:42px 1fr;gap:12px}
  .comment-avatar{width:42px;height:42px}

  .statement-photo{min-height:620px}
  .statement-copy h2{font-size:clamp(46px,13vw,64px)}
  .statement-copy p{font-size:11px;max-width:88%}
  .gallery-head{align-items:flex-end}
  .gallery-counter{min-width:auto}
  .editorial-gallery{grid-template-columns:repeat(2,1fr);gap:9px}
  .editorial-gallery[data-count="1"] figure,
  .editorial-gallery[data-count="2"] figure:nth-child(n),
  .editorial-gallery[data-count="3"] figure:nth-child(n),
  .editorial-gallery[data-count="many"] figure:nth-child(n){
    grid-column:span 1;
    margin-top:0;
    aspect-ratio:4/5;
    border-radius:18px;
  }
  .editorial-gallery[data-count="1"] figure{
    grid-column:span 2;
    aspect-ratio:5/6;
  }
  .editorial-gallery[data-count="2"] figure:nth-child(1){
    aspect-ratio:4/5;
  }
  .editorial-gallery[data-count="2"] figure:nth-child(2){
    margin-top:46px;
    aspect-ratio:4/5;
  }
  .editorial-gallery[data-count="3"] figure:nth-child(1){
    grid-column:span 2;
    aspect-ratio:5/4;
  }
  .editorial-gallery[data-count="3"] figure:nth-child(2),
  .editorial-gallery[data-count="3"] figure:nth-child(3){
    aspect-ratio:4/5;
  }
  .editorial-gallery[data-count="many"] figure:nth-child(4n+1){
    grid-column:span 2;
    aspect-ratio:5/4;
  }

  .details-head{align-items:flex-end}
  .details-mark{padding-bottom:7px}
  .event-panel{border-radius:24px}
  .date-feature{grid-template-columns:38px 1fr;padding:24px 16px 26px}
  .detail-date-lockup{gap:11px}
  .detail-date-lockup>strong{font-size:clamp(76px,24vw,100px)}
  .detail-date-lockup span:first-child{font-size:21px}
  .event-row{grid-template-columns:38px 1fr;padding:21px 16px}
  .event-row strong{font-size:21px}

  .countdown-heading{align-items:flex-start}
  .countdown-heading h2{font-size:clamp(46px,14vw,66px)}
  .countdown-mark{padding-top:12px;font-size:13px}
  .count-line{margin:24px 0 18px}
  .count-grid{grid-template-columns:repeat(2,1fr);gap:9px}
  .count-box{padding:22px 13px 18px;border-radius:18px}
  .count-box strong{font-size:clamp(42px,13vw,58px)}
  .countdown-footer{margin-top:16px}

  .opening{min-height:610px;padding-top:80px;padding-bottom:80px}
  .intro-number{top:64px;font-size:clamp(190px,62vw,260px)}
  .opening h2{font-size:clamp(62px,20vw,90px)}
  .opening-copy{max-width:92%;font-size:13px;line-height:1.85}

  .cover{min-height:760px}
  .cover-number{top:-112px;right:8px;font-size:clamp(138px,38vw,180px)}
  .cover h1{font-size:clamp(54px,15vw,76px)}
  .cover-main{padding-bottom:22px}
  .cover-event-title{font-size:14px;margin-top:-4px}
  .section{padding:68px 14px}
  .count-grid{grid-template-columns:repeat(2,1fr)}
  .event-row{grid-template-columns:42px 1fr;padding:20px 16px}
  .event-row strong{font-size:21px}
  .statement-photo{min-height:560px}
  .editorial-gallery{grid-template-columns:repeat(2,1fr);gap:9px}
  .editorial-gallery figure:nth-child(n){
    grid-column:span 1;
    aspect-ratio:4/5;
    margin-top:0;
    border-radius:18px;
  }
  .editorial-gallery figure:nth-child(3n+1){
    grid-column:span 2;
    aspect-ratio:5/4;
  }
  .wish-card{padding:15px;border-radius:22px}
}

/* Sweet Seventeen Music Player */
.music-toggle{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
  width:48px;
  height:48px;
  padding:0;
  border:1px solid rgba(36,31,27,.14);
  border-radius:50%;
  background:rgba(255,250,246,.88);
  color:#241f1b;
  box-shadow:0 8px 26px rgba(0,0,0,.12);
  backdrop-filter:blur(12px);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2px;
  cursor:pointer;
}
.music-toggle.hidden{
  display:none;
}
.music-icon{
  font:400 18px/1 Georgia,serif;
}
.music-bars{
  width:12px;
  height:16px;
  display:none;
  align-items:flex-end;
  justify-content:center;
  gap:2px;
}
.music-bars i{
  width:2px;
  height:6px;
  border-radius:2px;
  background:currentColor;
  animation:musicBar .8s ease-in-out infinite alternate;
}
.music-bars i:nth-child(2){
  height:12px;
  animation-delay:.18s;
}
.music-bars i:nth-child(3){
  height:8px;
  animation-delay:.34s;
}
.music-toggle.is-playing .music-icon{
  display:none;
}
.music-toggle.is-playing .music-bars{
  display:flex;
}
@keyframes musicBar{
  from{transform:scaleY(.45)}
  to{transform:scaleY(1)}
}
@media(max-width:700px){
  .music-toggle{
    right:14px;
    bottom:14px;
    width:44px;
    height:44px;
  }
}

/* Sweet Seventeen Music Player */
.music-toggle{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
  width:48px;
  height:48px;
  padding:0;
  border:1px solid rgba(36,31,27,.14);
  border-radius:50%;
  background:rgba(255,250,246,.88);
  color:#241f1b;
  box-shadow:0 8px 26px rgba(0,0,0,.12);
  backdrop-filter:blur(12px);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2px;
  cursor:pointer;
}
.music-toggle.hidden{
  display:none;
}
.music-icon{
  font:400 18px/1 Georgia,serif;
}
.music-bars{
  width:12px;
  height:16px;
  display:none;
  align-items:flex-end;
  justify-content:center;
  gap:2px;
}
.music-bars i{
  width:2px;
  height:6px;
  border-radius:2px;
  background:currentColor;
  animation:musicBar .8s ease-in-out infinite alternate;
}
.music-bars i:nth-child(2){
  height:12px;
  animation-delay:.18s;
}
.music-bars i:nth-child(3){
  height:8px;
  animation-delay:.34s;
}
.music-toggle.is-playing .music-icon{
  display:none;
}
.music-toggle.is-playing .music-bars{
  display:flex;
}
@keyframes musicBar{
  from{transform:scaleY(.45)}
  to{transform:scaleY(1)}
}
@media(max-width:700px){
  .music-toggle{
    right:14px;
    bottom:14px;
    width:44px;
    height:44px;
  }
}

/* Sweet Seventeen Dress Code */
.dresscode-content{
  min-width:0;
}
.dresscode-content > strong{
  display:block;
}
.dress-note{
  margin:5px 0 0;
  opacity:.72;
  font-size:12px;
  line-height:1.5;
}
.dress-group{
  margin-top:14px;
}
.dress-label{
  display:block;
  margin-bottom:7px;
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.62;
}
.dress-palette{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
}
.dress-color{
  display:block;
  width:24px;
  height:24px;
  flex:0 0 24px;
  border-radius:50%;
  border:1px solid rgba(30,25,22,.18);
  box-shadow:0 1px 2px rgba(0,0,0,.05);
}

/* Dress Code — Color Names */
.dress-palette{
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
}
.dress-color-chip{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-width:0;
}
.dress-color-chip .dress-color{
  width:22px;
  height:22px;
  flex:0 0 22px;
  border-radius:50%;
  border:1px solid rgba(30,25,22,.18);
}
.dress-color-chip .dress-color-name{
  font-size:11px;
  line-height:1.2;
  color:var(--ink-soft);
}
