:root {
  --ink: #203c27;
  --ink-soft: #55705c;
  --forest: #203c27;
  --forest-deep: #122919;
  --kiwi: #4ed068;
  --kiwi-bright: #bff0a8;
  --red: #008a5d;
  --danger: #bd4c43;
  --paper: #f5fffd;
  --paper-warm: #e9f3d4;
  --white: #ffffff;
  --line: rgba(32, 60, 39, 0.17);
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --serif: "Noto Serif JP", YuMincho, "Yu Mincho", serif;
  --page: min(1240px, calc(100vw - 72px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.19;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--forest);
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 88px;
  padding: 0 36px;
  transition: height 300ms ease, background 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(245, 255, 253, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.wordmark {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  justify-self: start;
  width: max-content;
}

.wordmark-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(23, 52, 43, 0.6);
  border-radius: 50%;
}

.wordmark-mark::before,
.wordmark-mark::after,
.wordmark-mark span::before,
.wordmark-mark span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 11px;
  border-radius: 99px;
  background: var(--forest);
  content: "";
  transform-origin: 50% 0;
}

.wordmark-mark::before {
  transform: rotate(0deg) translateY(3px);
}

.wordmark-mark::after {
  transform: rotate(90deg) translateY(3px);
}

.wordmark-mark span::before {
  transform: rotate(180deg) translateY(3px);
}

.wordmark-mark span::after {
  transform: rotate(270deg) translateY(3px);
}

.wordmark-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark-type strong {
  letter-spacing: 0.16em;
  font-size: 15px;
}

.wordmark-type small {
  margin-top: 5px;
  letter-spacing: 0.12em;
  font-size: 8px;
}

.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 300ms var(--ease);
}

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

.header-cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-self: end;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--forest);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  transition: color 250ms ease, background 250ms ease;
}

.header-cta svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.header-cta:hover {
  background: var(--forest);
  color: var(--white);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}

.hero-image {
  position: absolute;
  inset: 0 0 0 40%;
  z-index: -3;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.2) 10%, #000 31%);
}

.hero-image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 81% center;
  transform: translate3d(0, var(--hero-shift, -3%), 0) scale(1.02);
  filter: saturate(0.84) contrast(0.96);
  will-change: transform;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(245, 255, 253, 0.96) 34%, rgba(245, 255, 253, 0.18) 61%, rgba(32, 60, 39, 0.16) 100%),
    linear-gradient(0deg, rgba(13, 43, 34, 0.24), transparent 38%);
}

.hero::after {
  position: absolute;
  right: -10vw;
  bottom: -31vw;
  z-index: -1;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  content: "";
}

.hero-content {
  width: min(630px, 48vw);
  margin-left: max(36px, calc((100vw - 1240px) / 2));
  padding: 132px 0 118px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--red);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
}

.hero-eyebrow {
  opacity: 0;
  animation: hero-in 800ms 100ms var(--ease) forwards;
}

.hero h1 {
  margin: 26px 0 24px;
  font-family: var(--serif);
  font-size: clamp(52px, 5.35vw, 84px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.2;
}

.hero h1 > span {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-in 900ms var(--ease) forwards;
}

.hero h1 > span:nth-child(1) {
  animation-delay: 180ms;
}

.hero h1 > span:nth-child(2) {
  animation-delay: 260ms;
}

.hero h1 > span:nth-child(3) {
  animation-delay: 340ms;
}

.hero h1 em,
.method h2 em {
  color: var(--red);
  font-style: normal;
}

.hero h1 .hero-title-small {
  margin-top: 8px;
  font-size: 0.64em;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 490px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 2;
  opacity: 0;
  animation: hero-in 900ms 420ms var(--ease) forwards;
}

.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 34px;
  opacity: 0;
  animation: hero-in 900ms 510ms var(--ease) forwards;
}

.button {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 25px;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 260ms var(--ease), background 260ms ease, color 260ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: transform 260ms var(--ease);
}

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

.button:hover svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(18, 63, 50, 0.14);
}

.button-primary:hover {
  background: var(--red);
}

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

.text-link {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 300ms var(--ease);
  transform-origin: left;
}

.text-link:hover::after {
  transform: scaleX(0.35);
}

.hero-facts {
  display: flex;
  gap: 0;
  margin: 46px 0 0;
  opacity: 0;
  animation: hero-in 900ms 600ms var(--ease) forwards;
}

.hero-facts div {
  min-width: 112px;
  padding: 0 25px;
  border-left: 1px solid var(--line);
}

