:root {
  color-scheme: light;
  --paper: #f6f5f0;
  --ink: #162723;
  --muted: #53605b;
  --line: #d9ded5;
  --forest: #183d32;
  --accent: #d8bc75;
  --night: #162723;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --radius: 18px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 1rem/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3.3rem, 4.4vw, 5.5rem);
}
h2 {
  font-size: clamp(2.5rem, 3.8vw, 4.5rem);
}
h3 {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 600;
}
em {
  font-weight: 400;
}
p + p {
  margin-top: 1rem;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #a36d17;
  outline-offset: 5px;
  border-radius: 3px;
}
.shell {
  width: calc(100% - 112px);
  max-width: 1560px;
  margin-inline: auto;
}
.section {
  padding-block: 104px;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.section-heading .eyebrow {
  margin-bottom: 24px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: 10px;
  padding: 10px;
  background: white;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(246 245 240 / 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.brand-symbol {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: #8b6b2f;
}
.brand small {
  display: block;
  font: 0.71rem/1.7 var(--sans);
  letter-spacing: 0.025em;
  margin-top: 5px;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 0.9rem;
}
.desktop-nav a:hover,
.text-link:hover {
  color: #8b6021;
}
.header-link {
  font-size: 0.9rem;
  border-bottom: 1px solid var(--ink);
  padding-block: 7px;
}
.header-link span {
  margin-left: 22px;
}
.hero {
  padding-top: 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 52px;
}
.hero-copy {
  padding-block: 14px 38px;
  align-self: center;
}
.hero-copy .eyebrow {
  margin-bottom: 27px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.location-dot {
  width: 7px;
  height: 7px;
  background: #537957;
  border-radius: 50%;
}
.hero-description {
  max-width: 510px;
  font-size: 1.12rem;
  color: var(--muted);
  margin-top: 25px;
  line-height: 1.65;
}
.beginner-note {
  font-size: 0.9rem;
  margin-top: 21px;
}
.beginner-note span {
  color: #89672b;
  margin-right: 8px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
  min-height: 55px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--forest);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #285744;
  transform: translateY(-2px);
}
.button:active {
  transform: none;
}
.button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}
.button span {
  font-size: 1.3rem;
  font-weight: 400;
}
.text-link {
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #c9b8a2;
}
.hero-visual > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 48% center;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgb(9 24 17 / 0.8));
  pointer-events: none;
}
.photo-tag {
  position: absolute;
  top: 23px;
  left: 24px;
  background: var(--paper);
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 0.78rem;
  z-index: 1;
}
.photo-tag span {
  color: #8b6b2f;
  margin-right: 8px;
}
.hero-visual figcaption {
  position: absolute;
  bottom: 24px;
  left: 26px;
  right: 26px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: white;
  font-size: 0.79rem;
}
.hero-facts {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  margin-top: 40px;
  padding: 27px 0 30px;
  border-bottom: 1px solid var(--line);
}
.hero-facts > div {
  padding-inline: 25px;
  border-left: 1px solid var(--line);
}
.hero-facts > div:first-child {
  padding-left: 0;
  border: 0;
}
.hero-facts dt {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.hero-facts dd {
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.5;
}
.hero-facts dd span {
  font-size: 0.84rem;
  font-weight: 400;
}
.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.experience-copy {
  max-width: 580px;
  padding-top: 38px;
  color: var(--muted);
}
.experience-copy .lead {
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 22px;
}
.signup-section {
  background: var(--night);
  color: var(--paper);
  padding-block: 80px;
}
.signup-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.signup-copy {
  max-width: 580px;
}
.signup-copy .eyebrow {
  color: var(--accent);
  margin-bottom: 24px;
}
.signup-copy h2 em {
  color: var(--accent);
}
.signup-copy > p:not(.eyebrow) {
  max-width: 420px;
  color: #c3cec6;
  margin-top: 25px;
}
.signup-detail {
  font-size: 0.9rem;
}
.messenger-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.messenger-links .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.signup-copy > .messenger-links {
  margin-top: 28px;
  color: var(--paper);
}
.form-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 590px;
  width: 100%;
  justify-self: end;
}
.form-intro {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}
.contact-options {
  padding: 0;
  border: 0;
  margin: 24px 0 19px;
  display: flex;
  gap: 8px;
}
.contact-options legend {
  font-size: 0.85rem;
  margin-bottom: 9px;
}
.contact-options label {
  flex: 1;
  position: relative;
  cursor: pointer;
}
.contact-options input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.contact-options span {
  min-height: 46px;
  display: block;
  text-align: center;
  border: 1px solid #d7ddd8;
  padding: 9px;
  border-radius: 7px;
  font-size: 0.9rem;
}
.contact-options input:checked + span {
  background: #edf2ed;
  border-color: var(--forest);
  font-weight: 600;
}
.contact-options input:focus-visible + span {
  outline: 3px solid #a36d17;
  outline-offset: 3px;
}
.field {
  margin-top: 15px;
}
.field > label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.field > input {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  background: #fafbf8;
  border: 1px solid #bbc7bd;
  border-radius: 7px;
  font-size: 1rem;
  color: var(--ink);
}
.field > input::placeholder {
  color: #717b75;
}
.field-hint {
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}
.field-error {
  display: block;
  font-size: 0.8rem;
  color: #a22424;
  margin-top: 4px;
}
.field input[aria-invalid="true"] {
  border-color: #a22424;
}
.submit-button {
  width: 100%;
  margin-top: 22px;
}
.form-note {
  font-size: 0.79rem;
  color: var(--muted);
  text-align: center;
  margin-top: 13px;
}
.form-error {
  color: #a22424;
  font-size: 0.9rem;
  margin-top: 14px;
}
.form-error a {
  text-decoration: underline;
}
.form-success {
  padding-block: 45px;
  text-align: center;
}
.success-symbol {
  display: inline-grid;
  place-items: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #edf2ed;
  font-size: 2rem;
  margin-bottom: 20px;
}
.form-success p {
  color: var(--muted);
  margin-top: 15px;
}
.site-footer {
  padding-block: 43px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.site-footer > p {
  font-size: 0.85rem;
  color: var(--muted);
}
@media (min-width: 1700px) {
  .hero {
    gap: 0 80px;
  }
  .hero-visual {
    min-height: 600px;
  }
  .hero-description {
    font-size: 1.2rem;
  }
  .hero-facts {
    margin-top: 48px;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 0 30px;
  }
  .hero-visual {
    min-height: 540px;
  }
  h1 {
    font-size: 3.5rem;
  }
  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }
  .hero-facts > div {
    padding: 14px 24px;
  }
  .hero-facts > div:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .hero-facts > div:first-child {
    padding-block: 14px;
  }
  .signup-layout {
    gap: 40px;
  }
  .desktop-nav {
    gap: 22px;
  }
  .section {
    padding-block: 76px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 90px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 76px;
    gap: 12px;
  }
  .brand {
    font-size: 1.3rem;
    gap: 8px;
  }
  .brand-symbol {
    font-size: 2rem;
  }
  .brand small {
    font-size: 0.6rem;
  }
  .desktop-nav {
    display: none;
  }
  .header-link {
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .header-link span {
    margin-left: 7px;
  }
  .hero {
    padding-top: 30px;
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 0 0 28px;
  }
  .hero-copy .eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.09em;
    margin-bottom: 20px;
  }
  h1 {
    font-size: clamp(2.65rem, 9.8vw, 4.3rem);
    line-height: 1.06;
    letter-spacing: -0.05em;
  }
  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 20px;
  }
  .beginner-note {
    font-size: 0.85rem;
    margin-top: 16px;
    max-width: 350px;
  }
  .hero-actions {
    gap: 17px;
    margin-top: 22px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-actions .text-link {
    display: none;
  }
  .hero-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.3;
  }
  .hero-visual > img {
    object-position: center;
  }
  .photo-tag {
    top: 15px;
    left: 15px;
    padding: 7px 12px;
    font-size: 0.7rem;
  }
  .hero-visual figcaption {
    left: 17px;
    right: 17px;
    bottom: 16px;
    font-size: 0.7rem;
  }
  .hero-visual figcaption > span:last-child {
    display: none;
  }
  .hero-facts {
    margin-top: 12px;
    padding-block: 10px 19px;
  }
  .hero-facts > div,
  .hero-facts > div:first-child {
    padding: 13px 0;
  }
  .hero-facts > div:nth-child(even) {
    padding-left: 17px;
  }
  .hero-facts dd {
    font-size: 1rem;
  }
  .hero-facts dd span {
    font-size: 0.77rem;
    display: block;
  }
  .hero-facts dt {
    font-size: 0.73rem;
  }
  .hero-facts > div:last-child dd {
    font-size: 0.95rem;
  }
  .section {
    padding-block: 58px;
  }
  .experience {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .experience-copy {
    padding: 0;
  }
  .experience-copy .lead {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: clamp(2.3rem, 8vw, 3.2rem);
  }
  .eyebrow {
    font-size: 0.7rem;
  }
  .section-heading .eyebrow {
    margin-bottom: 18px;
  }
  .signup-section {
    padding-block: 54px;
  }
  .signup-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .signup-copy > p:not(.eyebrow) {
    margin-top: 20px;
  }
  .signup-copy h2 br {
    display: none;
  }
  .form-card {
    padding: 25px 21px;
    max-width: none;
  }
  .form-card h3 {
    font-size: 1.25rem;
  }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding-block: 32px;
  }
}
.hero-essential {
  display: none;
}
.text-button {
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: none;
  color: inherit;
  padding: 10px 0;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}
