:root {
  --milk: #f7f3ea;
  --paper: #fbf8f1;
  --paper-soft: rgba(255, 252, 245, 0.78);
  --sage: #7f8a6b;
  --sage-dark: #5f684f;
  --sand: #d6c6aa;
  --gold: #b89963;
  --clay: #b8907a;
  --ink: #25231f;
  --muted: #6f6b61;
  --line: rgba(87, 75, 55, 0.16);
  --shadow: 0 18px 45px rgba(70, 62, 46, 0.12);
  --soft-shadow: 0 10px 28px rgba(70, 62, 46, 0.08);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 18% 8%, rgba(225, 211, 183, 0.42), transparent 28rem),
    radial-gradient(circle at 90% 16%, rgba(184, 199, 183, 0.35), transparent 30rem),
    linear-gradient(180deg, #f9f5ec 0%, #fbf8f1 45%, #f6f0e6 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(83, 75, 58, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 75, 58, 0.025) 1px, transparent 1px);
  background-size: 18px 18px;
}

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

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

button {
  color: inherit;
  font: inherit;
}

a,
button {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(184, 153, 99, 0.58);
  outline-offset: 4px;
}

.page-shell {
  width: min(100%, 1510px);
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.44);
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 265px 1fr 170px;
  align-items: center;
  gap: 24px;
  padding: 28px 78px 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 48px;
}

.brand-mark img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-copy strong {
  color: #8d7654;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}

.brand-copy small {
  color: #9c8f79;
  font-size: 10px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: #24231f;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

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

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(184, 153, 99, 0.9), transparent);
  opacity: 0;
  transform: scaleX(0.36);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #8e7142;
}

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  pointer-events: none;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(37, 33, 29, 0.48);
  opacity: 0;
  transition: opacity 220ms ease;
}

.mobile-menu-panel {
  position: relative;
  width: min(82vw, 390px);
  height: 100%;
  padding: 38px 34px 34px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 58% 16%, rgba(255, 249, 240, 0.95), transparent 11rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(242, 233, 221, 0.98));
  box-shadow: 22px 0 48px rgba(42, 35, 27, 0.18);
  transform: translateX(-100%);
  transition: transform 260ms ease;
}

.mobile-menu-profile {
  display: grid;
  justify-items: center;
  text-align: center;
}

.mobile-menu-profile img {
  width: 126px;
  height: 126px;
  object-fit: cover;
  border: 1px solid rgba(176, 145, 94, 0.2);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(93, 76, 58, 0.13);
}

.mobile-menu-profile h2 {
  margin-top: 22px;
  color: #342d26;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
}

.mobile-menu-profile p {
  margin-top: 10px;
  color: #b7864f;
  font-size: 15px;
  line-height: 1.35;
}

.mobile-menu-search {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 40px;
  margin-top: 24px;
  padding: 0 13px;
  border: 1px solid rgba(196, 168, 122, 0.45);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.mobile-menu-search svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: #877b68;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mobile-menu-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #3d3932;
  font: inherit;
  font-size: 14px;
}

.mobile-menu-search input::placeholder {
  color: rgba(94, 91, 104, 0.68);
}

.mobile-menu-nav {
  display: grid;
  gap: 4px;
  margin-top: 24px;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  color: #5e5b68;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 10px;
}

.mobile-menu-nav a.is-current {
  color: #8c6838;
  background: rgba(239, 226, 204, 0.62);
  border-color: rgba(213, 188, 143, 0.54);
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .mobile-menu {
  pointer-events: auto;
}

body.mobile-menu-open .mobile-menu-backdrop {
  opacity: 1;
}

body.mobile-menu-open .mobile-menu-panel {
  transform: translateX(0);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.icon-button,
.favorite-button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #2f2a24;
  border: 1px solid rgba(117, 105, 87, 0.16);
  background: rgba(255, 253, 247, 0.62);
  box-shadow: 0 10px 24px rgba(80, 73, 58, 0.08);
}

.icon-button svg,
.favorite-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.favorite-button {
  gap: 10px;
  min-width: 128px;
  padding: 14px 16px;
  color: #4e4436;
  border: 1px solid rgba(129, 104, 68, 0.42);
  border-radius: 9px;
  background: rgba(255, 250, 241, 0.48);
  font-size: 14px;
  font-weight: 600;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: #6d754f;
  background: rgba(255, 250, 241, 0.74);
  box-shadow: 0 8px 22px rgba(96, 88, 64, 0.12);
  transform: translateY(-1px);
}

.favorite-button:hover,
.favorite-button:focus-visible {
  color: #746036;
  border-color: rgba(184, 153, 99, 0.7);
  background: rgba(255, 252, 244, 0.86);
  box-shadow: 0 12px 26px rgba(96, 88, 64, 0.13);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 66vh;
  margin-top: -86px;
  overflow: hidden;
  padding: 112px 78px 44px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 62%;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 12% 66%, rgba(214, 193, 154, 0.14), transparent 15rem),
    linear-gradient(90deg, rgba(252, 248, 239, 0.98) 0%, rgba(252, 248, 239, 0.94) 47%, rgba(252, 248, 239, 0.56) 72%, transparent 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 -1px 0;
  z-index: 1;
  height: 118px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(251, 248, 241, 0.9) 78%, rgba(251, 248, 241, 1));
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(760px, 64vw);
  max-width: 760px;
  padding-top: 0;
}

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

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

.hero h1 {
  max-width: 760px;
  font-size: 56px;
  line-height: 1;
}

.hero-copy p {
  max-width: 650px;
  margin-top: 18px;
  color: #676158;
  font-size: 16px;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
}

.hero .button {
  min-height: 44px;
}

.button {
  display: inline-flex;
  min-width: 218px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
}

.button-primary {
  color: #fffdf6;
  background: linear-gradient(135deg, #899271, #5f684d);
  box-shadow: 0 12px 22px rgba(96, 105, 77, 0.24);
}

.button-secondary {
  color: #4b443a;
  border: 1px solid rgba(72, 62, 46, 0.35);
  background: rgba(255, 253, 247, 0.66);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #96a07c, #687353);
  box-shadow: 0 16px 32px rgba(96, 105, 77, 0.28);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #6f5d39;
  border-color: rgba(144, 123, 89, 0.6);
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 12px 24px rgba(88, 79, 58, 0.1);
}

.hero-benefits {
  display: flex;
  gap: 36px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 170px;
  color: #595447;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.line-icon,
.state-icon,
.route-symbol,
.mini-icon,
.support-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(184, 153, 99, 0.38);
  border-radius: 50%;
}

.line-icon {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 0;
}

.state-icon::before,
.mini-icon::before,
.support-icon::before {
  width: 16px;
  height: 16px;
  content: "";
  border: 1.6px solid var(--gold);
  border-radius: 50% 50% 44% 44%;
}

.line-icon img {
  display: block;
  width: 48px;
  height: 48px;
}

.hero-art {
  position: absolute;
  z-index: 0;
  top: -42px;
  right: -28px;
  width: min(980px, 70vw);
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 12%, rgba(0, 0, 0, 0.72) 25%, #000 43%, #000 78%, rgba(0, 0, 0, 0.52) 92%, transparent 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, #000 10%, #000 78%, rgba(0, 0, 0, 0.38) 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 12%, rgba(0, 0, 0, 0.72) 25%, #000 43%, #000 78%, rgba(0, 0, 0, 0.52) 92%, transparent 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, #000 10%, #000 78%, rgba(0, 0, 0, 0.38) 91%, transparent 100%);
}

.hero-art picture,
.hero-art img {
  display: block;
  width: 100%;
}

.hero-art img {
  height: auto;
  opacity: 0.96;
}

.hero-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.94) 0%, rgba(251, 248, 241, 0.72) 18%, rgba(251, 248, 241, 0.12) 43%, transparent 68%),
    radial-gradient(circle at 53% 46%, transparent 0 19rem, rgba(251, 248, 241, 0.1) 28rem, rgba(251, 248, 241, 0.42) 43rem),
    linear-gradient(180deg, rgba(251, 248, 241, 0.4) 0%, transparent 18%, transparent 64%, rgba(251, 248, 241, 0.76) 100%);
}

.placeholder {
  background:
    radial-gradient(circle at 70% 38%, rgba(255, 238, 200, 0.9), transparent 10rem),
    linear-gradient(135deg, #dde3d7, #f4ead6 55%, #cfd8d0);
}

.placeholder-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 254, 249, 0.25), rgba(245, 239, 228, 0.82)),
    radial-gradient(circle at 64% 47%, rgba(255, 250, 229, 0.8), transparent 14rem);
}

.sacred-circle {
  position: absolute;
  top: 54px;
  left: 210px;
  width: 375px;
  height: 375px;
  border: 2px solid rgba(255, 244, 220, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(235, 205, 151, 0.55);
}

.sacred-circle::before,
.sacred-circle::after {
  position: absolute;
  inset: 50px;
  content: "";
  border: 1px solid rgba(255, 244, 220, 0.62);
  border-radius: 50%;
}

.sacred-circle::after {
  inset: 105px;
}

.figure-glow {
  position: absolute;
  right: 294px;
  bottom: 165px;
  width: 32px;
  height: 105px;
  border-radius: 20px 20px 4px 4px;
  background: linear-gradient(#81735f, #4c4d45);
  box-shadow: 0 0 90px 60px rgba(255, 225, 173, 0.55);
}

.figure-glow::before {
  position: absolute;
  top: -19px;
  left: 7px;
  width: 18px;
  height: 18px;
  content: "";
  border-radius: 50%;
  background: #7c6d5b;
}

.mountain {
  position: absolute;
  bottom: 82px;
  width: 440px;
  height: 190px;
  clip-path: polygon(0 100%, 35% 22%, 48% 56%, 68% 14%, 100% 100%);
  background: linear-gradient(135deg, rgba(104, 117, 111, 0.48), rgba(238, 227, 205, 0.75));
}

.mountain-one {
  left: 42px;
}

.mountain-two {
  right: -30px;
  bottom: 62px;
  opacity: 0.72;
}

.road {
  position: absolute;
  right: 125px;
  bottom: -30px;
  width: 340px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 251, 235, 0.9), transparent 65%);
  transform: rotate(-18deg);
}

.section {
  padding: 42px 78px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: 32px;
  line-height: 1.15;
}

.section-heading span,
.section-heading > div > span {
  display: block;
  width: 128px;
  height: 1px;
  background: var(--line);
}

.section-heading.split {
  justify-content: space-between;
}

.section-heading.split > div {
  display: flex;
  align-items: center;
  gap: 30px;
}

.section-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #39362f;
  font-size: 13px;
  font-weight: 700;
}

.section-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(184, 153, 99, 0), rgba(184, 153, 99, 0.86), rgba(184, 153, 99, 0));
  opacity: 0;
  transform: scaleX(0.42);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.section-link:hover,
.section-link:focus-visible {
  color: #80683e;
  transform: translateX(2px);
}

.section-link:hover::after,
.section-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.state-card,
.route-card,
.practice-card,
.article-card {
  display: block;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 12px;
  background: var(--paper-soft);
  box-shadow: var(--soft-shadow);
  color: inherit;
  text-decoration: none;
}

.state-card {
  position: relative;
  display: block;
  min-height: 190px;
  padding: 19px 15px 17px;
  overflow: hidden;
  text-align: center;
}

.state-card::after {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 2%, rgba(255, 246, 224, 0.72), transparent 5.4rem),
    linear-gradient(180deg, rgba(255, 255, 251, 0.58), transparent 58%);
  border-radius: 11px;
  opacity: 0;
  transition: opacity 220ms ease;
}

.state-card:hover,
.state-card:focus-visible {
  border-color: rgba(190, 166, 119, 0.42);
  background: rgba(255, 253, 247, 0.9);
  box-shadow:
    0 18px 34px rgba(78, 68, 48, 0.1),
    0 0 0 4px rgba(255, 248, 229, 0.74);
  transform: translateY(-3px);
}

.state-card:hover::after,
.state-card:focus-visible::after {
  opacity: 1;
}

.state-card:hover .state-icon,
.state-card:focus-visible .state-icon {
  transform: translateY(-3px);
}

.state-card:hover h3,
.state-card:focus-visible h3 {
  color: #6f6349;
}

.state-icon {
  display: inline-grid;
  position: relative;
  z-index: 1;
  width: 59px;
  height: 59px;
  place-items: center;
  margin-bottom: 16px;
  background: radial-gradient(circle, rgba(245, 238, 220, 0.8), rgba(225, 235, 225, 0.48));
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.state-icon-image {
  background: transparent;
  border: 0;
}

.state-icon-image::before {
  display: none;
}

.state-icon-image img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(88, 79, 58, 0.06));
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.state-card:hover .state-icon-image img,
.state-card:focus-visible .state-icon-image img {
  filter: drop-shadow(0 11px 14px rgba(88, 79, 58, 0.1));
  transform: scale(1.03);
}

.state-card h3,
.state-card p {
  position: relative;
  z-index: 1;
}

