:root {
  --paper: #f5efe7;
  --paper-soft: #fbf8f3;
  --ink: #201b17;
  --ink-soft: #5f564e;
  --clay: #b6533f;
  --clay-dark: #8f3e2f;
  --espresso: #2d211c;
  --sand: #d8c8b8;
  --line: rgba(32, 27, 23, 0.16);
  --white: #fffdf9;
  --shadow: 0 24px 70px rgba(43, 28, 20, 0.13);
  --shell: 1200px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-soft);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

picture {
  display: block;
}

.hero-media > picture,
.about-media > picture {
  width: 100%;
  height: 100%;
}

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

button,
input,
select {
  font: inherit;
}

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

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

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

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(32, 27, 23, 0.1);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-sticky {
  position: fixed;
  background: rgba(251, 248, 243, 0.94);
  box-shadow: 0 10px 30px rgba(32, 27, 23, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  min-height: 88px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 238px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.site-nav a {
  position: relative;
  font-size: 14px;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: right;
}

.header-phone span {
  font-size: 14px;
  font-weight: 650;
}

.header-phone small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--clay);
  background: var(--clay);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--clay-dark);
  background: var(--clay-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 11px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--clay);
  font-size: 18px;
}

.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  padding: 150px 0 74px;
  background:
    radial-gradient(circle at 14% 30%, rgba(182, 83, 63, 0.08), transparent 34%),
    linear-gradient(90deg, var(--paper) 0 61%, var(--sand) 61% 100%);
}

.hero::before {
  position: absolute;
  top: 118px;
  left: clamp(12px, 3vw, 56px);
  width: 80px;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(50px, 7vw, 105px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.99;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.03;
}

h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-facts {
  display: flex;
  max-width: 620px;
  margin: 70px 0 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  min-width: 128px;
  padding-right: 28px;
}

.hero-facts div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  height: 610px;
}

.hero-media::before {
  position: absolute;
  z-index: 0;
  top: -28px;
  right: -32px;
  width: 72%;
  height: 76%;
  border: 1px solid rgba(32, 27, 23, 0.25);
  content: "";
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center 47%;
  filter: saturate(0.78) contrast(1.02) brightness(1.04);
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: 34px;
  display: flex;
  width: min(300px, 80%);
  align-items: center;
  gap: 14px;
  padding: 19px 22px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(32, 27, 23, 0.18);
}

.hero-note-icon {
  color: var(--clay);
  font-size: 28px;
}

.hero-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.hero-note strong {
  color: var(--ink);
  font-size: 13px;
}

