:root {
  --paper: #f3efe7;
  --paper-bright: #faf8f3;
  --ink: #171616;
  --ink-soft: #343130;
  --plum: #6f245f;
  --plum-deep: #4d173f;
  --lavender: #c9b1c5;
  --mineral: #b8b3ab;
  --line: rgba(23, 22, 22, 0.18);
  --light-line: rgba(255, 255, 255, 0.2);
  --serif:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville,
    Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 96px));
  --header-height: 86px;
  --concept-height: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

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

body.menu-open {
  overflow: hidden;
}

::selection {
  color: white;
  background: var(--plum);
}

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

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

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul,
figure,
address {
  margin: 0;
}

ol,
ul {
  padding: 0;
}

[hidden] {
  display: none !important;
}

main > section[id] {
  scroll-margin-top: calc(var(--concept-height) + 72px);
}

:focus-visible {
  outline: 2px solid #b06ca2;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 11px 17px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.concept-bar {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  height: var(--concept-height);
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.concept-bar span + span {
  color: rgba(255, 255, 255, 0.42);
}

.home-header {
  position: fixed;
  z-index: 90;
  top: var(--concept-height);
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  height: var(--header-height);
  padding: 0 42px;
  border-bottom: 1px solid rgba(23, 22, 22, 0.16);
  transition:
    height 400ms var(--ease),
    background 400ms var(--ease),
    box-shadow 400ms var(--ease);
}

.home-header.is-scrolled {
  height: 72px;
  background: rgba(250, 248, 243, 0.94);
  box-shadow: 0 12px 30px rgba(23, 22, 22, 0.06);
  backdrop-filter: blur(15px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  color: var(--plum);
}
.brand__mark circle,
.brand__mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}
.brand__mark circle:last-child {
  fill: currentColor;
  stroke: none;
}
.brand__type {
  display: grid;
  line-height: 1;
}
.brand__type strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}
.brand__type small {
  margin-top: 4px;
  color: rgba(23, 22, 22, 0.62);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.2vw, 39px);
}
.home-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.home-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--plum);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}
.home-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-book {
  justify-self: end;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    color 250ms ease,
    background 250ms ease;
}
.header-book:hover {
  color: white;
  background: var(--ink);
}
.menu-toggle,
.mobile-menu {
  display: none;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: max(820px, 100svh);
  padding: calc(var(--concept-height) + var(--header-height) + 60px) 6vw 70px;
  isolation: isolate;
  overflow: hidden;
}

.home-hero__image,
.home-hero__wash {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.home-hero__image {
  background-image: url("assets/home-hero.webp");
  background-position: center 48%;
  background-size: cover;
}

.home-hero__wash {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(250, 248, 243, 0.02) 0 43%,
      rgba(250, 248, 243, 0.48) 62%,
      rgba(250, 248, 243, 0.96) 100%
    ),
    linear-gradient(
      180deg,
      rgba(250, 248, 243, 0.16),
      transparent 20%,
      transparent 78%,
      rgba(23, 22, 22, 0.15)
    );
}

.home-hero__copy {
  align-self: center;
  justify-self: end;
  width: min(620px, 48vw);
  padding-right: clamp(0px, 2vw, 30px);
}

.eyebrow,
.section-kicker {
  color: var(--plum);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-kicker::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}
.section-kicker--light {
  color: var(--lavender);
}