.state-card h3 {
  min-height: 40px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.state-card p {
  margin-top: 10px;
  color: #5f5a51;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.state-icon.lotus::before {
  border-radius: 50% 50% 4px 4px;
  transform: rotate(45deg);
}

.state-icon.waves::before {
  width: 25px;
  height: 11px;
  border-width: 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
}

.state-icon.body::before {
  width: 10px;
  height: 30px;
  border-radius: 10px;
}

.state-icon.sun::before {
  box-shadow: 0 0 0 7px rgba(184, 153, 99, 0.12);
}

.state-icon.eye::before {
  width: 28px;
  height: 16px;
  border-radius: 50%;
}

.state-icon.heart::before {
  width: 18px;
  height: 18px;
  border-radius: 8px 8px 0;
  transform: rotate(45deg);
}

.state-icon.mountain::before {
  width: 25px;
  height: 18px;
  clip-path: polygon(0 100%, 38% 20%, 55% 58%, 74% 5%, 100% 100%);
  border: 0;
  background: transparent;
  border-bottom: 2px solid var(--gold);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.route-card {
  overflow: hidden;
}

.route-image {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 16px;
  padding: 20px 20px 18px;
  overflow: hidden;
}

a.route-image:hover,
a.route-image:focus-visible {
  filter: saturate(1.04) contrast(1.02);
}

a.route-image:hover .route-symbol-image,
a.route-image:focus-visible .route-symbol-image {
  transform: translateY(-1px) scale(1.03);
}

.route-image-photo {
  background-position: center;
  background-size: cover;
}

.route-anxiety {
  background-image: url("assets/content/routes/anxiety-mountains.jpg");
}

.route-energy {
  background-image: url("assets/content/routes/energy-mountains.jpg");
}

.route-self-contact {
  background-image: url("assets/content/routes/self-contact-mountains.jpg");
}

.route-power {
  background-image: url("assets/content/routes/power-mountains.jpg");
}

.route-image::after,
.support-card::after,
.final-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 252, 244, 0.7), rgba(255, 252, 244, 0.14)),
    radial-gradient(circle at 82% 20%, rgba(255, 250, 230, 0.56), transparent 8rem);
}

.route-image-photo::after {
  background:
    linear-gradient(90deg, rgba(255, 252, 244, 0.07), rgba(255, 252, 244, 0.014)),
    radial-gradient(circle at 82% 20%, rgba(255, 250, 230, 0.056), transparent 8rem);
}

.route-image h3 {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.28;
}

.route-symbol {
  z-index: 1;
  width: 45px;
  height: 45px;
  background: rgba(255, 252, 245, 0.56);
}

.route-symbol-image {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1.2px solid rgba(118, 137, 123, 0.46);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 250, 0.55), transparent 48%),
    rgba(228, 237, 229, 0.48);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 250, 0.24),
    0 10px 18px rgba(46, 61, 55, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.route-symbol-image::before {
  display: none;
  content: none;
}

.route-symbol-image img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(43, 65, 60, 0.1));
}

.route-anxiety .route-symbol-image {
  border-color: rgba(84, 116, 104, 0.5);
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 250, 0.6), transparent 48%),
    rgba(218, 232, 223, 0.56);
}

.route-energy .route-symbol-image {
  border-color: rgba(105, 133, 149, 0.5);
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 250, 0.58), transparent 48%),
    rgba(222, 235, 241, 0.58);
}

.route-self-contact .route-symbol-image {
  border-color: rgba(186, 139, 82, 0.5);
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 250, 0.62), transparent 48%),
    rgba(242, 225, 197, 0.58);
}

.route-power .route-symbol-image {
  border-color: rgba(181, 118, 105, 0.5);
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 250, 0.62), transparent 48%),
    rgba(241, 215, 208, 0.58);
}

.route-symbol::before {
  content: "◎";
  color: var(--sage);
  font-size: 27px;
}

.route-symbol.breath::before {
  content: "▱";
}

.route-symbol.person::before {
  content: "♙";
  color: #a78355;
}

.route-symbol.peak::before {
  content: "△";
  color: #b88575;
}

.route-body {
  position: relative;
  display: grid;
  gap: 11px;
  min-height: 160px;
  padding: 18px 22px 20px;
}

.route-body p {
  margin: 0;
  color: #5f5a51;
  font-size: 12px;
  line-height: 1.38;
}

.route-step {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0;
  color: #5f5a51;
  border-radius: 9px;
  font-size: 12px;
  line-height: 1.38;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.route-step:hover,
.route-step:focus-visible {
  color: #4d463b;
  background: rgba(255, 251, 241, 0.62);
  transform: translateX(2px);
}

.route-step:hover .route-step-icon,
.route-step:focus-visible .route-step-icon {
  border-color: rgba(168, 134, 78, 0.42);
  background: rgba(255, 252, 244, 0.88);
  transform: scale(1.05);
}

.route-step:hover b,
.route-step:focus-visible b {
  color: inherit;
}

.route-step-practice:hover,
.route-step-practice:focus-visible {
  color: #65765d;
}

.route-step-practice:hover .route-step-icon,
.route-step-practice:focus-visible .route-step-icon {
  color: #65765d;
  border-color: rgba(101, 118, 93, 0.42);
}

.route-step-article:hover,
.route-step-article:focus-visible {
  color: #8a7043;
}

.route-step-article:hover .route-step-icon,
.route-step-article:focus-visible .route-step-icon {
  color: #8a7043;
  border-color: rgba(138, 112, 67, 0.42);
}

.route-step-next:hover,
.route-step-next:focus-visible {
  color: #738163;
}

.route-step-next:hover .route-step-icon,
.route-step-next:focus-visible .route-step-icon {
  color: #738163;
  border-color: rgba(115, 129, 99, 0.42);
}

.route-step-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #a8864e;
  border: 1px solid rgba(168, 134, 78, 0.24);
  border-radius: 50%;
  background: rgba(255, 252, 244, 0.68);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.route-step-icon img {
  display: block;
  width: 15px;
  height: 15px;
}

.route-step-practice .route-step-icon {
  color: #70816b;
}

.route-step-article .route-step-icon {
  color: #9a8258;
}

.route-step-next .route-step-icon {
  color: #8f9b80;
}

.route-body b {
  display: block;
  margin-bottom: 2px;
  color: #4a453c;
  font-size: 11px;
}

.time {
  position: absolute;
  top: 19px;
  right: 18px;
  color: #555047;
  font-size: 11px;
  font-weight: 700;
}

.mist-green {
  background: linear-gradient(135deg, #91a18f, #e7e0ce);
}

.mist-blue {
  background: linear-gradient(135deg, #bfd0d3, #e8e6d8);
}

.mist-sand {
  background: linear-gradient(135deg, #ead8bb, #c9d5cf);
}

.mist-rose {
  background: linear-gradient(135deg, #ead8d3, #d5d7c9);
}

.practices-section {
  padding-top: 32px;
}

.align-end {
  align-items: flex-end;
}

.practices-heading {
  display: block;
}

.practice-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.filter-row,
.select-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-row {
  position: relative;
  margin-top: 15px;
}

.filter,
.select-row button {
  min-height: 31px;
  padding: 0 22px;
  color: #595348;
  border: 1px solid rgba(97, 82, 58, 0.18);
  border-radius: 999px;
  background: rgba(255, 254, 249, 0.74);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.filter-select,
.filter-select-menu,
.filter-select-caption {
  display: none;
}

.filter-select-icon {
  display: inline-block;
  transition: transform 180ms ease;
}

.filter-select span {
  width: auto;
  min-width: 0;
  height: auto;
  margin: 0;
  background: none;
}

.filter.active {
  color: #fffdf7;
  border-color: transparent;
  background: var(--sage);
}

.filter:hover,
.filter:focus-visible {
  color: #fffdf7;
  border-color: transparent;
  background: var(--sage);
  box-shadow: 0 9px 18px rgba(96, 105, 77, 0.18);
  transform: translateY(-1px);
}

.select-row {
  justify-content: flex-end;
  padding-bottom: 2px;
}

.practice-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.practices-hero .hero-art {
  top: -18px;
  right: -34px;
  width: min(900px, 64vw);
  z-index: 1;
}

.practices-hero .hero-art::after {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.9) 0%, rgba(251, 248, 241, 0.62) 23%, rgba(251, 248, 241, 0.08) 52%, transparent 78%),
    linear-gradient(180deg, rgba(251, 248, 241, 0.18) 0%, transparent 22%, rgba(251, 248, 241, 0.22) 100%);
}

.practice-states-section {
  padding-top: 48px;
}

.practice-state-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.practice-state-card {
  display: grid;
  min-height: 142px;
  align-content: start;
  gap: 8px;
  padding: 16px 14px;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 248, 230, 0.76), transparent 5.5rem),
    rgba(255, 252, 245, 0.72);
  box-shadow: var(--soft-shadow);
}

.practice-state-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.practice-state-card strong {
  color: #302d27;
  font-size: 15px;
  line-height: 1.2;
}

.practice-state-card small {
  color: #6b6256;
  font-size: 12px;
  line-height: 1.32;
}

.practice-state-card:hover,
.practice-state-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(70, 62, 46, 0.12);
}

.practices-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 52px;
  align-items: start;
}

.practices-main {
  display: grid;
  gap: 42px;
}

.practice-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.78fr);
  grid-template-rows: repeat(2, minmax(205px, auto));
  gap: 18px;
}

.practice-feature-card,
.practice-library-card {
  overflow: hidden;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 12px;
  background: rgba(255, 252, 245, 0.74);
  box-shadow: var(--soft-shadow);
}

.practice-feature-card {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  min-height: 205px;
}

.practice-feature-card-large {
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
}

.practice-feature-image,
.practice-card-image {
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

.practice-feature-card-large .practice-feature-image {
  min-height: 250px;
}

.practice-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.practice-feature-card-large .practice-feature-content {
  min-height: 190px;
  padding: 24px 26px 26px;
}

.practice-meta,
.practice-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.practice-meta span,
.practice-card-meta span {
  padding: 5px 10px;
  color: #65765d;
  border-radius: 999px;
  background: #e4ecdd;
  font-size: 11px;
  font-weight: 700;
}

.practice-meta small,
.practice-card-meta small {
  color: #8a7a5c;
  font-size: 11px;
  font-weight: 700;
}

.practice-feature-content h3 {
  margin-top: 14px;
  color: #2d2a25;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.16;
}

.practice-feature-card-large .practice-feature-content h3 {
  font-size: 33px;
}

.practice-feature-content p {
  margin-top: 10px;
  color: #5f5a51;
  font-size: 14px;
  line-height: 1.48;
}

.practice-library-heading {
  align-items: center;
}

.practice-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

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

.practice-library-card {
  display: grid;
}

.practice-card-image {
  position: relative;
  min-height: 132px;
}

.practice-card-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(44, 39, 30, 0.12)),
    radial-gradient(circle at 82% 78%, rgba(255, 250, 232, 0.18), transparent 6rem);
}

.practice-card-image span {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 10px;
  padding: 6px 12px;
  color: #4b453a;
  border-radius: 999px;
  background: rgba(244, 238, 225, 0.78);
  font-size: 11px;
  font-weight: 700;
}

.practice-library-card > div:last-child {
  min-height: 170px;
  padding: 16px 17px 18px;
}

.practice-library-card h3 {
  margin-top: 13px;
  color: #2f2b25;
  font-size: 17px;
  line-height: 1.24;
}

.practice-library-card p {
  margin-top: 10px;
  color: #5f5a51;
  font-size: 12px;
  line-height: 1.48;
}

.single-practice-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 62px;
  padding-top: 28px;
}

.single-practice {
  min-width: 0;
}

.practice-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.practice-kicker span,
.practice-kicker small {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.practice-kicker span {
  color: #fffdf7;
  background: #788166;
}

.practice-kicker span + span {
  color: #665d4e;
  background: rgba(240, 234, 220, 0.9);
}

.practice-kicker small {
  color: #697158;
  border: 1px solid rgba(120, 129, 102, 0.24);
  background: rgba(232, 237, 222, 0.74);
}

.single-practice h1 {
  max-width: 860px;
  margin-top: 14px;
  color: #24231f;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.04;
}

.practice-lead {
  max-width: 760px;
  margin-top: 16px;
  color: #57534c;
  font-size: 18px;
  line-height: 1.52;
}

.single-practice-image {
  position: relative;
  height: 320px;
  min-height: 320px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.single-practice-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-practice-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 244, 208, 0.22), transparent 10rem),
    linear-gradient(180deg, transparent 42%, rgba(36, 31, 24, 0.08) 100%);
}

.practice-guide .section-heading h2 {
  font-size: 28px;
  line-height: 1.22;
}

.practice-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.practice-info-card,
.practice-after-card {
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 12px;
  background: rgba(255, 252, 245, 0.76);
  box-shadow: var(--soft-shadow);
}

.practice-info-card {
  position: relative;
  padding: 24px 28px 24px 78px;
}