.hero-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts dt {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.hero-facts dd {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
}

.hero-caption {
  position: absolute;
  right: 35px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  text-align: right;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.hero-caption span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.23em;
}

.hero-caption small {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.hero-stamp {
  position: absolute;
  top: 16%;
  right: 7.5%;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(0, 138, 93, 0.92);
  color: white;
  transform: rotate(8deg);
  box-shadow: 0 18px 40px rgba(53, 26, 22, 0.18);
  backdrop-filter: blur(5px);
}

.hero-stamp::before {
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(255, 255, 255, 0.7);
  border-radius: inherit;
  content: "";
}

.hero-stamp span,
.hero-stamp small {
  position: absolute;
}

.hero-stamp span {
  top: 22px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.hero-stamp small {
  bottom: 20px;
  letter-spacing: 0.11em;
  font-size: 8px;
}

.scroll-cue {
  position: absolute;
  bottom: 0;
  left: 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
  font-size: 8px;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 50%;
  content: "";
  background: var(--forest);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(-110%);
  }
  65%,
  100% {
    transform: translateY(210%);
  }
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 132px 0;
}

.orientation-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 80px;
  align-items: center;
  margin-top: 46px;
}

.orientation-number {
  display: flex;
  align-items: end;
  color: var(--red);
  font-family: var(--serif);
  line-height: 0.8;
}

.orientation-number span {
  font-size: clamp(148px, 18vw, 252px);
  letter-spacing: -0.1em;
}

.orientation-number small {
  margin: 0 0 13px 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.orientation-copy h2,
.chihomi h2,
.booking h2,
.flow h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.orientation-copy h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.55;
}

.orientation-copy p {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2.15;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 88px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.outcome-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 23px;
  padding: 34px 34px 0 0;
  border-right: 1px solid var(--line);
}

.outcome-list li + li {
  padding-left: 34px;
}

.outcome-list li:last-child {
  border-right: 0;
}

.outcome-no {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.outcome-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.outcome-list p {
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 13px;
  line-height: 2;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, 0.94fr);
  min-height: 760px;
  background: var(--forest);
  color: var(--white);
}

.method-image {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.method-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 62%, rgba(18, 63, 50, 0.6)), linear-gradient(0deg, rgba(7, 34, 26, 0.32), transparent 35%);
}

.method-image img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  transform: translateY(var(--depth-shift, -3%)) scale(1.01);
  filter: saturate(0.7) contrast(0.95);
  will-change: transform;
}

.image-note {
  position: absolute;
  bottom: 35px;
  left: 38px;
  z-index: 1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.method-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(48px, calc((100vw - 1240px) / 2)) 80px 72px;
}

.method-content .eyebrow {
  color: var(--kiwi-bright);
}

.method h2 {
  margin: 30px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.55;
}

.method-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 2.15;
}

.method-quote {
  position: relative;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.method-quote > span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 50px;
  line-height: 0.8;
}

.method-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.chihomi {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 110px;
  align-items: center;
}

.chihomi h2 {
  margin-top: 23px;
  font-family: var(--sans);
  font-size: clamp(62px, 8vw, 112px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.chihomi-role {
  margin: 23px 0 0;
  color: var(--red);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.chihomi-bio {
  margin: 38px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 2.2;
}

.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 45px 0 32px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience div + div {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.experience dt {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 11px;
}

.experience dd {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: 16px;
}

.experience strong {
  margin-right: 4px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.chihomi-figure {
  margin: 0;
}

.chihomi-photo-wrap {
  position: relative;
  height: min(690px, 58vw);
  overflow: hidden;
  background: var(--paper-warm);
}

.chihomi-photo-wrap::before {
  position: absolute;
  inset: 19px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.76);
  content: "";
  pointer-events: none;
}

.chihomi-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 800ms var(--ease);
}

.chihomi-figure:hover img {
  transform: scale(1.025);
}

.chihomi-figure figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  color: var(--ink-soft);
}

.chihomi-figure figcaption span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.chihomi-figure figcaption small {
  font-family: var(--serif);
  font-size: 10px;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr);
  gap: 85px;
  padding: 100px max(36px, calc((100vw - 1240px) / 2)) 120px;
  background: var(--paper-warm);
}

.booking-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.booking h2 {
  margin-top: 28px;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.55;
}

.booking-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 2.15;
}