.home-hero h1 {
  max-width: 8.9em;
  margin-top: 21px;
  font-family: var(--serif);
  font-size: clamp(55px, 6.2vw, 92px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}
.home-hero h1 span,
.home-hero h1 em {
  display: block;
}
.home-hero h1 em {
  color: var(--plum);
  font-weight: 400;
}
.home-hero__copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.48;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 49px;
  padding: 13px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 250ms var(--ease),
    color 250ms ease,
    background 250ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--ink {
  color: white;
  background: var(--ink);
}
.button--ink:hover {
  background: var(--plum);
}
.button--paper {
  color: var(--ink);
  background: var(--paper-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 22, 22, 0.4);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 650;
}
.text-link span {
  transition: transform 250ms var(--ease);
}
.text-link:hover span {
  transform: translate(3px, 2px);
}
.text-link--plum {
  color: var(--plum);
  border-color: rgba(111, 36, 95, 0.4);
}
.text-link--light {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.trial-stamp {
  position: absolute;
  right: 38px;
  bottom: 38px;
  display: grid;
  align-content: center;
  width: 128px;
  height: 128px;
  padding: 14px;
  border: 1px solid rgba(23, 22, 22, 0.3);
  border-radius: 50%;
  text-align: center;
}
.trial-stamp span,
.trial-stamp small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.trial-stamp strong {
  margin: 3px 0;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}
.trial-stamp small {
  color: rgba(23, 22, 22, 0.5);
  font-size: 6px;
  line-height: 1.4;
}
.home-hero__side {
  position: absolute;
  bottom: 40px;
  left: 44px;
  color: rgba(23, 22, 22, 0.55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.home-proof {
  display: grid;
  grid-template-columns: 0.8fr 3.2fr;
  color: white;
  background: var(--ink);
}
.home-proof > p {
  display: flex;
  align-items: center;
  padding: 30px 45px;
  border-right: 1px solid var(--light-line);
  color: var(--lavender);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.35;
}
.home-proof dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.home-proof dl > div {
  min-height: 150px;
  padding: 27px clamp(20px, 2.5vw, 40px);
  border-right: 1px solid var(--light-line);
}
.home-proof dl > div:last-child {
  border-right: 0;
}
.home-proof dt {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1;
}
.home-proof dd {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding: clamp(100px, 10vw, 160px) 0;
}
.shell {
  width: var(--shell);
  margin: 0 auto;
}

.welcome__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}
.welcome h2,
.courses h2,
.first-visit h2,
.method h2,
.team h2,
.academy h2,
.moments h2,
.visit-us h2 {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.97;
}
.welcome h2 {
  max-width: 10.5em;
}
.welcome__copy {
  padding-top: 45px;
}
.welcome__copy p {
  color: rgba(23, 22, 22, 0.64);
  font-size: 14px;
  line-height: 1.8;
}
.welcome__copy .welcome__lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.5;
}
.welcome__copy p + p {
  margin-top: 24px;
}
.welcome__copy .text-link {
  margin-top: 34px;
}

.courses {
  color: white;
  background: var(--ink);
}
.courses__header {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: 80px;
  align-items: end;
}
.courses__header .section-kicker {
  color: var(--lavender);
}
.courses__header h2 {
  max-width: 9em;
}
.courses__header > p {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.75;
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: clamp(70px, 8vw, 115px);
}
.course-card {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.course-card--wide {
  min-height: 640px;
}
.course-card img,
.course-card__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.course-card img {
  object-fit: cover;
  transition:
    transform 900ms var(--ease),
    filter 600ms ease;
}
.course-card:nth-child(2) img {
  object-position: 52% center;
}
.course-card:nth-child(3) img {
  object-position: 50% 35%;
}
.course-card:nth-child(4) img {
  object-position: center 37%;
}
.course-card__veil {
  background: linear-gradient(
    180deg,
    rgba(23, 22, 22, 0.02) 35%,
    rgba(23, 22, 22, 0.82) 100%
  );
}
.course-card__content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(27px, 3.2vw, 48px);
}
.course-card__content > span {
  color: var(--lavender);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.course-card h3 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 57px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}
.course-card p {
  max-width: 390px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}
.course-card button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 28px;
  padding: 15px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.44);
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
}
.course-card button i {
  font-style: normal;
}
.course-card:hover img {
  transform: scale(1.035);
  filter: saturate(0.75);
}

.first-visit {
  color: white;
  background: var(--plum-deep);
}
.first-visit__grid {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 0.72fr;
  gap: clamp(45px, 6vw, 90px);
  align-items: start;
}
.first-visit header p {
  max-width: 390px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.75;
}
.visit-steps {
  border-top: 1px solid var(--light-line);
  list-style: none;
}
.visit-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 19px;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-line);
}
.visit-steps > li > span {
  color: var(--lavender);
  font-family: var(--serif);
  font-size: 18px;
}
.visit-steps h3 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.1;
}
.visit-steps p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 11px;
  line-height: 1.6;
}
.visit-choice {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.visit-choice > p {
  color: var(--lavender);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}
.visit-choice > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 17px;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid var(--light-line);
  color: white;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.visit-choice button span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.visit-choice button strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}
.visit-choice small {
  display: block;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  line-height: 1.6;
}

.method {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  padding: 0;
  background: var(--paper-bright);
}
.method__image {
  min-height: 850px;
  overflow: hidden;
}
.method__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.method__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px);
}
.method__copy h2 {
  max-width: 8em;
}
.method__copy > p {
  max-width: 530px;
  margin-top: 30px;
  color: rgba(23, 22, 22, 0.63);
  font-size: 14px;
  line-height: 1.8;
}
.method__copy ul {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  list-style: none;
}
.method__copy li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.method__copy li span {
  color: var(--plum);
  font-family: var(--serif);
  font-size: 20px;
}
.method__copy li small {
  color: rgba(23, 22, 22, 0.52);
  font-size: 10px;
}

