:root {
  color-scheme: light;
  --ink: #171717;
  --soft-ink: #746a64;
  --paper: #f7f4ef;
  --paper-deep: #eee8df;
  --line: #ded6cc;
  --black: #111111;
  --white: #ffffff;
  --accent: #c87558;
  --focus: #006fe6;
  --content: min(100% - 28px, 1040px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

html {
  scroll-padding-top: 82px;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  padding: 6px 10px 10px 14px;
  background: rgba(247, 244, 239, .92);
  backdrop-filter: blur(12px);
  color: var(--ink);
}

.brand {
  grid-column: 1;
  width: max-content;
  font-size: 20px;
  font-weight: 780;
  letter-spacing: 0;
}

.top-cta,
.primary-button,
.secondary-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 10px;
  font-weight: 760;
  letter-spacing: .02em;
  white-space: nowrap;
}

.top-cta {
  grid-column: 3;
  justify-self: end;
  min-width: 98px;
  min-height: 36px;
  padding: 0 18px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
}

.menu-button {
  grid-column: 4;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 1px solid rgba(17, 17, 17, .45);
  border-radius: 4px;
  background: rgba(246, 243, 239, .64);
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

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

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.nav {
  position: fixed;
  top: 50px;
  right: 10px;
  display: none;
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(17, 17, 17, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .16);
}

.nav.is-open {
  display: grid;
}

.nav a {
  padding: 12px 10px;
  border-radius: 6px;
  font-size: 15px;
  color: var(--ink);
}

.nav a:active,
.nav a:hover {
  background: var(--paper-deep);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #d8d1ca;
}

main > section {
  scroll-margin-top: 82px;
}

.hero-image {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(246, 243, 239, .18), rgba(246, 243, 239, .08) 34%, rgba(246, 243, 239, .94) 76%, var(--paper) 100%),
    linear-gradient(to right, rgba(246, 243, 239, .78), rgba(246, 243, 239, .22) 64%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  width: var(--content);
  margin: 0 auto;
  padding: 122px 0 28px;
}

.kicker {
  order: 4;
  margin: 28px 0 0;
  color: var(--soft-ink);
  font-size: 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: min(100%, 15ch);
  margin-bottom: 16px;
  font-size: clamp(34px, 10vw, 62px);
  line-height: .99;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 27ch;
  margin-bottom: 34px;
  color: var(--soft-ink);
  font-size: 16px;
}

.primary-button {
  width: max-content;
  min-width: 168px;
  padding: 0 26px;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
}

.rating {
  order: 5;
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 26px;
  color: var(--soft-ink);
  font-size: 14px;
}

.rating span {
  color: var(--accent);
  letter-spacing: 0;
}

.wrap {
  width: var(--content);
  margin: 0 auto;
}

.section-pad {
  padding: 72px 0;
}

.benefits {
  padding: 18px 0 28px;
  background: var(--paper);
}

.benefits-grid {
  display: grid;
  gap: 10px;
}

.benefits article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.benefits span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.benefits p {
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 15px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--soft-ink);
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

h2 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(28px, 8vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  max-width: 35ch;
  color: var(--soft-ink);
  font-size: 17px;
}

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

.steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.steps span {
  color: var(--soft-ink);
  font-size: 14px;
}

.steps p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.45;
}

.gallery {
  background: var(--paper-deep);
  overflow: hidden;
}

.gallery.is-static .gallery-controls,
.gallery.is-static .gallery-dots {
  display: none;
}

.gallery-head {
  display: grid;
  gap: 4px;
}

.gallery-controls {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.gallery-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.gallery-button:disabled {
  opacity: .35;
}

.gallery-track {
  display: grid;
  grid-auto-columns: minmax(78%, 1fr);
  grid-auto-flow: column;
  gap: 12px;
  width: 100%;
  margin-top: 34px;
  padding: 0 14px 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  min-width: 0;
  margin: 0;
  scroll-snap-align: center;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 10px;
  margin-top: 16px;
}

.gallery-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, .26);
  padding: 0;
}

.gallery-dot.is-active {
  background: var(--ink);
}

.prices {
  background: var(--black);
  color: var(--white);
}

.prices-wrap {
  display: grid;
  justify-items: center;
  text-align: center;
}

.price-kicker {
  margin-bottom: 58px;
  font-size: 32px;
  font-style: italic;
  font-weight: 780;
  line-height: 1;
}

.price-list {
  display: grid;
  gap: 42px;
  width: 100%;
  max-width: 520px;
  margin-bottom: 62px;
  text-align: left;
}

