@font-face {
  font-family: "Myriad Shine";
  src: url("fonts/MyriadPro-Regular.otf") format("opentype");
  font-display: swap;
}

:root {
  --black: #1d1d1d;
  --black-deep: #111;
  --ink: #f6f2ed;
  --muted: #c9c3ba;
  --gold: #ffd139;
  --gold-dark: #e1ad19;
  --line: rgba(255, 255, 255, 0.14);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  font-family: Avenir, "Avenir Next", "Myriad Shine", Arial, sans-serif;
  color: var(--ink);
  background: var(--black);
  font-size: 16px;
  line-height: 1.58;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

[id] {
  scroll-margin-top: 92px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(22px, 5vw, 52px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.brand img {
  width: 220px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  margin-left: auto;
}

.nav-links a,
.nav-links button {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 13px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links button:hover,
.nav-links button:focus-visible,
.phone-link:hover {
  color: var(--gold);
}

.nav-links button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.phone-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.phone-link span {
  font-size: 13px;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 430px;
  height: clamp(430px, 30.7vw, 520px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.45);
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.24) 46%, rgba(10, 10, 10, 0.72)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 40px));
  padding-top: 58px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 800;
  color: #fff;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  text-transform: uppercase;
  font-size: clamp(34px, 3.35vw, 50px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
}

.hero h1 strong {
  display: block;
  font-weight: 900;
  color: #fff;
}

.hero-copy {
  max-width: 760px;
  margin: 14px auto 32px;
  color: #fff;
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 700;
}

.lead-form {
  display: grid;
  grid-template-columns: 240px 240px 240px;
  gap: 16px;
  align-items: stretch;
  width: min(760px, 100%);
  margin: 0 auto;
}

.lead-form label {
  position: relative;
  display: block;
}

.lead-form span {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: none;
}

.lead-form input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(255, 209, 57, 0.78);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 11px 14px 10px 74px;
  font: inherit;
  outline: none;
}

.lead-form input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 209, 57, 0.26);
}

.lead-form button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  background: var(--gold);
  color: #101010;
  padding: 11px 22px;
  font: inherit;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.lead-form button {
  width: 240px;
}

.scroll-cue {
  position: absolute;
  right: clamp(44px, 6vw, 94px);
  bottom: 44px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #17497d;
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.scroll-cue:hover {
  background: #1e5a98;
  transform: translateY(2px);
}

.scroll-cue svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-form button:hover,
.button-link:hover {
  background: #ffe16b;
  transform: translateY(-2px);
}

.hidden-field {
  position: absolute;
  left: -100vw;
  height: 1px;
  overflow: hidden;
}

.content-shell {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.content-shell.narrow {
  max-width: 1100px;
}

.intro-section,
.about-section,
.contact-section,
.split-section {
  padding: clamp(48px, 6vw, 88px) 0;
}

.intro-section {
  padding-top: 78px;
}

.intro-section,
.about-section,
.contact-section {
  background: var(--black);
}

.intro-section h2,
.split-copy h2,
.about-section h2,
.contact-section h2,
.band-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 900;
}

.intro-section p,
.split-copy p,
.about-section p,
.contact-section p,
.band-copy p {
  max-width: 900px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 500;
}

.photo-strip {
  width: min(1090px, calc(100% - 44px));
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(18px, 2vw, 34px);
}

.tile,
.feature-image,
.band-image {
  --parallax-y: 0px;
  margin: 0;
  overflow: hidden;
  background: #2a2a2a;
}

.tile {
  aspect-ratio: 1;
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: inherit;
  cursor: zoom-in;
}

.tile img,
.feature-image img,
.band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.feature-image[data-parallax] img,
.band-image[data-parallax] img {
  transform: translate3d(0, calc(var(--parallax-y) * -0.35), 0) scale(1.06);
  will-change: transform;
}

.tile:hover img,
.tile:focus-visible img,
.feature-image:not([data-parallax]):hover img,
.band-image:not([data-parallax]):hover img {
  transform: scale(1.045);
}

.tile:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.74fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.split-section {
  padding-top: 30px;
  padding-bottom: 211px;
}

.split-copy .button-link,
.contact-section .button-link {
  margin-top: 20px;
}

.feature-image {
  aspect-ratio: 480 / 510;
  position: relative;
  left: 22px;
  width: 480px;
  max-width: 480px;
  justify-self: end;
}

.gold-band {
  background: var(--gold);
  color: #151515;
  height: 250px;
  padding: 0;
  overflow: visible;
}

.band-grid {
  position: relative;
  width: min(1090px, calc(100% - 44px));
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: center;
}

.band-copy p {
  color: #151515;
}

.band-copy {
  padding-top: 34px;
}

.band-image {
  position: relative;
  left: 20px;
  top: -19px;
  width: 480px;
  max-width: 480px;
  aspect-ratio: 480 / 496;
  margin: 0;
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.2);
}

.about-section {
  padding-top: 175px;
  padding-bottom: clamp(88px, 7vw, 104px);
}

.contact-section {
  padding-top: clamp(12px, 1.8vw, 24px);
}

