@font-face {
  font-family: "Italiana";
  src: url("assets/fonts/italiana-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
}

:root {
  --paper: #f6f2ed;
  --paper-soft: #fbf9f6;
  --ink: #302522;
  --ink-soft: #746762;
  --brown: #6c463c;
  --brown-deep: #3d2924;
  --line: rgba(48, 37, 34, 0.16);
  --white: #fff;
  --serif: "Italiana", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.sp-skip {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.sp-skip:focus {
  transform: translateY(0);
}

.sp-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px;
  color: var(--white);
}

.sp-brand {
  display: inline-flex;
  width: 104px;
  height: 54px;
  align-items: center;
  overflow: hidden;
}

.sp-brand img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  object-fit: cover;
}

.sp-nav {
  display: none;
}

.sp-header-cta,
.sp-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sp-header-cta {
  padding: 10px 15px;
}

.sp-header-cta:hover,
.sp-header-cta:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.sp-hero {
  position: relative;
  display: grid;
  min-height: min(820px, 92svh);
  align-items: end;
  overflow: hidden;
  background: var(--brown-deep);
  color: var(--white);
}

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

.sp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-mobile-position, center);
}

.sp-hero-shade {
  background:
    linear-gradient(180deg, rgba(22, 14, 12, 0.4) 0%, rgba(22, 14, 12, 0.04) 30%, rgba(22, 14, 12, 0.74) 100%),
    linear-gradient(90deg, rgba(22, 14, 12, 0.24), transparent 70%);
}

.sp-hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 150px 20px 50px;
}

.sp-kicker {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sp-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 13vw, 88px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.99;
  text-wrap: balance;
}

.sp-hero-lead {
  max-width: 650px;
  margin: 23px 0 0;
  font-size: clamp(16px, 4.4vw, 20px);
  line-height: 1.55;
}

.sp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 29px;
}

.sp-button {
  padding: 14px 20px;
}

.sp-button-light {
  background: var(--white);
  color: var(--ink);
}

.sp-button-light:hover,
.sp-button-light:focus-visible {
  background: transparent;
  color: var(--white);
}

.sp-button-brown {
  background: var(--brown);
  color: var(--white);
}

.sp-button-brown:hover,
.sp-button-brown:focus-visible {
  background: var(--brown-deep);
}

.sp-button-ghost {
  background: transparent;
  color: var(--white);
}

.sp-button-ghost:hover,
.sp-button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.13);
}

.sp-intro,
.sp-section,
.sp-faq,
.sp-closing {
  width: min(calc(100% - 36px), 1180px);
  margin-inline: auto;
}

.sp-intro {
  padding: 74px 0 66px;
  text-align: center;
}

.sp-intro p {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(29px, 7.8vw, 52px);
  line-height: 1.17;
  text-wrap: balance;
}

.sp-intro small {
  display: block;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sp-section {
  padding: 62px 0;
  border-top: 1px solid var(--line);
}

.sp-split {
  display: grid;
  gap: 35px;
}

.sp-picture {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #d9d0c8;
}

.sp-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--picture-position, center);
}

.sp-copy {
  align-self: center;
}

.sp-copy h2,
.sp-offer-heading h2,
.sp-faq h2,
.sp-closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 10vw, 64px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-wrap: balance;
}

.sp-copy p {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.sp-signature {
  display: block;
  margin-top: 24px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 26px;
}

.sp-offer {
  width: 100%;
  padding: 72px 18px;
  background: var(--brown-deep);
  color: var(--white);
}

.sp-offer-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.sp-offer-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 38px;
}

.sp-offer-heading p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.sp-facts {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.sp-fact {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.sp-fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
}

.sp-fact span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.sp-price-card {
  display: grid;
  gap: 24px;
  margin-top: 36px;
  padding: 28px;
  background: var(--paper-soft);
  color: var(--ink);
}

.sp-price-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 8vw, 46px);
  font-weight: 400;
  line-height: 1.04;
}

.sp-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.sp-price strong {
  font-family: var(--serif);
  font-size: clamp(48px, 13vw, 74px);
  font-weight: 400;
  line-height: 1;
}

