/* ================================================================
   ANKURITH — Holistic Wellness
   Shared stylesheet
   ================================================================ */

:root {
  --gold:        #C08F2E;
  --gold-deep:   #9A6E18;
  --gold-soft:   #E8C878;
  --gold-wash:   #FBF3E2;

  --ink:         #2B2B2B;
  --ink-soft:    #5A5754;
  --ink-faint:   #8A857F;

  --green:       #1F4A1A;
  --green-deep:  #16350F;

  --cream:       #FCFAF6;
  --cream-warm:  #F6F0E6;
  --line:        #E7DFD1;
  --white:       #FFFFFF;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1180px;
  --radius: 4px;
  --shadow-sm: 0 2px 10px rgba(43, 43, 43, .06);
  --shadow-md: 0 12px 40px rgba(43, 43, 43, .10);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.12rem; }

p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 62px 0; }
.section--cream { background: var(--cream-warm); }
.section--white { background: var(--white); }
.section--ink { background: var(--green-deep); color: rgba(255,255,255,.78); }
.section--ink h2, .section--ink h3 { color: var(--white); }

.center { text-align: center; }
.lead { font-size: 1.15rem; line-height: 1.75; }
.muted { color: var(--ink-faint); }

/* ---- Eyebrow / small caps label ---- */
.eyebrow {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 14px;
}
.section--ink .eyebrow { color: var(--gold-soft); }

/* ---- Lotus divider ---- */
.divider {
  width: 100%;
  max-width: 180px;
  margin: 22px auto 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  position: relative;
}
.divider::after {
  content: "";
  position: absolute;
  top: -3px; left: 50%;
  width: 7px; height: 7px;
  margin-left: -3.5px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ================= Buttons ================= */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .22s ease;
  text-align: center;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--gold  { background: var(--gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-deep); color: #fff; }

.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-deep); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); }

.btn--light { background: #fff; color: var(--green-deep); }
.btn--light:hover { background: var(--gold-wash); color: var(--green-deep); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ================= Header ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(252, 250, 246, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.nav__logo img { height: 46px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
  text-decoration: none;
}
.nav__cta { flex-shrink: 0; }
.nav__cta .btn { padding: 12px 24px; font-size: .74rem; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: .25s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Announcement bar ---- */
.topbar {
  background: var(--green-deep);
  color: rgba(255,255,255,.9);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}
.topbar a { color: var(--gold-soft); text-decoration: underline; }

/* ================= Hero ================= */
.hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--gold-wash) 100%);
  padding: 84px 0 92px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { margin-bottom: .3em; }
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero__sub { font-size: 1.18rem; max-width: 30em; margin-bottom: 2em; }
.hero__img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  list-style: none;
  padding: 0;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__badges li { display: flex; align-items: center; gap: 8px; }
.hero__badges li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ================= Trust strip ================= */
.trust {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust__item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1.2;
}
.trust__item span {
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ================= Generic grids ================= */
.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--wide-left { grid-template-columns: 1.15fr 1fr; }

/* ================= Cards ================= */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card__media { background: var(--white); aspect-ratio: 1 / 1; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .35em; }
.card__body p { flex: 1; font-size: .96rem; }
.card__meta {
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

/* Feature / benefit tile */
.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
}
.tile__num {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--gold-soft);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.tile h3 { font-size: 1.22rem; }
.tile p { font-size: .95rem; margin-bottom: 0; }
.section--cream .tile { background: var(--cream); }

/* ================= Steps ================= */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 30px 66px;
  border-left: 1px solid var(--line);
  margin-left: 21px;
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: -21px; top: -4px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-wash);
  border: 1px solid var(--gold-soft);
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps h4 { margin-bottom: .25em; }
.steps p { font-size: .96rem; margin-bottom: 0; }

/* ================= Spec table ================= */
.spec { width: 100%; border-collapse: collapse; font-size: .96rem; }
.spec th, .spec td { text-align: left; padding: 15px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec th { width: 42%; font-weight: 600; color: var(--ink); font-family: var(--sans); }

/* ================= Product detail ================= */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pd__gallery { position: sticky; top: 100px; }
.pd__main {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pd__main img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pd__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.pd__thumbs button {
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s;
}
.pd__thumbs button[aria-selected="true"] { border-color: var(--gold); }
.pd__thumbs img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

.pd__title { margin-bottom: .2em; }
.pd__tagline { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 1.4em; }
.pd__ticks { list-style: none; padding: 0; margin: 0 0 32px; }
.pd__ticks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.pd__ticks li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 7px; height: 12px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.pd__note {
  margin-top: 26px;
  padding: 18px 22px;
  background: var(--gold-wash);
  border-left: 3px solid var(--gold);
  font-size: .92rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pd__note p:last-child { margin-bottom: 0; }

/* ================= Accordion (FAQ) ================= */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 9px; height: 9px;
  border: solid var(--gold);
  border-width: 0 1.5px 1.5px 0;
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq details > div { padding: 0 30px 24px 0; font-size: 1rem; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ================= Quotes ================= */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.quote__stars { color: var(--gold); letter-spacing: 3px; font-size: .95rem; margin-bottom: 12px; }
.quote p { font-family: var(--serif); font-size: 1.18rem; line-height: 1.55; color: var(--ink); font-style: italic; }
.quote cite {
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ================= Ebook band ================= */
.ebook {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: center;
}
.ebook__cover img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
}

/* ================= CTA band ================= */
.cta-band { background: var(--green-deep); color: rgba(255,255,255,.8); text-align: center; padding: 88px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 46em; margin-left: auto; margin-right: auto; }

/* ================= Contact ================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--gold-soft);
  outline-offset: 1px;
  border-color: var(--gold);
}
.field textarea { min-height: 150px; resize: vertical; }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-list strong {
  display: block;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 4px;
}

/* ================= Prose (legal pages) ================= */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 1.7rem; margin-top: 2em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.6em; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 10px; }

/* ================= Footer ================= */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.62);
  padding: 72px 0 0;
  font-size: .94rem;
}
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--gold-soft); text-decoration: none; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 52px;
}
.footer__logo img { height: 104px; width: auto; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 14px; margin-left: -8px; }
.footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 11px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.13);
  padding: 26px 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: .84rem;
}
.footer__disclaimer {
  font-size: .8rem;
  line-height: 1.6;
  color: rgba(255,255,255,.45);
  padding-bottom: 26px;
  border-top: 1px solid rgba(255,255,255,.13);
  padding-top: 24px;
}