.site-footer {
  background: var(--black);
  padding: 78px 0 153px;
}

.footer-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(220px, 1fr) minmax(190px, 0.5fr) auto;
  gap: clamp(26px, 5vw, 66px);
  align-items: center;
}

.footer-inner img {
  width: 315px;
  height: auto;
}

.footer-inner p,
.footer-inner address {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  font-style: normal;
}

.footer-inner a {
  color: var(--ink);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.social-links svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(10, 10, 10, 0.84);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.form-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.form-modal-panel {
  position: relative;
  width: min(520px, 100%);
  background: #1d1d1d;
  border: 1px solid rgba(255, 209, 57, 0.34);
  padding: clamp(28px, 5vw, 46px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
}

.form-modal-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
}

.form-modal-panel p:not(.eyebrow):not(.hidden-field) {
  margin: 0 0 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.36;
}

.modal-lead-form {
  display: grid;
  gap: 14px;
}

.modal-lead-form label {
  display: grid;
  gap: 7px;
}

.modal-lead-form span {
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-lead-form input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255, 209, 57, 0.78);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 11px 14px;
  font: inherit;
  outline: none;
}

.modal-lead-form input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 209, 57, 0.26);
}

.modal-lead-form button {
  min-height: 48px;
  border: 0;
  background: var(--gold);
  color: #101010;
  padding: 12px 20px;
  font: inherit;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.modal-lead-form button:hover,
.modal-lead-form button:focus-visible {
  background: #ffe16b;
  transform: translateY(-2px);
  outline: none;
}

.form-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.form-modal-close::before,
.form-modal-close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.form-modal-close::before {
  transform: rotate(45deg);
}

.form-modal-close::after {
  transform: rotate(-45deg);
}

.form-modal-close:hover,
.form-modal-close:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 209, 57, 0.16);
  outline: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(54px, 1fr) minmax(0, 1180px) minmax(54px, 1fr);
  place-items: center;
  gap: clamp(10px, 2vw, 24px);
  padding: clamp(18px, 4vw, 54px);
  background: rgba(10, 10, 10, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  grid-column: 2;
  margin: 0;
  max-width: min(1180px, 100%);
  max-height: calc(100vh - 108px);
}

.lightbox-frame img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 148px);
  margin: 0 auto;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.lightbox-frame figcaption {
  margin-top: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 209, 57, 0.16);
  outline: none;
}

.lightbox-close {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  width: 46px;
  height: 46px;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-nav {
  width: 52px;
  height: 52px;
}

.lightbox-prev {
  grid-column: 1;
}

.lightbox-next {
  grid-column: 3;
}

.lightbox-prev::before,
.lightbox-next::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.lightbox-prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.lightbox-next::before {
  transform: translateX(-2px) rotate(45deg);
}

body.lightbox-open,
body.form-modal-open {
  overflow: hidden;
}

.js .reveal {
  opacity: 0;
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .reveal:not([data-parallax]) {
  transform: translateY(24px);
}

.js .reveal.visible:not([data-parallax]) {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal.visible {
  opacity: 1;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.5)),
    url("assets/hero-kiss.jpeg") center / cover no-repeat;
}

.thank-you-wrap {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 46px;
  width: min(720px, calc(100% - 44px));
  margin: 0 auto;
  padding: 80px 0;
}

.thank-you-logo img {
  width: 170px;
  height: auto;
}

.thank-you-card {
  max-width: 620px;
}

.thank-you-card h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
}

.thank-you-card p:not(.eyebrow) {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 19px;
}

@media (max-width: 900px) {
  .site-header {
    padding: 18px 22px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 690px;
    align-items: end;
    padding: 130px 0 54px;
  }

  .scroll-cue {
    display: none;
  }

  .hero-media img {
    object-position: center 58%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.46));
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form button {
    width: 100%;
  }

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

  .photo-strip .tile:last-child {
    grid-column: span 2;
    aspect-ratio: 1.5;
  }

  .lightbox {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    gap: 8px;
    padding: 18px 12px;
  }

  .lightbox-frame {
    max-height: calc(100vh - 92px);
  }

  .lightbox-frame img {
    max-height: calc(100vh - 140px);
  }

  .split,
  .band-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-image {
    left: 0;
    justify-self: start;
    width: min(100%, 480px);
  }

  .gold-band {
    height: auto;
    padding: 48px 0;
  }

  .band-grid {
    width: min(var(--max), calc(100% - 44px));
    height: auto;
  }

  .band-image {
    left: 0;
    top: 0;
    max-width: 520px;
    aspect-ratio: 0.87;
    margin: 8px 0 -118px;
    width: min(100%, 520px);
  }

  .band-copy {
    padding-top: 0;
  }

  .about-section {
    padding-top: 150px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand img {
    width: 116px;
  }

  .phone-link {
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: min(100% - 28px, 880px);
  }

  .hero h1 {
    font-size: 34px;
  }

  .photo-strip {
    gap: 12px;
  }

  .intro-section,
  .about-section,
  .contact-section,
  .split-section {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-inner {
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-parallax] {
    transform: none !important;
  }
}
