@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,400&display=swap");

:root {
  --ivory: #fdfbf7;
  --sand: #f1eae0;
  --sand-2: #e4d9c8;
  --deep: #0f2a1d;
  --deep-2: #173726;
  --moss: #39604a;
  --sage: #9bb49c;
  --sage-soft: #d7e2d5;
  --terra: #c1653f;
  --terra-2: #a2502f;
  --honey: #e0b15e;
  --ink: #1e211d;
  --ink-2: #5c635a;
  --line: rgba(15, 42, 29, 0.12);
  --r-lg: 32px;
  --r-md: 22px;
  --r-sm: 14px;
  --shadow: 0 30px 70px -40px rgba(15, 42, 29, 0.45);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  padding-bottom: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.015em;
}
h1 {
  font-size: clamp(3rem, 6.4vw, 5.4rem);
}
h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.7rem);
}
h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
}
p {
  margin: 0 0 1.05em;
}
.wrap {
  width: min(var(--max), calc(100% - 52px));
  margin-inline: auto;
}
.kicker {
  margin: 0 0 1rem;
  color: var(--moss);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.kicker.on-dark {
  color: var(--honey);
}
.lede {
  max-width: 64ch;
  color: var(--ink-2);
  font-size: 1.16rem;
}
.center {
  text-align: center;
}
.center .lede {
  margin-inline: auto;
}
.skip {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.7rem 1.2rem;
  color: #fff;
  background: var(--terra);
}
.skip:focus {
  top: 8px;
  left: 8px;
}

.preview {
  padding: 0.35rem 1rem;
  color: var(--deep);
  background: var(--sage-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}
.util {
  color: rgba(255, 255, 255, 0.8);
  background: var(--deep);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.util .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  padding-block: 0.5rem;
}
.util a {
  color: #fff;
  text-decoration: none;
}
.util .right {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}
header.site {
  position: sticky;
  z-index: 120;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(16px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding-block: 0.8rem;
}
.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.leaf {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--deep);
}
.leaf svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.7;
}
.brand b {
  display: block;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 1.44rem;
  font-weight: 400;
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--ink-2);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.menu {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  gap: 0.1rem;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}
.menu > li {
  position: relative;
}
.menu > li.has-sub::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 12px;
}
.menu > li > a {
  display: block;
  padding: 0.62rem 0.66rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.menu > li > a:hover,
.menu > li > a[aria-current="page"] {
  color: var(--deep);
  background: var(--sage-soft);
}
.has-sub > a::after {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-left: 0.4rem;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: max-content;
  min-width: 270px;
  display: block;
  margin: 0;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: 0.2s ease;
}
.sub-services {
  width: min(680px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.15rem;
}
.mega {
  left: auto;
  right: -220px;
  width: min(880px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  transform: translateY(8px);
}
.has-sub:hover .mega,
.has-sub:focus-within .mega {
  transform: translateY(0);
}
.mega > div {
  min-width: 0;
  padding: 0.35rem;
}
.mega ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sub-heading {
  display: block;
  padding: 0.35rem 0.8rem 0.5rem;
  color: var(--moss);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.mega .view-all {
  color: var(--terra);
}
.has-sub:hover .sub,
.has-sub:focus-within .sub {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.has-sub:hover .sub.mega,
.has-sub:focus-within .sub.mega {
  transform: translateY(0);
}
.sub a {
  height: 100%;
  display: flex;
  gap: 0.7rem;
  padding: 0.7rem 0.8rem;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}
.sub a:hover,
.sub a[aria-current="page"] {
  background: var(--sand);
}
.sub a span small {
  display: block;
  margin-top: 2px;
  color: var(--ink-2);
  font-size: 0.76rem;
  font-weight: 400;
}
.sub svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: var(--moss);
  stroke-width: 1.8;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-actions .btn {
  min-height: 44px;
  padding: 0.66rem 1.15rem;
  font-size: 0.85rem;
}
.menu-toggle {
  display: none;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 19px;
  height: 2px;
  display: block;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--deep);
}
.mobile-menu {
  display: none;
  padding: 1rem 26px 1.6rem;
  border-top: 1px solid var(--line);
  background: var(--ivory);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  text-decoration: none;
}
.mobile-menu .ind {
  padding-left: 1.1rem;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 400;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.55rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-terra {
  color: #fff;
  background: var(--terra);
  box-shadow: 0 14px 30px -16px rgba(193, 101, 63, 0.8);
}
.btn-terra:hover {
  background: var(--terra-2);
}
.btn-deep {
  color: #fff;
  background: var(--deep);
}
.btn-outline {
  border-color: var(--deep);
  color: var(--deep);
}
.btn-outline:hover {
  color: #fff;
  background: var(--deep);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  color: var(--ink-2);
  font-size: 0.75rem;
}
.hero {
  padding: clamp(48px, 7vw, 92px) 0 clamp(58px, 8vw, 104px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(30px, 5vw, 68px);
}
.hero h1 em {
  color: var(--terra);
  font-style: italic;
}
.hero .lede {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}
.hero-art {
  position: relative;
}
.hero-art .frame {
  overflow: hidden;
  border-radius: 280px 280px var(--r-lg) var(--r-lg);
  background: var(--sand-2);
  box-shadow: var(--shadow);
}
.hero-art .frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -14px;
  max-width: 240px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-badge b {
  display: block;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
}
.hero-badge small {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-2);
  font-size: 0.78rem;
  line-height: 1.4;
}
.narrow {
  max-width: 850px;
}
.condition-hero {
  background: linear-gradient(135deg, var(--ivory), var(--sand));
}
.answer-band {
  padding: clamp(28px, 4vw, 52px) 0;
  color: #fff;
  background: var(--deep);
}
.answer-box {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 0.65rem clamp(24px, 5vw, 72px);
  align-items: start;
}
.answer-box .kicker {
  margin-top: 0.45rem;
  color: var(--honey);
}
.answer-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.answer-box > p:not(.kicker),
.answer-box .answer-links {
  grid-column: 2;
  max-width: 74ch;
  margin: 0;
  color: rgba(255,255,255,.78);
}
.answer-box a {
  color: #fff;
  text-underline-offset: 0.2em;
}
.answer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  font-size: 0.88rem;
}
.page-meta {
  margin-top: 1.1rem;
  color: var(--moss);
  font-size: 0.82rem;
  font-weight: 600;
}
.path-links,
.source-panel {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
}
.path-links p,
.source-panel p {
  margin-bottom: 0.6rem;
  color: var(--ink-2);
}
.source-panel h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
.source-panel a,
.path-links a {
  color: var(--terra-2);
  font-weight: 600;
}
.eyebrow,
.card .eyebrow {
  margin-bottom: 0.8rem;
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.facts {
  padding: 0;
  color: #fff;
  background: var(--deep);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.fact {
  padding: clamp(25px, 3.2vw, 40px);
  background: var(--deep);
}
.fact b {
  display: block;
  color: var(--honey);
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
}
.fact strong {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.92rem;
}
.fact span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

section {
  position: relative;
  padding: clamp(68px, 9vw, 122px) 0;
}
.sand {
  background: var(--sand);
}
.dark {
  color: #fff;
  background: var(--deep);
}
.dark .lede {
  color: rgba(255, 255, 255, 0.78);
}
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}
.copy p {
  color: var(--ink-2);
}
.dark .copy p {
  color: rgba(255, 255, 255, 0.78);
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.check-grid li {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 0.9rem 0.9rem 0.9rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.9rem;
}
.check-grid li::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  width: 8px;
  height: 8px;
  border: 2px solid var(--sage);
  border-radius: 50%;
}
.notice {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--terra);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}
.context-link,
.review-note,
.form-fallback {
  margin-top: 1.4rem;
  color: var(--ink-2);
  font-size: 0.9rem;
}
.context-link a,
.form-fallback a {
  color: var(--terra-2);
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(34px, 5vw, 56px);
}
.card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  transition: 0.22s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--sage);
  box-shadow: var(--shadow);
}
.card b {
  color: var(--moss);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}
.card h2,
.card h3 {
  margin: auto 0 0.65rem;
  color: var(--deep);
  font-size: 1.45rem;
}
.card p {
  color: var(--ink-2);
  font-size: 0.94rem;
}
.card a {
  margin-top: auto;
  color: var(--terra);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}
.team-cards .card {
  min-height: 420px;
}
.blog-grid .card {
  min-height: 340px;
}
.article-hero {
  padding-bottom: clamp(40px, 5vw, 64px);
  background: var(--sand);
}
.article-media {
  max-width: 430px;
  justify-self: end;
  overflow: hidden;
  border-radius: min(44% 44% 24px 24px, 180px 180px 24px 24px);
  box-shadow: var(--shadow);
}
.article-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
}
.article-body {
  max-width: 790px;
}
.article-body > section {
  padding: 0 0 clamp(40px, 6vw, 70px);
}
.article-body h2 {
  margin-bottom: 1.2rem;
}
.article-body p {
  color: var(--ink-2);
}
.article-body p a {
  color: var(--terra-2);
  font-weight: 600;
  text-underline-offset: 0.18em;
}
.takeaways {
  margin-bottom: clamp(40px, 6vw, 70px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--sand);
}
.takeaways ul,
.source-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.takeaways li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.6rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.takeaways li:last-child {
  border-bottom: 0;
}
.takeaways li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--moss);
  font-weight: 800;
}
.source-list li {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}
.source-list li:last-child {
  border-bottom: 0;
}
.source-list span {
  color: var(--ink-2);
  font-size: 0.88rem;
}

