:root {
  color-scheme: light;
  --ink: #171816;
  --ink-soft: #30312f;
  --paper: #f3efe8;
  --paper-bright: #fbf9f5;
  --fog: #c9d0d2;
  --fog-dark: #7f8b90;
  --champagne: #c6a779;
  --line: rgba(23, 24, 22, 0.18);
  --serif: "Bodoni 72", "Bodoni MT", Didot, "Iowan Old Style", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
}

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

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper-bright);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell,
.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-shell {
  padding-block: clamp(88px, 10vw, 152px);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: var(--shell);
  height: 104px;
  align-items: center;
  justify-content: space-between;
  color: var(--paper-bright);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 43px;
  color: currentColor;
}

.brand__name {
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: 0.01em;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.navigation a {
  position: relative;
  text-decoration: none;
}

.navigation a:not(.navigation__contact)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.navigation a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navigation__contact {
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  height: min(940px, 100svh);
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--ink);
}

.hero__media,
.hero__media img,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center center;
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.94) 0%, rgba(7, 8, 7, 0.72) 32%, rgba(7, 8, 7, 0.05) 70%),
    linear-gradient(0deg, rgba(7, 8, 7, 0.65) 0%, transparent 42%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  max-width: 1240px;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 7.7vw, 116px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.hero__lead {
  max-width: 590px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.button--light {
  color: var(--ink);
  background: var(--paper-bright);
}

.button--light:hover {
  background: var(--champagne);
}

.button--dark {
  color: var(--paper-bright);
  background: var(--ink);
}

.button--dark:hover {
  background: #343632;
}

.button--outline {
  color: var(--ink);
  border-color: var(--ink);
}

.button--outline:hover {
  color: var(--paper-bright);
  background: var(--ink);
}

.button--large {
  min-height: 60px;
  padding-inline: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.text-link--light {
  color: rgba(255, 255, 255, 0.82);
}

.hero__foot {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 29px;
  left: 0;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.statement {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 2fr);
  gap: 7vw;
}

.statement__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-number {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--fog-dark);
  font-family: var(--serif);
  font-size: 18px;
}

.section-number--light {
  color: rgba(255, 255, 255, 0.48);
}

.statement__copy h2,
.section-heading h2,
.process__intro h2,
.details-section h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.statement__copy h2 {
  max-width: 950px;
  font-size: clamp(48px, 6vw, 82px);
}

.statement__copy p {
  max-width: 710px;
  margin: 42px 0 0 auto;
  color: #555751;
  font-size: 18px;
}

.editorial-image {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: end;
  gap: clamp(44px, 8vw, 120px);
  padding-top: 0;
}

.editorial-image__frame {
  position: relative;
  width: min(100%, 690px);
  margin: 0;
}

.editorial-image__frame::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -24px;
  width: 52%;
  height: 47%;
  border-top: 1px solid var(--champagne);
  border-right: 1px solid var(--champagne);
  content: "";
}

.editorial-image__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.editorial-image__frame figcaption {
  position: absolute;
  right: -30px;
  bottom: 28px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(23, 24, 22, 0.84);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.editorial-image__note {
  max-width: 430px;
  padding-bottom: 54px;
}

.editorial-image__note .line {
  display: block;
  width: 72px;
  height: 1px;
  margin-bottom: 28px;
  background: var(--champagne);
}

.editorial-image__note p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 43px);
  line-height: 1.25;
}

.offers {
  color: var(--paper-bright);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.6fr);
  gap: 7vw;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading h2 {
  max-width: 880px;
  font-size: clamp(45px, 5.5vw, 76px);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: var(--ink);
  background: var(--paper-bright);
}

.offer-card {
  display: flex;
  min-height: 720px;
  flex-direction: column;
  padding: clamp(34px, 5vw, 68px);
}

.offer-card + .offer-card {
  border-left: 1px solid var(--line);
}

.offer-card--featured {
  background: #e8e1d5;
}

.offer-card__topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  color: #696c67;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 37px 0 18px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.offer-card__intro {
  min-height: 105px;
  margin: 0;
  color: #555751;
  font-size: 16px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 35px;
}

.price__amount {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 78px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price__tax {
  color: #686b66;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price__net {
  margin: 10px 0 0;
  color: #686b66;
  font-size: 12px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 40px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 23px;
  font-size: 14px;
}

.feature-list li::before {
  position: absolute;
  top: 0.71em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  content: "";
}

.offer-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.offers__note {
  max-width: 790px;
  margin: 28px 0 0 auto;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.process {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.5fr);
  gap: 8vw;
}

.process__intro {
  position: sticky;
  top: 52px;
  align-self: start;
}

.process__intro h2 {
  max-width: 420px;
  font-size: clamp(48px, 5.7vw, 78px);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 34px 0 42px;
  border-bottom: 1px solid var(--line);
}

.process-list__number {
  color: var(--fog-dark);
  font-family: var(--serif);
  font-size: 15px;
}

.process-list h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.process-list p {
  max-width: 650px;
  margin: 0;
  color: #5d605a;
}

.details-section {
  color: var(--paper-bright);
  background: #252724;
}

.details-section__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 9vw;
}

