
:root{
  --ink:#11365f;
  --navy:#0b2f58;
  --deep:#06213f;
  --blue:#7fb4d9;
  --sky:#cfe4f1;
  --mist:#eaf3f8;
  --paper:#fbfaf5;
  --white:#fff;
  --muted:#62758a;
  --line:rgba(17,54,95,.18);
  --shadow:0 18px 50px rgba(18,44,75,.09);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:88px}
body{
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:Arial,Helvetica,sans-serif;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  opacity:.18;
  pointer-events:none;
  background-image:radial-gradient(rgba(13,47,84,.15) .5px,transparent .5px);
  background-size:7px 7px;
  z-index:-1;
}
a{color:inherit;text-decoration:none}
button{font:inherit}
img{max-width:100%;display:block}
h1,h2,h3,p{margin-top:0}
h1,h2,h3,.header-mark{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
}

.site-header{
  position:fixed;
  z-index:100;
  top:18px;
  left:4vw;
  width:92vw;
  height:72px;
  padding:0 1.8rem;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  border-radius:26px;
  color:white;
  background:linear-gradient(125deg,#07305d,#082849);
  box-shadow:0 14px 35px rgba(5,31,60,.17);
}
.header-mark{
  font-size:1.45rem;
  letter-spacing:.06em;
}
.top-nav{
  display:flex;
  gap:2.1rem;
  text-transform:uppercase;
  letter-spacing:.10em;
  font-size:.73rem;
}
.top-nav a{
  opacity:.82;
  padding:.65rem .2rem;
  border-bottom:1px solid transparent;
}
.top-nav a:hover{
  opacity:1;
  border-bottom-color:rgba(255,255,255,.72);
}
.languages{
  justify-self:end;
  display:flex;
  gap:.18rem;
}
.lang{
  border:0;
  background:transparent;
  color:white;
  opacity:.48;
  cursor:pointer;
  padding:.45rem;
  font-size:.70rem;
  letter-spacing:.08em;
}
.lang.active{
  opacity:1;
  border-bottom:1px solid rgba(255,255,255,.9);
}

.landing{
  position:relative;
  min-height:100svh;
  overflow:hidden;
  display:grid;
  place-items:center;
  background:linear-gradient(#fdfcf8 0%,#faf8f2 100%);
}
.watercolor{
  position:absolute;
  top:0;
  bottom:0;
  width:43%;
  background-size:cover;
  background-position:center;
  opacity:.92;
}
.watercolor-left{
  left:0;
  background-image:url("assets/hero-schiedam.jpg");
  -webkit-mask-image:linear-gradient(to right,#000 65%,transparent 100%);
  mask-image:linear-gradient(to right,#000 65%,transparent 100%);
}
.watercolor-right{
  right:0;
  background-image:url("assets/hero-bilbao.jpg");
  -webkit-mask-image:linear-gradient(to left,#000 65%,transparent 100%);
  mask-image:linear-gradient(to left,#000 65%,transparent 100%);
}
.landing-wash{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom,rgba(255,255,255,.38),rgba(255,255,255,.03) 35%,rgba(255,255,255,.5)),
    radial-gradient(circle at center,rgba(251,250,245,.98) 0%,rgba(251,250,245,.92) 23%,rgba(251,250,245,.2) 52%,transparent 72%);
}
.landing-center{
  position:relative;
  z-index:3;
  padding:8.2rem 1.2rem 3rem;
  width:min(590px,90vw);
  text-align:center;
}
.landing-crest{
  width:142px;
  height:142px;
  object-fit:cover;
  margin:0 auto 1.4rem;
  border-radius:50%;
  box-shadow:0 14px 35px rgba(14,49,86,.13);
}
.overline,.eyebrow{
  font-size:.70rem;
  font-weight:700;
  letter-spacing:.24em;
  text-transform:uppercase;
}
.overline{margin-bottom:1.2rem}
.landing h1{
  margin-bottom:1.1rem;
  font-size:clamp(4rem,9vw,7.5rem);
  line-height:.85;
  color:var(--navy);
}
.landing h1 span{
  color:#5f8eb1;
  font-style:italic;
  font-size:.64em;
}
.date{
  margin-bottom:1.5rem;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.25rem;
  letter-spacing:.14em;
}
.landing-tagline{
  margin-bottom:2rem;
  color:#486984;
  font-family:Georgia,"Times New Roman",serif;
  font-style:italic;
  font-size:1.3rem;
}
.primary-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:210px;
  padding:1rem 1.5rem;
  border:1px solid var(--navy);
  border-radius:999px;
  background:var(--navy);
  color:white;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.71rem;
  cursor:pointer;
}
.primary-button:disabled{opacity:.55;cursor:default}
.scroll-cue{
  display:block;
  margin:2rem auto 0;
  width:36px;
  height:36px;
  font-size:1.6rem;
  line-height:30px;
}
.place-label{
  position:absolute;
  z-index:3;
  bottom:2.3rem;
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:.22em;
  font-size:.72rem;
}
.place-label-left{left:5vw}
.place-label-right{right:5vw}

.section{
  position:relative;
  padding:8rem 6vw;
}
.section-number{
  position:absolute;
  right:5vw;
  top:3rem;
  font-family:Georgia,"Times New Roman",serif;
  font-size:4.5rem;
  color:rgba(15,52,92,.10);
}
.light-number{color:rgba(255,255,255,.10)}
.section-heading{
  max-width:760px;
  margin-bottom:4rem;
}
.section-heading.centered{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.section-heading h2,.intro-block h2,.wedding-title-row h2,.rsvp-panel h2{
  margin-bottom:1.25rem;
  font-size:clamp(2.8rem,5vw,5.2rem);
  line-height:.98;
}
.section-heading p,.prose,.wedding-lead,.rsvp-panel>p:not(.eyebrow){
  color:var(--muted);
  line-height:1.8;
  font-size:1.06rem;
}

.welcome{
  background:linear-gradient(180deg,#fbfaf5,#f7f9fa);
}
.portal-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:1rem;
  max-width:1280px;
  margin:0 auto;
}
.portal-card{
  position:relative;
  overflow:hidden;
  min-height:330px;
  padding:2rem 1.25rem 1.5rem;
  text-align:center;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.76);
  box-shadow:var(--shadow);
  transition:transform .25s ease,box-shadow .25s ease;
}
.portal-card:after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:86px;
  background:linear-gradient(to top,rgba(127,180,217,.25),transparent);
}
.portal-card:hover{
  transform:translateY(-5px);
  box-shadow:0 24px 55px rgba(18,44,75,.14);
}
.portal-icon{
  width:68px;
  height:68px;
  margin:0 auto 1.2rem;
}
.portal-icon svg{
  width:100%;height:100%;
  fill:none;
  stroke:var(--navy);
  stroke-width:1.7;
}
.portal-card h3{
  font-size:1.65rem;
  margin-bottom:.8rem;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.portal-card p{
  color:var(--muted);
  line-height:1.6;
  font-size:.92rem;
}
.portal-card>span{
  position:relative;
  z-index:2;
  display:block;
  margin-top:1rem;
  font-size:1.35rem;
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8vw;
}
.intro-block{
  margin-bottom:4rem;
}
.prose p{max-width:620px}
.place-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.25rem;
}
.place-card{
  min-height:320px;
  padding:2.6rem;
  border-radius:26px;
}
.place-card h3{
  font-size:3rem;
  margin-bottom:1.1rem;
}
.place-card p{
  max-width:570px;
  line-height:1.75;
}
.place-small{
  display:block;
  margin-bottom:3rem;
  font-size:.69rem;
  font-weight:bold;
  letter-spacing:.24em;
}
.bilbao-card{
  background:linear-gradient(145deg,#cbe4f3,#9fc9e3);
}
.schiedam-card{
  background:linear-gradient(145deg,#0f3b68,#082747);
  color:white;
}
.schiedam-card p{color:rgba(255,255,255,.78)}
.signature{
  display:flex;
  justify-content:center;
  margin-top:4rem;
}
.signature img{
  width:108px;height:108px;object-fit:cover;border-radius:50%;
}

.wedding-section{
  color:white;
  background:
    radial-gradient(circle at 85% 15%,rgba(122,179,216,.22),transparent 26%),
    linear-gradient(145deg,#0c3865,#062342);
}
.light-text{color:rgba(255,255,255,.72)}
.wedding-title-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:4rem;
  align-items:end;
  padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.wedding-title-row h2{color:white}
.wedding-lead{max-width:650px;color:rgba(255,255,255,.72)}
.year{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(5rem,10vw,9rem);
  line-height:.8;
  color:var(--sky);
}
.wedding-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:3rem;
  border-top:1px solid rgba(255,255,255,.18);
  border-bottom:1px solid rgba(255,255,255,.18);
}
.wedding-grid article{
  min-height:245px;
  padding:2rem 2rem 2rem 0;
}
.wedding-grid article+article{
  padding-left:2rem;
  border-left:1px solid rgba(255,255,255,.18);
}
.line-icon{
  color:var(--sky);
  font-size:2rem;
}
.wedding-grid h3{
  margin:1.4rem 0 .7rem;
  font-size:1.8rem;
}
.wedding-grid p{
  color:rgba(255,255,255,.70);
  line-height:1.65;
}
.schedule{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:4rem;
  margin-top:4rem;
}
.schedule-copy h3{
  font-size:2.3rem;
  margin-bottom:1rem;
}
.schedule-copy p:last-child{color:rgba(255,255,255,.64);line-height:1.65}
.timeline{
  border-top:1px solid rgba(255,255,255,.18);
}
.timeline div{
  display:grid;
  grid-template-columns:100px 1fr;
  gap:1.5rem;
  padding:1.2rem 0;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.timeline b{color:var(--sky)}
.timeline span{color:rgba(255,255,255,.88)}

.bilbao-section{
  background:linear-gradient(180deg,#fbfaf5,#f8fbfc);
}
.guide-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
}
.guide-card{
  min-height:360px;
  padding:1.35rem;
  border:1px solid var(--line);
  border-radius:20px;
  background:white;
  box-shadow:var(--shadow);
}
.guide-card>span{
  display:block;
  margin:1.3rem 0 .7rem;
  color:#6a8aa5;
  font-size:.67rem;
  font-weight:bold;
  letter-spacing:.18em;
}
.guide-card h3{font-size:1.65rem}
.guide-card p{color:var(--muted);line-height:1.6;font-size:.94rem}
.guide-drawing{
  height:150px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:var(--navy);
  font-family:Georgia,"Times New Roman",serif;
  font-size:4.5rem;
  background:
    linear-gradient(180deg,rgba(184,215,234,.35),rgba(255,255,255,.4)),
    repeating-linear-gradient(160deg,transparent 0 16px,rgba(14,49,86,.035) 16px 17px);
}
.guide-drawing.museum:before{
  content:"";
  width:110px;height:70px;
  border:2px solid var(--navy);
  border-radius:48% 26% 44% 20%;
  transform:rotate(-5deg);
  box-shadow:35px -18px 0 -27px var(--navy),-36px 14px 0 -29px var(--navy);
}
.favorite-card{
  color:white;
  border-color:transparent;
  background:linear-gradient(145deg,#174d78,#0a2f55);
}
.favorite-card>span,.favorite-card p{color:rgba(255,255,255,.72)}
.favorite-card .guide-drawing{
  color:white;
  background:rgba(255,255,255,.08);
}

.travel-section{
  background:linear-gradient(180deg,#e7f1f7,#dcebf4);
}
.travel-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
  max-width:1150px;
  margin:0 auto;
}
.travel-card{
  min-height:275px;
  padding:2rem;
  border:1px solid rgba(17,54,95,.14);
  border-radius:22px;
  background:rgba(255,255,255,.82);
}
.travel-symbol{
  font-size:2.3rem;
  margin-bottom:1.5rem;
}
.travel-card h3{font-size:1.8rem}
.travel-card p{color:var(--muted);line-height:1.65}
.travel-card button{
  margin-top:1rem;
  padding:.65rem 0;
  border:0;
  border-bottom:1px solid var(--ink);
  color:var(--ink);
  background:transparent;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.65rem;
}

.rsvp-section{
  background:#fbfaf5;
}
.rsvp-panel{
  max-width:900px;
  margin:0 auto;
  padding:4rem 2rem;
  text-align:center;
  border:1px solid var(--line);
  border-radius:26px;
  background:white;
  box-shadow:var(--shadow);
}
.rsvp-panel img{
  width:120px;height:120px;
  object-fit:cover;
  margin:0 auto 2rem;
  border-radius:50%;
}
.rsvp-panel>p:not(.eyebrow){
  max-width:650px;
  margin:0 auto 2rem;
}

.footer{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:2rem 5vw;
  color:rgba(255,255,255,.67);
  background:var(--deep);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.68rem;
}

/* Mobile */
@media(max-width:980px){
  .site-header{
    top:8px;
    left:2vw;
    width:96vw;
    height:auto;
    min-height:68px;
    padding:.75rem 1rem;
    grid-template-columns:auto 1fr;
    gap:.5rem 1rem;
    border-radius:20px;
  }
  .header-mark{grid-column:1}
  .languages{grid-column:2;justify-self:end}
  .top-nav{
    grid-column:1/-1;
    width:100%;
    gap:1.3rem;
    overflow-x:auto;
    justify-content:flex-start;
    padding:.2rem 0 .15rem;
    scrollbar-width:none;
  }
  .top-nav::-webkit-scrollbar{display:none}
  .landing-center{padding-top:10rem}
  .watercolor{width:58%;opacity:.52}
  .watercolor-left{background-position:60% center}
  .watercolor-right{background-position:40% center}
  .portal-grid{grid-template-columns:repeat(2,1fr)}
  .portal-card:last-child{grid-column:1/-1}
  .two-col,.place-grid,.wedding-title-row,.schedule{grid-template-columns:1fr}
  .year{margin-top:1rem}
  .wedding-grid{grid-template-columns:1fr}
  .wedding-grid article+article{
    padding-left:0;
    border-left:0;
    border-top:1px solid rgba(255,255,255,.18);
  }
  .guide-grid{grid-template-columns:repeat(2,1fr)}
  .travel-grid{grid-template-columns:1fr}
}

@media(max-width:620px){
  .section{padding:6rem 1.2rem}
  .section-number{right:1.2rem;font-size:3.5rem}
  .landing{
    min-height:100svh;
  }
  .landing-wash{
    background:
      linear-gradient(to bottom,rgba(255,255,255,.45),rgba(255,255,255,.15)),
      radial-gradient(circle at center,rgba(251,250,245,.98) 0%,rgba(251,250,245,.90) 38%,rgba(251,250,245,.15) 74%,transparent);
  }
  .watercolor{
    width:63%;
    top:15%;
    height:75%;
    bottom:auto;
  }
  .landing-crest{width:112px;height:112px}
  .landing h1{font-size:clamp(3.4rem,18vw,5.6rem)}
  .date{font-size:1rem}
  .landing-tagline{font-size:1.05rem}
  .place-label{bottom:1rem;font-size:.56rem}
  .portal-grid{grid-template-columns:1fr}
  .portal-card:last-child{grid-column:auto}
  .portal-card{min-height:250px}
  .place-card{padding:2rem}
  .guide-grid{grid-template-columns:1fr}
  .footer{flex-direction:column;align-items:center;text-align:center}
}
