@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,800&family=IBM+Plex+Mono:wght@400;500;600&family=Instrument+Sans:wdth,wght@75..100,400..700&display=swap');

:root {
  --ink: #0b0c0c;
  --ink-soft: #171918;
  --cement: #cfcdc7;
  --paper: #f3f1eb;
  --white: #ffffff;
  --green: #29956d;
  --muted: #9fa29f;
  --line: rgba(255, 255, 255, 0.18);
  --ink-line: rgba(11, 12, 12, 0.2);
  --max: 1240px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

[id^="section-kaizen-"] > .inner,
[id^="row-kaizen-"],
[id^="row-kaizen-"] > .inner,
[id^="col-kaizen-"],
[id^="col-kaizen-"] > .inner,
[id^="custom-code-kaizen-"] {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

[id^="section-kaizen-"] > .inner,
[id^="row-kaizen-"] > .inner,
[id^="col-kaizen-"] > .inner,
[id^="custom-code-kaizen-"] {
  display: block !important;
}

[id^="row-kaizen-"],
[id^="col-kaizen-"],
[id^="custom-code-kaizen-"] {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

button,
a,
input {
  font: inherit;
}

a,
button {
  min-height: 44px;
}

button {
  border: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

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

p,
h1,
h2,
h3,
ol,
ul,
figure,
blockquote {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
}

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

.container {
  width: min(calc(100% - 80px), var(--max));
  margin-inline: auto;
}

.display {
  margin-bottom: 0;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(4rem, 8vw, 8.8rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.83;
  text-transform: uppercase;
}

.display em {
  font-style: italic;
  color: var(--paper);
}

.eyebrow,
.utility {
  margin-bottom: 18px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ink {
  color: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-primary,
.header-cta,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 15px 24px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.cta-primary,
.header-cta {
  background: var(--white);
  color: var(--ink);
}

.cta-primary:hover,
.header-cta:hover {
  background: var(--cement);
}

.cta-wide {
  width: 100%;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  grid-template-columns: 1fr auto auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 12, 12, 0.74);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  min-height: 0;
  padding-left: 30px;
  align-items: center;
}

.brand img {
  width: 122px;
  height: auto;
}

.header-location {
  padding: 0 28px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta {
  height: 100%;
  min-width: 190px;
  border-left: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 880px;
  padding: calc(var(--header-height) + 70px) 5vw 70px 11vw;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.hero-rule {
  position: absolute;
  z-index: -1;
  inset: var(--header-height) 40% 0 auto;
  width: 1px;
  background: var(--line);
}

.day-rail {
  position: absolute;
  top: calc(var(--header-height) + 38px);
  bottom: 70px;
  left: 28px;
  display: flex;
  width: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.day-rail i {
  width: 1px;
  flex: 1;
  margin: 12px 0;
  background: var(--line);
}

.day-rail span:last-child {
  color: var(--green);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(68vw, 900px);
  padding-top: 58px;
}

.hero-title {
  font-size: clamp(5rem, 10vw, 9rem);
  text-wrap: balance;
}

.hero-lede {
  width: min(100%, 580px);
  margin: 40px 0 32px;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: #d8dad7;
}

.micro-proof {
  margin: 24px 0 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  color: var(--muted);
}

.hero-photo {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 76%;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: var(--ink-soft);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--ink) 0%, rgba(11, 12, 12, 0.44) 36%, transparent 76%);
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.82) contrast(1.06);
}

.photo-stamp {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  display: grid;
  text-align: right;
}

.photo-stamp strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 7rem;
  line-height: 0.72;
}

.photo-stamp span {
  margin-top: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 11vw;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(90px, 11vw, 170px) 0;
}

.section-paper {
  min-height: 820px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.section-dark {
  background: var(--ink-soft);
}

.section-cement {
  background: var(--cement);
  color: var(--ink);
}

.split-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 8vw;
}

.split-heading .display {
  max-width: 910px;
}

.section-lede {
  width: min(100%, 610px);
  margin: 38px 0 0 auto;
  font-size: 1.25rem;
}

.edge-photo {
  position: absolute;
  bottom: -10%;
  left: 4vw;
  width: min(30vw, 390px);
  height: 58%;
  overflow: hidden;
  transform: rotate(-3deg);
  background: #aaa;
}

.edge-photo img {
  height: 100%;
  object-fit: cover;
}

.vertical-note {
  position: absolute;
  right: 3vw;
  bottom: 40px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 5vw;
  align-items: end;
}

.section-intro .eyebrow {
  margin-bottom: 8px;
}

.principle-grid {
  display: grid;
  margin-top: 90px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid article {
  min-height: 370px;
  padding: 34px 34px 54px 0;
  border-right: 1px solid var(--line);
}

.principle-grid article + article {
  padding-left: 34px;
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid h3 {
  margin: 90px 0 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.4rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.principle-grid p:last-child {
  max-width: 320px;
  color: #bdc0bd;
}

.included-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 9vw;
}

.included-title {
  position: sticky;
  top: 110px;
  align-self: start;
}

.included-title .display {
  font-size: clamp(4rem, 7vw, 7.2rem);
}

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

.included-list li {
  display: grid;
  padding: 28px 0;
  grid-template-columns: 70px 1fr;
  border-bottom: 1px solid var(--ink-line);
}

.included-list li > span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  color: #575b58;
}

.included-list strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.included-list p {
  margin: 0;
  color: #424542;
}

.week-section {
  background: var(--ink);
}

.week-heading {
  display: grid;
  grid-template-columns: 2fr 0.8fr;
  gap: 8vw;
  align-items: end;
}

.week-heading > p {
  max-width: 340px;
  margin-bottom: 8px;
  color: var(--muted);
}

.week-grid {
  display: grid;
  margin-top: 90px;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.week-grid article {
  position: relative;
  min-height: 290px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.week-grid article:last-child {
  border-right: 0;
}

.week-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  content: "";
  background: var(--green);
  transition: width 240ms ease;
}

.week-grid article:hover::before {
  width: 100%;
}

.week-grid strong {
  display: block;
  margin-top: 90px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.week-grid p {
  margin: 14px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.proof-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--ink-soft);
}

.proof-heading {
  display: grid;
  grid-template-columns: 2fr 0.8fr;
  gap: 8vw;
  align-items: end;
}

.proof-heading > p {
  max-width: 330px;
  margin-bottom: 12px;
  color: var(--muted);
}

.carousel {
  margin-top: 80px;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 480ms cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: transform;
}

.carousel-track.no-transition {
  transition: none;
}

.carousel-track > * {
  flex: 0 0 100%;
}

.proof-carousel {
  --carousel-items: 1;
}

.proof-carousel .carousel-track {
  gap: 0;
}

.proof-carousel .carousel-track > * {
  flex-basis: calc(100% / var(--carousel-items));
}

.proof-carousel figure {
  display: grid;
  min-height: 410px;
  margin: 0;
  padding: 28px 18px;
  place-items: center;
  border-right: 1px solid var(--line);
  background: #101211;
}

.proof-carousel figure img {
  width: min(calc(100% - 36px), 720px);
  height: auto;
  object-fit: contain;
}

.carousel-controls {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
}

.carousel-controls button {
  cursor: pointer;
  background: transparent;
  color: inherit;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-controls button:hover {
  color: var(--green);
}

.fine-print {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--muted);
}

.people-section {
  display: grid;
  min-height: 960px;
  padding: 0;
  grid-template-columns: 0.9fr 1.1fr 0.52fr;
  background: var(--paper);
  color: var(--ink);
}

.people-photo {
  overflow: hidden;
}

.people-photo img {
  height: 100%;
  object-fit: cover;
}

.primary-photo img {
  filter: grayscale(1) contrast(1.08);
}

.secondary-photo {
  margin: 12vh 0;
}

.people-copy {
  display: flex;
  padding: 12vh 6vw;
  flex-direction: column;
  justify-content: center;
}

.people-copy .display {
  margin-bottom: 44px;
  font-size: clamp(4rem, 6.5vw, 7.2rem);
}

.people-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.1rem;
}

.founder-note {
  display: grid;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--ink-line);
}

.founder-note strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.founder-note span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  color: #555955;
  text-transform: uppercase;
}

.lead-section {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--green);
  color: var(--ink);
  scroll-margin-top: 30px;
}

.lead-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.lead-copy .display {
  max-width: 780px;
  font-size: clamp(4.5rem, 7.5vw, 8.2rem);
}

.lead-copy > p:last-child {
  max-width: 620px;
  margin: 36px 0 0;
  font-size: 1.12rem;
}

.opt-in-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(11, 12, 12, 0.28);
  background: var(--paper);
  box-shadow: 18px 18px 0 rgba(11, 12, 12, 0.14);
}

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

.form-field label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(11, 12, 12, 0.34);
  border-radius: 0;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
}

.form-field input:focus {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.form-submit:hover {
  background: var(--green);
  color: var(--ink);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-note,
.form-error {
  margin: 0;
  font-size: 0.78rem;
}

.form-note {
  color: #555955;
}

.form-error {
  min-height: 1.3em;
  color: #9b2117;
  font-weight: 650;
}

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

.offer-section {
  min-height: 860px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.offer-number {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -2vw;
  transform: translateY(-50%);
  font-family: "Barlow Condensed", sans-serif;
  font-size: min(70vw, 900px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.65;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
}

.offer-panel {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 10vw;
  align-items: end;
}

.offer-copy > p:last-child {
  max-width: 580px;
  margin-top: 38px;
  font-size: 1.2rem;
  color: var(--muted);
}

.offer-summary {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(11, 12, 12, 0.86);
  backdrop-filter: blur(16px);
}

.offer-summary ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.offer-summary li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.steps-heading {
  display: grid;
  grid-template-columns: 0.7fr 2.3fr;
  gap: 8vw;
}

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

.steps-grid li {
  min-height: 350px;
  padding: 24px 30px 50px 0;
  border-right: 1px solid var(--ink-line);
}

.steps-grid li + li {
  padding-left: 30px;
}

.steps-grid li:last-child {
  border-right: 0;
}

.steps-grid span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
}

.steps-grid h3 {
  margin: 120px 0 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.room-section {
  padding-bottom: 0;
  background: var(--ink-soft);
}

.room-heading {
  display: grid;
  grid-template-columns: 0.7fr 2.3fr;
  gap: 8vw;
  margin-bottom: 80px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.facility-card {
  position: relative;
  display: flex;
  min-height: 470px;
  margin: 0;
  padding: 30px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-right: 1px solid var(--line);
  background: #111312;
}

.facility-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(6, 8, 7, 0.9) 100%);
}

.facility-card:last-child {
  border-right: 0;
}

.facility-card figcaption {
  position: relative;
  z-index: 1;
}

.facility-card strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.reviews-section {
  background: var(--cement);
  color: var(--ink);
}

.reviews-heading {
  display: grid;
  grid-template-columns: 0.7fr 2.3fr;
  gap: 8vw;
}

.review-carousel {
  width: min(calc(100% - 80px), var(--max));
  margin-inline: auto;
}

.review-carousel blockquote {
  display: grid;
  min-height: 520px;
  margin: 0;
  padding: 60px 6vw;
  align-content: center;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}

.review-carousel blockquote p {
  max-width: 1000px;
  margin-bottom: 40px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.review-carousel cite {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ink-controls {
  color: var(--ink);
}

.faq-section {
  background: var(--ink);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 9vw;
}

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

.faq-heading .display {
  margin-bottom: 40px;
  font-size: clamp(4rem, 6.8vw, 7.4rem);
}

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

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

.faq-list button {
  display: flex;
  width: 100%;
  padding: 28px 0;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: var(--white);
  text-align: left;
}

.faq-list button span {
  max-width: 85%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-list button i {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-list button i::before,
.faq-list button i::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease;
}

.faq-list button i::after {
  transform: rotate(90deg);
}

.faq-list button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.faq-list article > p {
  max-width: 620px;
  padding: 0 0 30px;
  color: var(--muted);
}

.visit-section {
  display: grid;
  min-height: 820px;
  padding: 0;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--paper);
  color: var(--ink);
}

.visit-photo {
  overflow: hidden;
}

.visit-photo img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.08);
}

.visit-copy {
  display: flex;
  padding: 10vh 7vw;
  flex-direction: column;
  justify-content: center;
}

.visit-copy .display {
  margin-bottom: 38px;
  font-size: clamp(4rem, 6.4vw, 7.2rem);
}

.visit-copy address {
  margin-bottom: 24px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.86rem;
  font-style: normal;
  text-transform: uppercase;
}

.visit-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 32px;
}

.visit-copy .cta-primary {
  background: var(--ink);
  color: var(--white);
}

.site-footer {
  display: grid;
  min-height: 170px;
  padding: 32px 40px;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
}

.site-footer img {
  width: 130px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: flex;
  align-items: center;
  color: var(--white);
}

.mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .hero {
    padding-left: 10vw;
  }

  .hero-title {
    font-size: clamp(4.8rem, 11vw, 9rem);
  }

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

  .week-grid article:nth-child(3),
  .week-grid article:nth-child(6) {
    border-right: 0;
  }

  .week-grid article:nth-child(-n+6) {
    border-bottom: 1px solid var(--line);
  }

  .week-grid article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

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

  .secondary-photo {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .display {
    font-size: clamp(3.5rem, 17vw, 5.6rem);
    line-height: 0.87;
  }

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

  .brand {
    padding-left: 14px;
  }

  .brand img {
    width: 102px;
  }

  .header-location {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: flex;
    min-height: 840px;
    padding: calc(var(--header-height) + 50px) 14px 34px;
    flex-direction: column;
  }

  .hero-rule,
  .day-rail {
    display: none;
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(3rem, 16vw, 5.3rem);
  }

  .hero-lede {
    margin: 26px 0 22px;
    font-size: 1rem;
  }

  .hero .button-row .cta-primary {
    width: 100%;
  }

  .micro-proof {
    margin-bottom: 26px;
  }

  .hero-photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + 28px);
    height: 320px;
    margin: auto -14px -34px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-photo::after {
    background: linear-gradient(180deg, var(--ink) 0%, transparent 45%);
  }

  .photo-stamp strong {
    font-size: 5rem;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .lead-section {
    padding: 78px 0 92px;
  }

  .lead-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .lead-copy .display {
    font-size: clamp(3.7rem, 17vw, 5.6rem);
  }

  .opt-in-form {
    padding: 22px 18px;
    box-shadow: 10px 10px 0 rgba(11, 12, 12, 0.14);
  }

  .section-paper {
    min-height: auto;
    padding-bottom: 0;
  }

  .split-heading,
  .section-intro,
  .included-layout,
  .week-heading,
  .proof-heading,
  .offer-panel,
  .steps-heading,
  .room-heading,
  .reviews-heading,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-lede {
    margin: 24px 0 0;
    font-size: 1rem;
  }

  .edge-photo {
    position: relative;
    bottom: auto;
    left: auto;
    width: 76%;
    height: 420px;
    margin: 70px 0 0 -5%;
  }

  .vertical-note {
    display: none;
  }

  .principle-grid,
  .steps-grid {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .principle-grid article,
  .principle-grid article + article,
  .steps-grid li,
  .steps-grid li + li {
    min-height: auto;
    padding: 26px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps-grid li,
  .steps-grid li + li {
    border-color: var(--ink-line);
  }

  .principle-grid article:last-child,
  .steps-grid li:last-child {
    border-bottom: 0;
  }

  .principle-grid h3,
  .steps-grid h3 {
    margin-top: 50px;
  }

  .included-title,
  .faq-heading {
    position: static;
  }

  .included-list li {
    grid-template-columns: 44px 1fr;
  }

  .week-grid {
    margin-top: 46px;
    grid-template-columns: 1fr 1fr;
  }

  .week-grid article,
  .week-grid article:nth-child(3) {
    min-height: 230px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .week-grid article:nth-child(even) {
    border-right: 0;
  }

  .week-grid article:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .week-grid strong {
    margin-top: 55px;
  }

  .proof-carousel figure {
    min-height: 360px;
    padding: 22px 10px;
  }

  .proof-carousel figure img {
    width: 94%;
    height: auto;
  }

  .people-section {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .primary-photo {
    height: 520px;
  }

  .people-copy {
    padding: 80px 14px;
  }

  .people-copy .display,
  .faq-heading .display,
  .visit-copy .display {
    font-size: clamp(3.7rem, 17vw, 5.8rem);
  }

  .offer-section {
    min-height: 760px;
  }

  .offer-number {
    top: 38%;
    left: -8vw;
    font-size: 100vw;
  }

  .offer-summary {
    margin-top: 40px;
  }

  .steps-grid {
    margin-top: 50px;
  }

  .room-heading {
    margin-bottom: 46px;
  }

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

  .facility-card {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facility-card:last-child {
    border-bottom: 0;
  }

  .review-carousel {
    width: calc(100% - 28px);
  }

  .review-carousel blockquote {
    min-height: 520px;
    padding: 40px 4px;
  }

  .review-carousel blockquote p {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .visit-section {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .visit-photo {
    height: 470px;
  }

  .visit-copy {
    padding: 80px 14px 110px;
  }

  .visit-copy .button-row > * {
    width: 100%;
  }

  .site-footer {
    padding: 42px 14px 100px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    border: 1px solid rgba(11, 12, 12, 0.18);
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  }
}

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

.subpage {
  min-height: 100dvh;
  background: var(--ink);
}

.subpage-header {
  display: grid;
  min-height: 76px;
  padding-right: 28px;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.subpage-status,
.subpage-back {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subpage-status {
  color: var(--muted);
}

.subpage-back {
  display: flex;
  align-items: center;
  color: var(--white);
}

.purchase-shell {
  display: grid;
  min-height: calc(100dvh - 76px);
  grid-template-columns: 1.08fr 0.92fr;
}

.purchase-story {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 130px) 7vw;
  border-right: 1px solid var(--line);
}

.purchase-story .display {
  max-width: 760px;
  font-size: clamp(5rem, 9vw, 9rem);
}

.purchase-lede {
  max-width: 580px;
  margin: 34px 0;
  font-size: 1.18rem;
  color: #c3c6c3;
}

.purchase-price {
  display: flex;
  margin: 42px 0;
  align-items: baseline;
  gap: 20px;
}

.purchase-price strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.8;
}

.purchase-price span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
}

.purchase-inclusions {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.purchase-inclusions li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.purchase-photo {
  position: absolute;
  right: -12%;
  bottom: -3%;
  width: 45%;
  height: 42%;
  overflow: hidden;
  transform: rotate(3deg);
  opacity: 0.36;
}

.purchase-photo img {
  height: 100%;
  object-fit: cover;
}

.checkout-prototype,
.checkout-live {
  display: flex;
  padding: clamp(60px, 7vw, 105px) 6vw;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
  color: var(--ink);
}

.checkout-live {
  min-width: 0;
  padding: clamp(42px, 5vw, 76px) clamp(18px, 4vw, 58px);
  justify-content: flex-start;
}

.checkout-heading > p:last-child {
  margin: 16px 0 0;
  color: #555955;
}

.payment-frame {
  display: block;
  width: 100%;
  min-height: 980px;
  margin-top: 24px;
  border: 0;
  background: var(--white);
}

.checkout-fallback {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: #555955;
}

.checkout-fallback a {
  color: var(--ink);
  font-weight: 650;
}

.next-step-card p {
  margin-bottom: 22px;
}

.next-step-card .cta-primary {
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.checkout-heading {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--ink-line);
}

.checkout-heading h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.7rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.order-summary {
  display: flex;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink-line);
}

.order-summary strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
}

.mock-fields {
  display: grid;
  margin: 28px 0;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mock-fields > div {
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--ink-line);
}

.mock-fields .payment-field {
  grid-column: 1 / -1;
}

.mock-fields span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  color: #666a66;
  text-transform: uppercase;
}

.mock-fields i {
  display: block;
  width: 45%;
  height: 8px;
  margin-top: 16px;
  background: rgba(11, 12, 12, 0.08);
}

.prototype-button,
.next-step-panel button {
  min-height: 58px;
  padding: 14px;
  background: var(--ink);
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prototype-button:disabled,
.next-step-panel button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.prototype-note {
  margin: 14px 0 0;
  font-size: 0.75rem;
  color: #666a66;
}

.after-purchase {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
}

.after-purchase p {
  margin: 0;
}

.confirmation-preview {
  display: inline-flex;
  margin-top: 26px;
  align-items: center;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.confirmation-page {
  background: var(--paper);
  color: var(--ink);
}

.confirmation-page .subpage-header {
  background: var(--ink);
  color: var(--white);
}

.confirmation-shell {
  position: relative;
  overflow: hidden;
}

.confirmation-hero {
  position: relative;
  min-height: 670px;
  padding: clamp(90px, 10vw, 150px) 8vw;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--white);
}

.confirmation-hero .display {
  font-size: clamp(7rem, 18vw, 16rem);
}

.confirmation-hero > p:last-child {
  max-width: 620px;
  margin-top: 36px;
  font-size: 1.2rem;
  color: #c2c5c2;
}

.confirmation-mark {
  position: absolute;
  z-index: -1;
  right: -1vw;
  bottom: -5%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: min(62vw, 720px);
  font-weight: 900;
  line-height: 0.65;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
}

.onboarding-panel {
  display: grid;
  padding: clamp(90px, 10vw, 150px) 8vw;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10vw;
  background: var(--cement);
}

.onboarding-panel .display {
  margin-bottom: 32px;
  font-size: clamp(4.5rem, 8vw, 8rem);
}

.onboarding-panel > div:first-child > p:last-child {
  max-width: 620px;
  font-size: 1.1rem;
}

.next-step-panel {
  padding: 28px;
  align-self: center;
  border: 1px solid var(--ink-line);
  background: var(--paper);
}

.next-step-panel strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  text-transform: uppercase;
}

.calendar-lines {
  display: grid;
  margin: 28px 0;
  gap: 8px;
}

.calendar-lines i {
  height: 48px;
  border: 1px solid var(--ink-line);
}

.next-step-panel button {
  width: 100%;
}

.confirmation-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  background: var(--paper);
}

.confirmation-steps article {
  min-height: 360px;
  padding: 40px 4vw;
  border-right: 1px solid var(--ink-line);
}

.confirmation-steps article:last-child {
  border-right: 0;
}

.confirmation-steps span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

.confirmation-steps strong {
  display: block;
  margin-top: 120px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.confirmation-steps p {
  margin: 14px 0 0;
  color: #555955;
}

.confirmation-location {
  display: grid;
  min-height: 360px;
  padding: 70px 8vw;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  background: var(--ink);
  color: var(--white);
}

.confirmation-location h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.confirmation-location > div:last-child {
  display: grid;
  gap: 10px;
}

.confirmation-location a {
  display: flex;
  align-items: center;
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .subpage-header {
    min-height: 64px;
    padding-right: 14px;
    grid-template-columns: 1fr auto;
  }

  .subpage-header .brand {
    padding-left: 14px;
  }

  .subpage-status {
    display: none;
  }

  .purchase-shell {
    grid-template-columns: 1fr;
  }

  .purchase-story {
    padding: 74px 14px 90px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .purchase-story .display {
    font-size: clamp(4.5rem, 19vw, 6.8rem);
  }

  .purchase-photo {
    right: -18%;
    width: 66%;
  }

  .checkout-prototype,
  .checkout-live {
    padding: 74px 14px;
  }

  .payment-frame {
    min-height: 1060px;
  }

  .mock-fields {
    grid-template-columns: 1fr;
  }

  .mock-fields .payment-field {
    grid-column: auto;
  }

  .confirmation-hero {
    min-height: 580px;
    padding: 86px 14px;
  }

  .confirmation-hero .display {
    font-size: clamp(7rem, 36vw, 10rem);
  }

  .confirmation-mark {
    right: -12vw;
    font-size: 100vw;
  }

  .onboarding-panel {
    padding: 90px 14px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .onboarding-panel .display {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .confirmation-steps {
    grid-template-columns: 1fr;
  }

  .confirmation-steps article {
    min-height: 260px;
    padding: 30px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--ink-line);
  }

  .confirmation-steps article:last-child {
    border-bottom: 0;
  }

  .confirmation-steps strong {
    margin-top: 70px;
  }

  .confirmation-location {
    min-height: 430px;
    padding: 70px 14px;
    grid-template-columns: 1fr;
    align-items: start;
  }
}