.booking-promise {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0 18px;
  margin-top: 46px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.booking-promise span,
.booking-promise p {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.booking-promise span {
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.booking-promise p {
  margin: 0;
  font-family: var(--serif);
  font-size: 13px;
}

.scheduler {
  min-height: 590px;
  padding: 38px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(50, 44, 34, 0.09);
}

.scheduler-head,
.selected-summary,
.timezone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scheduler-step {
  margin: 0;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.scheduler h3 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
}

.live-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55a86c;
  box-shadow: 0 0 0 4px rgba(85, 168, 108, 0.13);
}

.timezone-row {
  justify-content: flex-start;
  margin-top: 28px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
}

.timezone-row svg {
  width: 17px;
  margin-right: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.timezone-row button,
.selected-summary button {
  margin-left: auto;
  padding: 6px 0 6px 12px;
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.slot-status {
  margin-top: 26px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.8;
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.slot-button {
  position: relative;
  min-height: 64px;
  padding: 10px 15px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 220ms ease, color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.slot-button::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.slot-button:hover,
.slot-button[aria-pressed="true"] {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

.slot-date {
  display: block;
  font-family: var(--serif);
  font-size: 10px;
}

.slot-time {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.slot-empty,
.slot-error {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.9;
}

.slot-empty a,
.slot-error a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-form {
  animation: form-in 420ms var(--ease) both;
}

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

@keyframes form-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
}

.selected-summary {
  margin-top: 26px;
  padding: 15px 17px;
  background: rgba(184, 207, 97, 0.2);
}

.selected-summary div {
  display: flex;
  flex-direction: column;
}

.selected-summary span {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.selected-summary strong {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
}

.form-heading {
  margin: 31px 0 23px;
}

.booking-form > label,
.name-fields label {
  display: block;
  margin-top: 18px;
}

.booking-form label > span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
}

.booking-form label small {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 400;
}

.booking-form label .field-help {
  display: block;
  margin-top: 7px;
  font-family: var(--serif);
  line-height: 1.65;
}

.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(23, 52, 43, 0.32);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease, background 200ms ease;
}

.booking-form input {
  height: 46px;
}

.booking-form textarea {
  padding: 10px 0;
  resize: vertical;
  line-height: 1.7;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--red);
}

.booking-form textarea::placeholder {
  color: rgba(80, 100, 93, 0.6);
  font-size: 11px;
}

.booking-form .consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 24px;
}

.booking-form .consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--forest);
}

.booking-form .consent span {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.7;
}

.submit-button {
  width: 100%;
  margin-top: 27px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-microcopy {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 9px;
  text-align: center;
}

.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  animation: form-in 500ms var(--ease) both;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 25px;
  border: 1px solid var(--forest);
  border-radius: 50%;
  color: var(--forest);
  font-size: 25px;
}

.booking-success h3 {
  margin: 18px 0 0;
  font-size: 34px;
  line-height: 1.55;
}

.booking-success > p:not(.scheduler-step) {
  max-width: 410px;
  margin: 20px auto 27px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 2;
}

.booking-success > .success-thanks {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.success-message {
  max-width: 430px;
  margin: 22px auto 27px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.9;
}

.success-message p {
  margin: 0;
}

.success-message p + p {
  margin-top: 9px;
  font-size: 10px;
}

.noscript-note {
  margin: 28px 0 0;
  padding: 18px;
  background: rgba(215, 100, 83, 0.08);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.8;
}

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

.booking-progress {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: -38px -38px 38px;
  border-bottom: 1px solid var(--line);
}

.booking-progress span {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 60px;
  padding: 0 28px;
  color: rgba(80, 100, 93, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.booking-progress span + span {
  border-left: 1px solid var(--line);
}

.booking-progress i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
  font-size: 9px;
}

.booking-progress .is-active,
.booking-progress .is-complete {
  color: var(--forest);
}

.booking-progress .is-active i {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.booking-progress .is-complete i {
  border-color: var(--kiwi);
  background: var(--kiwi);
  color: var(--forest-deep);
}

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

.human-badge {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: right;
}

.step-intro {
  max-width: 550px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.9;
}

.guest-reassurance {
  margin: 12px 0 0;
  padding: 11px 14px;
  border-left: 3px solid var(--kiwi);
  background: rgba(78, 208, 104, 0.1);
  color: var(--forest);
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.7;
}

.location-status {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 17px 0 5px;
  color: var(--ink-soft);
  font-size: 10px;
}

.location-status::before {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(18, 63, 50, 0.4);
  border-top-color: var(--red);
  border-radius: 50%;
  content: "";
  animation: location-spin 900ms linear infinite;
}

.location-status.is-ready::before {
  border: 0;
  background: #55a86c;
  animation: none;
}

.location-status.is-fallback::before {
  border: 0;
  background: var(--red);
  animation: none;
}

@keyframes location-spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form {
  margin-top: 23px;
}

.location-fields {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 14px;
}

.location-fields[hidden] {
  display: none;
}

.booking-form > label,
.name-fields label,
.location-fields label {
  display: block;
  margin-top: 18px;
}

.booking-form select {
  width: 100%;
  height: 46px;
  padding: 0 27px 0 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 52, 43, 0.32);
  border-radius: 0;
  appearance: none;
  background-color: transparent;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 8px) 20px, calc(100% - 3px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  color: var(--ink);
  outline: none;
}

.booking-form select:focus {
  border-color: var(--red);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin: 17px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--danger);
  background: rgba(189, 76, 67, 0.08);
  color: #7d3028;
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.7;
}

.form-error[hidden] {
  display: none;
}

.calendar-profile-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding: 14px 16px;
  background: rgba(184, 207, 97, 0.16);
}

.calendar-profile-summary div {
  display: flex;
  flex-direction: column;
}

.calendar-profile-summary span {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 600;
}

.calendar-profile-summary small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 9px;
}

.calendar-profile-summary button {
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 34px 1fr auto 34px;
  gap: 9px;
  align-items: center;
  margin-top: 25px;
}

.calendar-toolbar strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.calendar-toolbar button {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 0 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.calendar-toolbar button:hover {
  background: var(--forest);
  color: var(--white);
}

.calendar-toolbar svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.week-calendar {
  margin-top: 15px;
  border: 1px solid var(--line);
  background: #fff;
}

.calendar-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior: contain;
  scroll-snap-type: x proximity;
}

.availability-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(78px, 1fr));
  min-width: 610px;
  align-items: stretch;
}

