:root {
  --cream: #e9d7aa;
  --cream-soft: #f3e7c9;
  --coral: #ff7180;
  --coral-readable: #ff7180;
  --charcoal: #292d30;
  --sky: #075f86;
  --sky-surface: #1c8fbe;
  --black: #111214;
  --border: rgba(41, 45, 48, 0.25);
  --shadow: 0 24px 70px rgba(17, 18, 20, 0.13);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: min(1240px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.55;
  /* `clip` (not `hidden`) contains stray horizontal overflow without turning the
     body into a scroll container, which would break the sticky header. */
  overflow-x: clip;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 6.8vw, 7rem);
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.6vw, 2.6rem);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--black);
  color: var(--cream);
  transform: translateY(-150%);
}

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

.availability {
  display: flex;
  justify-content: center;
  gap: 12px;
  min-height: 34px;
  padding: 8px 20px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px max(20px, calc((100% - 1240px) / 2));
  border-bottom: 1px solid rgba(255, 113, 128, 0.45);
  background: rgba(233, 215, 170, 0.88);
  backdrop-filter: blur(16px);
  transition: min-height 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(233, 215, 170, 0.97);
  box-shadow: 0 10px 34px rgba(17, 18, 20, 0.08);
}

.wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  margin-right: clamp(24px, 3vw, 52px);
  color: var(--charcoal);
  text-decoration: none;
}

.wordmark span,
.wordmark__main {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.wordmark small,
.booking__header small {
  margin-top: 5px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.45vw, 24px);
}

.primary-nav > a {
  position: relative;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__cta {
  flex: 0 0 auto;
  min-height: 42px;
  margin-left: clamp(4px, 0.7vw, 12px);
  padding: 9px 16px;
  white-space: nowrap;
}

.primary-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="true"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--compact {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.68rem;
}

.button--primary {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--black);
}

.button--primary:hover {
  border-color: var(--coral);
  background: var(--charcoal);
  color: var(--cream);
}

.button--outline-light {
  border-color: var(--cream);
  background: transparent;
  color: var(--cream);
}

.button--outline-light:hover {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--black);
}