.practice-info-card h2,
.practice-after-card h2 {
  color: #2d2a25;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.18;
}

.practice-text-section > p {
  margin-top: 12px;
  color: #555047;
  font-size: 16px;
  line-height: 1.68;
}

.practice-section-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(191, 136, 79, 0.28);
  border-radius: 50%;
  background: rgba(255, 252, 245, 0.86);
  box-shadow: 0 10px 24px rgba(99, 82, 58, 0.08);
}

.practice-section-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.practice-info-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  color: #555047;
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
}

.practice-info-card li {
  position: relative;
  padding-left: 22px;
}

.practice-info-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: #788166;
}

.practice-care-card {
  background:
    radial-gradient(circle at 10% 16%, rgba(226, 205, 164, 0.36), transparent 9rem),
    rgba(255, 252, 245, 0.86);
}

.practice-care-card p {
  margin-top: 14px;
  color: #5f5a51;
  font-size: 14px;
  line-height: 1.55;
}

.practice-guide {
  margin-top: 34px;
}

.practice-guide .section-heading {
  margin-bottom: 16px;
}

.practice-guide-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 18px 22px;
  counter-reset: practice-guide;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 12px;
  background: rgba(255, 252, 245, 0.72);
  box-shadow: var(--soft-shadow);
  list-style: none;
}

.practice-guide-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(145, 119, 82, 0.14);
}

.practice-guide-steps li:last-child {
  border-bottom: 0;
}

.practice-guide-steps li::before {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  counter-increment: practice-guide;
  content: counter(practice-guide);
  color: #fffdf7;
  border-radius: 50%;
  background: #788166;
  font-size: 12px;
  font-weight: 700;
}

.practice-guide-steps strong {
  display: block;
  grid-column: 2;
  color: #2f2b25;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.practice-guide-steps span {
  display: block;
  grid-column: 2;
  margin-top: 5px;
  color: #555047;
  font-size: 14px;
  line-height: 1.64;
}

.practice-after-card {
  position: relative;
  margin-top: 32px;
  padding: 24px 28px 24px 78px;
  background:
    radial-gradient(circle at 7% 18%, rgba(196, 216, 198, 0.34), transparent 10rem),
    rgba(255, 253, 248, 0.82);
}

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

.practice-after-grid span {
  display: block;
  padding: 13px 14px;
  color: #595348;
  border: 1px solid rgba(126, 111, 83, 0.13);
  border-radius: 9px;
  background: rgba(255, 253, 248, 0.64);
  font-size: 13px;
  line-height: 1.4;
}

.related-practices-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.courses-page {
  background: rgba(255, 253, 247, 0.6);
}

.courses-page .site-header {
  grid-template-columns: 265px 1fr 84px;
}

.courses-hero {
  position: relative;
  min-height: 580px;
  margin-top: -86px;
  padding: 148px 78px 48px;
  overflow: hidden;
  isolation: isolate;
}

.courses-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(252, 248, 239, 1) 0%, rgba(252, 248, 239, 0.96) 34%, rgba(252, 248, 239, 0.64) 48%, rgba(252, 248, 239, 0.18) 60%, transparent 70%),
    linear-gradient(180deg, transparent 0%, transparent 74%, rgba(251, 248, 241, 0.34) 100%);
}

.courses-hero-copy {
  position: relative;
  z-index: 2;
  width: min(700px, 58vw);
  padding-top: 28px;
}

.courses-hero h1 {
  color: #252b32;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
}

.courses-hero p {
  max-width: 650px;
  margin-top: 18px;
  color: #545b60;
  font-size: 16px;
  line-height: 1.52;
}

.courses-hero-art {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(1080px, 72vw);
  height: 100%;
  overflow: hidden;
}

.courses-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.courses-hero-art picture {
  display: block;
  width: 100%;
  height: 100%;
}

.courses-benefits {
  position: absolute;
  z-index: 2;
  right: 78px;
  bottom: 50px;
  left: 78px;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 44px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.courses-benefits li,
.courses-audience-grid article,
.course-teacher-copy li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #4f504c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.courses-benefits li > span:first-child,
.courses-audience-grid span,
.course-card-icon,
.course-teacher-copy li > span:first-child {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(190, 141, 89, 0.34);
  border-radius: 50%;
  background: rgba(255, 252, 245, 0.64);
}

.courses-benefits li > span:last-child {
  min-width: 0;
}

.course-teacher-copy li > span:last-child {
  min-width: 0;
}

.courses-benefits img,
.courses-audience-grid img,
.course-card-icon img,
.course-teacher-copy li img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.courses-audience {
  padding-top: 34px;
  text-align: center;
}

.courses-audience h2 {
  color: #2b2b27;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
}

.courses-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 30px;
  text-align: left;
}

.courses-audience-grid article {
  justify-content: center;
  min-height: 64px;
}

.courses-audience-grid p {
  max-width: 190px;
}

.courses-list-section {
  padding-top: 38px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.course-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(96, 79, 53, 0.14);
  border-radius: 12px;
  background: rgba(255, 252, 245, 0.76);
  box-shadow: var(--soft-shadow);
}

.course-card-image {
  height: 218px;
  overflow: hidden;
}

.course-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-card-image::after {
  position: absolute;
  inset: 0 0 auto;
  height: 218px;
  content: "";
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 238, 198, 0.2), transparent 10rem),
    linear-gradient(180deg, transparent 40%, rgba(45, 38, 30, 0.24) 100%);
}

.course-card-icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  margin: -36px 0 0 46px;
  background: rgba(255, 252, 245, 0.92);
  box-shadow: 0 18px 36px rgba(85, 70, 48, 0.13);
}

.course-card-icon img {
  width: 38px;
  height: 38px;
}

.course-card-body {
  padding: 22px 24px 24px;
}

.course-card h2 {
  color: #26313b;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.14;
}

.course-card p {
  margin-top: 18px;
  color: #53524c;
  font-size: 14px;
  line-height: 1.56;
}

.course-card h3 {
  margin-top: 28px;
  color: #3e3b34;
  font-size: 15px;
  font-weight: 700;
}

.course-card ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 24px;
  padding: 0;
  color: #555049;
  list-style: none;
  font-size: 13px;
  line-height: 1.38;
}

.course-card li {
  position: relative;
  padding-left: 24px;
}

.course-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  content: "✓";
  color: #9d7a49;
  border: 1px solid rgba(181, 143, 89, 0.38);
  border-radius: 50%;
  font-size: 9px;
  line-height: 1;
}

.course-card a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #534b3f;
  border: 1px solid rgba(72, 62, 46, 0.3);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.54);
  font-size: 13px;
  font-weight: 700;
}

.course-card a:hover,
.course-card a:focus-visible {
  color: #7c643d;
  border-color: rgba(184, 153, 99, 0.68);
  background: rgba(255, 253, 248, 0.9);
  transform: translateY(-1px);
}

.course-teacher-section {
  padding-top: 34px;
}

.course-teacher-card {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 74% 28%, rgba(235, 213, 174, 0.28), transparent 14rem),
    rgba(255, 252, 245, 0.72);
  box-shadow: var(--soft-shadow);
}

.course-teacher-photo {
  position: relative;
  overflow: hidden;
}

.course-teacher-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.course-teacher-copy {
  padding: 42px 42px 34px;
}

.course-teacher-copy h2 {
  color: #2f2b25;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.16;
}

.course-teacher-copy p {
  max-width: 760px;
  margin-top: 14px;
  color: #555049;
  font-size: 14px;
  line-height: 1.58;
}

.course-teacher-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 20px 30px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.course-teacher-copy li {
  align-items: center;
  font-size: 13px;
  line-height: 1.36;
}

.courses-bottom-cta {
  position: relative;
  min-height: 300px;
  margin: 34px 42px 0;
  padding: 54px 90px;
  overflow: hidden;
  border-radius: 14px;
  background-image:
    linear-gradient(90deg, rgba(249, 245, 236, 0.86) 0%, rgba(249, 245, 236, 0.64) 40%, rgba(249, 245, 236, 0.14) 66%, rgba(249, 245, 236, 0.02) 100%),
    url("assets/content/final/final-cta.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: var(--soft-shadow);
}

.courses-bottom-cta > div {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.courses-bottom-cta h2 {
  color: #2d302e;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
}

.work-page .site-header {
  grid-template-columns: 265px 1fr 84px;
}

.work-hero {
  position: relative;
  min-height: 540px;
  margin-top: -86px;
  padding: 146px 78px 42px;
  overflow: hidden;
  isolation: isolate;
}

.work-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(252, 248, 239, 0.98) 0%, rgba(252, 248, 239, 0.9) 36%, rgba(252, 248, 239, 0.38) 58%, transparent 78%),
    linear-gradient(180deg, rgba(252, 248, 239, 0.24) 0%, transparent 36%, rgba(251, 248, 241, 0.88) 100%);
}

.work-hero-copy {
  position: relative;
  z-index: 2;
  width: min(560px, 48vw);
}

.work-hero h1 {
  color: #252b32;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.02;
}

.work-hero p {
  max-width: 560px;
  margin-top: 18px;
  color: #545b60;
  font-size: 16px;
  line-height: 1.62;
}

.work-hero-art {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(920px, 64vw);
  height: 100%;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.04) 8%, rgba(0, 0, 0, 0.36) 20%, rgba(0, 0, 0, 0.78) 34%, #000 50%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, #000 10%, #000 82%, rgba(0, 0, 0, 0.48) 94%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.04) 8%, rgba(0, 0, 0, 0.36) 20%, rgba(0, 0, 0, 0.78) 34%, #000 50%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, #000 10%, #000 82%, rgba(0, 0, 0, 0.48) 94%, transparent 100%);
}

.work-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.95) contrast(0.98);
}

.work-hero-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(252, 248, 239, 0.98) 0%, rgba(252, 248, 239, 0.86) 17%, rgba(252, 248, 239, 0.42) 34%, rgba(252, 248, 239, 0.08) 52%, transparent 68%),
    radial-gradient(circle at 42% 42%, rgba(255, 239, 199, 0.2), transparent 17rem),
    linear-gradient(180deg, rgba(252, 248, 239, 0.24) 0%, transparent 30%, transparent 62%, rgba(251, 248, 241, 0.82) 100%);
}

.work-hero-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 36px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.work-hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4f504c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.34;
}

.work-hero-benefits li > span:first-child,
.work-format-icon,
.work-process-row span,
.work-safety-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(190, 141, 89, 0.34);
  border-radius: 50%;
  background: rgba(255, 252, 245, 0.72);
}

.work-hero-benefits li > span:last-child {
  min-width: 0;
}

.work-hero-benefits img,
.work-format-icon img,
.work-process-row img,
.work-safety-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.work-about-section {
  padding-top: 34px;
}

.work-about-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
}

.work-about-photo {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.work-about-photo img,
.work-format-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-about-copy h2,
.work-safety-card h2 {
  color: #2f2b25;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.16;
}

.work-about-copy p,
.work-safety-card p {
  margin-top: 16px;
  color: #555049;
  font-size: 14px;
  line-height: 1.68;
}

.work-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 12px;
  background: rgba(255, 252, 245, 0.72);
  box-shadow: var(--soft-shadow);
}

.work-principles article {
  display: grid;
  justify-items: center;
  min-height: 150px;
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid rgba(96, 79, 53, 0.1);
}

.work-principles article:last-child {
  border-right: 0;
}

.work-principles img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.work-principles h3 {
  margin-top: 12px;
  color: #3b352c;
  font-size: 13px;
  line-height: 1.28;
}

.work-principles p {
  margin-top: 8px;
  color: #6b6357;
  font-size: 11px;
  line-height: 1.45;
}

.work-format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.work-format-card,
.work-help-grid article,
.message-review,
.work-soft-grid a {
  overflow: hidden;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 12px;
  background: rgba(255, 252, 245, 0.76);
  box-shadow: var(--soft-shadow);
}

.work-format-card {
  display: flex;
  flex-direction: column;
}

.work-format-image {
  position: relative;
  height: 158px;
  overflow: hidden;
}

.work-format-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 238, 198, 0.2), transparent 9rem),
    linear-gradient(180deg, transparent 40%, rgba(45, 38, 30, 0.2) 100%);
}

.work-format-icon {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  margin: -34px 0 0 24px;
  background: rgba(255, 252, 245, 0.92);
  box-shadow: 0 16px 32px rgba(85, 70, 48, 0.12);
}

.work-format-icon img {
  width: 38px;
  height: 38px;
}

.work-format-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 20px 20px;
}

.work-format-body h3 {
  color: #2f2b25;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.15;
}

.work-format-body p {
  margin-top: 12px;
  color: #5a544a;
  font-size: 13px;
  line-height: 1.48;
}

.work-format-body ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 20px;
  padding: 0;
  color: #555049;
  list-style: none;
  font-size: 12px;
  line-height: 1.36;
}

.work-format-body li {
  position: relative;
  padding-left: 22px;
}