.calendar-day-column {
  min-height: 116px;
  padding: 0 7px 12px;
  border-right: 1px solid var(--line);
  scroll-snap-align: start;
}

.calendar-day-column:last-child {
  border-right: 0;
}

.calendar-day-column.is-today {
  background-color: rgba(184, 207, 97, 0.07);
}

.calendar-day-heading {
  display: flex;
  min-height: 56px;
  margin: 0 -7px 4px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 10px;
}

.calendar-day-heading strong {
  margin-top: 3px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
}

.calendar-day-column.is-today .calendar-day-heading {
  color: var(--red);
}

.calendar-day-empty {
  display: block;
  padding: 17px 0 8px;
  color: rgba(23, 52, 43, 0.42);
  font-size: 8px;
  text-align: center;
}

.calendar-slot {
  width: 100%;
  display: flex;
  min-height: 42px;
  margin-top: 8px;
  padding: 7px 3px;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(46, 90, 62, 0.34);
  border-radius: 3px;
  background: var(--kiwi-bright);
  color: var(--forest-deep);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.calendar-slot:hover,
.calendar-slot[aria-pressed="true"] {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(18, 63, 50, 0.2);
  transform: translateY(-1px);
}

.calendar-slot small {
  opacity: 0.68;
  font-size: 7px;
  font-weight: 600;
}

.calendar-empty {
  margin-top: 13px;
  padding: 14px 16px;
  background: rgba(215, 100, 83, 0.07);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 10px;
  line-height: 1.8;
}

.calendar-empty[hidden] {
  display: none;
}

.confirm-button:disabled {
  background: rgba(18, 63, 50, 0.35);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.is-booking-modal-open {
  overflow: hidden;
}

.booking-confirmation-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 180ms ease;
}

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

.booking-confirmation-modal.is-open {
  opacity: 1;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(10, 36, 28, 0.68);
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.booking-confirmation-modal.is-submitting .booking-modal-backdrop {
  cursor: wait;
}

.booking-modal-close:disabled,
.booking-modal-cancel:disabled {
  cursor: wait;
  opacity: 0.48;
}

.booking-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(30px, 5vw, 50px);
  background: var(--paper-warm);
  box-shadow: 0 32px 90px rgba(8, 36, 27, 0.32);
  transform: translateY(12px) scale(0.985);
  transition: transform 220ms var(--ease);
}

.booking-confirmation-modal.is-open .booking-modal-panel {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.booking-modal-panel h4 {
  margin: 14px 40px 0 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  line-height: 1.45;
}

.booking-modal-question {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 13px;
}

.booking-modal-error {
  margin-top: 18px;
}

.booking-modal-actions {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(240px, 1.3fr);
  gap: 12px;
  margin-top: 30px;
}

.booking-modal-actions .button {
  width: 100%;
  min-height: 58px;
}

.booking-modal-cancel {
  border: 1px solid rgba(18, 63, 50, 0.28);
  background: transparent;
  color: var(--forest);
}

.booking-modal-cancel:hover {
  border-color: var(--forest);
  background: rgba(18, 63, 50, 0.06);
}

.booking-wait-status {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 2px solid var(--red);
  background: rgba(100, 185, 123, 0.08);
  color: var(--forest);
  animation: booking-status-in 180ms var(--ease) both;
}

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

.booking-wait-status p {
  margin: 0;
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.8;
}

.jic-booking-loader {
  flex: 0 0 auto;
  width: 68px;
  height: 46px;
}

.jic-booking-loader svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.jic-loader-badge {
  transform-box: fill-box;
  transform-origin: center;
  animation: jic-seal-pulse 2.8s ease-in-out infinite;
}

.jic-loader-badge circle {
  fill: var(--forest);
  stroke: var(--red);
  stroke-width: 1.5;
}

.jic-loader-badge text {
  fill: #fff;
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.25px;
  text-anchor: middle;
  dominant-baseline: central;
}

.jic-loader-note {
  fill: #fbfff5;
  stroke: var(--forest);
  stroke-width: 1.5;
}

.jic-loader-line,
.jic-loader-check {
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.jic-loader-line {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: jic-note-write 2.8s var(--ease) infinite;
}

.jic-loader-line-two {
  animation-delay: 160ms;
}

.jic-loader-check {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: jic-check-draw 2.8s var(--ease) infinite;
}

.jic-loader-mail {
  fill: var(--paper-warm);
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: jic-mail-send 2.8s var(--ease) infinite;
}

@keyframes jic-seal-pulse {
  0%,
  100% {
    transform: scale(0.96);
  }

  45%,
  75% {
    transform: scale(1.03);
  }
}

@keyframes jic-note-write {
  0%,
  12% {
    opacity: 0;
    stroke-dashoffset: 18;
  }

  34%,
  78% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0.35;
    stroke-dashoffset: 0;
  }
}

@keyframes jic-check-draw {
  0%,
  34% {
    opacity: 0;
    stroke-dashoffset: 18;
  }

  56%,
  82% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0.4;
    stroke-dashoffset: 0;
  }
}

@keyframes jic-mail-send {
  0%,
  52% {
    opacity: 0;
    transform: translate(0, 0) scale(0.84);
  }

  63% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  86% {
    opacity: 1;
    transform: translate(6px, -6px) scale(0.96);
  }

  100% {
    opacity: 0;
    transform: translate(11px, -9px) scale(0.88);
  }
}

@keyframes booking-status-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .jic-loader-badge,
  .jic-loader-line,
  .jic-loader-check,
  .jic-loader-mail {
    animation: none;
  }

  .jic-loader-line,
  .jic-loader-check {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  .jic-loader-mail {
    opacity: 1;
    transform: none;
  }
}

.success-details {
  width: min(430px, 100%);
  margin: 28px auto 0;
  border-top: 1px solid var(--line);
}

.success-details div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.success-details dt {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
}

.success-details dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 11px;
}

