@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500;700;800;900&family=Space+Mono:wght@400;700&display=swap');

:root{
  --cream:#fff8ee;
  --ink:#201b1a;
  --pink:#ff6b8a;
  --red:#ff5a45;
  --yellow:#ffd65a;
  --purple:#7657ff;
  --blue:#72c7ff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--cream);color:var(--ink);font-family:Nunito,Arial,sans-serif}
a{color:inherit}
img{max-width:100%;display:block}

.nav{
  height:78px;padding:10px clamp(18px,4vw,64px);
  display:flex;align-items:center;justify-content:space-between;
  border-bottom:2px solid var(--ink);background:var(--cream);
  position:sticky;top:0;z-index:20
}
.brand img{height:52px;width:auto}
.nav-links{display:flex;align-items:center;gap:25px;font-size:15px;font-weight:800}
.nav-links a{text-decoration:none}
.nav-rsvp{background:var(--ink);color:white;padding:12px 17px;border-radius:10px}

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  padding:
    clamp(35px, 7vh, 100px)
    clamp(20px, 7vw, 110px);
  gap: clamp(25px, 4vw, 50px);
  align-items: center;
  background: var(--cream);
}
.eyebrow,.section-label{font-family:"Space Mono",monospace;font-size:11px;font-weight:700;letter-spacing:.03em}
.hero h1 {
  margin: clamp(12px, 2vh, 18px) 0 clamp(18px, 3vh, 24px);
  font-size: clamp(52px, min(8.7vw, 12vh), 145px);
  line-height: .86;
  letter-spacing: -.07em;
  font-weight: 900;
}
.hero h1 span{color:var(--pink)}
.hero-text{font-size:clamp(17px,1.5vw,21px);line-height:1.5;max-width:570px;margin:0}
.hero-actions{display:flex;align-items:center;gap:24px;margin-top:35px;flex-wrap:wrap}
.button{display:inline-block;text-decoration:none;font-family:"Space Mono",monospace;font-size:12px;font-weight:700;padding:17px 20px;border-radius:11px}
.primary{background:var(--red);color:white;box-shadow:4px 4px 0 var(--ink)}
.primary:hover{transform:translate(2px,2px);box-shadow:2px 2px 0 var(--ink)}
.text-link{font-weight:800}
.hero-side{align-self:stretch;display:flex;flex-direction:column;justify-content:space-between;min-height: clamp(360px, 65vh, 500px)}
.flag{width:min(220px,80%);align-self:flex-end;transform:rotate(3deg)}
.hero-facts{border:2px solid var(--ink);border-radius:14px;overflow:hidden;background:white}
.hero-facts div{padding:18px 20px;border-bottom:2px solid var(--ink)}
.hero-facts div:last-child{border-bottom:0}
.hero-facts small{font-family:"Space Mono",monospace;font-size:10px;display:block;margin-bottom:6px}
.hero-facts b{font-size:19px;line-height:1.2}

.photo-strip{display:grid;grid-template-columns:repeat(6,1fr);border-top:2px solid var(--ink);border-bottom:2px solid var(--ink);overflow:hidden}
.photo-strip div{height:86px;display:flex;align-items:center;justify-content:center;font-family:"Space Mono",monospace;font-size:12px;font-weight:700;letter-spacing:.06em;border-right:2px solid var(--ink)}
.photo-strip div:nth-child(1),.photo-strip div:nth-child(4){background:var(--yellow)}
.photo-strip div:nth-child(2),.photo-strip div:nth-child(5){background:var(--blue)}
.photo-strip div:nth-child(3),.photo-strip div:nth-child(6){background:white}

.section{
  display:grid;
  grid-template-columns:clamp(130px,14vw,190px) minmax(0,1fr);
  gap:clamp(25px,4vw,40px);
  padding:
    clamp(55px,10vh,100px)
    clamp(20px,8vw,130px);
  border-bottom:2px solid var(--ink);
}

.section-label{
  padding-top:clamp(8px,1.5vh,14px);
}

.section-content{
  max-width:1050px;
}

.section h2{
  font-size:clamp(42px,min(6vw,10vh),92px);
  line-height:.91;
  letter-spacing:-.06em;
  margin:0 0 clamp(20px,4vh,35px);
  font-weight:900;
}

.about{
  background:white;
}

.large-copy{
  font-size:clamp(21px,min(2.7vw,4.5vh),38px);
  line-height:1.25;
  font-weight:800;
  max-width:800px;
}

.about .section-content>p:last-child{
  max-width:650px;
  font-size:clamp(16px,min(1.3vw,2.5vh),18px);
  line-height:1.6;
}

.steps{
  background:var(--yellow);
}

.step-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:clamp(14px,2vw,18px);
}

.step{
  border:2px solid var(--ink);
  background:var(--cream);
  padding:clamp(20px,3vh,28px);
  border-radius:14px;
  min-height:clamp(190px,28vh,240px);
}

.step-icon{
  width:clamp(38px,5vh,45px);
  height:clamp(38px,5vh,45px);
  border-radius:50%;
  background:var(--purple);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:"Space Mono",monospace;
  font-size:10px;
  font-weight:bold;
}

.step h3{
  font-size:clamp(25px,min(2.2vw,4vh),31px);
  margin:clamp(25px,5vh,45px) 0 8px;
}

.step p{
  font-size:clamp(14px,min(1.2vw,2.5vh),16px);
  line-height:1.5;
  margin:0;
  max-width:350px;
}

.details{
  background:var(--cream);
}

.detail-list{
  border-top:2px solid var(--ink);
}