.work-format-body li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  content: "✓";
  color: #9d7a49;
  border: 1px solid rgba(181, 143, 89, 0.38);
  border-radius: 50%;
  font-size: 8px;
}

.work-format-body a,
.work-soft-grid small {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  gap: 14px;
  color: #534b3f;
  border: 1px solid rgba(72, 62, 46, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.54);
  font-size: 12px;
  font-weight: 700;
}

.work-format-body a {
  margin-top: auto;
}

.work-help-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.work-help-grid article {
  display: grid;
  justify-items: center;
  min-height: 170px;
  padding: 22px 16px;
  text-align: center;
}

.work-help-grid img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.work-help-grid h3 {
  margin-top: 14px;
  color: #332f2a;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.18;
}

.work-help-grid p {
  margin-top: 10px;
  color: #655d51;
  font-size: 12px;
  line-height: 1.42;
}

.work-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.message-review {
  position: relative;
  display: flex;
  min-height: 345px;
  flex-direction: column;
  padding: 26px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(247, 240, 226, 0.78)),
    radial-gradient(circle at 12% 0%, rgba(226, 207, 173, 0.34), transparent 11rem);
}

.message-review::before {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 30px;
  content: "";
  opacity: 0.2;
  background:
    linear-gradient(90deg, #8b744d 0 8px, transparent 8px 15px, #8b744d 15px 23px, transparent 23px),
    linear-gradient(#8b744d, #8b744d);
  background-position: 0 0, 0 12px;
  background-size: 100% 14px, 23px 2px;
  background-repeat: no-repeat;
}

.message-review-label {
  display: inline-flex;
  max-width: calc(100% - 64px);
  color: #9c794a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.message-review p {
  margin-top: 12px;
  color: #393630;
  font-size: 15px;
  line-height: 1.6;
}

.message-review h3 {
  margin-top: 14px;
  color: #2f2b25;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.12;
}

.message-review-featured {
  border-color: rgba(138, 146, 114, 0.28);
}

.review-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.message-review .review-text {
  position: relative;
  max-height: 166px;
  overflow: hidden;
}

.message-review .review-text::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 66px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(247, 240, 226, 0.97));
}

.review-toggle:checked + .review-text {
  max-height: none;
}

.review-toggle:checked + .review-text::after {
  display: none;
}

.review-read-more {
  display: inline-flex;
  margin-top: auto;
  padding-top: 14px;
  color: #80683f;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.review-less-text,
.review-toggle:checked ~ .review-read-more .review-more-text {
  display: none;
}

.review-toggle:checked ~ .review-read-more .review-less-text {
  display: inline;
}

.message-review small {
  display: block;
  margin-top: 16px;
  color: #7a7164;
  font-size: 12px;
}

.work-testimonials-note {
  max-width: 760px;
  margin-top: 16px;
  color: #726a5f;
  font-size: 12px;
  line-height: 1.5;
}

.work-process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.work-process-row article {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.work-process-row article:not(:last-child)::after {
  display: none;
}

.work-process-row h3 {
  color: #302d28;
  font-size: 15px;
  line-height: 1.3;
}

.work-process-row p {
  margin-top: 8px;
  color: #625b51;
  font-size: 12px;
  line-height: 1.5;
}

.work-safety-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 8% 18%, rgba(232, 217, 190, 0.42), transparent 12rem),
    rgba(255, 252, 245, 0.78);
  box-shadow: var(--soft-shadow);
}

.work-safety-card > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.work-safety-card p {
  margin-top: 0;
  font-size: 15px;
}

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

.work-soft-grid a {
  min-height: 142px;
  padding: 22px;
  background-position: center;
  background-size: cover;
}

.work-soft-grid a:nth-child(1) {
  background-image: linear-gradient(90deg, rgba(255, 252, 245, 0.96), rgba(255, 252, 245, 0.54)), url("assets/content/practices/sleep-relax-candle.jpg");
}

.work-soft-grid a:nth-child(2) {
  background-image: linear-gradient(90deg, rgba(255, 252, 245, 0.96), rgba(255, 252, 245, 0.5)), url("assets/content/support/guidance-path.jpg");
}

.work-soft-grid a:nth-child(3) {
  background-image: linear-gradient(90deg, rgba(255, 252, 245, 0.96), rgba(255, 252, 245, 0.48)), url("assets/content/courses/courses-hero-desktop.jpg");
}

.work-soft-grid strong {
  display: block;
  color: #352f28;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
}

.work-soft-grid span {
  display: block;
  max-width: 310px;
  margin-top: 10px;
  color: #60584f;
  font-size: 12px;
  line-height: 1.48;
}

.work-soft-grid small {
  width: fit-content;
  min-height: auto;
  margin-top: 18px;
  padding: 8px 14px;
}

.work-bottom-cta {
  position: relative;
  min-height: 280px;
  margin: 34px 42px 0;
  padding: 50px 88px;
  overflow: hidden;
  border-radius: 14px;
  background-image:
    linear-gradient(90deg, rgba(249, 245, 236, 0.9) 0%, rgba(249, 245, 236, 0.66) 42%, rgba(249, 245, 236, 0.16) 68%, rgba(249, 245, 236, 0.02) 100%),
    url("assets/content/final/work-with-me-cta.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: var(--soft-shadow);
}

.work-bottom-cta > div {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.work-bottom-cta h2 {
  color: #2d302e;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.15;
}

.work-bottom-cta p {
  max-width: 520px;
  margin-top: 14px;
  color: #4f4b43;
  font-size: 16px;
  line-height: 1.55;
}

.practice-card {
  position: relative;
  overflow: hidden;
}

.practice-image,
.article-image {
  position: relative;
  min-height: 104px;
  overflow: hidden;
}

.practice-image-photo {
  background-position: center;
  background-size: cover;
}

.practice-image-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(44, 39, 30, 0.1)),
    radial-gradient(circle at 82% 78%, rgba(255, 250, 232, 0.16), transparent 6rem);
}

.practice-anxiety-breath {
  background-image: url("assets/content/practices/anxiety-breath-clouds.jpg");
}

.practice-body-return {
  background-image: url("assets/content/practices/body-return-waves.jpg");
}

.practice-inner-support {
  background-image: url("assets/content/practices/inner-support-mountains.jpg");
}

.practice-sleep-relax {
  background-image: url("assets/content/practices/sleep-relax-candle.jpg");
}

.practice-sensitivity {
  background-image: url("assets/content/practices/sensitivity-flowers.jpg");
}

.practice-image span {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 10px;
  padding: 6px 13px;
  color: #4b453a;
  border-radius: 999px;
  background: rgba(244, 238, 225, 0.74);
  font-size: 11px;
  font-weight: 700;
}

.practice-body {
  position: relative;
  min-height: 155px;
  padding: 17px 18px 20px;
}

.practice-body h3 {
  max-width: 100%;
  font-size: 17px;
  line-height: 1.24;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}

.tag,
.article-body span {
  padding: 4px 8px;
  color: #6f6657;
  border-radius: 5px;
  background: #f0eadc;
  font-size: 10px;
  font-weight: 700;
}

.article-body .article-tag-body {
  color: #766647;
  background: #eee4d0;
}

.article-body .article-tag-state {
  color: #596f7c;
  background: #e4edf0;
}

.article-body .article-tag-practice {
  color: #65765d;
  background: #e4ecdd;
}

.tag-breath {
  color: #5f746b;
  background: #e3ece5;
}

.tag-body {
  color: #766647;
  background: #eee4d0;
}

.tag-meditation {
  color: #596f7c;
  background: #e4edf0;
}

.tag-relax {
  color: #80684f;
  background: #f0e3d6;
}

.tag-awareness {
  color: #5e6f58;
  background: #e6eddc;
}

.tag-sensitivity {
  color: #8d625c;
  background: #f1dfdc;
}

.tag-self {
  color: #655f7c;
  background: #e8e5f0;
}

.practice-body p,
.article-body p {
  margin-top: 13px;
  color: #5f5a51;
  font-size: 12px;
  line-height: 1.48;
}

.clouds {
  background: linear-gradient(135deg, #8799a0, #eff0e5);
}

.water {
  background: linear-gradient(135deg, #8ca2ad, #dae3e1);
}

.mountains {
  background: linear-gradient(135deg, #6f8482, #e7e1d2);
}

.candle {
  background: radial-gradient(circle at 60% 38%, #f7db9d, transparent 28%), linear-gradient(135deg, #98745e, #ece5d3);
}

.flowers {
  background: linear-gradient(135deg, #d6d0bf, #eef0e1);
}

.article-author-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 42px;
  align-items: end;
  padding-top: 34px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.article-card {
  overflow: hidden;
}

.article-body {
  padding: 14px 16px 18px;
}

.article-body div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.article-body small {
  color: #4e493f;
  font-size: 10px;
  font-weight: 700;
}

.article-body h3 {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.28;
}

.warm-room {
  background: linear-gradient(135deg, #988a77, #e2d8c8);
}

.lake {
  background: linear-gradient(135deg, #91a8a6, #e4eadf);
}

.forest {
  background: linear-gradient(135deg, #7e8c62, #dfdac5);
}

.article-image-photo {
  background-position: center;
  background-size: cover;
}

.article-image-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(36, 32, 25, 0.08));
}

.article-body-relax {
  background-image: url("assets/content/articles/body-not-relaxing.jpg");
}

.article-anxiety-support {
  background-image: url("assets/content/articles/anxiety-vs-support.jpg");
}

.article-self-contact {
  background-image: url("assets/content/articles/practices-self-contact.jpg");
}

.author-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 38%, rgba(233, 209, 165, 0.28), transparent 11rem),
    rgba(247, 240, 226, 0.78);
  box-shadow: var(--soft-shadow);
}

.author-copy {
  position: relative;
  z-index: 1;
  padding: 31px 16px 24px 34px;
}

.author-copy h2 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.15;
}

.author-copy p {
  margin-top: 18px;
  color: #5d574d;
  font-size: 12px;
  line-height: 1.62;
}

.author-copy ul {
  display: flex;
  gap: 21px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.author-copy li {
  display: grid;
  justify-items: center;
  max-width: 112px;
  gap: 7px;
  text-align: center;
  color: #615a4e;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.mini-icon {
  display: inline-grid;
  width: 35px;
  height: 35px;
  place-items: center;
}

.mini-icon-image {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(184, 153, 99, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 250, 0.72), transparent 45%),
    rgba(255, 250, 239, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 250, 0.34),
    0 8px 14px rgba(92, 78, 55, 0.08);
}

.mini-icon-image::before {
  display: none;
  content: none;
}

.mini-icon-image img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: saturate(1.14) contrast(1.08) drop-shadow(0 5px 8px rgba(92, 78, 55, 0.1));
}

.mini-icon.book::before {
  border-radius: 3px;
}

.mini-icon.hand::before {
  border-radius: 50% 50% 40% 40%;
}

.author-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.author-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: 54% 42%;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 12%, rgba(0, 0, 0, 0.78) 29%, #000 48%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, #000 12%, #000 88%, rgba(0, 0, 0, 0.78) 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 12%, rgba(0, 0, 0, 0.78) 29%, #000 48%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, #000 12%, #000 88%, rgba(0, 0, 0, 0.78) 100%);
}

.author-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 240, 226, 0.86) 0%, rgba(247, 240, 226, 0.54) 18%, transparent 42%),
    radial-gradient(circle at 14% 50%, rgba(247, 240, 226, 0.52), transparent 9rem);
}

.support-section {
  padding-top: 34px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.support-card {
  position: relative;
  display: flex;
  min-height: 126px;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  padding: 25px 31px;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.support-card:hover,
.support-card:focus-visible {
  border-color: rgba(184, 153, 99, 0.34);
  box-shadow: 0 18px 38px rgba(78, 68, 48, 0.13);
  filter: saturate(1.04) contrast(1.02);
  transform: translateY(-3px);
}

.support-card:hover .support-icon-image,
.support-card:focus-visible .support-icon-image {
  border-color: rgba(184, 153, 99, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 250, 0.38),
    0 12px 22px rgba(92, 78, 55, 0.14);
  transform: translateY(-1px) scale(1.02);
}

.support-card:hover .support-more,
.support-card:focus-visible .support-more {
  color: #7d663d;
  transform: translateX(3px);
}

.support-card-photo {
  background-position: center;
  background-size: cover;
}

.support-session {
  background-image: url("assets/content/support/session-chair.jpg");
}

.support-guidance {
  background-image: url("assets/content/support/guidance-path.jpg");
}

.support-course {
  background-image: url("assets/content/support/course-mountains.png");
}

.support-card-photo::after {
  background:
    linear-gradient(90deg, rgba(255, 252, 244, 0.78), rgba(255, 252, 244, 0.42) 48%, rgba(255, 252, 244, 0.12)),
    radial-gradient(circle at 20% 55%, rgba(255, 250, 232, 0.48), transparent 9rem);
}

.support-card > * {
  position: relative;
  z-index: 1;
}

.support-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: rgba(255, 252, 245, 0.5);
}

.support-icon-image {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(184, 153, 99, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 250, 0.72), transparent 45%),
    rgba(255, 250, 239, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 250, 0.34),
    0 10px 18px rgba(92, 78, 55, 0.1);
}

