@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500&display=swap");


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  background: #09080d;

  color: #eeeaf0;

  font-family:
    Inter,
    Arial,
    sans-serif;

  line-height: 1.7;
}


/* BACKGROUND STARS */

.stars {
  position: fixed;

  inset: 0;

  pointer-events: none;

  opacity: 0.2;

  z-index: -1;

  background-image:
    radial-gradient(circle, #fff 1px, transparent 1px),
    radial-gradient(circle, #dcb8cc 1px, transparent 1px);

  background-size:
    120px 120px,
    190px 190px;

  background-position:
    10px 30px,
    80px 100px;
}


/* HEADER */

header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 20;

  padding:
    17px 6%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  background:
    #09080dcc;

  backdrop-filter:
    blur(18px);

  border-bottom:
    1px solid #ffffff12;
}


.brand {
  font:
    500 28px
    "Cormorant Garamond",
    serif;

  color: #f2dbe7;

  text-decoration: none;

  white-space: nowrap;
}


nav {
  display: flex;

  align-items: center;

  gap: 28px;
}


nav a {
  color: #aaa4ad;

  text-decoration: none;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 0.08em;

  transition: 0.25s;
}


nav a:hover {
  color: #ffffff;
}


/* HERO */

.hero {
  min-height: 100vh;

  display: grid;

  place-items: center;

  text-align: center;

  padding:
    120px 7%
    70px;

  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      ellipse at 50% 40%,
      #291b28,
      #121018 36%,
      #09080d 70%
    );
}


.moon {
  position: absolute;

  width: 270px;

  height: 270px;

  border-radius: 50%;

  top: 14%;

  right: 12%;

  opacity: 0.1;

  background:
    radial-gradient(
      circle at 35% 30%,
      #fff,
      #c9a7ba 45%,
      #765c6b
    );

  box-shadow:
    0 0 100px
    #d8b0ca;
}


.hero-content {
  max-width: 800px;
}


.eyebrow {
  font-size: 10px;

  letter-spacing: 0.28em;

  text-transform: uppercase;

  color: #b992a8;

  margin:
    0
    0
    14px;
}


.hero h1 {
  font:
    500
    clamp(4.5rem, 14vw, 9rem)
    /0.82
    "Cormorant Garamond",
    serif;

  letter-spacing: -0.055em;

  margin: 0;

  color: #f3e9ef;
}


.tagline {
  font:
    400
    clamp(1.3rem, 3vw, 1.8rem)
    /1.2
    "Cormorant Garamond",
    serif;

  color: #c7bec6;

  margin:
    30px auto
    0;

  max-width: 620px;
}


.actions {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 25px;

  flex-wrap: wrap;

  margin-top: 38px;
}


.btn {
  display: inline-block;

  border:
    1px solid #ffffff2e;

  border-radius: 999px;

  padding:
    12px
    22px;

  color: #eee;

  text-decoration: none;

  background:
    #ffffff09;

  font:
    12px
    Inter,
    sans-serif;

  transition:
    transform 0.25s,
    background 0.25s;
}


.btn:hover {
  transform:
    translateY(-2px);
}


.btn.primary {
  background: #d5aec2;

  color: #191119;

  border-color: #d5aec2;
}


.quiet {
  font-size: 12px;

  color: #aaa2ac;

  text-decoration: none;
}


.scroll {
  margin-top: 85px;

  font-size: 9px;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: #625d65;
}


/* GENERAL SECTIONS */

.section {
  max-width: 1120px;

  margin: auto;

  padding:
    120px
    7%;
}


.section h2 {
  font:
    500
    clamp(2.8rem, 6vw, 5rem)
    /0.95
    "Cormorant Garamond",
    serif;

  margin:
    0
    0
    18px;

  letter-spacing: -0.025em;
}


.intro {
  color: #8f8992;

  max-width: 650px;

  margin-bottom: 45px;
}


/* STORY */

.story-grid {
  display: grid;

  grid-template-columns:
    2fr 1fr;

  gap: 18px;
}


.card {
  min-height: 260px;

  padding: 30px;

  border:
    1px solid #ffffff17;

  background:
    #ffffff06;

  border-radius: 20px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;
}


.card.big {
  grid-row: span 2;

  min-height: 540px;

  background:
    linear-gradient(
      145deg,
      #d5aec214,
      #ffffff04
    );
}


.card b {
  font:
    40px
    "Cormorant Garamond",
    serif;

  color: #a98599;
}


.card h3,
.memories h3 {
  font:
    500
    30px
    /1.05
    "Cormorant Garamond",
    serif;

  margin:
    8px
    0;
}


.card p,
.memories p {
  font-size: 13px;

  color: #8f8992;
}


.card a {
  margin-top: 8px;

  font-size: 11px;

  color: #d5aec2;

  text-decoration: none;
}


/* POEMS */