.flow-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 28px;
}

.flow h2,
.faq h2 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.35;
}

.flow-heading p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 13px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 76px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.flow-list li {
  min-height: 265px;
  padding: 30px 38px 0 0;
  border-right: 1px solid var(--line);
}

.flow-list li + li {
  padding-left: 38px;
}

.flow-list li:last-child {
  border-right: 0;
}

.flow-list span {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.flow-list h3 {
  margin: 60px 0 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}

.flow-list p {
  max-width: 300px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 2;
}

.faq {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 100px;
  padding-top: 60px;
}

.faq-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq h2 {
  margin-top: 23px;
}

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

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 20px;
  align-items: center;
  width: 100%;
  min-height: 102px;
  padding: 18px 2px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.faq-item button i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  background: var(--red);
  content: "";
  transition: transform 250ms ease;
}

.faq-item button i::before {
  transform: translate(-50%, -50%);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 660px;
  margin: 0;
  padding: 0 48px 31px 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 13px;
  line-height: 2.05;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.7) contrast(1.03);
}

.final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 40, 31, 0.95) 0%, rgba(9, 40, 31, 0.74) 48%, rgba(9, 40, 31, 0.16) 100%);
}

.final-content {
  position: relative;
  width: min(700px, 70vw);
  margin-left: max(36px, calc((100vw - 1240px) / 2));
}

.final-content .eyebrow {
  color: var(--kiwi-bright);
}

.final-cta h2 {
  margin-top: 30px;
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 1.5;
}

.final-cta .button {
  margin-top: 45px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 50px;
  align-items: end;
  padding: 45px max(36px, calc((100vw - 1240px) / 2));
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.15em;
}