.hero-side-label {
  position: absolute;
  right: 22px;
  bottom: 72px;
  margin: 0;
  color: rgba(32, 27, 23, 0.56);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.advantages {
  padding: 72px 0 78px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.advantages-heading {
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(0, 1.38fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 38px;
}

.advantages-heading .eyebrow {
  margin-bottom: 9px;
}

.advantages-heading h2 {
  max-width: 780px;
  font-size: clamp(34px, 4vw, 52px);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.advantage-card {
  min-height: 286px;
  padding: 30px 26px 26px;
}

.advantage-card + .advantage-card {
  border-left: 1px solid var(--line);
}

.advantage-card-accent {
  background: var(--paper);
}

.advantage-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 46px;
  border: 1px solid var(--clay);
  color: var(--clay);
}

.advantage-icon-experience {
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}

.advantage-icon-medical::before,
.advantage-icon-medical::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.advantage-icon-medical::before {
  width: 24px;
  height: 2px;
}

.advantage-icon-medical::after {
  width: 2px;
  height: 24px;
}

.advantage-icon-personal::before {
  position: absolute;
  top: 10px;
  left: 21px;
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.advantage-icon-personal::after {
  position: absolute;
  bottom: 10px;
  left: 14px;
  width: 28px;
  height: 16px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  content: "";
}

.advantage-icon-program {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--serif);
  font-size: 20px;
}

.advantage-icon-program b,
.advantage-icon-program i {
  font-style: normal;
  font-weight: 500;
}

.advantage-icon-program b::after {
  margin-left: 5px;
  color: var(--sand);
  content: "/";
}

.advantage-card h3 {
  min-height: 58px;
  margin-bottom: 14px;
  font-size: 23px;
}

.advantage-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.78fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.services {
  background: var(--paper-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 4;
  padding: 28px;
  border: 1px solid var(--line);
  background: transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card a span {
  font-size: 19px;
}

.service-number {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 17px;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.service-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 3px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.service-meta strong {
  color: var(--ink);
  font-size: 12px;
}

.service-card-accent {
  border-color: var(--espresso);
  background: var(--espresso);
  color: var(--white);
}

.service-card-accent p,
.service-card-accent .service-meta {
  color: rgba(255, 253, 249, 0.7);
}

.service-card-accent a,
.service-card-accent .service-meta strong {
  color: var(--white);
}

.service-card-accent .service-number {
  color: #e4a291;
}

.price-section {
  position: relative;
  overflow: hidden;
  background: var(--espresso);
  color: var(--white);
}

.price-section::after {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.section-heading-light .eyebrow,
.eyebrow-light {
  color: #e4a291;
}

.section-heading-light > p {
  color: rgba(255, 253, 249, 0.66);
}

.price-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.price-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 36px 34px 30px;
}

.price-card + .price-card {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.price-card-main {
  background: var(--clay);
}

.price-label {
  align-self: flex-start;
  margin-bottom: 15px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-duration {
  margin-bottom: 26px;
  color: rgba(255, 253, 249, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-value {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(50px, 5vw, 66px);
  line-height: 1;
}

.price-value span {
  font-size: 26px;
}

.price-card > p:nth-last-of-type(1) {
  color: rgba(255, 253, 249, 0.7);
  font-size: 13px;
}

.price-card-main > p:nth-last-of-type(1),
.price-card-main .price-duration {
  color: rgba(255, 255, 255, 0.82);
}

.price-button {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-button span {
  font-size: 19px;
  transition: transform 180ms ease;
}

.price-button:hover span,
.price-button:focus-visible span {
  transform: translateX(4px);
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.about-media {
  position: relative;
  height: 640px;
}

.about-media::before {
  position: absolute;
  top: 32px;
  left: -30px;
  width: 64%;
  height: 70%;
  border: 1px solid var(--clay);
  content: "";
}

.about-media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
  filter: saturate(0.75) contrast(1.04);
}

.about-badge {
  position: absolute;
  right: -24px;
  bottom: 30px;
  display: flex;
  width: 184px;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px;
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(43, 28, 20, 0.2);
}

.about-badge strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.about-badge span {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-media p {
  position: absolute;
  right: -52px;
  bottom: 60px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.about-lead {
  max-width: 620px;
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: 16px;
}

.about-points {
  margin-bottom: 36px;
  border-top: 1px solid var(--line);
}

.about-points > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.about-points > div > span {
  color: var(--clay);
  font-family: var(--serif);
}

.about-points p {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.about-points strong {
  min-width: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.about-point-description {
  min-width: 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
}

.steps {
  padding-top: 90px;
  padding-bottom: 90px;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.steps .section-heading {
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}

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

.step-list li {
  min-height: 240px;
  padding: 30px;
  border-top: 1px solid var(--ink);
}

.step-list li + li {
  border-left: 1px solid var(--line);
}

.step-list span {
  display: block;
  margin-bottom: 52px;
  color: var(--clay);
  font-family: var(--serif);
}

.step-list h3 {
  margin-bottom: 12px;
}

.step-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.locations {
  background: var(--paper-soft);
}

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

.location-card {
  min-height: 320px;
  padding: 38px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(245, 239, 231, 0.9), rgba(245, 239, 231, 0.9)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(32, 27, 23, 0.08) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(32, 27, 23, 0.08) 31px 32px);
}

.location-card-dark {
  border-color: var(--espresso);
  background:
    linear-gradient(rgba(45, 33, 28, 0.93), rgba(45, 33, 28, 0.93)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(255, 255, 255, 0.09) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(255, 255, 255, 0.09) 31px 32px);
  color: var(--white);
}

.location-type {
  margin-bottom: 68px;
  color: var(--clay);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-card-dark .location-type {
  color: #e4a291;
}

.location-card h3 {
  margin-bottom: 8px;
  font-size: 32px;
}

.location-card > p:not(.location-type) {
  color: var(--ink-soft);
}

.location-card-dark > p:not(.location-type) {
  color: rgba(255, 253, 249, 0.64);
}

.location-card a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.faq-grid > div:first-child > p:last-child {
  max-width: 330px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.accordion {
  border-top: 1px solid var(--ink);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 21px;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  color: var(--clay);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 660px;
  padding: 0 52px 24px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.booking {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: linear-gradient(112deg, var(--espresso) 0 51%, var(--clay-dark) 51% 100%);
  color: var(--white);
}

.booking::before {
  position: absolute;
  top: -160px;
  left: -160px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.booking-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.booking-copy h2 {
  margin-bottom: 28px;
}

.booking-copy > p:not(.eyebrow):not(.booking-hours) {
  max-width: 480px;
  color: rgba(255, 253, 249, 0.7);
}

.booking-benefits {
  max-width: 520px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.booking-benefits > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.booking-benefits > div > span {
  color: #e4a291;
  font-family: var(--serif);
  font-size: 14px;
}

.booking-benefits p {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  color: rgba(255, 253, 249, 0.66);
  font-size: 11px;
  line-height: 1.55;
}

.booking-benefits strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
}

.booking-benefits p > span {
  min-width: 0;
}

.booking-phone {
  display: inline-block;
  margin-top: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: 30px;
}

.booking-hours {
  margin-top: 8px;
  color: rgba(255, 253, 249, 0.66);
  font-size: 12px;
}

.booking-form {
  position: relative;
  padding: 42px;
  background: var(--paper-soft);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.booking-form::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--clay);
  content: "";
}

.booking-form-intro {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.booking-form-intro > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--clay);
  color: var(--clay);
  font-size: 19px;
}

.booking-form-intro p {
  margin: 0 0 4px;
  color: var(--clay-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-form-intro h3 {
  margin: 0 0 7px;
  font-size: 28px;
}

.booking-form-intro small {
  color: var(--ink-soft);
  font-size: 12px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-field {
  min-width: 0;
}

.booking-form label:not(.consent) {
  display: block;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-form input:not([type="checkbox"]),
.booking-form select {
  width: 100%;
  height: 52px;
  margin-top: 7px;
  padding: 0 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease;
}

.booking-form input:not([type="checkbox"]):focus,
.booking-form select:focus {
  border-bottom-color: var(--clay);
}

.form-field.is-invalid input:not([type="checkbox"]) {
  border-bottom: 2px solid #9c472f;
  background: linear-gradient(180deg, transparent 0 76%, rgba(156, 71, 47, 0.08) 76% 100%);
}

.form-field.is-invalid input:not([type="checkbox"]):focus {
  outline: 2px solid rgba(156, 71, 47, 0.22);
  outline-offset: 3px;
}

.booking-form input::placeholder {
  color: #988c82;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  margin: 8px 0 26px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 11px;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--clay);
}

.form-field-consent {
  margin: 8px 0 26px;
}

.form-field-consent .consent {
  margin: 0;
}

.form-field-consent.is-invalid {
  margin-inline: -12px;
  padding: 12px;
  border: 1px solid rgba(156, 71, 47, 0.42);
  background: rgba(156, 71, 47, 0.07);
}

.field-error {
  display: block;
  margin-top: 7px;
  color: #8f2f20;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.field-error:empty {
  display: none;
}

.button-submit {
  width: 100%;
  justify-content: space-between;
}

.button-submit > span[aria-hidden="true"] {
  font-size: 19px;
}

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

.form-note {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 14px 16px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  scroll-margin-top: 110px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: rgba(156, 71, 47, 0.42);
  border-left: 4px solid #9c472f;
  background: #f8e9e4;
  color: #742619;
}

.form-status.is-success {
  border-color: rgba(49, 101, 70, 0.35);
  border-left: 4px solid #316546;
  background: #e8f1eb;
  color: #234c33;
}

.site-footer {
  padding: 70px 0 24px;
  background: #191411;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
  padding-bottom: 58px;
}

.brand-footer .brand-logo {
  width: 270px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid > div:not(:first-child) p {
  margin-bottom: 14px;
  color: #e4a291;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) a {
  color: rgba(255, 253, 249, 0.68);
  font-size: 12px;
}

.footer-grid > div:not(:first-child) a:hover,
.footer-grid > div:not(:first-child) a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 253, 249, 0.45);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: auto;
    background: linear-gradient(90deg, var(--paper) 0 67%, var(--sand) 67% 100%);
  }

  .hero-grid {
    gap: 54px;
  }

  .hero-media {
    height: 560px;
  }

  .hero-note {
    right: -10px;
  }

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

  .service-card {
    grid-column: span 6;
  }

}

@media (max-width: 860px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .section {
    padding: 84px 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 76px;
  }

  .menu-button {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 19;
    top: 76px;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    min-height: calc(100vh - 76px);
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 38px 24px;
    background: var(--paper-soft);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 26px;
  }

  .header-inner > .button {
    display: none;
  }

  .hero {
    padding: 132px 0 60px;
    background: var(--paper);
  }

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

  .hero-copy {
    padding-top: 0;
  }

  .hero-media {
    height: 620px;
    margin-top: 10px;
  }

  .hero-side-label {
    display: none;
  }

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

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

  .advantage-card:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .advantage-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 560px;
  }

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

  .price-card {
    min-height: 330px;
  }

  .price-card + .price-card {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

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

  .about-media {
    width: min(520px, 90%);
    height: 650px;
  }

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

  .step-list li {
    min-height: 210px;
  }

  .step-list li + li {
    border-top-color: var(--line);
    border-left: 0;
  }

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

  .faq-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .booking {
    background: var(--espresso);
  }

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

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding: 72px 0;
  }

  .brand-logo {
    width: 202px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-facts div {
    min-width: 0;
    flex: 1;
    padding-right: 12px;
  }

  .hero-facts div + div {
    padding-left: 12px;
  }

  .hero-facts dt {
    font-size: 22px;
  }

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

  .hero-media {
    height: 520px;
  }

  .hero-media::before {
    right: -14px;
  }

  .hero-note {
    right: 10px;
    bottom: 20px;
  }

  .advantages {
    padding: 58px 0 64px;
  }

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

  .advantage-card {
    min-height: 238px;
    padding: 26px 22px;
  }

  .advantage-card + .advantage-card,
  .advantage-card:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .advantage-icon {
    margin-bottom: 34px;
  }

  .advantage-card h3 {
    min-height: 0;
  }

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

  .service-card {
    min-height: 310px;
    grid-column: 1;
  }

  .price-card {
    padding: 32px 24px 26px;
  }

  .about-media {
    width: calc(100% - 18px);
    height: 520px;
    margin-left: 18px;
  }

  .about-media::before {
    left: -18px;
  }

  .about-badge {
    right: -14px;
    bottom: 22px;
  }

  .about-media p {
    display: none;
  }

  .about-points p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-points strong {
    min-width: 0;
  }

  .location-card {
    min-height: 300px;
    padding: 30px 24px;
  }

  .location-card h3 {
    font-size: 27px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-form {
    padding: 28px 22px;
  }

  .booking-benefits p {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .booking-form-intro {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .booking-form-intro > span {
    width: 36px;
    height: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Production pages */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent a {
  border-bottom: 1px solid currentColor;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.inner-hero {
  min-height: 72vh;
  padding: 190px 0 110px;
  background: var(--paper);
}

.inner-hero h1 {
  margin-bottom: 28px;
}

.inner-hero > .shell > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--ink-soft);
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  padding-top: 116px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 11px;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: var(--clay);
  content: "/";
}

.breadcrumbs a {
  border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  border-bottom-color: currentColor;
}

.breadcrumbs + .inner-hero,
.breadcrumbs + .article-page,
.breadcrumbs + .legal-page {
  padding-top: 42px;
}

.commercial-hero {
  min-height: auto;
  padding-bottom: 100px;
}

.commercial-hero .inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
}

.commercial-hero .inner-hero-grid > * {
  min-width: 0;
}

.service-hero h1,
.service-hero .button {
  overflow-wrap: break-word;
  hyphens: auto;
}

.commercial-hero .inner-hero-grid > picture,
.commercial-hero .inner-hero-grid > picture img {
  width: 100%;
  height: 430px;
}

.commercial-hero .inner-hero-grid > picture img {
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.8) contrast(1.03);
}

.listing-section,
.programs-section,
.about-facts {
  background: var(--paper-soft);
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
}

.service-list-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 36px 38px;
  border-bottom: 1px solid var(--line);
}

.service-list-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.service-list-card > p {
  color: var(--clay-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-list-card h2,
.service-list-card h3 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.2vw, 43px);
}

.service-list-card > div {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 14px;
}

.service-list-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-list-card-draft {
  background: rgba(216, 200, 184, 0.22);
}

.service-hero .fact-panel {
  padding: 38px;
  background: var(--espresso);
  color: var(--white);
  box-shadow: var(--shadow);
}

.fact-panel-title {
  margin-bottom: 28px;
  color: #e4a291;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fact-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-panel li {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 253, 249, 0.75);
  font-size: 14px;
}

.compact-price-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.price-count-1 {
  grid-template-columns: minmax(0, 520px);
}

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

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

.program-card {
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.program-discount {
  margin-bottom: 22px;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
}

.program-card h3 {
  margin-bottom: 14px;
  font-size: 32px;
}

.program-card > p:not(.program-discount) {
  color: var(--ink-soft);
  font-size: 13px;
}

.program-prices {
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.program-prices p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.program-prices span {
  color: var(--ink-soft);
}

.program-prices strong {
  white-space: nowrap;
}

.section-note {
  max-width: 860px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.commercial-info {
  background: var(--paper);
}

.commercial-info-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.commercial-info-grid > *,
.faq-grid > *,
.booking-grid > * {
  min-width: 0;
}

.commercial-info h2,
.commercial-info h3,
.compact-faq h2,
.compact-faq summary,
.booking-copy h2,
.booking-form-intro h3 {
  overflow-wrap: break-word;
  hyphens: auto;
}

.commercial-info-grid > div:last-child {
  max-width: 690px;
  color: var(--ink-soft);
  font-size: 15px;
}

.commercial-info-grid > div:last-child h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
}

.commercial-info-grid > div:last-child p + h3 {
  margin-top: 34px;
}

.service-content-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.service-content-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(56px, 8vw, 118px);
}

.service-content-heading {
  position: sticky;
  top: 110px;
}

.service-content-heading h2 {
  margin-bottom: 22px;
}

.service-content-heading > p:last-child {
  max-width: 400px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.service-content-list {
  border-top: 1px solid var(--ink);
}

.service-content-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.service-content-number {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 16px;
}

.service-content-card h3 {
  margin: -4px 0 18px;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 35px);
  font-weight: 500;
  line-height: 1.15;
}

.service-content-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.service-content-card p + p {
  margin-top: 14px;
}

.service-content-card a {
  border-bottom: 1px solid rgba(143, 62, 47, 0.45);
  color: var(--clay-dark);
}

.service-content-card a:hover,
.service-content-card a:focus-visible {
  border-bottom-color: currentColor;
}

.service-checklist {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 14px;
  list-style: none;
}

.service-checklist li {
  position: relative;
  padding-left: 22px;
}

.service-checklist li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--clay);
  content: "";
}

.service-step-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  counter-reset: service-step;
  color: var(--ink-soft);
  font-size: 14px;
  list-style: none;
}

.service-step-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  line-height: 1.65;
  counter-increment: service-step;
}

.service-step-list li::before {
  color: var(--clay);
  font-family: var(--serif);
  content: counter(service-step, decimal-leading-zero);
}

.service-content-card .service-safety-note {
  margin-top: 24px;
  padding: 17px 19px;
  border-left: 3px solid var(--clay);
  background: rgba(182, 83, 63, 0.07);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.service-safety-note strong {
  color: var(--ink);
}

.service-gallery-section {
  background: var(--espresso);
  color: var(--white);
}

.service-gallery-section .section-heading {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.service-gallery-section .section-heading h2 {
  color: var(--white);
}

.service-gallery-section .section-heading > p {
  color: rgba(255, 253, 249, 0.68);
}

.service-gallery-section .eyebrow {
  color: #e4a291;
}

.service-gallery-grid {
  display: grid;
  gap: 18px;
}

.service-gallery-count-1 {
  grid-template-columns: minmax(0, 720px);
}

.service-gallery-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-gallery-count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-gallery-item {
  margin: 0;
}

.service-gallery-picture,
.service-gallery-picture img {
  width: 100%;
  height: clamp(390px, 48vw, 610px);
}

.service-gallery-picture img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(1.04);
}

.service-gallery-item figcaption {
  margin-top: 13px;
  color: rgba(255, 253, 249, 0.62);
  font-size: 11px;
}

.first-session-section {
  border-top: 1px solid rgba(32, 27, 23, 0.12);
  background: var(--sand);
}

.first-session-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(56px, 8vw, 118px);
}

.first-session-grid h2 {
  margin-bottom: 22px;
}

.first-session-grid > div:first-child > p:last-child {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.first-session-links {
  border-top: 1px solid var(--ink);
}

.first-session-links a {
  display: grid;
  grid-template-columns: 46px minmax(170px, 0.8fr) minmax(180px, 1.2fr);
  align-items: start;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(32, 27, 23, 0.22);
  transition: color 180ms ease, padding-left 180ms ease;
}

.first-session-links a:hover,
.first-session-links a:focus-visible {
  padding-left: 8px;
  color: var(--clay-dark);
}

.first-session-links span {
  color: var(--clay-dark);
  font-family: var(--serif);
}

.first-session-links strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

.first-session-links small {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.service-booking-info {
  border-top: 1px solid var(--line);
}

.compact-faq {
  padding-top: 88px;
  padding-bottom: 88px;
}

.compact-faq .accordion summary {
  gap: 16px;
}

.compact-faq .accordion summary span {
  flex: 0 0 auto;
}

.commercial-summary {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.commercial-summary p {
  max-width: 920px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.about-page-hero {
  min-height: auto;
  padding-bottom: 110px;
}

.about-page-hero .about-media {
  height: 600px;
}

.about-page-hero h1 {
  margin-bottom: 28px;
}

.about-page-hero .about-lead {
  margin-bottom: 28px;
}

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

.master-statline div {
  padding: 20px 18px 18px 0;
}

.master-statline div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.master-statline dt {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
}

.master-statline dd {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.education-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.education-card > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--clay);
  color: var(--clay);
  font-family: var(--serif);
  font-size: 27px;
}

.education-card h2 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 26px;
}

.education-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.master-profile {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.master-profile-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(54px, 9vw, 130px);
}

.master-story {
  max-width: 720px;
}

.master-story p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.master-story .master-story-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.45;
}

.master-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.master-tags span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.fact-grid article {
  min-height: 260px;
  padding: 32px;
}

.fact-grid article + article {
  border-left: 1px solid var(--line);
}

.fact-grid span {
  display: block;
  margin-bottom: 62px;
  color: var(--clay);
  font-family: var(--serif);
}

.fact-grid p {
  color: var(--ink-soft);
  font-size: 13px;
}

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

.fact-grid-four article {
  min-height: 290px;
  padding-inline: 27px;
}

.credentials-section {
  background: var(--paper-soft);
}

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

.credential-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
}

.credential-card > p {
  color: var(--clay);
  font-family: var(--serif);
}

.credential-card > span {
  color: var(--ink-soft);
  font-size: 13px;
}

.credential-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credentials-pending {
  padding: 70px 0;
  border-top: 1px solid var(--line);
  background: var(--espresso);
  color: var(--white);
}

.credentials-pending-grid {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 70px;
}

.credentials-pending .eyebrow {
  color: #e4a291;
}

.credentials-pending h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 48px);
}

.credentials-pending div > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 253, 249, 0.68);
  font-size: 14px;
}

.contact-hero {
  min-height: auto;
  padding-bottom: 90px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  padding-top: 10px;
}

.contact-actions a {
  border-bottom: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 24px;
}

.contact-actions span {
  align-self: center;
  color: var(--ink-soft);
  font-size: 13px;
}

.outcall-note {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 40px;
  margin-top: 22px;
  padding: 38px;
  border: 1px solid var(--line);
}

.outcall-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.article-index-hero {
  min-height: auto;
  padding-bottom: 90px;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.article-card-grid article {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.article-card-grid article > p {
  color: var(--clay-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-card-grid h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.5vw, 46px);
}

.article-card-grid article > div {
  color: var(--ink-soft);
  font-size: 14px;
}

.article-card-grid a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.editorial-note {
  margin-top: 22px;
  padding: 38px;
  background: var(--espresso);
  color: var(--white);
}

.editorial-note h2 {
  margin-bottom: 16px;
  font-size: 30px;
}

.editorial-note p {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 253, 249, 0.72);
}

.article-page {
  padding-top: 42px;
  background: var(--paper-soft);
}

.article-header {
  padding: 50px 0 80px;
  background: var(--paper);
}

.article-header p:last-child {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 17px;
}

.article-header h1 {
  overflow-wrap: break-word;
  hyphens: auto;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: start;
  gap: 90px;
  padding-top: 80px;
  padding-bottom: 110px;
}

.article-content {
  max-width: 760px;
}

.article-content h2 {
  margin: 58px 0 20px;
  font-size: 38px;
}

.article-content p,
.article-content li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.article-content .article-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.55;
}

.article-table {
  margin: 28px 0;
  border-top: 1px solid var(--ink);
}

.article-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.article-table > div:first-child {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-content > p a,
.article-service-table a {
  border-bottom: 1px solid rgba(143, 62, 47, 0.45);
  color: var(--clay-dark);
}

.article-content > p a:hover,
.article-content > p a:focus-visible,
.article-service-table a:hover,
.article-service-table a:focus-visible {
  border-bottom-color: currentColor;
}

.source-box {
  margin-top: 60px;
  padding: 30px;
  border-left: 3px solid var(--clay);
  background: var(--paper);
}

.source-box h2 {
  margin-top: 0;
  font-size: 28px;
}

.source-box a {
  border-bottom: 1px solid currentColor;
  color: var(--clay-dark);
}

.article-aside {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
}

.article-aside p {
  color: var(--clay-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-aside a {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.legal-page {
  padding: 42px 0 110px;
  background: var(--paper-soft);
}

.legal-shell {
  max-width: 900px;
}

.legal-page h1 {
  margin-bottom: 38px;
}

.legal-page h2 {
  margin: 44px 0 14px;
  font-size: 31px;
}

.legal-page p {
  color: var(--ink-soft);
}

.draft-alert {
  margin-bottom: 56px;
  padding: 26px;
  border: 1px solid #9c472f;
  background: #fff0e9;
}

.draft-alert strong {
  display: block;
  margin-bottom: 8px;
  color: #7c2d1c;
}

.draft-alert p {
  margin: 0;
}

.legal-page mark {
  padding: 2px 5px;
  background: #ffe0a6;
}

.legal-source {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.legal-source a {
  border-bottom: 1px solid currentColor;
}

.thanks-page {
  min-height: 74vh;
}

@media (max-width: 860px) {
  .commercial-hero .inner-hero-grid,
  .commercial-info-grid,
  .service-content-grid,
  .first-session-grid,
  .article-layout,
  .master-profile-grid,
  .credentials-pending-grid {
    grid-template-columns: 1fr;
  }

  .service-content-grid,
  .first-session-grid {
    gap: 48px;
  }

  .service-content-heading {
    position: static;
  }

  .service-gallery-count-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    gap: 48px;
  }

  .article-aside {
    position: static;
  }

  .fact-grid,
  .fact-grid-four {
    grid-template-columns: 1fr;
  }

  .fact-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .credentials-pending-grid {
    gap: 22px;
  }
}

@media (max-width: 620px) {
  .breadcrumbs {
    padding-top: 94px;
  }

  .breadcrumbs + .inner-hero,
  .breadcrumbs + .article-page,
  .breadcrumbs + .legal-page {
    padding-top: 28px;
  }

  .commercial-hero {
    padding-bottom: 70px;
  }

  .service-hero h1 {
    font-size: clamp(39px, 11vw, 50px);
  }

  .article-header h1 {
    font-size: clamp(39px, 11vw, 50px);
  }

  .master-statline dt {
    font-size: 21px;
  }

  .master-statline dd {
    font-size: 8px;
  }

  .master-story .master-story-lead {
    font-size: 22px;
  }

  .commercial-hero .inner-hero-grid > picture,
  .commercial-hero .inner-hero-grid > picture img {
    height: 360px;
  }

  .service-list-grid,
  .program-grid,
  .service-gallery-count-2,
  .service-gallery-count-3,
  .article-card-grid {
    grid-template-columns: 1fr;
  }

  .service-content-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 30px 0;
  }

  .service-gallery-picture,
  .service-gallery-picture img {
    height: min(125vw, 570px);
  }

  .first-session-links a {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 14px;
  }

  .first-session-links small {
    grid-column: 2;
  }

  .service-list-card {
    min-height: 280px;
    padding: 30px 24px;
  }

  .service-list-card:nth-child(odd) {
    border-right: 0;
  }

  .service-hero .fact-panel,
  .program-card,
  .article-card-grid article {
    padding: 30px 24px;
  }

  .service-hero .button {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    white-space: normal;
  }

  .price-count-1,
  .price-count-2 {
    grid-template-columns: 1fr;
  }

  .program-prices p {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .outcall-note,
  .article-table > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .article-content h2 {
    font-size: 32px;
  }

  .article-content .article-lead {
    font-size: 21px;
  }
}
.metrika-noscript {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