.detail{
  display:grid;
  grid-template-columns:clamp(110px,12vw,160px) 1fr;
  padding:clamp(16px,3vh,22px) 0;
  border-bottom:1px solid #8e8781;
}

.detail span{
  font-family:"Space Mono",monospace;
  font-size:11px;
  font-weight:bold;
  padding-top:5px;
}

.detail strong{
  font-size:clamp(17px,min(1.6vw,3vh),22px);
  line-height:1.35;
}

.venue-links{
  display:flex;
  gap:clamp(18px,3vw,28px);
  margin-top:clamp(22px,4vh,32px);
  flex-wrap:wrap;
}

.venue-links a{
  font-family:"Space Mono",monospace;
  font-size:11px;
  font-weight:bold;
}

.why{
  background:var(--pink);
}

.why-content>p{
  font-family:"Space Mono",monospace;
  font-size:clamp(12px,min(1vw,2vh),14px);
  margin-top:clamp(-15px,-1vh,-8px);
}

.why-points{
  margin-top:clamp(30px,7vh,55px);
}

.why-points>div{
  display:grid;
  grid-template-columns:clamp(100px,11vw,140px) 1fr;
  padding:clamp(14px,2.5vh,20px) 0;
  border-top:2px solid var(--ink);
  font-size:clamp(18px,min(1.8vw,3.5vh),22px);
}

.why-points>div:last-child{
  border-bottom:2px solid var(--ink);
}

.why-points b{
  font-family:"Space Mono",monospace;
  font-size:11px;
  padding-top:6px;
}

.team{
  background:white;
}

.team-sub{
  font-size:clamp(15px,min(1.4vw,2.5vh),17px);
  margin-top:clamp(-15px,-1vh,-8px);
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(12px,2vw,18px);
  margin-top:clamp(25px,5vh,45px);
}

.person-image{
  aspect-ratio:.88;
  width:100%;
  object-fit:cover;
  border:2px solid var(--ink);
  border-radius:12px;
  background:#eee;
}

.person h3{
  margin:clamp(9px,1.8vh,13px) 0 2px;
  font-size:clamp(18px,min(1.6vw,3vh),22px);
}

.person p{
  margin:0;
  font-family:"Space Mono",monospace;
  font-size:10px;
}

.rsvp{
  background:var(--purple);
  color:white;
  text-align:center;
  padding:
    clamp(70px,12vh,110px)
    20px
    clamp(75px,13vh,120px);
  border-bottom:2px solid var(--ink);
}

.rsvp img{
  width:min(540px,82vw,55vh);
  margin:0 auto clamp(25px,5vh,45px);
}

.rsvp h2{
  font-size:clamp(58px,min(9vw,15vh),140px);
  line-height:.83;
  letter-spacing:-.07em;
  margin:0;
}

.rsvp p{
  font-family:"Space Mono",monospace;
  font-size:12px;
  margin:clamp(20px,4vh,30px) 0;
}

.big{
  font-size:13px;
  padding:clamp(16px,2.5vh,20px) clamp(22px,3vw,28px);
  background:var(--yellow);
  color:var(--ink);
  box-shadow:4px 4px 0 var(--ink);
}

footer{
  background:var(--ink);
  color:var(--cream);
  padding:
    clamp(20px,3vh,28px)
    clamp(20px,7vw,110px);
  display:flex;
  justify-content:space-between;
  font-family:"Space Mono",monospace;
  font-size:10px;
}

footer div{
  display:flex;
  gap:20px;
  align-items:center;
}

footer a{
  text-decoration:none;
  color:var(--yellow);
}

@media(max-width:780px){

  .nav{
    height:66px;
    padding:8px 15px;
  }

  .brand img{
    height:42px;
  }

  .nav-links{
    gap:12px;
    font-size:12px;
  }

  .nav-links>a:not(.nav-rsvp){
    display:none;
  }

  .nav-rsvp{
    padding:10px 12px;
  }

  /* hero stays as you already fixed it */
  .hero{
    grid-template-columns:1fr;
    padding:60px 20px 45px;
    min-height:auto;
  }

  .hero h1{
    font-size:17vw;
  }

  .hero-side{
    min-height:auto;
    gap:35px;
  }

  .flag{
    width:130px;
  }

  .hero-facts{
    display:grid;
    grid-template-columns:repeat(3,1fr);
  }

  .hero-facts div{
    border-bottom:0;
    border-right:1px solid var(--ink);
    padding:14px 10px;
  }

  .hero-facts div:last-child{
    border-right:0;
  }

  .hero-facts b{
    font-size:13px;
  }

  .hero-facts small{
    font-size:8px;
  }

  .photo-strip div{
    height:70px;
    font-size:10px;
  }

  .section{
    display:block;
    padding:
      clamp(50px,10vh,70px)
      20px;
  }

  .section-label{
    margin-bottom:clamp(30px,6vh,45px);
    padding-top:0;
  }

  .section h2{
    font-size:clamp(48px,14vw,78px);
  }

  .large-copy{
    font-size:clamp(21px,6vw,30px);
  }

  .step-grid{
    grid-template-columns:1fr;
  }

  .step{
    min-height:0;
  }

  .step h3{
    margin-top:30px;
  }

  .detail{
    grid-template-columns:90px 1fr;
  }

  .detail strong{
    font-size:17px;
  }

  .why-points>div{
    grid-template-columns:80px 1fr;
    font-size:18px;
  }

  .team-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .rsvp{
    padding:
      clamp(65px,10vh,80px)
      20px;
  }

  .rsvp img{
    width:min(82vw,340px);
  }

  .rsvp h2{
    font-size:18vw;
  }

  footer{
    flex-direction:column;
    gap:20px;
  }

  footer div{
    flex-wrap:wrap;
  }
}