.review-marquee {
  overflow-x: auto;
  margin-top: clamp(32px, 5vw, 52px);
  padding: 0.5rem 0 1.4rem;
  cursor: grab;
  scroll-behavior: auto;
  scrollbar-color: var(--sage) transparent;
  touch-action: pan-x;
}
.review-marquee:active {
  cursor: grabbing;
}
.review-track {
  width: max-content;
  display: flex;
  gap: 18px;
}
.review-card {
  width: min(420px, calc(100vw - 54px));
  min-height: 260px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: 0 18px 50px -42px rgba(15, 42, 29, 0.7);
}
.stars {
  color: #a76a16;
  letter-spacing: 0.12em;
}
.review-card blockquote {
  margin: 1.2rem 0;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.35;
}
.review-card cite {
  margin-top: auto;
  color: var(--ink-2);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
}

.contact-list {
  margin-top: 2rem;
}
.contact-list strong {
  color: var(--deep);
}
.contact-panel {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-panel h2 {
  margin-bottom: 1rem;
}
.consult-frame {
  width: 100%;
  min-height: 650px;
  border: 0;
}
.dark .card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}
.dark .card h3 {
  color: #fff;
}
.dark .card p {
  color: rgba(255, 255, 255, 0.75);
}
.dark .card b {
  color: var(--honey);
}