.team__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(70px, 9vw, 145px);
  align-items: center;
}
.team__portrait {
  position: relative;
  min-height: 650px;
}
.team__portrait img {
  width: 88%;
  height: 600px;
  object-fit: cover;
  filter: grayscale(22%);
}
.team__portrait > span {
  position: absolute;
  right: 0;
  bottom: -23px;
  color: rgba(111, 36, 95, 0.11);
  font-family: var(--serif);
  font-size: 230px;
  letter-spacing: -0.08em;
  line-height: 1;
}
.team__copy h2 {
  max-width: 8.2em;
}
.team__copy > p {
  max-width: 510px;
  margin-top: 25px;
  color: rgba(23, 22, 22, 0.62);
  font-size: 13px;
  line-height: 1.8;
}
.team__copy .team__lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.45;
}
.team__names {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 38px;
}
.team__names span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.academy {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 860px;
  color: white;
  background: var(--ink);
}
.academy__visual {
  min-height: inherit;
  overflow: hidden;
}
.academy__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  filter: grayscale(20%);
}
.academy__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px);
}
.academy__number {
  margin-top: 40px;
  color: var(--lavender);
  font-family: var(--serif);
  font-size: clamp(90px, 11vw, 160px);
  letter-spacing: -0.07em;
  line-height: 0.8;
}
.academy__number small {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.academy h2 {
  max-width: 9em;
  margin-top: 34px;
  font-size: clamp(48px, 5.5vw, 78px);
}
.academy__copy > p:not(.academy__number) {
  max-width: 580px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.59);
  font-size: 14px;
  line-height: 1.8;
}
.academy .button {
  align-self: flex-start;
  margin-top: 35px;
}

.moments {
  background: var(--paper-bright);
}
.moments__header {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 60px;
  align-items: start;
}
.moments__header h2 {
  margin-top: 0;
}
.moment-grid {
  margin-top: clamp(65px, 8vw, 110px);
  border-top: 1px solid var(--line);
}
.moment-grid article {
  display: grid;
  grid-template-columns: 180px 1fr 55px;
  gap: 45px;
  align-items: center;
  min-height: 220px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.moment-grid time {
  display: grid;
  color: var(--plum);
}
.moment-grid time strong {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}
.moment-grid time span,
.moment-grid article > div > span {
  margin-top: 6px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.moment-grid article > div > span {
  color: var(--plum);
}
.moment-grid h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 45px);
  font-weight: 400;
  line-height: 1.1;
}
.moment-grid article > div > p {
  margin-top: 12px;
  color: rgba(23, 22, 22, 0.58);
  font-size: 12px;
}
.moment-grid article > button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 17px;
  transition:
    color 250ms ease,
    background 250ms ease;
}
.moment-grid article > button:hover {
  color: white;
  background: var(--plum);
}

.visit-us {
  color: white;
  background: var(--plum-deep);
}
.visit-us__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
}
.visit-us__map {
  position: relative;
  min-height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #421436;
  overflow: hidden;
}
.visit-us__map::before,
.visit-us__map::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}
.visit-us__map::before {
  width: 720px;
  height: 720px;
  top: -260px;
  left: -200px;
}
.visit-us__map::after {
  width: 430px;
  height: 430px;
  right: -160px;
  bottom: -130px;
}
.map-line {
  position: absolute;
  display: block;
  width: 120%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  transform-origin: left;
}
.map-line--one {
  top: 20%;
  left: -8%;
  transform: rotate(22deg);
}
.map-line--two {
  top: 68%;
  left: -6%;
  transform: rotate(-16deg);
}
.map-line--three {
  top: 3%;
  left: 46%;
  height: 120%;
  width: 1px;
  transform: rotate(10deg);
}
.map-point {
  position: absolute;
  z-index: 1;
  top: 44%;
  left: 48%;
  display: grid;
  padding-left: 22px;
}
.map-point i {
  position: absolute;
  top: 5px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid var(--paper-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.15);
}
.map-point strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}
.map-point small {
  color: var(--lavender);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.visit-us__map > p {
  position: absolute;
  right: 28px;
  bottom: 25px;
  color: rgba(255, 255, 255, 0.32);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  text-align: right;
}
.visit-us__copy h2 {
  max-width: 8.3em;
}
.visit-us address {
  margin-top: 34px;
  color: var(--lavender);
  font-family: var(--serif);
  font-size: 25px;
  font-style: normal;
  line-height: 1.35;
}
.visit-us__copy ul {
  margin-top: 35px;
  border-top: 1px solid var(--light-line);
  list-style: none;
}
.visit-us__copy li {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-line);
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}
.visit-us__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 37px;
}