.support-icon-image::before {
  display: none;
  content: none;
}

.support-icon-image img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: saturate(1.12) contrast(1.06) drop-shadow(0 5px 8px rgba(92, 78, 55, 0.1));
}

.support-icon.leaf::before {
  transform: rotate(45deg);
  border-radius: 50% 0 50% 50%;
}

.support-icon.circle::before {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  transform: rotate(45deg);
}

.support-card h3 {
  font-size: 18px;
}

.support-card p {
  max-width: 285px;
  margin-top: 8px;
  color: #5f5a51;
  font-size: 12px;
  line-height: 1.42;
}

.support-more {
  display: inline-block;
  margin-top: 16px;
  color: #6d654d;
  font-size: 12px;
  font-weight: 700;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.chair {
  background: linear-gradient(135deg, #f4ead7, #ccbca4);
}

.valley {
  background: linear-gradient(135deg, #e8e0cc, #c6d0bd);
}

.ridge {
  background: linear-gradient(135deg, #c7d4ce, #e5dcc7);
}

.final-cta {
  position: relative;
  min-height: 164px;
  margin-top: 28px;
  padding: 31px 78px 36px;
  overflow: hidden;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.final-cta-image {
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 9%, #000 24%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 9%, #000 24%);
}

.final-cta::after {
  display: none;
  content: none;
  background: none;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

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

.centered {
  justify-content: center;
  margin-top: 24px;
}

.final-cta-image {
  background-image: url("assets/content/final/final-cta.jpg");
}

.cta-orbit {
  position: absolute;
  top: 23px;
  right: 155px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 252, 240, 0.58);
  border-radius: 50%;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: center;
  padding: 24px 78px 30px;
  color: #615a4e;
  border-top: 1px solid rgba(139, 122, 89, 0.14);
  background:
    linear-gradient(180deg, rgba(247, 242, 231, 0.78), rgba(239, 232, 217, 0.92)),
    radial-gradient(circle at 14% 0%, rgba(139, 155, 125, 0.18), transparent 16rem);
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: #5f5a51;
  font-size: 12px;
  font-weight: 600;
}

.site-footer a {
  position: relative;
  color: #5f5a51;
}

.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(184, 153, 99, 0.72);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #80683e;
}

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

.main-nav a.is-current {
  color: #8e7142;
}

.main-nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.articles-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 52px;
  align-items: start;
}

.articles-hero .hero-art {
  top: -34px;
  right: -56px;
  width: min(1040px, 72vw);
  z-index: 1;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 12%, rgba(0, 0, 0, 0.72) 25%, #000 43%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, #000 8%, #000 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 12%, rgba(0, 0, 0, 0.72) 25%, #000 43%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, #000 8%, #000 100%);
}

.articles-hero .hero-art::after {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.92) 0%, rgba(251, 248, 241, 0.68) 18%, rgba(251, 248, 241, 0.1) 43%, transparent 68%),
    radial-gradient(circle at 53% 46%, transparent 0 19rem, rgba(251, 248, 241, 0.08) 28rem, rgba(251, 248, 241, 0.3) 43rem),
    linear-gradient(180deg, rgba(251, 248, 241, 0.28) 0%, transparent 18%, transparent 100%);
}

.articles-hero .hero-copy {
  z-index: 3;
}

.articles-main {
  display: grid;
  gap: 40px;
}

.articles-block .section-heading {
  margin-bottom: 20px;
}

.featured-articles {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
  grid-template-rows: 210px 210px;
  gap: 20px;
}

.article-feature-card,
.article-list-card,
.reading-card,
.sidebar-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 10px;
  background: rgba(255, 252, 245, 0.72);
  box-shadow: var(--soft-shadow);
  color: inherit;
  text-decoration: none;
}

.article-feature-card {
  position: relative;
  min-height: 210px;
  border-radius: 12px;
}

.article-feature-card-large {
  grid-column: 1;
  grid-row: span 2;
  min-height: 440px;
}

.article-feature-card-wide {
  grid-column: 2 / 4;
  min-height: 210px;
}

.article-feature-card-wide:nth-child(2) {
  grid-row: 1;
}

.article-feature-card-wide:nth-child(3) {
  grid-row: 2;
}

.article-placeholder {
  position: relative;
  min-height: 118px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 248, 220, 0.76), transparent 7rem),
    linear-gradient(135deg, rgba(133, 151, 142, 0.52), rgba(240, 230, 211, 0.9));
}

.article-feature-card .article-placeholder {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.article-placeholder::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(22, 19, 15, 0.02) 0%, rgba(22, 19, 15, 0.12) 34%, rgba(22, 19, 15, 0.72) 100%),
    radial-gradient(circle at 12% 92%, rgba(255, 252, 238, 0.26), transparent 8rem);
}

.placeholder-mountains {
  background: linear-gradient(135deg, #8fa09a, #e7dfcf 58%, #c6d2cb);
}

.placeholder-candle {
  background: radial-gradient(circle at 72% 34%, #f8ddb0, transparent 27%), linear-gradient(135deg, #8b705a, #eadfca);
}

.placeholder-body {
  background: linear-gradient(135deg, #d8cbbb, #f1eadf 48%, #b9c5bb);
}

.placeholder-meditation {
  background: linear-gradient(135deg, #839591, #ece4d4);
}

.placeholder-touch {
  background: linear-gradient(135deg, #dacabd, #f4ede4 52%, #d6c3b5);
}

.placeholder-clouds {
  background: linear-gradient(135deg, #b7c7ce, #f0eadb 52%, #d6dfdd);
}

.article-feature-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 30px;
  color: #fffdf7;
  text-shadow: 0 2px 10px rgba(25, 22, 18, 0.22);
}

.article-feature-content h3 {
  max-width: 520px;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.16;
}

.article-feature-card:not(.article-feature-card-large) .article-feature-content h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.16;
}

.article-feature-card-wide .article-feature-content h3 {
  max-width: 560px;
  font-size: 28px;
  line-height: 1.18;
}

.article-feature-content p {
  max-width: 570px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
}

.article-feature-card:not(.article-feature-card-large) .article-feature-content p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.article-meta,
.article-body div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.article-meta span,
.article-body span {
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(235, 229, 211, 0.62);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 700;
}

.article-meta small,
.article-body small {
  font-size: 13px;
  font-weight: 700;
}

.articles-list-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.articles-tools {
  display: flex;
  gap: 10px;
  padding-top: 7px;
}

.articles-tools button {
  min-height: 34px;
  padding: 0 16px;
  color: #5c554b;
  border: 1px solid rgba(97, 82, 58, 0.16);
  border-radius: 999px;
  background: rgba(255, 254, 249, 0.78);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.articles-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.topic-page .topic-eyebrow {
  margin: 0 0 12px;
  color: #8d7654;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.topic-articles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.topic-articles-grid[data-count="1"],
.topic-articles-grid.is-one {
  grid-template-columns: minmax(0, 0.62fr);
}

.topic-articles-grid[data-count="2"],
.topic-articles-grid.is-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.topic-articles-grid[data-count="3"],
.topic-articles-grid.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-articles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-list-card .article-placeholder {
  min-height: 104px;
}

.article-list-card .article-body {
  min-height: 150px;
  padding: 15px 16px 18px;
}

.article-list-card .article-body span,
.article-card .article-body span {
  padding: 4px 8px;
  border-radius: 5px;
  background: #f0eadc;
  backdrop-filter: none;
  font-size: 10px;
}

.article-list-card .article-body small,
.article-card .article-body small {
  font-size: 10px;
}

.article-list-card h3 {
  margin-top: 13px;
  font-size: 16px;
  line-height: 1.25;
}

.articles-more {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.reading-routes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.reading-routes-section {
  padding-top: 38px;
}

.reading-routes-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reading-card {
  padding-bottom: 18px;
}

.reading-card .article-placeholder {
  min-height: 118px;
}

.reading-card h3,
.reading-card p,
.reading-card small,
.reading-card a {
  display: block;
  margin-right: 16px;
  margin-left: 16px;
}

.reading-card h3 {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.25;
}

.reading-card p {
  margin-top: 9px;
  color: #5f5a51;
  font-size: 12px;
  line-height: 1.45;
}

.reading-card small {
  margin-top: 12px;
  color: #8c7a5b;
  font-size: 11px;
  font-weight: 700;
}

.reading-card a {
  margin-top: 12px;
  color: #4c463c;
  font-size: 12px;
  font-weight: 700;
}

.articles-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.sidebar-card {
  padding: 23px 24px;
}

.sidebar-card h2 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.16;
}

.sidebar-card ul {
  display: grid;
  gap: 14px;
  margin: 19px 0 0;
  padding: 0;
  color: #5f5a51;
  list-style: none;
  font-size: 13px;
  line-height: 1.35;
}

.topic-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topic-list span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #a98357;
  border: 1px solid rgba(184, 153, 99, 0.22);
  border-radius: 50%;
  background: rgba(255, 252, 244, 0.62);
}

.topic-list a {
  color: inherit;
}

.topic-list a:hover {
  color: #7d6845;
}

.sidebar-card > a {
  display: inline-block;
  margin-top: 22px;
  color: #665d4e;
  font-size: 12px;
  font-weight: 700;
}

.article-page .site-header {
  margin-bottom: 10px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 62px;
  align-items: start;
  padding-top: 20px;
}

.single-article {
  min-width: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #78736a;
  font-size: 13px;
  line-height: 1.4;
}

.breadcrumbs a {
  color: #5e5a52;
}

.article-kicker {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  color: #736b5e;
  font-size: 13px;
  font-weight: 600;
}

.article-kicker span {
  padding: 7px 18px;
  color: #fffdf7;
  border-radius: 999px;
  background: #788166;
}

.article-kicker small {
  position: relative;
  font-size: 13px;
  font-weight: 600;
}

.article-kicker small::before {
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 8px;
  vertical-align: -4px;
  content: "";
  border: 1.6px solid #b78a54;
  border-radius: 50%;
}

.single-article h1 {
  max-width: 860px;
  margin-top: 14px;
  color: #24231f;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.04;
}

.article-lead {
  max-width: 760px;
  margin-top: 16px;
  color: #57534c;
  font-size: 18px;
  line-height: 1.48;
}

.article-hero-image {
  position: relative;
  min-height: 320px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(96, 79, 53, 0.12);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.article-hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 244, 208, 0.34), transparent 10rem),
    linear-gradient(180deg, transparent 46%, rgba(36, 31, 24, 0.08) 100%);
}

.article-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  max-width: 820px;
  margin-top: 30px;
}

.article-content h2 {
  margin-top: 34px;
  color: #2d2a25;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.22;
}

.article-content p,
.article-content li {
  color: #494640;
  font-size: 16px;
  line-height: 1.72;
}

.article-content p {
  margin-top: 14px;
}

.article-inline-cta {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 28px 0 4px;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(130, 111, 76, 0.18);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 12px 30px rgba(70, 62, 46, 0.07);
}

.article-inline-cta::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: #8a936f;
}

.article-inline-cta-practice {
  background:
    radial-gradient(circle at 9% 18%, rgba(196, 216, 198, 0.34), transparent 9rem),
    rgba(255, 253, 248, 0.82);
}

.article-inline-cta-course {
  background:
    radial-gradient(circle at 10% 20%, rgba(226, 205, 164, 0.42), transparent 9rem),
    rgba(255, 252, 245, 0.86);
}

.article-inline-cta-article {
  background:
    radial-gradient(circle at 10% 20%, rgba(186, 204, 212, 0.34), transparent 9rem),
    rgba(255, 253, 248, 0.82);
}

.article-inline-cta-course::before {
  background: #b89963;
}

.article-inline-cta-article::before {
  background: #81939a;
}

.article-inline-cta-preview {
  display: block;
  width: 72px;
  height: 56px;
  overflow: hidden;
  object-fit: cover;
  border: 1px solid rgba(184, 153, 99, 0.2);
  border-radius: 8px;
  background: rgba(244, 236, 220, 0.5);
  box-shadow: 0 8px 20px rgba(74, 62, 44, 0.08);
}

.article-inline-cta-copy span {
  display: inline-block;
  color: #8a6a3f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.article-inline-cta-copy h3 {
  margin: 6px 0 0;
  color: #2f2b25;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.16;
}

.article-inline-cta-copy p {
  margin-top: 6px;
  color: #625b50;
  font-size: 14px;
  line-height: 1.45;
}

.article-inline-cta > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #fffdf7;
  border-radius: 999px;
  background: #788166;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.article-inline-cta-course > a {
  background: #a98254;
}

.article-inline-cta-article > a {
  background: #697f86;
}

.article-inline-cta > a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(70, 62, 46, 0.12);
}

.content-media {
  margin: 28px 0 4px;
}