.details-section h2 {
  max-width: 510px;
  font-size: clamp(45px, 5vw, 70px);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list summary {
  position: relative;
  padding: 27px 44px 27px 0;
  font-family: var(--serif);
  font-size: 25px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 27px;
  right: 4px;
  color: var(--champagne);
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
}

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

.faq-list p {
  max-width: 660px;
  margin: -2px 0 28px;
  color: rgba(255, 255, 255, 0.64);
}

.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--paper-bright);
}

.contact__cloud {
  position: absolute;
  bottom: -170px;
  left: 50%;
  width: min(1100px, 95vw);
  height: 360px;
  border-radius: 50%;
  opacity: 0.55;
  background:
    radial-gradient(ellipse at 28% 55%, rgba(153, 168, 174, 0.42), transparent 43%),
    radial-gradient(ellipse at 68% 45%, rgba(192, 202, 205, 0.62), transparent 48%);
  filter: blur(35px);
  transform: translateX(-50%);
}

.contact__inner {
  position: relative;
  z-index: 1;
}

.contact h2 {
  font-size: clamp(58px, 8vw, 110px);
}

.contact__lead {
  max-width: 700px;
  margin: 32px auto 36px;
  color: #555751;
  font-size: 18px;
}

.contact__privacy {
  margin: 30px auto 0;
  color: #757872;
  font-size: 11px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: center;
  gap: 32px;
  padding-block: 38px;
}

.brand--footer {
  color: var(--paper-bright);
}

.site-footer p {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes hero-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.025); }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 40px, 720px);
  }

  .site-header {
    height: 82px;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    padding: 0;
    color: currentColor;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .navigation {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    color: var(--paper-bright);
    background: rgba(23, 24, 22, 0.98);
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .navigation[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
  }

  .navigation__contact {
    padding: 0;
    border: 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero__media img {
    object-position: 64% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(7, 8, 7, 0.9) 0%, rgba(7, 8, 7, 0.52) 75%, rgba(7, 8, 7, 0.26) 100%),
      linear-gradient(0deg, rgba(7, 8, 7, 0.68) 0%, transparent 50%);
  }

  .hero h1 {
    font-size: clamp(58px, 12.5vw, 90px);
  }

  .hero__lead {
    max-width: 520px;
  }

  .hero__foot {
    justify-content: flex-start;
  }

  .hero__foot span:nth-child(2),
  .hero__foot span:nth-child(3) {
    display: none;
  }

  .statement,
  .section-heading,
  .process,
  .details-section__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .statement__copy p {
    margin-left: 0;
  }

  .editorial-image {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.7fr);
    gap: 45px;
  }

  .offer-card {
    padding: 44px;
  }

  .process__intro {
    position: static;
  }

  .details-section__grid {
    gap: 70px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer__inner > p:first-of-type {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .section-shell {
    padding-block: 84px;
  }

  .brand__name {
    font-size: 20px;
  }

  .hero {
    height: 100svh;
    min-height: 680px;
  }

  .hero__content {
    justify-content: flex-end;
    padding-bottom: 118px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 74px);
    line-height: 0.92;
  }

  .hero__lead {
    margin-top: 26px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
  }

  .hero__foot {
    bottom: 20px;
  }

  .statement__copy h2,
  .section-heading h2,
  .process__intro h2,
  .details-section h2 {
    font-size: 47px;
  }

  .statement__copy p,
  .contact__lead {
    font-size: 16px;
  }

  .editorial-image {
    display: block;
    padding-top: 0;
  }

  .editorial-image__frame::before {
    top: -13px;
    right: -8px;
  }

  .editorial-image__frame figcaption {
    right: 0;
    bottom: 0;
    transform: none;
  }

  .editorial-image__note {
    padding: 54px 0 0;
  }

  .editorial-image__note p {
    font-size: 31px;
  }

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

  .offer-card {
    min-height: 0;
    padding: 34px 24px 42px;
  }

  .offer-card + .offer-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .offer-card__intro {
    min-height: 0;
  }

  .price__amount {
    font-size: 58px;
  }

  .offer-card .button {
    width: 100%;
  }

  .offers__note {
    margin-left: 0;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 10px;
  }

  .process-list h3 {
    font-size: 26px;
  }

  .faq-list summary {
    font-size: 22px;
  }

  .contact h2 {
    font-size: 58px;
  }

  .button--large {
    width: 100%;
  }

  .site-footer__inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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