.text-button:hover {
  color: #8b6021;
}
.gallery-section {
  padding-bottom: 88px;
}
.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 28px;
}
.gallery-heading h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
}
.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  aspect-ratio: 2.7;
  gap: 24px;
}
.gallery-photo {
  position: relative;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d4d5cd;
  min-width: 0;
  min-height: 0;
  height: 100%;
}
.gallery-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-photo:hover img {
  transform: scale(1.025);
}
.gallery-detail img {
  object-position: 50% 67%;
}
.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 45px 24px 22px;
  color: white;
  font-size: 0.9rem;
  text-align: left;
  background: linear-gradient(transparent, rgb(9 24 17 / 0.8));
}
.gallery-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.8rem;
}
.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 46px;
}
.heading-row > p {
  max-width: 365px;
  color: var(--muted);
  font-size: 1rem;
}
.masters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
.master-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 26px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.master-card > img {
  width: 140px;
  height: 175px;
  object-fit: cover;
  border-radius: 70px 70px 12px 12px;
}
.master-card .eyebrow {
  color: var(--muted);
  font-size: 0.68rem;
}
.master-card h3 {
  font: 2.4rem/1.2 var(--serif);
  margin-top: 7px;
}
.master-card p:not(.eyebrow) {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 14px;
}
.journey-section {
  background: #e7ece5;
  padding-block: 76px;
}
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.journey-grid > li {
  border-top: 1px solid #b8c7b9;
  padding-top: 22px;
}
.step-number {
  font: italic 2.7rem/1 var(--serif);
  color: #6f866f;
  display: block;
  margin-bottom: 28px;
}
.journey-grid h3 {
  margin-bottom: 14px;
}
.journey-grid p {
  color: var(--muted);
  max-width: 350px;
}
.button-light {
  background: transparent;
  border-color: var(--forest);
  color: var(--ink);
}
.button-light:hover {
  color: white;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: start;
  background: #fff;
}
.quote-mark {
  font: 4rem/0.9 var(--serif);
  color: #8b6b2f;
  height: 40px;
}
.review-card blockquote {
  font: 1.3rem/1.5 var(--serif);
  margin: 15px 0 26px;
  flex: 1;
}
.review-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.85rem;
}
.review-card figcaption span {
  color: var(--muted);
  font-size: 0.78rem;
}
.review-card .text-button {
  font-size: 0.78rem;
  margin-top: 16px;
}
.faq-section {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.faq-section .section-heading > p:last-child {
  color: var(--muted);
  margin-top: 25px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.section-heading,
.faq-list {
  min-width: 0;
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  position: relative;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  font-size: 1.5rem;
  color: #657a67;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details > p {
  padding: 0 34px 22px 0;
  color: var(--muted);
}
.final-signup {
  background: #e7ece5;
  color: var(--ink);
}
.final-signup .signup-copy .eyebrow {
  color: #6c643e;
}
.final-signup .signup-copy h2 em {
  color: var(--forest);
}
.final-signup .signup-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.final-signup .signup-copy > .messenger-links {
  color: var(--ink);
}
.lightbox {
  position: fixed;
  inset: 0;
  width: min(1200px, calc(100% - 40px));
  height: min(900px, calc(100dvh - 40px));
  max-width: none;
  max-height: none;
  padding: 20px 24px;
  margin: auto;
  border: 1px solid #526258;
  border-radius: 16px;
  background: #14231f;
  color: #f6f5f0;
}
.lightbox::backdrop {
  background: rgb(8 17 13 / 0.88);
  backdrop-filter: blur(8px);
}
.lightbox[open] {
  display: flex;
  flex-direction: column;
}
.lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: none;
}
.lightbox-toolbar h2 {
  font: 1.1rem/1.5 var(--sans);
  letter-spacing: 0;
}
.round-button {
  width: 46px;
  height: 46px;
  border: 1px solid #708476;
  border-radius: 50%;
  background: none;
  color: inherit;
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}
.round-button:hover {
  background: #355244;
}
.lightbox-stage {
  min-height: 0;
  flex: 1;
  display: grid;
  place-items: center;
  padding-block: 18px;
}
.lightbox-stage img {
  object-fit: contain;
  max-height: 100%;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.lightbox-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex: none;
}
.lightbox-controls p {
  font-size: 0.9rem;
  min-width: 66px;
  text-align: center;
}
.lightbox #image-error {
  font-size: 1rem;
  text-align: center;
}
.local-preview-note {
  background: #fff4d0;
  border-bottom: 1px solid #d6b657;
  color: #574519;
  text-align: center;
  padding: 8px 20px;
  font-size: 0.8rem;
}
@media (max-width: 1100px) {
  .masters-grid {
    gap: 30px;
  }
  .master-card {
    grid-template-columns: 100px 1fr;
    gap: 19px;
  }
  .master-card > img {
    width: 100px;
    height: 135px;
  }
  .heading-row {
    gap: 35px;
  }
  .review-card {
    padding: 24px;
  }
  .review-card blockquote {
    font-size: 1.17rem;
  }
  .journey-grid {
    gap: 30px;
  }
  .faq-section {
    gap: 40px;
  }
}
@media (max-width: 760px) {
  h1 {
    font-size: clamp(2rem, 8.8vw, 3.6rem);
  }
  .hero-essential {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    margin-top: 17px;
  }
  .hero-essential span {
    padding-inline: 8px;
    color: #71836d;
  }
  .hero-actions {
    margin-top: 18px;
  }
  .hero-facts > div:nth-child(2),
  .hero-facts > div:nth-child(3) {
    display: none;
  }
  .hero-facts > div:last-child {
    padding-left: 17px;
  }
  .gallery-section {
    padding-bottom: 52px;
  }
  .gallery-heading {
    display: block;
    margin-bottom: 20px;
  }
  .gallery-heading h2 {
    font-size: 2.15rem;
    max-width: 340px;
  }
  .gallery-heading .text-button {
    margin-top: 15px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    gap: 16px;
  }
  .gallery-wide {
    height: auto;
    aspect-ratio: 1.25;
  }
  .gallery-detail {
    display: none;
  }
  .image-caption {
    font-size: 0.8rem;
    padding: 35px 16px 17px;
  }
  .gallery-note {
    font-size: 0.77rem;
  }
  .heading-row {
    display: block;
    margin-bottom: 28px;
  }
  .heading-row > p {
    margin-top: 22px;
  }
  .heading-row > .button,
  .heading-row > .text-button {
    margin-top: 24px;
  }
  .masters-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .master-card {
    padding-top: 25px;
    grid-template-columns: 85px 1fr;
    gap: 18px;
  }
  .master-card > img {
    width: 85px;
    height: 110px;
  }
  .master-card h3 {
    font-size: 2rem;
  }
  .master-card p:not(.eyebrow) {
    font-size: 0.94rem;
  }
  .journey-section {
    padding-block: 53px;
  }
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .journey-grid > li {
    padding-left: 55px;
    position: relative;
    padding-top: 21px;
  }
  .step-number {
    position: absolute;
    left: 0;
    top: 22px;
    font-size: 2rem;
  }
  .journey-grid h3 {
    font-size: 1.2rem;
    margin-bottom: 9px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .review-card {
    padding: 25px;
  }
  .review-card blockquote {
    font-size: 1.25rem;
  }
  .faq-section {
    padding-top: 0;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-section .section-heading > p:last-child {
    margin-top: 17px;
  }
  .faq-list summary {
    font-size: 1rem;
    padding-block: 19px;
  }
  .final-signup .signup-copy h2 br {
    display: block;
  }
  .lightbox {
    width: calc(100% - 16px);
    height: calc(100dvh - 24px);
    padding: 12px;
  }
  .lightbox-toolbar h2 {
    font-size: 0.9rem;
  }
  .lightbox-stage {
    padding-block: 12px;
  }
}
@media (max-width: 350px) {
  h1 {
    font-size: 1.8rem;
  }
  .brand {
    font-size: 1.14rem;
  }
  .brand small {
    font-size: 0.54rem;
  }
  .header-link {
    font-size: 0.72rem;
  }
  .header-link span {
    display: none;
  }
  .hero-actions .button {
    padding-inline: 13px;
    font-size: 0.85rem;
    gap: 12px;
  }
  .master-card {
    grid-template-columns: 1fr;
  }
  .master-card > img {
    width: 95px;
    height: 110px;
  }
  .form-card {
    padding-inline: 17px;
  }
}
.field > label,
.contact-options legend {
  font-size: 0.9rem;
}
.form-intro,
.master-card p:not(.eyebrow) {
  font-size: 1rem;
}
@media (min-width: 761px) and (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }
  .hero h1 {
    font-size: 3.8rem;
  }
  .hero-description {
    max-width: 580px;
  }
  .hero-visual {
    min-height: 0;
    aspect-ratio: 1.8;
  }
  .hero-visual > img {
    object-position: center;
  }
  .hero-facts {
    margin-top: 25px;
  }
  .experience {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .experience-copy {
    padding-top: 0;
    max-width: none;
  }
  .signup-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .signup-copy {
    max-width: none;
  }
  .signup-copy h2 br {
    display: none;
  }
  .form-card {
    max-width: none;
  }
  .masters-grid {
    grid-template-columns: 1fr;
  }
  .master-card {
    grid-template-columns: 140px 1fr;
    gap: 28px;
  }
  .master-card > img {
    width: 140px;
    height: 175px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card blockquote {
    font-size: 1.35rem;
  }
  .heading-row {
    align-items: start;
  }
  .heading-row > p {
    max-width: 260px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .faq-section h2 br {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