.faq-list {
  max-width: 900px;
  margin: clamp(32px, 4vw, 48px) auto 0;
}
details {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--ivory);
}
details[open] {
  border-color: var(--sage);
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  color: var(--deep);
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  color: var(--terra);
  font-family: var(--serif);
  font-size: 1.5rem;
}
details[open] summary::after {
  content: "–";
}
details .answer {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-2);
  font-size: 0.97rem;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--r-lg);
  color: #fff;
  background: var(--deep);
  box-shadow: var(--shadow);
}
.cta p {
  max-width: 62ch;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

footer.site {
  padding: clamp(56px, 7vw, 88px) 0 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep);
  font-size: 0.93rem;
}
footer.site h4 {
  margin: 0 0 1.1rem;
  color: var(--honey);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: 34px;
}
.footer-name {
  margin-bottom: 0.6rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.6rem;
}
footer.site ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer.site li {
  padding: 0.3rem 0;
}
footer.site a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
footer.site a:hover {
  color: #fff;
  text-decoration: underline;
}
.legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.4rem;
  margin-top: clamp(40px, 5vw, 64px);
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}
.disclaimer {
  padding: 1.1rem 0;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.25);
  font-size: 0.78rem;
  line-height: 1.6;
}
.sticky {
  position: fixed;
  z-index: 130;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  gap: 0.5rem;
  padding: 0.7rem 0.8rem;
  border-top: 1px solid var(--line);
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(12px);
}
.sticky .btn {
  flex: 1;
}

@media (max-width: 1279px) {
  .nav-actions .btn-outline {
    display: none;
  }
}

@media (max-width: 1190px) {
  .menu {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .hero-badge {
    position: static;
    max-width: none;
    margin-top: 1.2rem;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1190px) {
  .mega {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }
  .wrap {
    width: min(100% - 32px, var(--max));
  }
  .util {
    display: none;
  }
  .nav-actions .btn {
    display: none;
  }
  .facts-grid,
  .cards,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta {
    grid-template-columns: 1fr;
  }
  .answer-box {
    grid-template-columns: 1fr;
  }
  .answer-box > p:not(.kicker),
  .answer-box .answer-links {
    grid-column: 1;
  }
  .sticky {
    display: flex;
  }
  .check-grid li {
    border-right: 0;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }
  .brand b {
    font-size: 1.2rem;
  }
  .leaf {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