.home-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 35px;
  align-items: center;
  padding: 55px 48px;
  border-top: 1px solid var(--line);
  font-size: 9px;
}
.home-footer > div {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-family: var(--serif);
  font-size: 17px;
}
.home-footer > div strong {
  color: var(--plum);
  font-weight: 400;
  font-style: italic;
}
.home-footer nav {
  display: flex;
  gap: 25px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.home-footer > p {
  justify-self: end;
  color: rgba(23, 22, 22, 0.5);
}
.home-footer > a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  font-size: 16px;
}

.preview-toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(430px, calc(100vw - 40px));
  padding: 20px 52px 20px 22px;
  color: white;
  background: var(--ink);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
}
.preview-toast strong {
  color: var(--lavender);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}
.preview-toast span {
  grid-column: 1;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 9px;
  line-height: 1.5;
}
.preview-toast button {
  position: absolute;
  top: 13px;
  right: 15px;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1120px);
  }
  .home-header {
    padding: 0 28px;
  }
  .home-nav {
    gap: 16px;
  }
  .home-hero__copy {
    width: min(620px, 54vw);
  }
  .home-proof {
    grid-template-columns: 1fr;
  }
  .home-proof > p {
    min-height: 75px;
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }
  .first-visit__grid {
    grid-template-columns: 1fr 1fr;
  }
  .visit-choice {
    grid-column: 2;
  }
}

