:root {
  --pink: #f3a1b4;
  --red: #ef5948;
  --orange: #ff9b45;
  --cream: #fff5e9;
  --ink: #181511;
  --lime: #d7e66f;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { width: min(100%, 1920px); margin: 0 auto; overflow-x: hidden; background: var(--cream); color: var(--ink); font-family: "DM Sans", sans-serif; box-shadow: 0 0 40px rgba(24,21,17,.12); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
h1, h2, h3 { font-family: "Playfair Display", serif; letter-spacing: -.055em; }

.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: min(100%, 1920px);
  right: 0;
  margin: 0 auto;
  height: 104px;
  padding: 14px 5vw;
  display: flex;
  align-items: center;
  color: white;
}
.logo { width: 82px; height: 72px; overflow: hidden; border-radius: 50%; background: white; }
.logo img { object-fit: contain; }
.header nav { display: flex; gap: 35px; margin-left: auto; font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.header-cta { margin-left: 35px; padding: 13px 17px; border: 1px solid white; border-radius: 50px; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.menu { display: none; }

.masthead { position: relative; height: 100vh; min-height: 680px; overflow: hidden; color: white; }
.masthead-images, .masthead-images img, .masthead-overlay { position: absolute; inset: 0; }
.masthead-images img { opacity: 0; transform: scale(1.04); transition: opacity 1.1s, transform 6s; }
.masthead-images img.active { opacity: 1; transform: scale(1.11); }
.masthead-overlay { background: linear-gradient(90deg, rgba(20,10,10,.34), transparent 72%), linear-gradient(0deg, rgba(20,10,10,.34), transparent 55%); }
.masthead-copy { position: absolute; z-index: 2; left: 7vw; bottom: 9vh; max-width: 920px; }
.kicker { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.kicker.dark { color: var(--red); }
h1 { margin: 25px 0; font-size: clamp(4.7rem, 8vw, 9.4rem); line-height: .84; }
h1 em, h2 em { color: #ffd1d8; }
.lead { max-width: 510px; font-size: 1.05rem; line-height: 1.65; }
.pill { display: inline-flex; align-items: center; gap: 25px; margin-top: 22px; padding: 16px 22px; border-radius: 50px; background: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.pill span { font-size: 1rem; }
.image-index { position: absolute; z-index: 2; right: 5vw; bottom: 5vh; font-size: .68rem; letter-spacing: .15em; }
.image-index span { color: var(--pink); }

.hello { position: relative; padding: 150px 7vw; display: grid; grid-template-columns: 1fr .9fr; gap: 10vw; align-items: center; background: var(--pink); }
.hello-photo { height: 720px; overflow: hidden; border-radius: 50% 50% 0 0; }
.parallax-img img { height: 125%; transform: translateY(var(--parallax, 0)); will-change: transform; }
.hello-copy h2, .offers-intro h2, .promise h2 { margin: 25px 0; font-size: clamp(4rem, 6vw, 7rem); line-height: .9; }
.hello-copy h2 em, .promise h2 em { color: white; }
.hello-copy p, .offers-intro p, .promise-copy p { max-width: 520px; line-height: 1.75; }
.line-link { display: inline-block; margin-top: 20px; padding-bottom: 5px; border-bottom: 1px solid; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.sticker { position: absolute; right: 5vw; bottom: 60px; width: 130px; height: 130px; display: grid; place-content: center; border-radius: 50%; background: var(--lime); text-align: center; font-size: 2rem; font-weight: 700; transform: rotate(9deg); }
.sticker small { font-size: .48rem; letter-spacing: .1em; text-transform: uppercase; }

.statement { padding: 130px 5vw; background: var(--red); color: white; text-align: center; }
.statement p { font-size: .7rem; font-weight: 700; letter-spacing: .25em; }
.statement h2 { margin: 45px 0; font-size: clamp(5rem, 10vw, 12rem); line-height: .75; }
.statement h2 span { display: block; }
.statement h2 span:nth-child(2) { color: var(--pink); font-style: italic; }

.offers-intro { padding: 140px 7vw; display: grid; grid-template-columns: 1fr 1fr; column-gap: 8vw; background: var(--cream); }
.offers-intro .kicker { grid-column: 1 / -1; }
.offers-intro p:last-child { align-self: end; }
.offers-intro h2 em { color: var(--red); }

.offer { position: relative; min-height: 155vh; overflow: hidden; background: var(--cream); }
.offer-sheet {
  position: relative;
  z-index: 2;
  min-height: 680px;
  padding: 80px 7vw 120px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
  align-items: center;
  background: var(--cream);
  box-shadow: 0 18px 35px rgba(37,20,15,.07);
}
.offer-sheet::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(100% - 2px);
  left: 0;
  width: 100%;
  height: 11vw;
  min-height: 95px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 24%, 92% 38%, 82% 48%, 70% 51%, 58% 45%, 46% 38%, 34% 39%, 22% 49%, 10% 57%, 0 54%);
}
.offer:nth-child(odd) .offer-sheet { background: #f7d8df; }
.offer-content { max-width: 600px; }
.offer-content span { color: var(--red); font-size: .68rem; letter-spacing: .16em; }
.offer-content h3 { margin: 22px 0; color: var(--ink); font-size: clamp(4.4rem, 6.5vw, 8rem); line-height: .86; }
.offer-content p { max-width: 470px; line-height: 1.7; }
.offer-content a { display: inline-block; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.offer-cards { position: relative; height: 500px; }
.offer-cards img { position: absolute; width: 63%; height: 88%; border-radius: 80px 80px 20px 20px; box-shadow: 0 20px 50px rgba(45,25,20,.2); will-change: transform; }
.offer-cards img:first-child { top: 0; right: 0; opacity: .55; transform: translate(var(--back-x, 0), var(--back-y, 0)); }
.offer-cards img:last-child { bottom: 0; left: 0; transform: translate(var(--front-x, 0), var(--front-y, 0)); }
.offer-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #d9c7b7;
}
.offer-bg::before,
.offer-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: opacity .55s ease;
}
.offer-bg::before {
  background-image: var(--offer-image-a);
  opacity: var(--offer-opacity-a, 1);
}
.offer-bg::after {
  background-image: var(--offer-image-b);
  opacity: var(--offer-opacity-b, 0);
}

.promise { padding: 150px 7vw; background: var(--orange); }
.promise-copy { margin-bottom: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; }
.promise-copy .kicker { grid-column: 1 / -1; }
.promise h2 { margin: 0; }
.promise h2 em { color: var(--cream); }
.promise-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 18px; align-items: center; }
.promise-grid figure { height: 480px; margin: 0; overflow: hidden; }
.promise-grid figure:nth-child(2) { height: 620px; }

.contact { padding: 140px 7vw; background: var(--red); color: white; text-align: center; }
.contact h2 { margin: 45px 0; font-size: clamp(6rem, 12vw, 14rem); line-height: .74; }
.contact h2 em { color: var(--pink); }
.pill.light { background: white; color: var(--ink); }

footer { padding: 55px 7vw; display: grid; grid-template-columns: 100px 1fr auto; gap: 35px; align-items: center; background: var(--ink); color: white; }
footer img { width: 90px; height: 90px; border-radius: 50%; object-fit: contain; }
footer p { font-family: "Playfair Display", serif; font-size: 1.5rem; font-style: italic; }
footer div { display: flex; gap: 22px; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 800px) {
  .header { height: 85px; }
  .logo { width: 68px; height: 60px; }
  .header nav, .header-cta { display: none; }
  .header nav.open { position: absolute; top: 85px; left: 0; width: 100%; padding: 28px 6vw; display: flex; flex-direction: column; gap: 22px; background: var(--cream); color: var(--ink); }
  .menu { margin-left: auto; display: flex; flex-direction: column; gap: 7px; border: 0; background: none; }
  .menu span { width: 28px; height: 2px; background: white; }
  .masthead { min-height: 620px; }
  .masthead-copy { right: 6vw; bottom: 7vh; left: 6vw; }
  h1 { font-size: clamp(4rem, 16vw, 6rem); }
  .hello { padding: 90px 6vw; display: block; }
  .hello-photo { height: 500px; margin-bottom: 55px; }
  .sticker { right: 3vw; width: 95px; height: 95px; }
  .hello-copy h2, .offers-intro h2, .promise h2 { font-size: 3.8rem; }
  .statement { padding: 90px 5vw; }
  .statement h2 { font-size: 5.7rem; }
  .offers-intro { padding: 90px 6vw; display: block; }
  .offer { min-height: 0; overflow: visible; }
  .offer-sheet { min-height: auto; padding: 60px 6vw 85px; display: block; }
  .offer-sheet::after { height: 65px; min-height: 65px; }
  .offer-content h3 { font-size: clamp(3.25rem, 14vw, 4rem); }
  .offer-cards { height: 270px; margin-top: 30px; }
  .offer-cards img { width: 66%; height: 90%; border-radius: 38px 38px 12px 12px; transform: none !important; }
  .offer-bg { position: relative; height: 62vh; min-height: 430px; margin-top: -2px; }
  .offer-bg::before, .offer-bg::after { background-attachment: scroll; background-position: center; }
  .promise { padding: 90px 6vw; }
  .promise-copy { display: block; }
  .promise-grid { grid-template-columns: 1fr; gap: 12px; }
  .promise-grid figure, .promise-grid figure:nth-child(2) { height: 460px; }
  .contact { padding: 100px 6vw; }
  .contact h2 { font-size: 6rem; }
  footer { grid-template-columns: 80px 1fr; }
  footer div { grid-column: 1 / -1; flex-wrap: wrap; }
}