.price-item h3 {
  margin-bottom: 2px;
  font-size: 22px;
  line-height: 1.1;
}

.price {
  margin-bottom: 0;
  color: #c9c5c0;
  font-size: 22px;
}

.muted,
.fine-print {
  color: #8c8884;
}

.muted {
  margin-bottom: 0;
  font-size: 15px;
}

.light-button {
  min-width: min(230px, 100%);
  padding: 0 38px;
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .16em;
}

.fine-print {
  max-width: 32ch;
  margin: 32px auto 0;
  font-size: 14px;
  line-height: 1.45;
}

.details {
  background: var(--paper-deep);
}

.detail-grid {
  display: grid;
  gap: 28px;
}

.detail-list {
  display: grid;
  gap: 14px;
  color: var(--soft-ink);
  font-size: 17px;
}

.detail-list p {
  margin-bottom: 0;
}

.faq {
  background: var(--paper);
}

.faq-wrap {
  display: grid;
  gap: 30px;
}

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

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

.faq-list summary {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 20px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 680;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--soft-ink);
  font-size: 22px;
  line-height: 1;
}

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

.faq-list p {
  max-width: 58ch;
  margin: -6px 0 20px;
  color: var(--soft-ink);
  font-size: 15px;
}

.booking {
  background: var(--paper);
}

.booking-wrap {
  display: grid;
  gap: 28px;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .54);
}

.session-picker {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.session-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.session-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--black);
}

.session-option span {
  display: grid;
  gap: 2px;
}

.session-option strong,
.session-option b {
  font-size: 15px;
}

.session-option small {
  color: var(--soft-ink);
  font-size: 13px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: var(--soft-ink);
  font-size: 13px;
}

.field small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0 12px;
}

.field input::placeholder {
  color: rgba(35, 31, 28, .42);
}

.field input.is-invalid {
  border-color: #c73a2f;
  box-shadow: 0 0 0 3px rgba(199, 58, 47, .12);
}

.field input.is-invalid + small {
  color: #9f261f;
}

.check-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  color: var(--soft-ink);
  font-size: 13px;
}

.check-field input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--black);
}

.payment-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.payment-button:disabled {
  cursor: wait;
  opacity: .68;
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 13px;
}

.contacts {
  background: var(--paper-deep);
}

.contacts-wrap {
  display: grid;
  gap: 26px;
}

.contact-list {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.contact-list > a {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  font-weight: 720;
}

.contact-list span {
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .4);
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.secondary-button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.frame-fallback {
  min-height: 44px;
  font-size: 14px;
}

.footer {
  padding: 22px 0 28px;
  background: var(--paper);
  color: var(--soft-ink);
  font-size: 14px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.payment-result {
  display: grid;
  align-content: center;
  min-height: 100svh;
  width: var(--content);
  margin: 0 auto;
  padding: 30px 0;
}

.payment-result .brand {
  position: fixed;
  top: 16px;
  left: 14px;
}

.payment-result h1 {
  max-width: 10ch;
}

.payment-result .primary-button {
  margin-top: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 900px) {
  .site-header {
    display: flex;
    min-height: 68px;
    padding: 14px 26px;
  }

  .brand {
    margin-right: auto;
  }

  .menu-button {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    gap: 6px;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav a {
    padding: 9px 12px;
    color: var(--ink);
  }

  .top-cta {
    min-height: 40px;
  }

  .hero-content {
    padding-bottom: 52px;
  }

  .hero-image {
    inset: 0;
    width: 100%;
    object-position: 58% center;
  }

  h1 {
    max-width: 13ch;
  }

  .hero-copy {
    max-width: 35ch;
    font-size: 19px;
  }

  .section-pad {
    padding: 100px 0;
  }

  .process .wrap,
  .gallery-head,
  .detail-grid,
  .faq-wrap,
  .booking-wrap,
  .contacts-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 72px;
    align-items: start;
  }

  .benefits {
    padding: 34px 0 48px;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .benefits article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
    border-bottom: 0;
  }

  .process .lead {
    grid-column: 1;
  }

  .steps {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
  }

  .gallery-head h2 {
    max-width: 10ch;
  }

  .gallery-controls {
    justify-self: end;
    align-self: end;
    margin-top: 0;
  }

  .gallery-track {
    grid-auto-columns: minmax(420px, 46vw);
    gap: 18px;
    margin-top: 44px;
    padding-inline: max(26px, calc((100vw - 1040px) / 2));
  }

  .prices-wrap {
    max-width: 850px;
  }

  .price-list {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    max-width: none;
  }

  .booking-form {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