/* ================= Blog ================= */
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post-card a { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.post-card__media { aspect-ratio: 1200 / 630; overflow: hidden; background: var(--cream-warm); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.post-card h3 { font-size: 1.32rem; margin-bottom: .4em; }
.post-card p { font-size: .95rem; flex: 1; margin-bottom: 18px; }
.post-card__meta {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 10px;
}
.post-card__more {
  font-size: .76rem; letter-spacing: .13em; text-transform: uppercase;
  font-weight: 600; color: var(--ink);
}
.post-card:hover .post-card__more { color: var(--gold-deep); }

/* --- Article --- */
.article { max-width: 760px; margin: 0 auto; }
.article__hero {
  max-width: 1000px; margin: 0 auto 54px;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.article__meta {
  font-size: .76rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 32px;
}
.article__meta span + span::before { content: "·"; margin: 0 10px; color: var(--gold); }
.article > h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 1.9em; }
.article > h3 { font-size: 1.25rem; margin-top: 1.7em; }
.article > p, .article > ul, .article > ol { font-size: 1.06rem; line-height: 1.78; }
.article ul, .article ol { padding-left: 24px; }
.article li { margin-bottom: 11px; }
.article__lead { font-size: 1.22rem; line-height: 1.7; color: var(--ink); }
.article figure { margin: 40px 0; }
.article figure img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; }
.article figcaption {
  font-size: .84rem; color: var(--ink-faint); margin-top: 12px; text-align: center;
}
.article blockquote {
  margin: 34px 0; padding: 4px 0 4px 26px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif); font-size: 1.3rem; font-style: italic;
  color: var(--ink); line-height: 1.5;
}
.article blockquote p:last-child { margin-bottom: 0; }

.callout {
  background: var(--gold-wash);
  border-left: 3px solid var(--gold);
  padding: 22px 26px; margin: 34px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem;
}
.callout p:last-child { margin-bottom: 0; }
.callout--warn { background: #FDF3F0; border-left-color: #C0562E; }

/* --- Inline product CTA --- */
.promo {
  display: grid; grid-template-columns: 150px 1fr; gap: 28px; align-items: center;
  background: var(--cream-warm); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; margin: 46px 0;
}
.promo img { border-radius: var(--radius); width: 100%; }
.promo h4 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: .3em; }
.promo p { font-size: .95rem; margin-bottom: 16px; }
.promo .btn { padding: 13px 26px; font-size: .74rem; }

/* --- Breadcrumb --- */
.crumbs { font-size: .78rem; letter-spacing: .06em; color: var(--ink-faint); margin-bottom: 26px; }
.crumbs a { color: var(--ink-faint); }
.crumbs a:hover { color: var(--gold-deep); }
.crumbs span { margin: 0 8px; color: var(--gold); }

/* --- Related --- */
.related { border-top: 1px solid var(--line); margin-top: 64px; padding-top: 48px; }

@media (max-width: 640px) {
  .promo { grid-template-columns: 1fr; gap: 20px; }
  .promo__img { max-width: 150px; }
  .article__hero { margin-bottom: 36px; }
}

/* ================= Utility ================= */
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.stack > * + * { margin-top: 18px; }
.rounded { border-radius: var(--radius); box-shadow: var(--shadow-sm); }

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--gold);
  color: #fff;
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ================= Reveal on scroll ================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover { transform: none; }
}

/* ================= Responsive ================= */
@media (max-width: 980px) {
  .hero__grid, .split, .split--wide-left, .pd, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__img { order: -1; }
  .pd__gallery { position: static; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ebook { grid-template-columns: 1fr; gap: 34px; }
  .ebook__cover { max-width: 230px; }

  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 22px;
    box-shadow: var(--shadow-md);
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav { position: relative; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .section--tight { padding: 46px 0; }
  .hero { padding: 56px 0 64px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .nav__cta { display: none; }
  .steps li { padding-left: 56px; }
}