.button--text {
  padding-inline: 0;
  border: 0;
  background: transparent;
  color: var(--charcoal);
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 2px solid var(--coral);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link--dark {
  border-bottom-color: var(--charcoal);
}

@media (hover: none) and (pointer: coarse) {
  .text-link {
    min-height: 44px;
    align-items: center;
    padding-block: 9px;
  }

  .site-footer nav a,
  .site-footer nav button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--blue {
  color: var(--sky);
}

.eyebrow--coral {
  color: var(--coral-readable);
}

.hero {
  display: grid;
  width: var(--container);
  min-height: calc(100vh - 112px);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  margin: auto;
  padding: clamp(70px, 10vw, 150px) 0;
}

.hero__lede {
  max-width: 570px;
  margin-bottom: 34px;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero__note {
  margin: 32px 0 0;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.hero__media {
  position: relative;
  margin: 0;
}

.hero__media::before {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 58%;
  height: 62%;
  border: 2px solid var(--coral);
  content: "";
}

.hero__media img {
  position: relative;
  width: 100%;
  min-height: 610px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 330px;
  padding: 18px 22px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(17, 18, 20, 0.18);
  border-bottom: 1px solid rgba(17, 18, 20, 0.18);
}

.trust-strip p {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip p + p {
  border-left: 1px solid rgba(17, 18, 20, 0.18);
}

.section {
  padding: clamp(90px, 11vw, 170px) max(20px, calc((100% - 1240px) / 2));
}

.section--coral {
  border-top: 8px solid var(--coral);
  background: var(--cream-soft);
  color: var(--charcoal);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--cream);
}

.section--blue {
  border-top: 8px solid var(--sky-surface);
  background: var(--charcoal);
  color: var(--cream);
}

.philosophy,
.founder,
.approach {
  display: grid;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.philosophy__copy p:not(.eyebrow),
.founder__copy p,
.approach__copy p {
  max-width: 600px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.philosophy__media {
  margin: 0;
  overflow: hidden;
}

.philosophy__media img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(50px, 7vw, 90px);
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.08rem;
}

.section-heading--split {
  display: grid;
  max-width: none;
  align-items: end;
  gap: 80px;
  grid-template-columns: 1fr 0.8fr;
  text-align: left;
}

.section-heading--split p:not(.eyebrow) {
  margin: 0;
}

.experience-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.experience-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid rgba(41, 45, 48, 0.2);
  background: rgba(255, 250, 240, 0.42);
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.experience-card:hover {
  background: rgba(255, 250, 240, 0.68);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.experience-card h3 {
  margin-top: auto;
  margin-bottom: 16px;
}

.experience-card p {
  margin-bottom: 28px;
}

.pricing {
  border-bottom: 1px solid rgba(233, 215, 170, 0.18);
}

.pricing-grid {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(233, 215, 170, 0.28);
  background: rgba(255, 255, 255, 0.035);
}

.pricing-card__heading {
  min-height: 190px;
}

.pricing-card__heading h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.pricing-card__heading > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.rate-list {
  margin: 0 0 34px;
  border-top: 1px solid rgba(233, 215, 170, 0.22);
}

.rate-option {
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(233, 215, 170, 0.22);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: color 160ms ease, padding 160ms ease;
}

.rate-option:hover,
.rate-option:focus-visible {
  padding-right: 8px;
  padding-left: 8px;
  color: var(--coral-readable);
}

.rate-option span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rate-option strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

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

.pricing__note {
  max-width: 760px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.7;
  text-align: center;
}

.founder__portrait {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: min(560px, 125vw);
  overflow: hidden;
  border: 1px solid rgba(233, 215, 170, 0.4);
  aspect-ratio: 4 / 5;
}

.founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.founder__certificate {
  max-width: 480px;
  margin: 30px 0;
}

.founder__certificate a {
  display: block;
  padding: 8px;
  border: 1px solid rgba(233, 215, 170, 0.45);
  background: rgba(233, 215, 170, 0.08);
  transition: border-color 180ms ease, transform 180ms ease;
}

.founder__certificate a:hover,
.founder__certificate a:focus-visible {
  border-color: var(--coral);
  transform: translateY(-2px);
}

.founder__certificate img {
  width: 100%;
  height: auto;
}

.founder__certificate figcaption {
  margin-top: 10px;
  color: rgba(233, 215, 170, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  align-items: start;
  gap: 24px;
  grid-template-columns: repeat(12, 1fr);
}

.gallery__item {
  margin: 0;
  overflow: hidden;
  grid-column: span 5;
}

.gallery__item--wide {
  grid-column: span 7;
}

.gallery__item--tall {
  margin-top: 120px;
  grid-column: 8 / span 5;
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.gallery__item:hover img {
  transform: scale(1.025);
}

.gallery-section .section-heading p:not(.eyebrow) {
  color: rgba(233, 215, 170, 0.72);
}

.editorial-carousel {
  --carousel-slide-width: min(44vw, 430px);
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.editorial-carousel__viewport {
  position: relative;
  width: 100%;
  height: clamp(440px, 56vw, 560px);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-padding-inline: calc((min(100%, 1040px) - var(--carousel-slide-width)) / 2);
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: auto;
}

.editorial-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.editorial-carousel__viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.editorial-carousel__viewport:focus-visible {
  outline-offset: 8px;
}

.editorial-carousel__track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  /* `100%` would resolve against this max-content track, not the viewport, so the
     centering inset is measured from the viewport width instead. */
  padding-inline: max(
    0px,
    calc((min(var(--carousel-viewport-width, 100vw), 1040px) - var(--carousel-slide-width)) / 2)
  );
}

.editorial-carousel__slide {
  position: relative;
  width: var(--carousel-slide-width);
  height: auto;
  aspect-ratio: 4 / 5;
  flex: 0 0 var(--carousel-slide-width);
  opacity: 0.34;
  scroll-snap-align: center;
  scroll-snap-stop: normal;
  transform: scale(0.84);
  transform-origin: center center;
  transition: transform 560ms cubic-bezier(0.2, 0.75, 0.2, 1), opacity 360ms ease;
  will-change: transform, opacity;
  z-index: 1;
}

.editorial-carousel__slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.editorial-carousel__image-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(233, 215, 170, 0.22);
  background: rgba(17, 18, 20, 0.38);
  color: var(--cream);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease;
  touch-action: manipulation;
}

.editorial-carousel__slide.is-active .editorial-carousel__image-button {
  border-color: rgba(233, 215, 170, 0.62);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.46);
  cursor: zoom-in;
}

.editorial-carousel__expand {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(233, 215, 170, 0.42);
  background: rgba(17, 18, 20, 0.62);
  color: var(--cream);
  cursor: pointer;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  touch-action: manipulation;
  transition: opacity 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.editorial-carousel__slide.is-active .editorial-carousel__expand {
  opacity: 1;
  pointer-events: auto;
}

.editorial-carousel__expand:hover,
.editorial-carousel__expand:focus-visible {
  border-color: var(--coral);
  background: var(--coral);
}

.editorial-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.editorial-carousel__footer {
  display: grid;
  max-width: 720px;
  align-items: center;
  gap: 20px;
  margin: 26px auto 0;
  grid-template-columns: auto minmax(120px, 1fr) auto;
}

.editorial-carousel__footer > span,
.editorial-carousel__footer p {
  margin: 0;
  color: rgba(233, 215, 170, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-carousel__progress {
  height: 2px;
  overflow: hidden;
  background: rgba(233, 215, 170, 0.2);
}

.editorial-carousel__progress span {
  display: block;
  width: 2%;
  height: 100%;
  background: var(--coral);
  transition: width 260ms ease;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(233, 215, 170, 0.35);
  border-radius: 50%;
  background: rgba(17, 18, 20, 0.55);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.lightbox__arrow:hover {
  border-color: var(--coral);
  background: rgba(255, 113, 128, 0.7);
}

.lightbox__arrow--prev {
  left: 16px;
}

.lightbox__arrow--next {
  right: 16px;
}

.gallery-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: rgba(17, 18, 20, 0.96);
}

.gallery-fullscreen[hidden] {
  display: none;
}

.gallery-fullscreen__image {
  max-width: min(94vw, 1600px);
  max-height: 88vh;
  object-fit: contain;
}

.gallery-fullscreen__close {
  position: absolute;
  top: 20px;
  right: 20px;
  border-color: rgba(233, 215, 170, 0.35);
  background: rgba(17, 18, 20, 0.55);
  color: var(--cream);
}

.gallery-fullscreen .lightbox__arrow {
  width: 60px;
  height: 60px;
}

.gallery-fullscreen__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  margin: 0;
  color: rgba(233, 215, 170, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  margin: -20px auto clamp(46px, 6vw, 70px);
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(41, 45, 48, 0.2);
  text-align: center;
}

.reviews__score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.reviews__score strong {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
}

.reviews__score span,
.reviews__count {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews__count {
  opacity: 0.7;
}

.reviews__stars {
  margin: 0;
  color: var(--coral);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.review-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(41, 45, 48, 0.2);
  background: rgba(255, 250, 240, 0.42);
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.review-card:hover {
  background: rgba(255, 250, 240, 0.68);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.stars {
  position: relative;
  display: inline-block;
  color: rgba(41, 45, 48, 0.24);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.stars__fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: calc(var(--rating) / 5 * 100%);
  color: var(--coral);
}

.review-card__score {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.review-card blockquote {
  margin: 0;
  flex: 1;
}

.review-card blockquote p {
  margin: 0;
  font-size: 1.02rem;
}

.review-card footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(41, 45, 48, 0.18);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card footer span {
  font-weight: 600;
}

.review-card footer time {
  opacity: 0.66;
}

.journey {
  border-top: 1px solid rgba(41, 45, 48, 0.2);
}

.journey__steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.journey__steps li {
  min-height: 300px;
  padding: 38px;
  border-top: 3px solid var(--coral);
}

.journey__steps li + li {
  border-left: 1px solid rgba(41, 45, 48, 0.2);
}

.approach__principles {
  padding: clamp(26px, 4vw, 48px);
  border-top: 1px solid rgba(17, 18, 20, 0.4);
  background: var(--cream);
  color: var(--charcoal);
}

.approach__copy {
  padding: clamp(26px, 4vw, 48px);
  background: var(--cream);
  color: var(--charcoal);
}

.approach__principles p {
  display: grid;
  gap: 20px;
  grid-template-columns: 0.45fr 1fr;
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 18, 20, 0.4);
}

.approach__principles strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.final-cta {
  display: grid;
  min-height: 75vh;
  place-items: center;
  padding: 100px 20px;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}

.final-cta > div {
  max-width: 840px;
}

.final-cta p:not(.eyebrow) {
  max-width: 590px;
  margin: 0 auto 34px;
}

.site-footer {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 80px max(20px, calc((100% - 1240px) / 2));
  border-top: 1px solid rgba(233, 215, 170, 0.18);
  background: var(--charcoal);
  color: var(--cream);
}

.wordmark--footer {
  color: var(--cream);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer nav a,
.site-footer nav button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.84rem;
  text-decoration: none;
}

.site-footer nav a:hover,
.site-footer nav button:hover {
  color: var(--coral-readable);
}

.site-footer__meta {
  font-size: 0.76rem;
  opacity: 0.72;
}

.mobile-booking {
  display: none;
}

.reveal,
.image-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.image-reveal {
  clip-path: inset(10% 0 0 0);
  transition: opacity 850ms ease, transform 850ms cubic-bezier(0.2, 0.75, 0.2, 1), clip-path 850ms ease;
}

.reveal.is-visible,
.image-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.image-reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 0.8, 0.24, 1);
  will-change: transform, opacity;
}

.reveal-left {
  transform: translateX(-42px);
}

.reveal-right {
  transform: translateX(42px);
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

.reveal.is-visible,
.image-reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  will-change: auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 120;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.hero__media {
  will-change: transform;
}

.booking-dialog,
.policy-dialog {
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  background: var(--cream);
  color: var(--charcoal);
  box-shadow: 0 30px 100px rgba(17, 18, 20, 0.35);
}

.booking-dialog::backdrop,
.policy-dialog::backdrop {
  background: rgba(17, 18, 20, 0.72);
  backdrop-filter: blur(7px);
}

.booking {
  min-height: min(780px, calc(100dvh - 32px));
}

.booking__header,
.booking__progress,
.booking__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(24px, 5vw, 64px);
}

.booking__header {
  border-bottom: 1px solid var(--border);
}

.booking__header > div {
  display: flex;
  flex-direction: column;
}

.icon-button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.booking__progress {
  display: block;
  padding-bottom: 0;
}

.booking__progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.progress-track {
  height: 5px;
  overflow: hidden;
  background: rgba(41, 45, 48, 0.16);
}

.progress-track span {
  display: block;
  width: calc(100% / 5);
  height: 100%;
  background: var(--coral);
  transition: width 250ms ease;
}

.booking__body {
  max-width: 860px;
  min-height: 480px;
  margin: auto;
  padding: 48px clamp(24px, 5vw, 64px);
}

.booking-step > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 34px;
}

.booking-step h2,
.booking-success h2,
.policy-dialog h2 {
  font-size: clamp(2.5rem, 5.5vw, 5.2rem);
}

.choice-grid {
  display: grid;
  gap: 14px;
}

.choice-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-picker,
.duration-picker {
  margin: 32px 0 0;
  padding: 0;
  border: 0;
}

.service-picker {
  margin-top: 0;
}

.service-picker legend,
.duration-picker legend {
  margin-bottom: 12px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-picker legend small {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.selection-help {
  margin: 12px 0 0;
  font-size: 0.8rem;
}

.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.choice-card > span {
  position: relative;
  display: grid;
  min-height: 94px;
  align-content: center;
  padding: 20px 64px 20px 24px;
  border: 2px solid rgba(41, 45, 48, 0.25);
  background: rgba(255, 250, 240, 0.35);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.choice-card > span::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--border);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.choice-card input:checked + span {
  border-color: var(--coral);
  background: rgba(255, 113, 128, 0.08);
}

.choice-card input:checked + span::after {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--black);
  content: "✓";
  font-weight: 700;
}

.choice-card input:focus-visible + span {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.choice-card--compact > span {
  min-height: 72px;
  padding: 16px 42px 16px 16px;
}

.choice-card--compact > span::after {
  right: 12px;
  width: 22px;
  height: 22px;
  font-size: 0.75rem;
}

.choice-card--compact strong {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
}

.booking-rate {
  margin: 24px 0;
  padding: 14px 16px;
  border-left: 4px solid var(--sky);
  background: rgba(22, 132, 178, 0.1);
  font-weight: 600;
}

.booking-step__subheading {
  margin: 38px 0 18px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.choice-card small {
  margin-top: 4px;
}

.field-grid {
  display: grid;
  gap: 22px;
}

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

.field--full {
  grid-column: 1 / -1;
}

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

.field > span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field small {
  font-weight: 400;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid rgba(41, 45, 48, 0.4);
  border-radius: 0;
  background: rgba(255, 250, 240, 0.48);
  color: var(--charcoal);
}

.field textarea {
  resize: vertical;
}

.field :is(input, select, textarea):focus {
  border-color: var(--sky);
  outline: 3px solid rgba(22, 132, 178, 0.28);
}

.field :is(input, select, textarea)[aria-invalid="true"] {
  border-color: var(--coral);
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list label {
  display: grid;
  align-items: start;
  gap: 14px;
  grid-template-columns: 24px 1fr;
  padding: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 250, 240, 0.35);
  cursor: pointer;
}

.check-list input {
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--coral);
}

.form-error,
.demo-notice {
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--coral);
  background: rgba(255, 113, 128, 0.08);
}

.demo-notice p {
  margin: 5px 0 0;
}

.summary {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.summary p {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(130px, 0.4fr) 1fr;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.summary strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking__footer {
  position: sticky;
  bottom: 0;
  min-height: 86px;
  border-top: 1px solid var(--border);
  background: rgba(233, 215, 170, 0.97);
}

.booking-success {
  display: grid;
  min-height: min(780px, calc(100dvh - 32px));
  align-content: center;
  justify-items: center;
  padding: 60px 24px;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}

.booking-success[hidden] {
  display: none;
}

.booking-success__icon {
  display: grid;
  width: 84px;
  height: 84px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--black);
  font-size: 2.5rem;
}

.booking-success p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
}

.policy-dialog {
  width: min(720px, calc(100% - 32px));
}

.policy-dialog__inner {
  position: relative;
  padding: clamp(36px, 7vw, 76px);
}

.policy-dialog .icon-button {
  position: absolute;
  top: 20px;
  right: 20px;
}

@media (max-width: 960px) {
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    width: min(420px, 92vw);
    height: 100dvh;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    padding: 100px 32px 40px;
    background: var(--charcoal);
    color: var(--cream);
    box-shadow: -24px 0 60px rgba(17, 18, 20, 0.25);
    transform: translateX(100%);
    opacity: 0;
    /* An offscreen fixed panel still contributes scroll width, so the closed panel
       is removed from layout entirely; `.is-open` restores it before animating in. */
    display: none;
  }

  .primary-nav.is-animating {
    display: flex;
  }

  .site-header__cta {
    margin-left: 0;
  }

  .primary-nav.is-open {
    display: flex;
    transform: translateX(0);
    opacity: 1;
    transition: transform 320ms cubic-bezier(0.22, 0.8, 0.24, 1), opacity 200ms ease;
  }

  .primary-nav > a {
    transform: translateX(18px);
    opacity: 0;
    transition: transform 420ms cubic-bezier(0.22, 0.8, 0.24, 1), opacity 420ms ease;
  }

  .primary-nav.is-open > a {
    transform: translateX(0);
    opacity: 1;
  }

  .primary-nav.is-open > a:nth-child(1) { transition-delay: 90ms; }
  .primary-nav.is-open > a:nth-child(2) { transition-delay: 140ms; }
  .primary-nav.is-open > a:nth-child(3) { transition-delay: 190ms; }
  .primary-nav.is-open > a:nth-child(4) { transition-delay: 240ms; }
  .primary-nav.is-open > a:nth-child(5) { transition-delay: 290ms; }
  .primary-nav.is-open > a:nth-child(6) { transition-delay: 340ms; }
  .primary-nav.is-open > a:nth-child(7) { transition-delay: 390ms; }

  .primary-nav > a {
    padding: 12px 0;
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 100;
    display: inline-flex;
    min-width: 52px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .menu-toggle__icon,
  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--charcoal);
    content: "";
    transition: transform 200ms ease, background-color 200ms ease;
  }

  .menu-toggle__icon::before {
    transform: translateY(-7px);
  }

  .menu-toggle__icon::after {
    transform: translateY(5px);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
    background: var(--cream);
    transform: translateY(1px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
    background: var(--cream);
    transform: translateY(-1px) rotate(-45deg);
  }

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

  .hero__copy {
    max-width: 760px;
  }

  .hero__media img {
    min-height: 500px;
  }

  .philosophy,
  .founder,
  .approach {
    grid-template-columns: 1fr;
  }

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

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

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

  .experience-card {
    min-height: 340px;
  }

  .gallery__item,
  .gallery__item--wide,
  .gallery__item--tall {
    margin-top: 0;
    grid-column: span 6;
  }

  .gallery__item--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 30px, 1240px);
  }

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

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

  h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .availability {
    display: block;
    font-size: 0.58rem;
    white-space: nowrap;
  }

  .availability span:not(:first-child) {
    display: none;
  }

  .site-header {
    min-height: 70px;
    padding: 12px 15px;
  }

  .wordmark span {
    font-size: 1.18rem;
  }

  .wordmark small {
    font-size: 0.48rem;
  }

  .hero {
    min-height: auto;
    gap: 48px;
    padding: 72px 0 90px;
  }

  .hero__copy {
    text-align: left;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__media::before {
    top: -12px;
    right: -8px;
  }

  .hero__media img {
    min-height: 430px;
  }

  .hero__media figcaption {
    position: relative;
    max-width: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip p {
    min-height: 62px;
    justify-content: flex-start;
    text-align: left;
  }

  .trust-strip p + p {
    border-top: 1px solid rgba(17, 18, 20, 0.18);
    border-left: 0;
  }

  .section {
    padding: 86px 15px;
  }

  .philosophy__media {
    order: -1;
  }

  .section-heading {
    margin-bottom: 46px;
    text-align: left;
  }

  .section-heading--split {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 330px;
    padding: 28px;
  }

  .choice-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card__heading {
    min-height: 0;
    margin-bottom: 24px;
  }

  .founder__portrait {
    min-height: 400px;
  }

  .gallery {
    display: block;
  }

  .gallery__item {
    margin-bottom: 15px;
  }

  .gallery__item img {
    max-height: none;
    aspect-ratio: 1.05;
  }


  .editorial-carousel__viewport {
    height: min(102vw, 500px);
    scroll-padding-inline: 11vw;
  }

  .editorial-carousel {
    --carousel-slide-width: 78vw;
  }

  .editorial-carousel__track {
    gap: 10px;
    padding-inline: 11vw;
  }

  .editorial-carousel__slide {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .editorial-carousel__expand {
    right: 10px;
    bottom: 10px;
    width: 46px;
    height: 46px;
  }

  .editorial-carousel__footer {
    gap: 12px;
    margin-top: 18px;
    grid-template-columns: auto 1fr auto;
  }

  .editorial-carousel__footer > span,
  .editorial-carousel__footer p {
    font-size: 0.65rem;
  }

  .gallery-fullscreen .lightbox__arrow {
    width: 46px;
    height: 46px;
  }

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

  .journey__steps li {
    min-height: auto;
    padding: 28px 0 44px;
  }

  .journey__steps li + li {
    border-left: 0;
  }

  .approach__principles p {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .site-footer {
    gap: 34px;
    grid-template-columns: 1fr;
    padding: 70px 20px 110px;
  }

  .mobile-booking {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 70;
    display: block;
    min-height: 52px;
    border: 2px solid var(--coral);
    background: var(--coral);
    color: var(--black);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 16px 35px rgba(17, 18, 20, 0.24);
  }

  .booking-dialog,
  .policy-dialog {
    width: 100%;
    max-height: 100dvh;
    margin: 0;
  }

  .booking {
    min-height: 100dvh;
  }

  .booking__header,
  .booking__progress,
  .booking__footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .booking__body {
    min-height: calc(100dvh - 250px);
    padding: 38px 20px;
  }

  .booking-step h2,
  .booking-success h2,
  .policy-dialog h2 {
    font-size: 2.7rem;
  }

  .field-grid--two {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .booking__footer {
    gap: 14px;
  }

  .booking__footer .button--primary {
    margin-left: auto;
  }

  .summary p {
    gap: 5px;
    grid-template-columns: 1fr;
  }
}

@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;
  }

  .reveal,
  .image-reveal {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
