:root {
  color-scheme: light;
  --bg: #faf7f4;
  --bg-elevated: #ffffff;
  --bg-muted: #ede5dd;
  --surface: #ebe4dc;
  --text: #171412;
  --muted: #3f3a36;
  --accent: #b45309;
  --accent-soft: rgba(180, 83, 9, 0.14);
  --accent-hover: #9a3412;
  --accent-deep: #7c2d12;
  --border: rgba(28, 25, 23, 0.12);
  --border-light: rgba(28, 25, 23, 0.08);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 12px 40px rgba(28, 25, 23, 0.07);
  --shadow-premium: 0 20px 50px rgba(28, 25, 23, 0.1);
  --cta-shadow: 0 2px 10px rgba(124, 45, 18, 0.28);
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --max: 1120px;
  --header-h: 72px;
  --dev-banner-h: 40px;
  --site-top-stack: calc(var(--dev-banner-h) + var(--header-h));
  --section-pad-y: 4.25rem;
  --tile-pad: 1.35rem 1.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  background-image: radial-gradient(
      ellipse 90% 50% at 50% -10%,
      rgba(180, 83, 9, 0.06),
      transparent 58%
    ),
    radial-gradient(
      ellipse 45% 35% at 100% 15%,
      rgba(124, 45, 18, 0.04),
      transparent 52%
    );
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-top {
  position: sticky;
  top: 0;
  z-index: 50;
}

.dev-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--dev-banner-h);
  padding: 0.4rem 1rem;
  background: var(--muted);
  color: #faf7f4;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.dev-banner p {
  margin: 0;
  max-width: 48rem;
}

.dev-banner strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header {
  position: relative;
  z-index: 1;
  background: rgba(250, 247, 244, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  min-width: 0;
}

.brand-credential {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .brand-credential {
    font-size: 0.75rem;
  }
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav--primary {
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 0.35rem;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
}

.nav a:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.nav .btn-nav {
  margin-left: 0.35rem;
  background: var(--accent);
  color: #fff !important;
  padding: 0.55rem 1rem;
  font-size: 0.9375rem;
  border: 2px solid var(--accent-hover);
  box-shadow: var(--cta-shadow);
}

.nav .btn-nav:hover {
  background: var(--accent-hover);
  color: #fff !important;
  border-color: var(--accent-deep);
  box-shadow: 0 3px 12px rgba(124, 45, 18, 0.35);
}

main {
  overflow-x: clip;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem 4.25rem;
  display: grid;
  gap: 2.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 4.75rem;
    padding-bottom: 5.25rem;
    align-items: center;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-lede {
  font-size: 1.0625rem;
  color: var(--text);
  max-width: 52ch;
  margin: 0 0 1rem;
}

.hero-lede strong {
  color: var(--text);
}

.hero-result,
.hero-different {
  font-size: 1rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 1rem;
  line-height: 1.7;
}

.hero-result strong,
.hero-different strong {
  color: var(--text);
}

.hero-different {
  margin-bottom: 1.5rem;
}

.hero--conversion .hero-actions {
  margin-top: 0.25rem;
}

.btn-ghost {
  background: transparent;
  color: var(--accent-deep);
  border: 2px dashed var(--accent);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: var(--accent-hover);
  border-style: solid;
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.hero-card--proof h2 {
  font-size: 1.15rem;
}

.hero-card-foot {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-card-foot a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.hero-card-foot a:hover {
  text-decoration: underline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent-hover);
  box-shadow: var(--cta-shadow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  border-color: var(--accent-deep);
  box-shadow: 0 3px 14px rgba(124, 45, 18, 0.38);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border: 2px solid var(--border);
  box-shadow: none;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--text);
  background: #fff;
}

.hero-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: none;
  padding: 1.5rem 1.4rem;
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.hero-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--muted);
}

.hero-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-pad-y) 1.25rem;
}

.section-header {
  max-width: 52ch;
  margin-bottom: 2.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.bg-band {
  background: var(--bg-muted);
  border-radius: 0;
  border: none;
}

.cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .cards.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--tile-pad);
  box-shadow: none;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}

.steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
  padding: 1.75rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  padding-top: 0.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(180, 83, 9, 0.18);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-panel {
  background: linear-gradient(135deg, #0f2f2a 0%, #1f5e53 100%);
  color: #ffffff;
  opacity: 1;
  border-radius: var(--radius-lg);
  padding: 3.25rem 2rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Never use bare `.contact-panel a { color: white }` — it beats `.btn-on-dark` and paints white-on-white. */

@media (min-width: 768px) {
  .contact-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.75rem;
    align-items: center;
    padding: 3.75rem 3rem;
  }

  .contact-panel--premium {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
}

.contact-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin: 0 0 1rem;
  color: #ffffff;
  opacity: 1;
}

.contact-panel .contact-panel-text p {
  margin: 0;
  max-width: 40ch;
  color: #e6f1ee;
  opacity: 1;
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
}

.contact-actions .btn-light {
  background: #ffffff;
  color: #0f2f2a;
  border: none;
}

.contact-actions .btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

/* Phone/email CTAs live in .contact-panel-ctas (not .contact-actions); without these they inherit green link color on dark green. */
.contact-panel-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
  max-width: 280px;
}

.contact-panel-ctas .btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  background: #ffffff !important;
  color: #0f2f2a !important;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  transition: background 0.2s, transform 0.15s, color 0.2s;
  opacity: 1;
  -webkit-text-fill-color: #0f2f2a;
}

.contact-panel-ctas .btn-light:hover,
.contact-panel-ctas .btn-light:focus,
.contact-panel-ctas .btn-light:visited {
  color: #0f2f2a !important;
  background: #f0faf8 !important;
  -webkit-text-fill-color: #0f2f2a;
}

.contact-panel-ctas .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff;
  opacity: 1;
  -webkit-text-fill-color: #ffffff;
}

.contact-panel-ctas .btn-outline:hover,
.contact-panel-ctas .btn-outline:focus,
.contact-panel-ctas .btn-outline:visited {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.contact-actions--stack {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 0;
  width: 100%;
}

@media (max-width: 767px) {
  .contact-panel--premium {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
  }
}

.btn-on-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  background: #ffffff !important;
  color: #0f2f2a !important;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  transition: background 0.2s, transform 0.15s, color 0.2s;
  opacity: 1;
  -webkit-text-fill-color: #0f2f2a;
}

.btn-on-dark:hover,
.btn-on-dark:focus,
.btn-on-dark:visited {
  color: #0f2f2a !important;
  background: #f0faf8 !important;
  -webkit-text-fill-color: #0f2f2a;
}

.btn-on-dark-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  opacity: 1;
  -webkit-text-fill-color: #ffffff;
}

.btn-on-dark-outline:hover,
.btn-on-dark-outline:focus,
.btn-on-dark-outline:visited {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #ffffff;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}

.contact-micro {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 1;
}

.contact-micro span[aria-hidden="true"] {
  color: #ffffff;
  opacity: 1;
}

.contact-panel .text-link {
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #ffffff;
  text-underline-offset: 3px;
  opacity: 1 !important;
  -webkit-text-fill-color: #ffffff;
}

.contact-panel .text-link:hover,
.contact-panel .text-link:focus,
.contact-panel .text-link:visited {
  color: #ffffff !important;
  text-decoration-color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.text-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.text-link:hover {
  text-decoration: underline;
}

.section-kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 0.65rem;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2.5rem;
}

.btn-block {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

.section--contact {
  padding-bottom: 4.5rem;
}

.who-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 640px) {
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.who-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--tile-pad);
  box-shadow: none;
}

.who-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.who-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.split-lede {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.65;
}

.why-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
  max-width: 720px;
}

.why-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  line-height: 1.65;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.why-list strong {
  color: var(--text);
}

.card--outcome h3 {
  font-size: 1.15rem;
}

.programs-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.program-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.program-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.program-for {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.program-card > p:not(.program-for):not(.program-badge) {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.97rem;
  flex-grow: 1;
}

.program-includes {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.program-includes li {
  margin-bottom: 0.35rem;
}

.authority-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.authority-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--tile-pad);
  box-shadow: none;
}

.authority-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.authority-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.authority-list li {
  margin-bottom: 0.4rem;
}

.note-inline {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--muted);
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-footer .logo {
  font-size: 1.05rem;
}

.footer-copy {
  margin: 0;
  max-width: 42ch;
  text-align: right;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .footer-copy {
    text-align: left;
    max-width: none;
  }
}

.clinician-intro {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--tile-pad);
  margin-bottom: 2rem;
  box-shadow: none;
}

.clinician-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.clinician-credential-line {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.clinician-lede {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 68ch;
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--site-top-stack) 0 auto 0;
    background: rgba(250, 247, 244, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    max-height: calc(100vh - var(--site-top-stack));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav a {
    padding: 0.85rem 0.5rem;
    border-radius: var(--radius);
  }

  .nav .btn-nav {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }
}