@media (max-width: 940px) {
  :root {
    --shell: min(100% - 48px, 850px);
  }
  .home-header {
    grid-template-columns: 1fr auto;
  }
  .home-nav,
  .header-book {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    padding: 12px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 300ms var(--ease);
  }
  .menu-toggle i::before {
    transform: translateY(6px);
  }
  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(90deg);
  }
  .mobile-menu {
    position: fixed;
    z-index: 80;
    top: calc(var(--concept-height) + 72px);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(23, 22, 22, 0.98);
  }
  .mobile-menu nav {
    display: grid;
    width: min(540px, calc(100% - 48px));
  }
  .mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--light-line);
    font-family: var(--serif);
    font-size: 28px;
  }
  .mobile-menu button {
    margin-top: 25px;
    padding: 15px 18px;
    border: 0;
    color: var(--ink);
    background: var(--paper-bright);
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .home-hero {
    padding-inline: 32px;
  }
  .home-hero__copy {
    width: min(620px, 65vw);
  }
  .home-proof dl {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-proof dl > div:nth-child(2) {
    border-right: 0;
  }
  .home-proof dl > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--light-line);
  }
  .welcome__grid,
  .courses__header,
  .team__grid,
  .visit-us__grid {
    grid-template-columns: 1fr;
  }
  .welcome__copy {
    max-width: 650px;
    padding-top: 0;
  }
  .course-card,
  .course-card--wide {
    min-height: 540px;
  }
  .first-visit__grid {
    grid-template-columns: 1fr;
  }
  .visit-choice {
    grid-column: auto;
  }
  .method {
    grid-template-columns: 1fr;
  }
  .method__image {
    min-height: 620px;
  }
  .team__portrait {
    max-width: 720px;
  }
  .academy {
    grid-template-columns: 1fr;
  }
  .academy__visual {
    min-height: 620px;
    max-height: 760px;
  }
  .moments__header {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .visit-us__map {
    min-height: 520px;
  }
  .home-footer {
    grid-template-columns: 1fr auto;
  }
  .home-footer > p {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 40px);
    --header-height: 70px;
  }
  .concept-bar {
    justify-content: flex-start;
    padding-left: 20px;
    font-size: 7px;
  }
  .concept-bar span + span {
    display: none;
  }
  .home-header {
    height: var(--header-height);
    padding: 0 20px;
  }
  .home-header.is-scrolled {
    height: var(--header-height);
  }
  .brand__mark {
    width: 36px;
    height: 36px;
  }
  .brand__type strong {
    font-size: 15px;
  }
  .brand__type small {
    font-size: 7px;
  }
  .menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .mobile-menu {
    top: calc(var(--concept-height) + var(--header-height));
  }
  .mobile-menu a {
    font-size: 24px;
  }
  .home-hero {
    display: flow-root;
    min-height: auto;
    padding: 0 20px 46px;
    background: var(--paper);
  }
  .home-hero__image,
  .home-hero__wash {
    height: clamp(360px, 46svh, 390px);
    min-height: 0;
  }
  .home-hero__image {
    background-position: 42% center;
  }
  .home-hero__wash {
    background: linear-gradient(
      180deg,
      rgba(250, 248, 243, 0.78) 0,
      rgba(250, 248, 243, 0.42) 76px,
      rgba(250, 248, 243, 0.06) 150px,
      transparent 62%,
      rgba(23, 22, 22, 0.16) 100%
    );
  }
  .home-hero__copy {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: clamp(360px, 46svh, 390px);
    padding: 62px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .home-hero h1 {
    max-width: none;
    margin-top: 13px;
    font-size: clamp(38px, 10.5vw, 46px);
    letter-spacing: -0.055em;
    line-height: 0.94;
  }
  .home-hero__copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.52;
  }
  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-top: 22px;
  }
  .home-hero__actions .button {
    min-height: 48px;
    padding-inline: 18px;
  }
  .home-hero__actions .text-link {
    align-self: flex-start;
  }
  .trial-stamp {
    top: calc(clamp(360px, 46svh, 390px) - 44px);
    right: 20px;
    bottom: auto;
    display: grid;
    place-content: center;
    gap: 2px;
    width: 88px;
    min-width: 0;
    height: 88px;
    padding: 11px;
    color: white;
    border: 0;
    border-radius: 50%;
    background: var(--plum);
    box-shadow: none;
    text-align: center;
    text-shadow: none;
  }
  .trial-stamp span {
    max-width: 62px;
    line-height: 1.35;
  }
  .trial-stamp strong {
    margin: 0;
    color: white;
    font-size: 18px;
    white-space: nowrap;
  }
  .trial-stamp small {
    display: none;
  }
  .home-hero__side {
    display: none;
  }
  .home-proof > p {
    padding: 24px 20px;
  }
  .home-proof dl > div {
    min-height: 125px;
    padding: 22px 20px;
  }
  .home-proof dt {
    font-size: 43px;
  }
  .section {
    padding: 72px 0;
  }
  .welcome h2,
  .courses h2,
  .first-visit h2,
  .method h2,
  .team h2,
  .academy h2,
  .moments h2,
  .visit-us h2 {
    font-size: clamp(40px, 11vw, 52px);
  }
  .welcome__copy .welcome__lead {
    font-size: 20px;
  }
  .course-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }
  .course-card,
  .course-card--wide {
    min-height: 420px;
  }
  .course-card__content {
    padding: 23px;
  }
  .course-card h3 {
    font-size: 39px;
  }
  .course-card button {
    min-height: 44px;
  }
  .first-visit__grid {
    gap: 42px;
  }
  .visit-choice {
    padding: 24px;
  }
  .method__image {
    min-height: 420px;
  }
  .method__copy {
    padding: 68px 20px;
  }
  .method__copy li {
    grid-template-columns: 110px 1fr;
  }
  .team__portrait {
    min-height: 430px;
  }
  .team__portrait img {
    width: 94%;
    height: 385px;
  }
  .team__portrait > span {
    font-size: 126px;
  }
  .team__copy .team__lead {
    font-size: 20px;
  }
  .academy {
    min-height: auto;
  }
  .academy__visual {
    min-height: 430px;
  }
  .academy__copy {
    padding: 68px 20px;
  }
  .academy__number {
    font-size: 88px;
  }
  .academy h2 {
    font-size: 44px;
  }
  .moment-grid article {
    grid-template-columns: 95px 1fr;
    gap: 20px;
    min-height: 205px;
  }
  .moment-grid time strong {
    font-size: 40px;
  }
  .moment-grid article > button {
    grid-column: 2;
    width: 44px;
    height: 44px;
  }
  .visit-us__map {
    min-height: 400px;
  }
  .map-point {
    left: 34%;
  }
  .visit-us__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .visit-us__actions .text-link {
    align-self: flex-start;
  }
  .home-footer {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 42px 20px;
  }
  .home-footer nav,
  .home-footer > p {
    grid-column: 1 / -1;
  }
  .home-footer nav {
    flex-wrap: wrap;
  }
  .home-footer > a {
    grid-column: 2;
    grid-row: 1;
  }
  .preview-toast {
    right: 20px;
    bottom: 20px;
  }
}

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