.footer-brand span {
  margin-top: 7px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover {
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

@media (max-width: 1050px) {
  :root {
    --page: min(100% - 48px, 960px);
  }

  .site-nav {
    display: none;
  }

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

  .hero-content {
    width: min(570px, 57vw);
    margin-left: 36px;
  }

  .hero-image {
    left: 37%;
  }

  .orientation-grid {
    gap: 42px;
  }

  .method {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .method-content {
    padding-right: 38px;
    padding-left: 48px;
  }

  .chihomi {
    gap: 55px;
  }

  .booking {
    grid-template-columns: 1fr 1.18fr;
    gap: 48px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .scheduler {
    padding: 30px;
  }

  .faq {
    gap: 50px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 40px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
    padding: 0 20px;
    color: var(--white);
  }

  .site-header.is-scrolled {
    background: rgba(11, 43, 34, 0.92);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .wordmark-mark {
    border-color: rgba(255, 255, 255, 0.72);
  }

  .wordmark-mark::before,
  .wordmark-mark::after,
  .wordmark-mark span::before,
  .wordmark-mark span::after {
    background: var(--white);
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
    border-color: rgba(255, 255, 255, 0.72);
  }

  .hero {
    align-items: flex-end;
    min-height: 100svh;
    background: var(--forest-deep);
    color: var(--white);
  }

  .hero-image {
    inset: 0;
    mask-image: none;
  }

  .hero-image img {
    height: 104%;
    object-position: 77% center;
    filter: saturate(0.78) contrast(1.02);
  }

  .hero-wash {
    background: linear-gradient(0deg, rgba(7, 35, 27, 0.98) 0%, rgba(7, 35, 27, 0.79) 37%, rgba(7, 35, 27, 0.12) 72%, rgba(7, 35, 27, 0.24) 100%);
  }

  .hero::after {
    right: -42vw;
    bottom: -20vw;
    width: 105vw;
    height: 105vw;
    border-color: rgba(255, 255, 255, 0.18);
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 110px 20px 54px;
  }

  .hero h1 {
    margin: 16px 0 14px;
    font-size: clamp(41px, 12.8vw, 60px);
    letter-spacing: -0.07em;
    line-height: 1.17;
  }

  .hero h1 .hero-title-small {
    margin-top: 6px;
  }

  .hero-lead {
    max-width: 93%;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    line-height: 1.85;
  }

  .hero-actions {
    display: block;
    margin-top: 23px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    display: none;
  }

  .hero-facts {
    margin-top: 22px;
  }

  .hero-facts div {
    flex: 1;
    min-width: 0;
    padding: 0 13px;
    border-color: rgba(255, 255, 255, 0.22);
  }

  .hero-facts dt {
    color: rgba(255, 255, 255, 0.6);
  }

  .hero-facts dd {
    font-size: 13px;
  }

  .hero-stamp {
    top: 94px;
    right: 20px;
    width: 75px;
    height: 75px;
  }

  .hero-stamp span {
    top: 17px;
    font-size: 20px;
  }

  .hero-stamp small {
    bottom: 16px;
    font-size: 7px;
  }

  .hero-caption,
  .scroll-cue {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .orientation-grid {
    display: block;
    margin-top: 35px;
  }

  .orientation-number span {
    font-size: 138px;
  }

  .orientation-number small {
    margin-bottom: 9px;
  }

  .orientation-copy {
    margin-top: 48px;
  }

  .orientation-copy h2 {
    font-size: 34px;
    line-height: 1.55;
  }

  .orientation-copy p {
    margin-top: 22px;
    font-size: 13px;
    line-height: 2;
  }

  .outcome-list,
  .flow-list {
    display: block;
    margin-top: 60px;
  }

  .outcome-list li,
  .outcome-list li + li {
    grid-template-columns: 34px 1fr;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcome-list p {
    margin-top: 11px;
  }

  .method {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .method-image {
    min-height: 430px;
  }

  .method-image::after {
    background: linear-gradient(0deg, var(--forest) 0%, transparent 35%);
  }

  .method-content {
    padding: 42px 20px 76px;
  }

  .method h2 {
    margin-top: 22px;
    font-size: 33px;
  }

  .method-content > p:not(.eyebrow) {
    font-size: 13px;
  }

  .chihomi {
    display: flex;
    flex-direction: column;
    gap: 58px;
  }

  .chihomi h2 {
    font-size: 72px;
  }

  .chihomi-bio {
    line-height: 2;
  }

  .experience strong {
    font-size: 36px;
  }

  .chihomi-figure {
    width: 100%;
  }

  .chihomi-photo-wrap {
    height: 118vw;
    max-height: 590px;
  }

  .chihomi-figure figcaption {
    align-items: flex-start;
  }

  .chihomi-figure figcaption small {
    max-width: 50%;
    text-align: right;
  }

  .booking {
    display: block;
    padding: 88px 20px;
  }

  .booking-intro {
    position: static;
  }

  .booking h2 {
    font-size: 35px;
  }

  .booking-promise {
    margin-top: 38px;
  }

  .scheduler {
    min-height: 0;
    margin-top: 55px;
    padding: 25px 20px;
  }

  .booking-progress {
    margin: -25px -20px 30px;
  }

  .booking-progress span {
    gap: 7px;
    min-height: 54px;
    padding: 0 11px;
    font-size: 8px;
  }

  .booking-progress i {
    width: 21px;
    height: 21px;
    font-size: 8px;
  }

  .scheduler-head {
    align-items: flex-start;
  }

  .human-badge {
    display: none;
  }

  .step-intro {
    font-size: 11px;
  }

  .location-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .live-badge {
    margin-top: 4px;
  }

  .slot-list {
    grid-template-columns: 1fr;
  }

  .slot-button {
    min-height: 60px;
  }

  .name-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .calendar-scheduler-head h3 {
    max-width: 210px;
    font-size: 18px;
    line-height: 1.45;
  }

  .calendar-profile-summary {
    gap: 16px;
    align-items: flex-start;
  }

  .calendar-profile-summary small {
    overflow-wrap: anywhere;
  }

  .calendar-toolbar {
    grid-template-columns: 32px 1fr auto 32px;
    gap: 5px;
  }

  .calendar-toolbar strong {
    font-size: 12px;
  }

  .calendar-toolbar button {
    padding: 0 5px;
    font-size: 8px;
  }

  .availability-days {
    min-width: 770px;
  }

  .booking-success h3 {
    font-size: 28px;
  }

  .flow-heading {
    display: block;
  }

  .flow h2,
  .faq h2 {
    font-size: 40px;
  }

  .flow-heading p {
    margin-top: 18px;
  }

  .flow-list li,
  .flow-list li + li {
    min-height: 0;
    padding: 28px 0 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-list h3 {
    margin-top: 27px;
  }

  .faq {
    display: block;
    padding-top: 10px;
  }

  .faq-heading {
    position: static;
    margin-bottom: 53px;
  }

  .faq-item button {
    min-height: 94px;
  }

  .faq-item button span {
    font-size: 13px;
  }

  .faq-answer p {
    padding-right: 12px;
    font-size: 12px;
  }

  .final-cta {
    align-items: flex-end;
    min-height: 690px;
  }

  .final-cta > img {
    object-position: 55% center;
  }

  .final-overlay {
    background: linear-gradient(0deg, rgba(9, 40, 31, 0.98) 0%, rgba(9, 40, 31, 0.75) 43%, rgba(9, 40, 31, 0.12) 78%);
  }

  .final-content {
    width: 100%;
    margin: 0;
    padding: 0 20px 58px;
  }

  .final-cta h2 {
    font-size: 36px;
  }

  .final-cta .button {
    width: 100%;
    margin-top: 32px;
  }

  .site-footer {
    display: block;
    padding: 42px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px 22px;
    margin-top: 31px;
  }

  .site-footer p {
    margin-top: 26px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Focused orientation booking page */
.simple-orientation-page .site-header,
.simple-orientation-page .hero,
.simple-orientation-page .orientation,
.simple-orientation-page .method,
.simple-orientation-page .chihomi,
.simple-orientation-page .flow,
.simple-orientation-page .faq,
.simple-orientation-page .final-cta,
.simple-orientation-page .site-footer {
  display: none !important;
}

.simple-orientation-page {
  min-height: 100vh;
  background: var(--paper-warm);
}

.simple-orientation-page .booking {
  grid-template-areas: "scheduler portrait";
  grid-template-columns: minmax(560px, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(30px, 4vw, 72px);
  min-height: 100svh;
  align-items: start;
  padding: clamp(32px, 5vw, 72px) max(30px, calc((100vw - 1500px) / 2));
}

.simple-orientation-page .scheduler {
  grid-area: scheduler;
  width: 100%;
  margin: 0;
}

.simple-orientation-page .scheduler.is-calendar-active .booking-progress {
  margin-bottom: 18px;
}

.simple-orientation-page .booking-portrait {
  position: sticky;
  top: clamp(32px, 5vw, 72px);
  grid-area: portrait;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: #f5f8eb;
  box-shadow: 0 26px 70px rgba(50, 44, 34, 0.08);
}

.simple-orientation-page .booking-portrait::after {
  display: none;
}

.simple-orientation-page .booking-portrait-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e5ead9;
}

.simple-orientation-page .booking-portrait-media::after {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(18, 63, 50, 0.12);
  content: "";
  pointer-events: none;
}

.simple-orientation-page .booking-portrait-image {
  display: block;
  width: 100%;
  height: clamp(340px, 35vw, 470px);
  object-fit: cover;
  object-position: 54% center;
  transition: transform 700ms var(--ease);
}

.simple-orientation-page .booking-portrait:hover .booking-portrait-image {
  transform: scale(1.012);
}

.simple-orientation-page .booking-portrait-media figcaption {
  position: relative;
  padding: 20px clamp(24px, 3vw, 38px) 22px;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.9;
}

.simple-orientation-page .booking-intro-copy {
  position: relative;
  width: 100%;
  padding: clamp(30px, 3.4vw, 48px);
}

.simple-orientation-page .booking h2 {
  max-width: 500px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(34px, 3.15vw, 48px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.simple-orientation-page .booking h2 small {
  display: block;
  margin-top: 10px;
  color: var(--forest-soft);
  font-family: var(--serif);
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0;
}

.simple-orientation-page .booking-description {
  max-width: 460px;
  margin: 20px 0 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.95;
}

.simple-orientation-page .booking-concerns {
  max-width: 460px;
  margin-top: 24px;
  padding-top: 21px;
  border-top: 1px solid rgba(18, 63, 50, 0.17);
}

.simple-orientation-page .booking-concerns h3 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.simple-orientation-page .booking-concerns ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.simple-orientation-page .booking-concerns li {
  position: relative;
  padding-left: 21px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.65;
}

.simple-orientation-page .booking-concerns li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #3f9163;
  content: "✓";
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}

.simple-orientation-page .booking-concerns p {
  margin: 16px 0 0;
  color: var(--forest-soft);
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.8;
}

.simple-orientation-page .booking-promise {
  display: none;
}

@media (max-width: 1100px) {
  .simple-orientation-page .booking {
    grid-template-columns: minmax(500px, 1.1fr) minmax(300px, 0.9fr);
    gap: 28px;
    padding: 28px;
  }

  .simple-orientation-page .booking-portrait {
    top: 28px;
  }

  .simple-orientation-page .booking-intro-copy {
    padding: 30px;
  }

  .simple-orientation-page .booking-progress {
    margin: -30px -30px 34px;
  }
}

@media (max-width: 900px) {
  .simple-orientation-page .booking {
    display: flex;
    flex-direction: column;
    padding: 24px;
  }

  .simple-orientation-page .booking-portrait {
    position: relative;
    top: auto;
    order: 1;
    width: 100%;
    margin-top: 0;
    margin-bottom: 24px;
  }

  .simple-orientation-page .booking-portrait-media {
    order: 1;
  }

  .simple-orientation-page .booking-intro-copy {
    order: 2;
  }

  .simple-orientation-page .booking-portrait-image {
    height: clamp(340px, 68vw, 520px);
  }

  .simple-orientation-page .scheduler {
    order: 2;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .simple-orientation-page .booking {
    padding: 18px;
  }

  .simple-orientation-page .booking-portrait {
    margin-bottom: 18px;
  }

  .simple-orientation-page .booking-intro-copy {
    padding: 25px 22px;
  }

  .simple-orientation-page .booking h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .simple-orientation-page .booking-description {
    max-width: none;
    font-size: 11px;
    line-height: 1.8;
  }

  .simple-orientation-page .booking-concerns {
    max-width: none;
    margin-top: 20px;
    padding-top: 18px;
  }

  .simple-orientation-page .booking-portrait-image {
    height: clamp(310px, 88vw, 430px);
  }

  .simple-orientation-page .booking-portrait-media figcaption {
    padding: 17px 22px 19px;
    font-size: 10px;
  }

  .simple-orientation-page .scheduler {
    padding: 25px 20px;
  }

  .simple-orientation-page .booking-progress {
    margin: -25px -20px 30px;
  }

  .simple-orientation-page .scheduler.is-calendar-active .booking-progress {
    margin-bottom: 16px;
  }

  .booking-confirmation-modal {
    align-items: end;
    padding: 12px;
  }

  .booking-modal-panel {
    width: 100%;
    padding: 30px 22px 24px;
  }

  .booking-modal-actions {
    grid-template-columns: 1fr;
  }

  .booking-modal-cancel {
    order: 2;
  }
}