.content-image {
  margin-right: auto;
  margin-left: auto;
}

.content-image-size-medium {
  max-width: 620px;
}

.content-image-size-small {
  max-width: 420px;
}

.content-image img {
  display: block;
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.content-image-landscape img {
  aspect-ratio: 16 / 9;
}

.content-image-wide img {
  aspect-ratio: 16 / 10;
}

.content-image-square img {
  aspect-ratio: 1 / 1;
}

.content-image-portrait img {
  aspect-ratio: 3 / 4;
}

.content-image-original img {
  height: auto;
  object-fit: contain;
}

.content-media figcaption {
  margin-top: 8px;
  color: #7a7164;
  font-size: 13px;
  line-height: 1.45;
}

.content-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #2d2a25;
  box-shadow: var(--soft-shadow);
  aspect-ratio: 16 / 9;
}

.content-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-video-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 10px;
  padding: 0 14px;
  color: #fffdf7;
  border-radius: 999px;
  background: #697f86;
  font-size: 13px;
  font-weight: 700;
}

.practice-steps,
.article-bullet-list,
.article-checklist {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.practice-steps {
  counter-reset: practice-step;
}

.practice-steps li,
.article-bullet-list li,
.article-checklist li {
  position: relative;
  padding-left: 34px;
}

.practice-steps li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  counter-increment: practice-step;
  content: counter(practice-step);
  color: #fffdf7;
  border-radius: 50%;
  background: #788166;
  font-size: 12px;
  font-weight: 700;
}

.article-bullet-list li::before {
  position: absolute;
  top: 5px;
  left: 1px;
  width: 16px;
  height: 10px;
  content: "";
  border-bottom: 2px solid #788166;
  border-left: 2px solid #788166;
  transform: rotate(-45deg);
}

.article-checklist li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  content: "";
  border: 1.6px solid #788166;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 43%, #788166 44% 56%, transparent 57%),
    linear-gradient(45deg, transparent 52%, #788166 53% 62%, transparent 63%);
}

.article-content blockquote {
  margin: 34px 0 0;
  padding: 26px 34px;
  color: #5a4c3b;
  border: 1px solid rgba(211, 184, 139, 0.34);
  border-radius: 10px;
  background: rgba(252, 244, 232, 0.7);
  font-size: 20px;
  line-height: 1.55;
}

.read-next {
  padding-top: 18px;
}

.read-next-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.article-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.sidebar-search,
.mobile-menu-search {
  -webkit-appearance: none;
  appearance: none;
}

.sidebar-search {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  margin-top: 16px;
  padding: 0 14px;
  border: 1px solid rgba(196, 168, 122, 0.42);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.66);
}

.sidebar-search svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: #b7824d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sidebar-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #3d3932;
  font: inherit;
  font-size: 13px;
}

.article-author-mini {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.article-author-mini img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 50%;
}

.article-author-mini p {
  margin-top: 7px;
  color: #5f5a51;
  font-size: 13px;
  line-height: 1.45;
}

.article-author-mini a {
  display: inline-block;
  margin-top: 12px;
  color: #665d4e;
  font-size: 12px;
  font-weight: 700;
}

.compact-articles-card {
  display: grid;
  gap: 0;
  padding-bottom: 18px;
}

.compact-articles-card .compact-article {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  width: 100%;
  min-height: 78px;
  margin-top: 0;
  padding: 11px 0;
  border-bottom: 1px solid rgba(145, 119, 82, 0.12);
  box-sizing: border-box;
  transition: transform 180ms ease, opacity 180ms ease;
}

.compact-articles-card .compact-article-thumb {
  display: block;
  width: 82px;
  height: 58px;
  overflow: hidden;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(72, 58, 38, 0.1);
}

.compact-articles-card .compact-article:hover {
  transform: translateX(3px);
}

.compact-articles-card .compact-article:hover strong {
  color: #8a5b32;
}

.compact-articles-card .compact-article strong {
  display: block;
  color: #3a362f;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.32;
}

.compact-articles-card .compact-article small {
  display: block;
  margin-top: 6px;
  color: #81776a;
  font-size: 12px;
  line-height: 1;
}

.compact-articles-card > h2 {
  margin-bottom: 6px;
}

.compact-articles-card > a:not(.compact-article) {
  margin-top: 14px;
}

.start-card {
  display: grid;
  gap: 0;
  padding-bottom: 18px;
}

.start-card > h2 {
  margin-bottom: 6px;
}

.start-card .start-card-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 72px;
  margin-top: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(145, 119, 82, 0.12);
  box-sizing: border-box;
}

.start-card .start-card-row > span:first-child {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(213, 188, 143, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.95), transparent 46%),
    rgba(250, 239, 219, 0.72);
  box-shadow: 0 8px 20px rgba(74, 62, 44, 0.06);
}

.start-card .start-card-row img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.start-card .start-card-row strong,
.start-card .start-card-row small {
  display: block;
}

.start-card .start-card-row strong {
  color: #342f28;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
}

.start-card .start-card-row small {
  margin-top: 4px;
  color: #6d6357;
  font-size: 12px;
  line-height: 1.32;
}

.start-card .start-card-row:hover strong {
  color: #8a5b32;
}

.work-card {
  overflow: hidden;
  padding: 22px 0 0;
}

.work-card h2 {
  padding: 0 20px 14px;
}

.work-card .work-card-row {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 16px;
  gap: 13px;
  align-items: center;
  width: 100%;
  min-height: 84px;
  margin-top: 0;
  padding: 14px 18px 14px 20px;
  box-sizing: border-box;
  color: inherit;
  transition: background 180ms ease;
}

.work-card .work-card-row:hover {
  background: rgba(255, 250, 241, 0.74);
}

.work-card .work-card-row + .work-card-row {
  border-top: 1px solid rgba(150, 127, 92, 0.14);
}

.work-card .work-card-row::after {
  grid-column: 3;
  grid-row: 1 / 3;
  justify-self: end;
  color: #b68150;
  content: "→";
  font-size: 17px;
  line-height: 1;
}

.work-card .work-card-row > span:first-child {
  display: grid;
  grid-column: 1;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(213, 188, 143, 0.46);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.95), transparent 46%),
    rgba(250, 239, 219, 0.78);
  box-shadow: 0 8px 20px rgba(74, 62, 44, 0.07);
}

.work-card .work-card-row img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.work-card-copy {
  display: block;
  min-width: 0;
}

.work-card .work-card-row strong {
  display: block;
  color: #342f28;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
}

.work-card .work-card-row small {
  display: block;
  margin-top: 4px;
  color: #6d6357;
  font-size: 12px;
  line-height: 1.32;
}

.articles-author-card {
  grid-template-columns: 1fr;
}

.articles-author-card .author-copy {
  padding: 26px 24px 22px;
}

.articles-author-card .author-copy ul {
  display: none;
}

.articles-author-card .author-photo {
  min-height: 220px;
}

