:root {
  --ink: #17201e;
  --cream: #f4f0e9;
  --warm: #ded4c7;
  --gold: #d0aa70;
  --line: rgba(23, 32, 30, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10;
  background: white;
  padding: 1rem;
}
.header {
  height: 82px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.brand {
  color: inherit;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.9;
  display: grid;
}
.brand span {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
}
.header nav {
  display: flex;
  gap: 30px;
}
.header nav a {
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.header-cta,
.text-link {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.header-cta span,
.button span,
.text-link span {
  font-size: 18px;
  line-height: 0;
  margin-left: 7px;
}
.hero {
  height: min(820px, 100vh);
  min-height: 680px;
  position: relative;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 0 8vw 12vh;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/hero-celebration.jpg")
    center/cover no-repeat;
  transform: scale(1.02);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 16, 15, 0.68), rgba(10, 16, 15, 0.18) 66%),
    linear-gradient(0deg, rgba(10, 16, 15, 0.45), transparent 52%);
}
.hero-copy,
.hero-note,
.scroll-cue {
  position: relative;
}
.hero-copy {
  max-width: 760px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.19em;
  font-weight: 700;
  margin: 0 0 22px;
}
.eyebrow.dark {
  color: #756d62;
}
.hero h1,
h2,
blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(53px, 7.2vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.052em;
  margin: 0;
}
.hero h1 em,
h2 em,
blockquote em {
  font-weight: 400;
}
.intro {
  font-size: 18px;
  line-height: 1.55;
  max-width: 435px;
  margin: 28px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  border: 0;
  padding: 16px 21px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
}
.button-light {
  background: var(--cream);
  color: var(--ink);
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.hero-note {
  position: absolute;
  right: 5.5vw;
  bottom: 55px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.scroll-cue {
  position: absolute;
  right: 5.5vw;
  bottom: 10vh;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: inherit;
}
.scroll-cue span {
  font-size: 22px;
  margin-left: 8px;
}
.section {
  padding: 130px 8vw;
}
.experience {
  display: grid;
  grid-template-columns: 20% 48% 32%;
  gap: 20px;
}
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #746d62;
  padding-top: 7px;
}
.experience h2,
.moments h2,
.inquire h2 {
  font-size: clamp(43px, 5.2vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
}
.experience-body {
  padding: 9px 0 0 5vw;
  max-width: 360px;
}
.experience-body p,
.moments-copy > p,
.inquire > div > p {
  line-height: 1.65;
  color: #5d605b;
  margin-top: 0;
}
.text-link {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  display: inline-flex;
  margin-top: 19px;
}
.pillars {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-top: 100px;
}
.pillars article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.pillars span {
  font-size: 11px;
  color: #796c5c;
}
.pillars h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 18px 0 10px;
}
.pillars p {
  font-size: 14px;
  line-height: 1.55;
  color: #5d605b;
  margin: 0;
  max-width: 250px;
}
.moments {
  position: relative;
  min-height: 810px;
  background: var(--warm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.moment-image {
  height: 560px;
}
.image-one {
  background: url("assets/first-dance.jpg")
    center/cover;
}
.image-two {
  background: url("assets/wedding-cake.jpg") center/cover;
  margin-top: 230px;
}
.moments-copy {
  position: absolute;
  left: 8vw;
  top: 130px;
  width: min(500px, 45vw);
  background: var(--cream);
  padding: 70px 74px;
  z-index: 1;
}
.moments-copy h2 {
  font-size: clamp(39px, 4vw, 65px);
  margin-bottom: 25px;
}
.proof {
  background: #eee9e0;
  text-align: center;
}
.proof .section-label {
  text-align: left;
}
.proof blockquote {
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.052em;
  max-width: 990px;
  margin: 135px auto 25px;
}
.inquire {
  background: var(--ink);
  color: #fff;
  padding: 130px 8vw;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 10vw;
}
.inquire h2 {
  margin: 0 0 25px;
}
.inquire > div > p {
  color: #c6c9c4;
  max-width: 310px;
}
form {
  display: grid;
  gap: 25px;
}
label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d4d3cb;
}
input,
select {
  color: #fff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font: 400 17px "DM Sans";
  display: block;
  width: 100%;
  padding: 12px 0 14px;
  outline: none;
}
input::placeholder {
  color: #a9aca7;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.inquire .button {
  justify-self: start;
  margin-top: 12px;
}
.form-note {
  font-size: 11px;
  color: #a9aca7;
  margin: 0;
}
footer {
  background: #101816;
  color: #fff;
  display: flex;
  padding: 32px 5.5vw;
  justify-content: space-between;
  align-items: end;
}
footer p {
  font-size: 9px;
  letter-spacing: 0.14em;
  margin: 0;
  color: #b9beb8;
}
@media (max-width: 760px) {
  .header {
    height: 68px;
    padding: 0 6vw;
  }
  .header nav {
    display: none;
  }
  .header-cta {
    font-size: 10px;
  }
  .hero {
    min-height: 690px;
    height: 100svh;
    padding: 0 7vw 10vh;
  }
  .hero h1 {
    font-size: 56px;
  }
  .intro {
    font-size: 16px;
  }
  .hero-note {
    display: none;
  }
  .scroll-cue {
    bottom: 4vh;
    right: 7vw;
  }
  .section {
    padding: 85px 7vw;
  }
  .experience {
    display: block;
  }
  .section-label {
    margin-bottom: 50px;
  }
  .experience-body {
    padding: 30px 0 0;
    max-width: 440px;
  }
  .pillars {
    display: block;
    margin-top: 70px;
  }
  .pillars article {
    margin-top: 35px;
  }
  .moments {
    min-height: 0;
    display: block;
    padding-bottom: 260px;
  }
  .moment-image {
    height: 370px;
    width: 68%;
  }
  .image-two {
    margin: -60px 0 0 auto;
  }
  .moments-copy {
    left: 7vw;
    top: auto;
    bottom: 55px;
    width: 86%;
    padding: 45px 34px;
  }
  .proof blockquote {
    margin: 85px auto 25px;
  }
  .inquire {
    padding: 85px 7vw;
    display: block;
  }
  .inquire form {
    margin-top: 50px;
  }
  .form-row {
    display: block;
  }
  .form-row label + label {
    margin-top: 25px;
  }
  footer {
    padding: 27px 7vw;
    display: grid;
    gap: 20px;
    align-items: start;
  }
  footer p {
    font-size: 8px;
  }
}