.poems {
  border-top:
    1px solid #ffffff17;
}


.poems article {
  display: grid;

  grid-template-columns:
    55px 1fr 25px;

  gap: 20px;

  align-items: center;

  padding:
    25px
    0;

  border-bottom:
    1px solid #ffffff17;

  color: #a98599;
}


.poems h3 {
  font:
    500
    28px
    "Cormorant Garamond",
    serif;

  margin: 0;

  color: #eeeaf0;
}


.poems p {
  margin:
    2px
    0;

  color: #88828b;

  font-size: 13px;
}


/* MEMORIES */

.shaded {
  max-width: none;

  background:
    #ffffff03;
}


.memories {
  max-width: 1120px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}


.memory-card {
  padding: 15px;

  border:
    1px solid #ffffff17;

  border-radius: 20px;

  background:
    #100e14;
}


.photo-placeholder {
  height: 230px;

  border-radius: 14px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 12px;

  color: #caa5b9;

  background:
    radial-gradient(
      circle,
      #3b2938,
      #17131b 65%
    );

  margin-bottom: 20px;

  border:
    1px dashed
    #ffffff1c;
}


.photo-placeholder span {
  font-size: 48px;
}


.photo-placeholder small {
  color: #9d9299;

  font-size: 10px;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


/* LETTER */

.letter {
  max-width: 760px;

  padding: 45px;

  border-left:
    1px solid #8f6e80;

  background:
    linear-gradient(
      100deg,
      #d5aec20f,
      transparent
    );

  font:
    22px
    "Cormorant Garamond",
    serif;
}


.letter-top {
  display: flex;

  justify-content: space-between;

  font:
    10px
    Inter,
    sans-serif;

  text-transform: uppercase;

  letter-spacing: 0.18em;

  color: #a98599;

  margin-bottom: 35px;
}


.letter p {
  color: #aaa2ab;
}


/* US SECTION */

.us {
  max-width: none;

  background:
    radial-gradient(
      circle,
      #211620,
      #09080d 60%
    );
}


.usbox {
  text-align: center;

  max-width: 760px;

  margin: auto;
}


.usbox p:not(.eyebrow) {
  color: #9d959d;

  max-width: 500px;

  margin:
    20px auto
    35px;
}


.heart {
  font:
    110px
    /0.8
    "Cormorant Garamond",
    serif;

  color: #c89bb3;
}


/* FOOTER */

footer {
  text-align: center;

  padding:
    60px
    20px;

  border-top:
    1px solid #ffffff12;

  color: #625d65;

  font-size: 10px;
}


footer strong {
  font:
    500
    24px
    "Cormorant Garamond",
    serif;

  color: #b992a8;
}


/* MOBILE */

@media (max-width: 760px) {


  header {
    padding:
      15px 5%;

    gap: 15px;
  }


  .brand {
    font-size: 25px;
  }


  nav {
    gap: 13px;
  }


  nav a {
    font-size: 9px;

    letter-spacing: 0.05em;
  }


  .moon {
    right: -90px;

    top: 12%;
  }


  .hero {
    padding-left: 6%;

    padding-right: 6%;
  }


  .scroll {
    margin-top: 60px;
  }


  .section,
  .shaded {
    padding:
      90px
      6%;
  }


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


  .card.big {
    grid-row: auto;

    min-height: 400px;
  }


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


  .photo-placeholder {
    height: 220px;
  }


  .poems article {
    grid-template-columns:
      35px 1fr 20px;
  }


  .letter {
    padding: 30px 22px;
  }

}


@media (max-width: 420px) {


  header {
    padding:
      14px 4%;
  }


  .brand {
    font-size: 22px;
  }


  nav {
    gap: 10px;
  }


  nav a {
    font-size: 8px;
  }

}
/* COUNTDOWN */

.countdown-section {
  text-align: center;
  padding: 110px 6%;
  border-top: 1px solid #ffffff12;

  background:
    radial-gradient(
      circle at center,
      #5b324520,
      transparent 55%
    );
}

.countdown-section h2 {
  margin: 12px 0 15px;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    clamp(42px, 7vw, 72px);

  font-weight: 500;
  line-height: 1;
}

.countdown-text {
  max-width: 500px;
  margin: 0 auto 45px;
  color: #8e878e;
  font-size: 14px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 850px;
  margin: auto;
}

.countdown-box {
  padding: 28px 15px;
  border: 1px solid #ffffff18;
  border-radius: 18px;
  background: #ffffff05;
}

.countdown-box strong {
  display: block;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    clamp(42px, 6vw, 70px);

  font-weight: 500;
  line-height: 1;
  color: #d9a7bd;
}

.countdown-box span {
  display: block;
  margin-top: 12px;
  color: #827981;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


@media (max-width: 600px) {

  .countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .countdown-box {
    padding: 22px 10px;
  }

}