.sp-price span {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sp-price-card p {
  margin: 0;
  color: var(--ink-soft);
}

.sp-included {
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.sp-included b {
  display: block;
  margin-bottom: 4px;
  color: var(--brown);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sp-faq {
  padding: 76px 0;
}

.sp-faq h2 {
  margin-bottom: 32px;
}

.sp-faq details {
  border-top: 1px solid var(--line);
}

.sp-faq details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.sp-faq summary {
  position: relative;
  display: block;
  padding: 22px 44px 22px 0;
  cursor: pointer;
  font-weight: 400;
  list-style: none;
}

.sp-faq summary::-webkit-details-marker {
  display: none;
}

.sp-faq summary::after {
  position: absolute;
  top: 20px;
  right: 3px;
  content: "+";
  color: var(--brown);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.sp-faq details[open] summary::after {
  content: "−";
}

.sp-faq details p {
  max-width: 780px;
  margin: -5px 0 22px;
  color: var(--ink-soft);
}

.sp-video-shell {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #201714;
}

.sp-video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-video-play {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  border: 0;
  place-items: center;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 12, 10, 0.5));
  color: var(--white);
  cursor: pointer;
}

.sp-video-play span {
  display: grid;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  place-items: center;
  background: rgba(24, 15, 13, 0.34);
  backdrop-filter: blur(6px);
}

.sp-video-play span::before {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
  content: "";
  transform: translateX(2px);
}

.sp-video-play small {
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 100%;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sp-video-shell.is-playing .sp-video-play {
  display: none;
}

.sp-closing {
  padding: 78px 0;
  text-align: center;
}

.sp-closing p {
  max-width: 650px;
  margin: 19px auto 28px;
  color: var(--ink-soft);
}

.sp-footer {
  padding: 40px 18px;
  background: var(--brown-deep);
  color: rgba(255, 255, 255, 0.8);
}

.sp-footer-inner {
  display: grid;
  width: min(100%, 1180px);
  margin: 0 auto;
  gap: 23px;
}

.sp-footer-logo {
  display: block;
  width: 118px;
  height: 66px;
  overflow: hidden;
}

.sp-footer-logo img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  object-fit: cover;
}

.sp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  font-size: 12px;
}

.sp-footer-links a {
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

@media (min-width: 720px) {
  .sp-header {
    padding: 22px 30px;
  }

  .sp-brand {
    width: 126px;
    height: 68px;
  }

  .sp-hero-content {
    padding: 180px 34px 72px;
  }

  .sp-intro,
  .sp-section,
  .sp-faq,
  .sp-closing {
    width: min(calc(100% - 68px), 1180px);
  }

  .sp-intro {
    padding-block: 100px 92px;
  }

  .sp-section {
    padding-block: 90px;
  }

  .sp-split {
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    gap: 7vw;
  }

  .sp-split-reverse .sp-picture {
    order: 2;
  }

  .sp-picture {
    min-height: 650px;
  }

  .sp-offer {
    padding: 100px 34px;
  }

  .sp-offer-heading {
    grid-template-columns: 1fr 0.9fr;
    align-items: end;
    margin-bottom: 52px;
  }

  .sp-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .sp-fact {
    min-height: 138px;
    padding: 26px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
  }

  .sp-fact:nth-child(3n) {
    border-right: 0;
  }

  .sp-price-card {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.5fr);
    align-items: center;
    padding: 38px 42px;
  }

  .sp-price-card .sp-included,
  .sp-price-card > .sp-button {
    grid-column: 1 / -1;
  }

  .sp-faq,
  .sp-closing {
    padding-block: 105px;
  }

  .sp-footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .sp-header {
    padding-inline: 44px;
  }

  .sp-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .sp-nav a {
    text-decoration: none;
  }

  .sp-nav a:hover,
  .sp-nav a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 6px;
  }

  .sp-header-cta {
    margin-left: 10px;
    padding-inline: 20px;
  }

  .sp-hero-media img {
    object-position: var(--hero-desktop-position, center);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