@media (max-width: 1200px) {
  .site-header,
  .section,
  .hero,
  .final-cta,
  .site-footer {
    padding-right: 36px;
    padding-left: 36px;
  }

  .site-header {
    grid-template-columns: 235px 1fr 150px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 54px;
  }

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

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

  .practice-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-author-section {
    grid-template-columns: 1fr;
  }

  .articles-layout {
    grid-template-columns: 1fr;
  }

  .practices-layout {
    grid-template-columns: 1fr;
  }

  .practice-state-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .articles-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .articles-author-card {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  }

  .articles-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .practice-library-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .single-practice-layout {
    grid-template-columns: 1fr;
  }

  .related-practices-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .read-next-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reading-routes-wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: 100%;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 18px;
    padding: 20px 24px 8px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .favorite-button {
    min-width: auto;
    padding: 12px 14px;
  }

  .section,
  .hero,
  .final-cta,
  .site-footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero {
    display: block;
    min-height: auto;
    margin-top: -104px;
    padding-top: 156px;
    padding-bottom: 44px;
  }

  .hero::before {
    width: 100%;
    background:
      radial-gradient(circle at 82% 22%, rgba(255, 238, 203, 0.1), transparent 16rem),
      linear-gradient(90deg, rgba(252, 248, 239, 0.98) 0%, rgba(252, 248, 239, 0.92) 42%, rgba(252, 248, 239, 0.52) 74%, transparent 100%);
  }

  .hero-copy {
    width: min(100%, 620px);
  }

  .hero h1 {
    max-width: 620px;
    font-size: 46px;
    line-height: 1.04;
  }

  .hero-copy p {
    max-width: 560px;
    font-size: 15px;
  }

  .hero-art {
    top: -22px;
    right: -42vw;
    width: 118vw;
    opacity: 0.82;
  }

  .hero-benefits {
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .hero-benefits li {
    max-width: 210px;
  }

  .section {
    padding-top: 36px;
  }

  .section-heading,
  .section-heading.split,
  .section-heading.split > div {
    align-items: flex-start;
  }

  .section-heading {
    gap: 18px;
  }

  .section-heading.split {
    gap: 12px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading span,
  .section-heading > div > span {
    width: 82px;
    margin-top: 16px;
  }

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

  .route-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .route-card,
  .support-card {
    max-width: none;
  }

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

  .article-author-section {
    gap: 18px;
  }

  .author-card {
    grid-template-columns: 1fr;
  }

  .author-photo {
    min-height: 300px;
    order: 2;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 18%, #000 42%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 18%, #000 42%);
  }

  .final-cta {
    min-height: 300px;
    padding-top: 54px;
    padding-bottom: 42px;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .featured-articles,
  .articles-card-grid,
  .reading-routes,
  .articles-sidebar,
  .article-sidebar,
  .read-next-grid {
    grid-template-columns: 1fr;
  }

  .practices-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .practice-featured-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .practice-feature-card,
  .practice-feature-card-large {
    grid-row: auto;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  }

  .practice-feature-card-large .practice-feature-image {
    min-height: 100%;
  }

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

  .practice-info-grid,
  .practice-after-grid {
    grid-template-columns: 1fr;
  }

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

  .article-layout {
    gap: 38px;
  }

  .single-article h1 {
    font-size: 36px;
  }

  .featured-articles {
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  .reading-routes-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-feature-card,
  .article-feature-card-large,
  .article-feature-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .featured-articles .article-feature-card,
  .featured-articles .article-feature-card-large,
  .featured-articles .article-feature-card-wide,
  .featured-articles .article-feature-card-wide:nth-child(2),
  .featured-articles .article-feature-card-wide:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }

  .articles-list-heading {
    display: grid;
  }

  .articles-tools {
    padding-top: 0;
  }

  .article-content {
    max-width: 100%;
  }

  .articles-author-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 15% 8%, rgba(225, 211, 183, 0.34), transparent 18rem),
      radial-gradient(circle at 95% 18%, rgba(184, 199, 183, 0.22), transparent 18rem),
      linear-gradient(180deg, #f9f5ec 0%, #fbf8f1 45%, #f6f0e6 100%);
  }

  .page-shell {
    position: relative;
  }

  .site-header {
    position: absolute;
    inset: 0 0 auto;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 16px 24px 0;
  }

  .brand {
    gap: 9px;
    min-width: 0;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .brand-mark img {
    width: 30px;
    height: 30px;
  }

  .brand-copy {
    letter-spacing: 0.04em;
  }

  .brand-copy strong {
    color: #9a742c;
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
  }

  .brand-copy small {
    margin-top: 3px;
    color: #6e6b66;
    font-size: 6.5px;
    font-weight: 400;
  }

  .main-nav,
  .icon-button,
  .favorite-button {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-button {
    display: inline-flex;
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    flex-direction: column;
    gap: 4px;
    color: #1f1e1b;
    border: 1px solid rgba(117, 105, 87, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 251, 0.58);
    box-shadow: 0 10px 24px rgba(80, 73, 58, 0.08);
  }

  .menu-button span {
    display: block;
    width: 15px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
  }

  .menu-button:hover,
  .menu-button:focus-visible {
    color: #8f6d2c;
    border-color: rgba(184, 153, 99, 0.44);
    background: rgba(255, 253, 247, 0.86);
    box-shadow: 0 13px 28px rgba(80, 73, 58, 0.12);
  }

  .mobile-menu {
    display: block;
  }

  .section,
  .hero,
  .final-cta,
  .site-footer {
    padding-right: 26px;
    padding-left: 26px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    height: 100svh;
    min-height: 720px;
    max-height: 880px;
    margin-top: 0;
    padding-top: 86px;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.86) 0%, rgba(250, 246, 238, 0.76) 58%, rgba(250, 246, 238, 0.1) 100%);
  }

  .hero::before {
    inset: 0 0 auto 0;
    z-index: 1;
    width: 100%;
    height: 76%;
    background:
      radial-gradient(circle at 78% 10%, rgba(232, 218, 192, 0.26), transparent 13rem),
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.96) 58%, rgba(255, 253, 248, 0.72) 78%, transparent 100%);
  }

  .hero::after {
    display: none;
  }

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

  .hero h1 {
    max-width: 100%;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
  }

  .hero-copy p {
    max-width: 100%;
    margin-top: 16px;
    color: #656b70;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
  }

  .hero-art {
    position: absolute;
    z-index: 0;
    top: auto;
    right: 0;
    bottom: -10px;
    left: 0;
    order: 2;
    width: 100%;
    height: min(42svh, 330px);
    margin-top: 0;
    opacity: 1;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.14) 7%, rgba(0, 0, 0, 0.86) 22%, #000 44%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.14) 7%, rgba(0, 0, 0, 0.86) 22%, #000 44%, #000 100%);
  }

  .hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .hero-art picture {
    height: 100%;
  }

  .hero-art::after {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.7) 0%, transparent 22%, transparent 78%, rgba(251, 248, 241, 0.64) 100%);
  }

  .articles-hero .hero-art {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .articles-hero .hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .articles-hero .hero-art::after {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.82) 0%, rgba(255, 253, 248, 0.64) 34%, rgba(255, 253, 248, 0.18) 58%, transparent 78%),
      linear-gradient(90deg, rgba(255, 253, 248, 0.86) 0%, rgba(255, 253, 248, 0.52) 44%, rgba(255, 253, 248, 0.08) 100%);
  }

  .articles-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.94) 0%, rgba(255, 253, 248, 0.72) 44%, rgba(255, 253, 248, 0.22) 72%, transparent 100%);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    margin-top: 28px;
  }

  .button {
    width: min(64vw, 250px);
    min-width: 0;
    min-height: 34px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
  }

  .hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
    padding-bottom: 0;
  }

  .hero-benefits li {
    gap: 10px;
    max-width: none;
    color: #454843;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
  }

  .line-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(184, 153, 99, 0.26);
    border-radius: 50%;
    background: rgba(244, 235, 216, 0.78);
    box-shadow: 0 8px 16px rgba(92, 78, 55, 0.08);
  }

  .line-icon img {
    width: 34px;
    height: 34px;
    filter: none;
  }

  .section {
    padding-top: 34px;
  }

  .states-section {
    padding-top: 42px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .section-heading,
  .section-heading.split {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }

  .section-heading.split > div {
    width: 100%;
  }

  .section-heading h2 {
    font-size: 26px;
    line-height: 1.12;
  }

  .section-heading span,
  .section-heading > div > span {
    flex: 1;
    width: auto;
    min-width: 64px;
  }

  .states-section .section-heading {
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    text-align: center;
  }

  .states-section .section-heading h2 {
    font-size: 26px;
    line-height: 1.08;
  }

  .states-section .section-heading span {
    flex: 0 0 auto;
    width: 54px;
    min-width: 54px;
    height: 2px;
    margin: 0;
    background: rgba(184, 153, 99, 0.92);
  }

  .section-link {
    align-self: flex-start;
  }

  .state-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .state-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 14px;
    min-height: 96px;
    padding: 16px 18px 16px 16px;
    text-align: left;
    border-color: rgba(214, 196, 165, 0.34);
    border-radius: 17px;
    background:
      radial-gradient(circle at 12% 50%, rgba(246, 239, 224, 0.42), transparent 7.4rem),
      rgba(255, 253, 248, 0.8);
    box-shadow:
      0 12px 28px rgba(82, 73, 56, 0.06),
      inset 0 0 0 1px rgba(255, 255, 250, 0.52);
  }

  .state-card::before {
    display: block;
    position: relative;
    z-index: 1;
    grid-column: 3;
    grid-row: 1 / 3;
    width: 14px;
    height: 14px;
    justify-self: end;
    content: "";
    border-top: 3px solid rgba(78, 101, 72, 0.9);
    border-right: 3px solid rgba(78, 101, 72, 0.9);
    transform: rotate(45deg);
    transition:
      border-color 180ms ease,
      transform 180ms ease;
  }

  .state-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 68px;
    height: 68px;
    margin: 0;
    border-radius: 50%;
    background:
      radial-gradient(circle at 36% 28%, rgba(255, 255, 250, 0.74), transparent 44%),
      rgba(240, 244, 235, 0.5);
  }

  .state-icon-image img {
    width: 76px;
    height: 76px;
  }

  .state-card h3 {
    grid-column: 2;
    min-height: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.16;
  }

  .state-card p {
    grid-column: 2;
    margin-top: 7px;
    color: #686765;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
  }

  .state-card:hover,
  .state-card:focus-visible {
    background:
      radial-gradient(circle at 12% 50%, rgba(246, 239, 224, 0.56), transparent 7.4rem),
      rgba(255, 253, 248, 0.94);
    box-shadow:
      0 16px 32px rgba(82, 73, 56, 0.09),
      inset 0 0 0 1px rgba(255, 255, 250, 0.62);
    transform: translateY(-2px);
  }

  .state-card:hover::before,
  .state-card:focus-visible::before {
    border-color: rgba(110, 86, 45, 0.9);
    transform: translateX(2px) rotate(45deg);
  }

  .route-grid {
    gap: 14px;
  }

  .route-image {
    min-height: 92px;
    padding: 18px;
  }

  .route-image h3 {
    font-size: 18px;
    line-height: 1.22;
  }

  .route-body {
    padding: 16px 18px 18px;
  }

  .route-step {
    font-size: 13px;
    line-height: 1.38;
  }

  .route-body b,
  .time {
    font-size: 11px;
  }

  .practice-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .practice-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    flex: 0 0 auto;
  }

  .filter-row {
    display: block;
    width: min(100%, 292px);
    margin-top: 18px;
  }

  .filter-row > .filter {
    display: none;
  }

  .practices-section .section-link {
    display: none;
  }

  .filter-select-caption {
    display: block;
    width: auto;
    min-width: 0;
    height: auto;
    margin: 0 0 7px 1px;
    color: #8b8376;
    background: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .filter-select {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 12px 0 15px;
    color: #332f29;
    border-color: rgba(126, 111, 83, 0.2);
    border-radius: 9px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(250, 246, 238, 0.88));
    box-shadow:
      0 12px 28px rgba(78, 68, 48, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
  }

  .practices-section .filter-select span {
    width: auto;
    min-width: 0;
    height: auto;
    margin: 0;
    background: none;
  }

  .filter-select:hover,
  .filter-select:focus-visible {
    color: #332f29;
    border-color: rgba(126, 111, 83, 0.34);
    outline: none;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 1), rgba(250, 246, 238, 0.96));
    box-shadow:
      0 14px 30px rgba(78, 68, 48, 0.09),
      0 0 0 3px rgba(184, 153, 99, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
    transform: none;
  }

  .filter-select.is-open .filter-select-icon {
    transform: rotate(180deg);
  }

  .filter-select-value {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    color: #332f29;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .filter-select-icon {
    flex: 0 0 auto;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: #697158;
    border-radius: 50%;
    background: rgba(232, 225, 210, 0.58);
    font-size: 13px;
    line-height: 1;
  }

  .filter-select-menu {
    position: absolute;
    z-index: 4;
    left: 0;
    width: 100%;
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    padding: 7px;
    border: 1px solid rgba(126, 111, 83, 0.16);
    border-radius: 12px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 18px 38px rgba(78, 68, 48, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .filter-select-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .filter-select-item {
    display: flex;
    width: 100%;
    min-height: 37px;
    align-items: center;
    padding: 0 11px;
    color: #595348;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
  }

  .filter-select-item.active,
  .filter-select-item:hover,
  .filter-select-item:focus-visible {
    color: #fffdf7;
    background: var(--sage);
  }

  .practice-strip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .practice-strip::-webkit-scrollbar {
    display: none;
  }

  .practice-card {
    flex: 0 0 min(82vw, 310px);
    scroll-snap-align: start;
  }

  .practice-body h3,
  .article-body h3,
  .support-card h3 {
    font-size: 18px;
    line-height: 1.24;
  }

  .practice-body p,
  .article-body p,
  .support-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  .tag,
  .article-body span,
  .article-body small,
  .practice-image span {
    font-size: 11px;
    line-height: 1.2;
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .author-card {
    padding: 22px 18px 0;
  }

  .author-copy h2 {
    font-size: 26px;
    line-height: 1.12;
  }

  .author-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .author-feature {
    grid-template-columns: 46px 1fr;
    text-align: left;
  }

  .author-feature-icon {
    width: 46px;
    height: 46px;
  }

  .author-photo {
    min-height: 250px;
  }

  .support-card {
    min-height: 180px;
    padding: 20px 18px;
  }

  .support-more {
    font-size: 13px;
  }

  .practices-hero .hero-art {
    inset: auto 0 -10px;
    width: 100%;
    height: min(42svh, 330px);
  }

  .practice-states-section {
    padding-top: 42px;
  }

  .practice-state-grid,
  .practice-library-grid,
  .practice-featured-grid {
    grid-template-columns: 1fr;
  }

  .practice-state-card {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: auto;
    align-items: center;
    align-content: center;
    gap: 12px;
  }

  .practice-state-card img {
    grid-row: 1 / 3;
    width: 50px;
    height: 50px;
  }

  .practices-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .practice-feature-card,
  .practice-feature-card-large {
    grid-template-columns: 1fr;
  }

  .practice-feature-image,
  .practice-feature-card-large .practice-feature-image {
    min-height: 180px;
  }

  .practice-feature-content,
  .practice-feature-card-large .practice-feature-content {
    min-height: auto;
    padding: 18px;
  }

  .practice-feature-card-large .practice-feature-content h3,
  .practice-feature-content h3 {
    font-size: 24px;
    line-height: 1.16;
  }

  .practice-library-heading {
    display: grid;
    gap: 8px;
  }

  .practice-library-heading .section-heading {
    margin-bottom: 0;
  }

  .practice-filter-chips {
    justify-content: flex-start;
    width: calc(100vw - 52px);
    max-width: none;
    margin-top: 0;
    margin-bottom: 18px;
  }

  .practice-filter-chips .filter-select,
  .practice-filter-chips .filter-select-menu {
    width: 100%;
  }

  .practice-library-card > div:last-child {
    min-height: auto;
  }

  .single-practice-layout {
    gap: 34px;
    padding-top: 96px;
  }

  .practice-kicker {
    margin-top: 22px;
  }

  .single-practice h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .practice-lead {
    font-size: 15px;
    line-height: 1.52;
  }

  .single-practice-image {
    height: 220px;
    min-height: 220px;
    margin-top: 24px;
  }

  .practice-info-grid {
    gap: 14px;
    margin-top: 24px;
  }

  .practice-info-card,
  .practice-after-card {
    padding: 18px;
  }

  .practice-section-icon {
    position: static;
    margin-bottom: 12px;
  }

  .practice-info-card h2,
  .practice-after-card h2 {
    font-size: 23px;
  }

  .practice-guide {
    margin-top: 30px;
  }

  .practice-guide-steps li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
  }

  .practice-guide-steps li::before {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .practice-guide-steps strong {
    font-size: 15px;
  }

  .practice-guide-steps span {
    font-size: 14px;
    line-height: 1.54;
  }

  .related-practices-grid {
    grid-template-columns: 1fr;
  }

  .practices-sidebar {
    grid-template-columns: 1fr;
  }

  .practices-sidebar .work-card {
    display: none;
  }

  .final-cta {
    display: flex;
    min-height: 720px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    padding: 62px 26px 210px;
    text-align: center;
  }

  .final-cta-image {
    background-image: url("assets/content/final/final-cta-mobile.jpg");
    background-position: center bottom;
    background-size: cover;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .final-cta h2 {
    max-width: 285px;
    color: #252b2d;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.32;
  }

  .final-cta .hero-actions {
    width: min(100%, 240px);
    align-items: stretch;
    gap: 14px;
    margin-top: 28px;
  }

  .final-cta .button {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    gap: 16px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 400;
  }

  .final-cta .button-primary {
    background: linear-gradient(135deg, rgba(132, 144, 104, 0.96), rgba(91, 103, 73, 0.98));
    box-shadow: 0 15px 28px rgba(72, 82, 57, 0.2);
  }

  .final-cta .button-secondary {
    color: #252b2d;
    border-color: rgba(101, 102, 74, 0.7);
    background: rgba(255, 252, 246, 0.34);
    box-shadow: 0 12px 28px rgba(72, 64, 48, 0.08);
  }

  .site-footer {
    align-items: center;
    padding-top: 22px;
    padding-bottom: 24px;
    color: #8d8577;
    text-align: center;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
  }

  .site-footer p,
  .site-footer a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
  }

  .articles-layout {
    gap: 34px;
  }

  .articles-main {
    gap: 34px;
  }

  .article-layout {
    gap: 34px;
    padding-top: 96px;
  }

  .breadcrumbs {
    gap: 7px;
    font-size: 11px;
  }

  .article-kicker {
    gap: 14px;
    margin-top: 24px;
    font-size: 12px;
  }

  .article-kicker span {
    padding: 6px 13px;
  }

  .single-article h1 {
    margin-top: 18px;
    font-size: 34px;
    line-height: 1.08;
  }

  .article-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.52;
  }

  .article-hero-image {
    min-height: 220px;
    margin-top: 24px;
  }

  .article-content {
    margin-top: 24px;
  }

  .article-content h2 {
    margin-top: 28px;
    font-size: 24px;
  }

  .article-content p,
  .article-content li {
    font-size: 15px;
    line-height: 1.64;
  }

  .article-content blockquote {
    padding: 20px;
    font-size: 17px;
  }

  .article-inline-cta {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
    padding: 14px 14px 16px;
  }

  .article-inline-cta-preview {
    width: 100%;
    height: 132px;
    border-radius: 9px;
  }

  .article-inline-cta-copy {
    padding: 0 2px;
  }

  .article-inline-cta-copy span {
    font-size: 10px;
  }

  .article-inline-cta-copy h3 {
    font-size: 24px;
    line-height: 1.14;
  }

  .article-inline-cta-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .article-inline-cta > a {
    grid-column: 1;
    width: 100%;
    min-height: 44px;
    margin-top: 0;
  }

  .read-next {
    margin-top: 42px;
  }

  .article-sidebar {
    gap: 16px;
  }

  .article-author-mini {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .article-author-mini img {
    width: 70px;
    height: 70px;
  }

  .articles-block .section-heading h2 {
    font-size: 26px;
  }

  .featured-articles {
    gap: 16px;
  }

  .featured-articles .article-feature-card,
  .featured-articles .article-feature-card-large,
  .featured-articles .article-feature-card-wide {
    min-height: 315px;
  }

  .featured-articles .article-feature-content {
    padding: 18px;
  }

  .featured-articles .article-feature-content h3,
  .featured-articles .article-feature-card-large .article-feature-content h3,
  .featured-articles .article-feature-card-wide .article-feature-content h3,
  .featured-articles .article-feature-card:not(.article-feature-card-large) .article-feature-content h3 {
    font-size: 20px;
    line-height: 1.22;
  }

  .featured-articles .article-feature-content p,
  .featured-articles .article-feature-card:not(.article-feature-card-large) .article-feature-content p {
    font-size: 14px;
    line-height: 1.45;
  }

  .articles-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .articles-tools button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .articles-card-grid,
  .reading-routes {
    gap: 14px;
  }

  .reading-routes-wide {
    grid-template-columns: 1fr;
  }

  .article-list-card .article-placeholder,
  .reading-card .article-placeholder {
    min-height: 132px;
  }

  .article-list-card .article-body {
    min-height: auto;
  }

  .sidebar-card {
    padding: 21px 20px;
  }

  .sidebar-card h2 {
    font-size: 22px;
  }

  .articles-author-card .author-photo {
    min-height: 250px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 28px;
  }

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

  .state-card {
    min-height: auto;
  }
}

@media (max-width: 1200px) {
  .courses-page .site-header {
    grid-template-columns: 235px 1fr 70px;
  }

  .work-page .site-header {
    grid-template-columns: 235px 1fr 70px;
  }

  .work-hero,
  .work-about-section,
  .work-formats-section,
  .work-help-section,
  .work-testimonials-section,
  .work-process-section,
  .work-safety-section,
  .work-soft-start-section {
    padding-right: 36px;
    padding-left: 36px;
  }

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

  .work-help-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-about-card {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .work-principles {
    grid-column: 1 / -1;
  }

  .work-bottom-cta {
    margin-right: 36px;
    margin-left: 36px;
  }

  .courses-hero,
  .courses-audience,
  .courses-list-section,
  .course-teacher-section {
    padding-right: 36px;
    padding-left: 36px;
  }

  .courses-benefits {
    right: 36px;
    left: 36px;
    gap: 26px;
  }

  .courses-grid {
    gap: 18px;
  }

  .course-card h2 {
    font-size: 27px;
  }

  .courses-bottom-cta {
    margin-right: 36px;
    margin-left: 36px;
  }
}

@media (max-width: 900px) {
  .courses-page .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .work-page .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .work-hero {
    min-height: auto;
    margin-top: -104px;
    padding: 142px 24px 34px;
  }

  .work-hero-copy {
    width: min(100%, 560px);
  }

  .work-hero h1 {
    font-size: 46px;
  }

  .work-hero-art {
    right: -28vw;
    width: 86vw;
    opacity: 0.72;
  }

  .work-hero-benefits {
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 18px 28px;
  }

  .work-about-section,
  .work-formats-section,
  .work-help-section,
  .work-testimonials-section,
  .work-process-section,
  .work-safety-section,
  .work-soft-start-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .work-about-card {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 22px;
  }

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

  .work-principles article:nth-child(2) {
    border-right: 0;
  }

  .work-principles article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(96, 79, 53, 0.1);
  }

  .work-testimonials-grid,
  .work-process-row,
  .work-soft-grid {
    grid-template-columns: 1fr;
  }

  .work-process-row article:not(:last-child)::after {
    display: none;
  }

  .work-safety-card {
    grid-template-columns: 1fr;
  }

  .work-bottom-cta {
    min-height: 270px;
    margin-right: 24px;
    margin-left: 24px;
    padding: 42px 34px;
  }

  .work-bottom-cta h2 {
    font-size: 31px;
  }

  .courses-hero {
    min-height: auto;
    margin-top: -104px;
    padding: 142px 24px 30px;
  }

  .courses-hero-copy {
    width: min(100%, 560px);
    padding-top: 20px;
  }

  .courses-hero h1 {
    font-size: 46px;
  }

  .courses-hero-art {
    right: -34vw;
    width: 120vw;
    opacity: 1;
  }

  .courses-benefits {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
    margin-top: 36px;
  }

  .courses-audience,
  .courses-list-section,
  .course-teacher-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .courses-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

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

  .course-card {
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
  }

  .course-card-image,
  .course-card-image::after {
    height: 100%;
    min-height: 330px;
  }

  .course-card-icon {
    position: absolute;
    top: 42px;
    left: calc(42% - 35px);
    margin: 0;
  }

  .course-card-body {
    padding: 34px 28px 28px;
  }

  .course-teacher-card {
    grid-template-columns: 1fr;
  }

  .course-teacher-photo {
    min-height: 330px;
  }

  .course-teacher-copy ul {
    grid-template-columns: 1fr;
  }

  .courses-bottom-cta {
    min-height: 270px;
    margin-right: 24px;
    margin-left: 24px;
    padding: 42px 34px;
  }
}

@media (max-width: 640px) {
  .work-hero {
    display: grid;
    min-height: 100svh;
    align-items: start;
    margin-top: 0;
    padding: 107px 22px 28px;
    background: #2f281f;
  }

  .work-hero::before {
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(251, 248, 241, 0.92) 0%, rgba(251, 248, 241, 0.76) 15%, rgba(251, 248, 241, 0.36) 28%, transparent 38%),
      radial-gradient(circle at 20% 20%, rgba(255, 238, 197, 0.2), transparent 15rem);
  }

  .work-hero-copy {
    position: static;
    width: 100%;
    padding: 0;
  }

  .work-hero h1,
  .work-hero p {
    position: relative;
    z-index: 2;
  }

  .work-hero h1 {
    max-width: 300px;
    color: #28231d;
    font-size: 38px;
    line-height: 1;
  }

  .work-hero p {
    max-width: 60vw;
    margin-top: 14px;
    color: #4c4439;
    font-size: 15px;
    line-height: 1.48;
  }

  .work-hero .hero-actions,
  .work-bottom-cta .hero-actions {
    display: grid;
    gap: 12px;
  }

  .work-hero .hero-actions {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 100px;
    left: 22px;
    justify-items: center;
  }

  .work-hero .button,
  .work-bottom-cta .button {
    width: 100%;
    min-width: 0;
  }

  .work-hero .button {
    width: max-content;
    max-width: 100%;
    min-height: 42px;
    padding: 11px 18px;
    white-space: nowrap;
    color: #fffaf0;
    border-color: rgba(255, 235, 205, 0.34);
    background:
      linear-gradient(180deg, rgba(246, 203, 122, 0.42), rgba(255, 255, 255, 0.08) 42%, transparent 64%),
      linear-gradient(135deg, #b9823e, #8b542c 54%, #744124);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.26),
      0 14px 30px rgba(71, 42, 23, 0.28);
    font-size: 13px;
  }

  .work-hero-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .work-hero-art img {
    content: url("assets/content/author/pavel-veter-work-hero-mobile.jpg");
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.96) contrast(0.98);
  }

  .work-hero-art::after {
    background:
      linear-gradient(180deg, rgba(251, 248, 241, 0.78) 0%, rgba(251, 248, 241, 0.52) 16%, rgba(251, 248, 241, 0.16) 30%, transparent 38%);
  }

  .work-hero-benefits {
    display: none;
  }

  .work-hero-benefits li {
    min-height: 82px;
    padding: 14px;
    border: 1px solid rgba(185, 145, 91, 0.18);
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.58);
    font-size: 13px;
  }

  .work-about-card,
  .work-format-grid,
  .work-help-grid {
    grid-template-columns: 1fr;
  }

  .work-about-photo {
    display: none;
  }

  .work-principles {
    grid-template-columns: 1fr;
  }

  .work-principles article,
  .work-principles article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(96, 79, 53, 0.1);
  }

  .work-principles article:last-child {
    border-bottom: 0;
  }

  .work-format-image {
    height: 170px;
  }

  .work-help-grid article {
    min-height: auto;
  }

  .work-safety-card {
    padding: 24px 22px;
  }

  .work-safety-card > div {
    align-items: flex-start;
  }

  .work-bottom-cta {
    display: grid;
    min-height: 100svh;
    align-items: start;
    margin: 28px 0 0;
    padding: 38px 24px 56px;
    border-radius: 0;
    background-image: url("assets/content/final/work-with-me-cta-mobile.jpg");
    background-position: center;
    background-size: cover;
  }

  .work-bottom-cta > div {
    width: 60%;
    max-width: 260px;
  }

  .work-bottom-cta h2 {
    font-size: 31px;
  }

  .work-bottom-cta p {
    max-width: none;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.46;
  }

  .work-bottom-cta .hero-actions {
    margin-top: 20px;
  }

  .courses-hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    margin-top: 0;
    padding: 76px 0 34px;
    background: linear-gradient(180deg, #fffaf2 0%, #fbf7ee 100%);
  }

  .courses-hero::before {
    display: none;
  }

  .courses-hero-art {
    position: relative;
    inset: auto;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    order: 1;
    width: 100%;
    height: 280px;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 0 0 14px 14px;
    opacity: 1;
  }

  .courses-hero-art::after {
    display: none;
  }

  .courses-hero-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-position: center center;
  }

  .courses-hero-copy {
    order: 2;
    width: 100%;
    padding: 42px 26px 0;
  }

  .courses-hero h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .courses-hero p {
    margin-top: 16px;
    color: #1f2a33;
    font-size: 15px;
    line-height: 1.45;
  }

  .courses-hero .hero-actions,
  .courses-bottom-cta .hero-actions {
    display: grid;
    gap: 12px;
  }

  .courses-hero .button,
  .courses-bottom-cta .button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    font-size: 14px;
  }

  .courses-benefits {
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 28px 26px 0;
  }

  .courses-benefits li {
    min-height: 82px;
    padding: 14px;
    border: 1px solid rgba(185, 145, 91, 0.18);
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.54);
    box-shadow: 0 10px 24px rgba(84, 70, 48, 0.05);
    font-size: 13px;
    line-height: 1.28;
  }

  .courses-benefits li > span:first-child {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border: 0;
    background: transparent;
  }

  .courses-benefits img {
    width: 38px;
    height: 38px;
  }

  .courses-audience-grid {
    grid-template-columns: 1fr;
  }

  .courses-audience {
    text-align: left;
  }

  .courses-audience h2 {
    font-size: 29px;
  }

  .courses-audience-grid article {
    justify-content: flex-start;
  }

  .course-card {
    display: block;
  }

  .course-card-image,
  .course-card-image::after {
    height: 190px;
    min-height: 190px;
  }

  .course-card-icon {
    position: relative;
    top: auto;
    left: auto;
    width: 62px;
    height: 62px;
    margin: -32px 0 0 24px;
  }

  .course-card-icon img {
    width: 34px;
    height: 34px;
  }

  .course-card-body {
    padding: 20px 20px 22px;
  }

  .course-card h2 {
    font-size: 25px;
  }

  .course-teacher-photo {
    min-height: 260px;
  }

  .course-teacher-copy {
    padding: 28px 22px 24px;
  }

  .course-teacher-copy h2 {
    font-size: 27px;
  }

  .courses-bottom-cta {
    margin-top: 28px;
    padding: 34px 22px;
    background-image:
      linear-gradient(180deg, rgba(249, 245, 236, 0.84), rgba(249, 245, 236, 0.52)),
      url("assets/content/final/final-cta-mobile.jpg");
  }

  .courses-bottom-cta h2 {
    font-size: 27px;
  }
}
