:root {
  --ink: #332d29;
  --muted: #756f68;
  --paper: #fbf8f1;
  --soft: #f1eadc;
  --gold: #c5a116;
  --gold-dark: #9d7d0d;
  --clay: #91877d;
  --charcoal: #504741;
  --light-dot: #d8bf58;
  --pastel-gold: #c9b63a;
  --pastel-clay: #b3aaa1;
  --pastel-charcoal: #675d56;
  --pastel-light: #decf72;
  --line: rgba(51, 45, 41, 0.13);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 248, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
}

.brand strong {
  color: var(--gold-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.nav a {
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
  background: rgba(197, 161, 22, 0.14);
}

.nav a.nav-cta {
  color: #fff;
  background: var(--ink);
}

.hero {
  min-height: min(720px, calc(100vh - 73px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(38px, 5vw, 62px) clamp(18px, 5vw, 72px);
}

.hero-copy,
.page-hero,
.program-hero {
  max-width: 760px;
}

.dot-cluster,
.dot-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dot-cluster span,
.dot-row span {
  display: block;
  border-radius: 999px;
}

.dot-cluster span:nth-child(1),
.dot-row span:nth-child(1) {
  background: var(--gold);
}

.dot-cluster span:nth-child(2),
.dot-row span:nth-child(2) {
  background: var(--charcoal);
}

.dot-cluster span:nth-child(3),
.dot-row span:nth-child(3) {
  background: var(--clay);
}

.dot-cluster span:nth-child(4),
.dot-row span:nth-child(4) {
  background: var(--light-dot);
}

.dot-cluster span {
  width: 16px;
  height: 16px;
}

.dot-cluster span:nth-child(1) {
  width: 30px;
  height: 30px;
}

.dot-cluster span:nth-child(3) {
  width: 22px;
  height: 22px;
}

.hero-dots {
  margin-bottom: 22px;
}

.dot-row {
  margin-bottom: 16px;
}

.dot-row.center {
  justify-content: center;
}

.dot-row span {
  width: 11px;
  height: 11px;
}

.dot-row span:nth-child(2) {
  width: 14px;
  height: 14px;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1,
.section h2,
.page-hero h1,
.program-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  max-width: 820px;
}

h1 span {
  color: var(--gold-dark);
}

.lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.hero p,
.page-hero p,
.program-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-mark {
  justify-self: center;
  width: min(100%, 440px);
  aspect-ratio: 1;
  border-radius: 42px;
  background: var(--soft);
  display: grid;
  place-items: center;
  padding: 28px;
  box-shadow: 0 28px 70px rgba(51, 45, 41, 0.12);
}

.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 28px;
}

.hero-person {
  width: min(100%, 390px);
  border-radius: 49% 51% 48% 52% / 54% 47% 53% 46%;
  padding: 0;
  overflow: hidden;
}

.hero-person img {
  object-fit: cover;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.section,
.page-hero,
.program-hero {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.page-hero,
.program-hero {
  margin-inline: auto;
}

.page-hero::before,
.program-hero::before {
  content: "";
  display: block;
  width: 96px;
  height: 22px;
  margin: 0 auto 24px;
  background:
    radial-gradient(circle at 11px 11px, var(--gold) 0 10px, transparent 10.5px),
    radial-gradient(circle at 38px 11px, var(--charcoal) 0 7px, transparent 7.5px),
    radial-gradient(circle at 63px 11px, var(--clay) 0 9px, transparent 9.5px),
    radial-gradient(circle at 88px 11px, var(--light-dot) 0 7px, transparent 7.5px);
}

.program-hero {
  text-align: center;
}

.program-hero .button {
  margin-top: 16px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
}

.profile-band,
.profile-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.profile-hero {
  max-width: 1180px;
}

.profile-photo {
  position: relative;
  overflow: hidden;
  border-radius: 49% 51% 48% 52% / 54% 47% 53% 46%;
  background: var(--soft);
  box-shadow: 0 24px 58px rgba(51, 45, 41, 0.13);
}

.profile-photo::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  pointer-events: none;
}

.profile-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.profile-symbol {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
}

.profile-symbol::before {
  content: "";
  position: absolute;
  width: min(82%, 310px);
  aspect-ratio: 1;
  border-radius: 48% 52% 46% 54% / 52% 45% 55% 48%;
  background: var(--soft);
  box-shadow: 0 24px 58px rgba(51, 45, 41, 0.1);
}

.profile-symbol img {
  position: relative;
  z-index: 1;
  width: min(58%, 210px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(51, 45, 41, 0.12));
}

.profile-symbol-dots {
  position: absolute;
  inset: 10%;
  pointer-events: none;
}

.profile-symbol-dots span {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0.9;
}

.profile-symbol-dots span:nth-child(1) {
  width: 54px;
  height: 54px;
  left: 8%;
  top: 18%;
  background: #e8c451;
}

.profile-symbol-dots span:nth-child(2) {
  width: 38px;
  height: 38px;
  right: 12%;
  top: 12%;
  background: #dba466;
}

.profile-symbol-dots span:nth-child(3) {
  width: 46px;
  height: 46px;
  left: 18%;
  bottom: 10%;
  background: #d7c9a7;
}

.profile-symbol-dots span:nth-child(4) {
  width: 28px;
  height: 28px;
  right: 18%;
  bottom: 20%;
  background: #3a332f;
}

.hero-profile {
  justify-self: center;
  width: min(100%, 390px);
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
}

.text-link {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.section h2,
.page-hero h1,
.program-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.rich-text p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.03rem;
}

.rich-text p.signature {
  margin-top: 28px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

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

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

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

.practice-dots {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: clamp(18px, 3vw, 34px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.practice-dots.course-dots.three {
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  max-width: 980px;
}

.practice-dots.course-dots.two {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  max-width: 820px;
}

.practice-dots.testimonial-dots {
  grid-template-columns: repeat(2, minmax(330px, 1fr));
  max-width: 980px;
  gap: clamp(26px, 4vw, 54px);
}

.practice-dot {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 1;
  min-height: 230px;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 47% 53% 49% 51% / 52% 46% 54% 48%;
  color: var(--dot-text, var(--ink));
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.18), transparent 0 34%),
    radial-gradient(circle at 62% 68%, rgba(51, 45, 41, 0.08), transparent 0 46%),
    var(--dot-base);
  box-shadow: 0 20px 45px rgba(51, 45, 41, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.course-dots .practice-dot {
  min-height: 270px;
  padding: clamp(26px, 3vw, 42px);
}

.course-dots.two .practice-dot {
  min-height: 360px;
}

.testimonial-dots .practice-dot {
  min-height: 430px;
  padding: clamp(34px, 4vw, 54px);
}

.testimonial-dots .practice-dot p {
  margin: 0;
  font-size: clamp(0.88rem, 1.18vw, 0.98rem);
  line-height: 1.42;
}

.testimonial-dots .practice-dot cite {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 18px;
  color: var(--dot-label, currentColor);
  font-style: normal;
  font-weight: 800;
}

.practice-dot::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  pointer-events: none;
}

.practice-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: 49% 51% 53% 47% / 48% 54% 46% 52%;
  background: var(--dot-edge);
  clip-path: polygon(50% 0%, 56% 2%, 61% 1%, 67% 4%, 73% 7%, 78% 10%, 84% 13%, 87% 18%, 91% 23%, 94% 29%, 96% 35%, 99% 42%, 98% 49%, 100% 56%, 97% 63%, 95% 70%, 91% 76%, 88% 82%, 82% 86%, 77% 91%, 70% 94%, 63% 97%, 56% 98%, 49% 100%, 42% 98%, 35% 97%, 28% 94%, 22% 91%, 16% 87%, 12% 82%, 8% 76%, 5% 70%, 3% 63%, 0% 56%, 2% 49%, 1% 42%, 3% 35%, 5% 28%, 9% 22%, 13% 17%, 18% 12%, 24% 8%, 30% 5%, 37% 2%, 44% 3%);
  opacity: 0.42;
  filter: blur(0.4px);
  pointer-events: none;
}

.practice-dot:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(51, 45, 41, 0.14);
}

.practice-dot .card-label,
.practice-dot h3,
.practice-dot p {
  position: relative;
  z-index: 1;
}

.practice-dot .card-label {
  color: var(--dot-label, var(--dot-text, var(--ink)));
}

.practice-dot h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.practice-dot p {
  margin: 0;
  font-size: 0.96rem;
}

.course-dots .practice-dot p {
  font-size: 0.92rem;
}

.course-dots .practice-dot h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.practice-dot.dot-gold {
  --dot-base: var(--pastel-gold);
  --dot-edge: #bfae2d;
  --dot-text: #302a25;
  --dot-label: #6f5b0d;
}

.practice-dot.dot-clay {
  --dot-base: var(--pastel-clay);
  --dot-edge: #a79e95;
  --dot-text: #302a25;
  --dot-label: #5d5149;
  border-radius: 52% 48% 50% 50% / 46% 53% 47% 54%;
}

.practice-dot.dot-dark {
  --dot-base: var(--pastel-charcoal);
  --dot-edge: #5a514b;
  --dot-text: #fff;
  --dot-label: #fff;
  border-radius: 49% 51% 46% 54% / 55% 48% 52% 45%;
}

.practice-dot.dot-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.practice-dot.dot-softgold {
  --dot-base: var(--pastel-light);
  --dot-edge: #d4c560;
  --dot-text: #302a25;
  --dot-label: #66540e;
  border-radius: 46% 54% 53% 47% / 50% 45% 55% 50%;
}

.card,
.testimonials article {
  display: block;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.64);
}

.card h2,
.card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.card p,
.testimonials p {
  margin: 0;
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.blog-card {
  display: grid;
  gap: 14px;
  padding: 14px 14px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(51, 45, 41, 0.12);
}

.blog-card img,
.article-hero img {
  display: block;
  width: 100%;
  border-radius: 7px;
  object-fit: cover;
}

.blog-card img {
  aspect-ratio: 16 / 10;
}

.blog-card h2,
.blog-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.article-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 94px) clamp(18px, 5vw, 72px) 0;
}

.article-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.article-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.article-hero img {
  margin-top: 30px;
  aspect-ratio: 16 / 9;
}

.article-layout {
  max-width: 920px;
  margin: 0 auto;
}

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

.article-content h2 {
  margin: 38px 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.article-content blockquote {
  margin: 28px 0;
  padding-left: 22px;
  border-left: 4px solid var(--gold);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.28;
}

.article-content li {
  margin-bottom: 10px;
  color: var(--muted);
}

.source-note {
  color: var(--gold-dark) !important;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

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

.course-faq .faq-list {
  max-width: 980px;
}

.course-faq .section-heading {
  margin-bottom: 24px;
}

.faq-list.compact {
  margin: 0;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band > div {
  max-width: 760px;
}

.cta-band p {
  color: var(--muted);
}

.social-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
}

.social-card .social-icon {
  flex: 0 0 auto;
}

.social-card > span:last-child {
  min-width: 0;
}

.social-card h2 {
  overflow-wrap: anywhere;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #211d1a;
  background: var(--pastel-light);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: var(--pastel-gold);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.quote-band {
  position: relative;
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.quote-dots {
  max-width: 920px;
  margin: 0 auto 26px;
}

.quote-dots span:nth-child(2) {
  background: #fff;
}

.quote-band blockquote {
  max-width: 920px;
  margin: 0 auto;
}

.quote-band p {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  line-height: 1.18;
}

.quote-band cite {
  color: #e5d7b5;
  font-style: normal;
  font-weight: 800;
}

.testimonials {
  max-width: 1120px;
  margin: 0 auto;
  columns: 2;
  column-gap: 18px;
}

.testimonials article {
  break-inside: avoid;
  margin: 0 0 18px;
  background: #fff;
}

.site-footer {
  padding: 52px clamp(18px, 5vw, 72px) 28px;
  color: #d8d1c7;
  background: #211d1a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand span,
.site-footer h2 {
  color: #fff;
  font-size: 1rem;
}

.site-footer p,
.site-footer li {
  color: #b9b0a7;
}

.site-footer ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.site-footer a {
  color: #f2d667;
  text-decoration: none;
}

.site-footer .social-links {
  margin: 12px 0 14px;
}

.site-footer .social-icon {
  color: #211d1a;
  background: #f2d667;
  border-color: rgba(255, 255, 255, 0.24);
}

.site-footer .social-icon svg {
  fill: currentColor;
}

.site-footer .social-icon:hover {
  color: #211d1a;
  background: #fff2a8;
}

.footer-bottom {
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 30px;
  text-align: center;
}

.redirect-page h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .intro-grid,
  .profile-band,
  .profile-hero,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards.four,
  .cards.three,
  .cards.two,
  .practice-dots,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practice-dots.course-dots.three,
  .practice-dots.course-dots.two,
  .practice-dots.testimonial-dots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 12px;
    padding: 10px 14px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 8px;
  }

  .site-header.nav-open .nav {
    display: grid;
  }

  .nav a {
    min-height: 44px;
    width: 100%;
    padding: 9px 10px;
    font-size: 0.82rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .cards.four,
  .cards.three,
  .cards.two,
  .practice-dots,
  .blog-grid,
  .testimonials {
    grid-template-columns: 1fr;
    columns: 1;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .practice-dot {
    width: min(100%, 300px);
    min-height: 300px;
    margin-inline: auto;
  }

  .course-dots .practice-dot,
  .course-dots.two .practice-dot,
  .testimonial-dots .practice-dot {
    min-height: 300px;
  }

  .practice-dots.testimonial-dots {
    grid-template-columns: 1fr;
  }

  .practice-dots.course-dots.three,
  .practice-dots.course-dots.two {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    border-radius: 24px;
  }
}
