/* ==========================================================================
   MDL Reinach – Headless Framework
   Design system extracted from live site mdl-reinach.ch
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ==========================================================================
   1. DESIGN TOKENS  (edit these to re-skin the whole site)
   ========================================================================== */
:root {
  --color-bg:        #F5F2F3;
  --color-burgundy:  #47142B;
  --color-navy:      #173B70;
  --color-white:     #ffffff;
  --color-muted:     #6b5560;
  --color-line:      #d8cfd2;
  --color-terracotta:#A6532E;   /* darkened for WCAG-AA text contrast */
  --color-sage:      #5E7050;   /* darkened for WCAG-AA text contrast */
  --tint-rose:       #f3e6ea;
  --tint-sand:       #f4ece1;
  --tint-sage:       #e8efe6;

  --font-body:  'Lato', -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head:  'Lora', Georgia, 'Times New Roman', serif; /* substitute for "kansasnew" */

  --fs-eyebrow: 1rem;
  --fs-h1:      2.6rem;
  --fs-h2:      2rem;
  --fs-h3:      1.5rem;
  --fs-body:    1.05rem;
  --fs-small:   0.9rem;

  --maxw:       1200px;
  --gutter:     clamp(1.25rem, 4vw, 4rem);
  --radius:     20px;
  --radius-sm:  10px;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
}

/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-burgundy);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-burgundy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-navy); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--color-burgundy);
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 400; }
p { margin: 0 0 1rem; }

/* ==========================================================================
   3. LAYOUT HELPERS
   ========================================================================== */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-xl); }
.section--tight { padding-block: var(--space-lg); }

.eyebrow {
  font-family: var(--font-head);
  font-style: italic;
  font-size: var(--fs-eyebrow);
  color: var(--color-terracotta);
  margin: 0 0 .75rem;
}

/* ==========================================================================
   4. DECORATIVE DOTTED LINES
   ========================================================================== */
.dots-vert {
  width: 4px;
  background-image: radial-gradient(var(--color-burgundy) 1.4px, transparent 1.4px);
  background-size: 4px 12px;
  background-repeat: repeat-y;
}

/* ==========================================================================
   5. HEADER / NAV
   ========================================================================== */
.site-header { background: var(--color-bg); position: sticky; top: 0; z-index: 100; }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md); padding-block: 1.25rem;
}
.main-nav { display: flex; gap: clamp(1rem, 2.5vw, 2.25rem); }
.main-nav a { font-size: var(--fs-small); letter-spacing: .02em; color: var(--color-burgundy); white-space: nowrap; }
.main-nav a:hover { color: var(--color-navy); }
.brand-logo { display: flex; align-items: center; gap: .4rem; }
.brand-logo img { height: 44px; width: auto; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.6rem; color: var(--color-burgundy); }

/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero { padding-top: var(--space-md); }
.hero__image {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 8; background-size: cover; background-position: center;
  box-shadow: 0 18px 40px -28px rgba(71,20,43,.35);
}

/* Hero text overlay + CTAs */
.hero__image { position: relative; display: flex; align-items: center; }
.hero__image::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(90deg,
    rgba(245,242,243,.96) 0%,
    rgba(245,242,243,.86) 32%,
    rgba(245,242,243,.45) 55%,
    rgba(245,242,243,0) 78%);
}
.hero__content { position: relative; z-index: 1; color: var(--color-burgundy); padding: clamp(1.5rem, 4vw, 3.5rem); max-width: 600px; }
.hero__content h1 { color: var(--color-burgundy); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: .6rem; }
.hero__content p { color: #6b5560; font-size: clamp(1rem, 1.6vw, 1.25rem); margin-bottom: 1.5rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__cta .btn { margin-top: 0; }
.btn--light { background: #fff; color: var(--color-burgundy); }
.btn--light:hover { background: var(--color-bg); color: var(--color-burgundy); }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.8); }
.btn--outline-light:hover { background: #fff; color: var(--color-burgundy); }

/* Trust bar */
.trust-bar { border-bottom: 1px solid var(--color-line); }
.trust-bar .container {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem);
  padding-block: 1.5rem; text-align: center;
}
.trust-bar .trust-item { display: flex; align-items: center; gap: .6rem; font-size: var(--fs-small); color: var(--color-burgundy); }
.trust-bar .trust-item strong { font-weight: 700; }
.trust-bar .trust-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--color-navy); flex: 0 0 auto; }
.trust-bar .trust-item:nth-child(1) .trust-dot { background: var(--color-burgundy); }
.trust-bar .trust-item:nth-child(2) .trust-dot { background: var(--color-terracotta); }
.trust-bar .trust-item:nth-child(3) .trust-dot { background: var(--color-sage); }

/* Services overview (cards with icons) */
.services { padding-block: var(--space-xl); }
.services h2 { text-align: center; margin-bottom: .4rem; }
.services .section-lead { text-align: center; color: var(--color-muted); max-width: 55ch; margin: 0 auto var(--space-lg); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.service-card {
  display: block; background: #fff; border-radius: var(--radius-sm);
  padding: 2rem 1.75rem; text-align: center;
  box-shadow: 0 14px 34px -26px rgba(71,20,43,.45); transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(71,20,43,.55); }
.service-card img {
  width: 144px; height: 144px; border-radius: 50%;
  background: #f3edef; padding: 14px; object-fit: contain;
  margin: 0 auto 1.3rem;
}
/* colour variation: three soft tints for the icon circles */
.service-grid .service-card:nth-child(1) img { background: var(--tint-rose); }
.service-grid .service-card:nth-child(2) img { background: var(--tint-sand); }
.service-grid .service-card:nth-child(3) img { background: var(--tint-sage); }
.service-card h3 { color: var(--color-burgundy); margin-bottom: .4rem; }
.service-card p { color: var(--color-muted); font-size: var(--fs-small); margin: 0; }
.service-card .more { display: inline-block; margin-top: 1rem; color: var(--color-navy); font-size: var(--fs-small); font-weight: 700; }
@media (max-width: 820px) { .service-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* Contact / appointment CTA band */
.cta-band { background: var(--color-burgundy); color: #fff; }
.cta-band .container { padding-block: var(--space-lg); text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: #fff; opacity: .9; margin-bottom: 1.5rem; }
.cta-band .hero__cta { justify-content: center; }
.cta-band a { color: #fff; }

/* ==========================================================================
   7. FEATURE ROW
   ========================================================================== */
.feature {
  display: grid; grid-template-columns: minmax(0, 360px) 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center; margin-block: var(--space-lg);
}
.feature--reverse .feature__media { order: 2; }
.feature__media img { border-radius: var(--radius-sm); width: 100%; }
.feature__body { border-left: 3px solid var(--color-navy); padding-left: clamp(1.25rem, 3vw, 2.25rem); }
.feature__body h3 { margin-bottom: .75rem; }
.feature__body p { color: var(--color-burgundy); }

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.site-footer { background: var(--color-white); padding-block: var(--space-lg); margin-top: var(--space-xl); font-size: var(--fs-small); line-height: 1.8; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1.4fr 1fr 1fr; gap: var(--space-md); }
.footer-logo img { height: 64px; }
.site-footer h4 { font-family: var(--font-body); font-weight: 700; font-size: var(--fs-small); margin: 1.25rem 0 .25rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer .footer-strong { font-weight: 700; }

/* ==========================================================================
   8b. PAGE INTRO
   ========================================================================== */
.page-intro { padding-block: var(--space-lg) var(--space-md); }
.page-intro h1 { max-width: 16ch; }
.page-intro .lead { font-size: 1.2rem; color: var(--color-muted); max-width: 60ch; }
.illu-deco { position: absolute; right: var(--gutter); top: 0; width: clamp(40px, 7vw, 74px); opacity: .9; pointer-events: none; }
.has-deco { position: relative; }

/* ==========================================================================
   8c. TOPIC LIST / NOTE / DOC LIST / BUTTON
   ========================================================================== */
.topic-list { list-style: none; margin: var(--space-md) 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.topic-list li { border-top: 1px solid var(--color-line); padding: 1.1rem 1.5rem 1.1rem 0; font-family: var(--font-head); font-size: 1.25rem; color: var(--color-burgundy); display: flex; align-items: center; gap: .9rem; }
.topic-list li::before { content: ""; flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; background: var(--color-navy); }
.topic-list--single { grid-template-columns: 1fr; }

.note { border-left: 3px solid var(--color-navy); padding-left: clamp(1.25rem, 3vw, 2.25rem); margin-block: var(--space-md); max-width: 70ch; }
.note p { margin-bottom: .5rem; }

.doc-list { list-style: none; margin: var(--space-sm) 0; padding: 0; }
.doc-list li { padding: .5rem 0; border-bottom: 1px solid var(--color-line); }
.doc-list a { display: inline-flex; gap: .6rem; }
.doc-list a::before { content: "↳"; color: var(--color-navy); }

.btn { display: inline-block; background: var(--color-burgundy); color: var(--color-white); padding: .85rem 1.8rem; border-radius: 999px; font-size: var(--fs-small); letter-spacing: .03em; margin-top: var(--space-sm); }
.btn:hover { background: var(--color-navy); color: var(--color-white); }
.btn--ghost { background: transparent; color: var(--color-burgundy); border: 1.5px solid var(--color-burgundy); }
.btn--ghost:hover { background: var(--color-burgundy); color: var(--color-white); }

/* ==========================================================================
   8d. TEAM GRID + DOCTORS
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-md); margin-top: var(--space-md); }
.team-card img { border-radius: var(--radius-sm); width: 100%; aspect-ratio: 3/4; object-fit: cover; background: #e7dfe2; }
.team-card h3 { margin: .9rem 0 .1rem; font-size: 1.3rem; }
.team-card .role { color: var(--color-muted); font-size: var(--fs-small); }

.doctor { display: grid; grid-template-columns: 300px 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; margin-block: var(--space-lg); }
.doctor img { border-radius: var(--radius-sm); width: 100%; }
.doctor__body { border-left: 3px solid var(--color-navy); padding-left: 1.8rem; }

/* Expandable CV (Lebenslauf) */
.cv { margin-top: 1.2rem; border-top: 1px solid var(--color-line); max-width: 640px; }
.cv > summary {
  cursor: pointer; list-style: none; padding: .85rem 0;
  font-family: var(--font-head); font-style: italic; font-size: 1.05rem;
  color: var(--color-terracotta); display: flex; align-items: center; gap: .55rem;
}
.cv > summary::-webkit-details-marker { display: none; }
.cv > summary::before { content: "+"; font-style: normal; font-size: 1.25rem; line-height: 1; }
.cv[open] > summary::before { content: "–"; color: var(--color-navy); }
.cv-list { padding: .2rem 0 1.2rem; }
.cv-row { display: grid; grid-template-columns: 140px 1fr; gap: .25rem .9rem; padding: .35rem 0; align-items: baseline; }
.cv-row .yr { font-weight: 700; color: var(--color-burgundy); font-size: var(--fs-small); }
.cv-row .desc { color: var(--color-burgundy); font-size: var(--fs-small); line-height: 1.5; }
.cv-sub { font-family: var(--font-head); color: var(--color-sage); font-size: 1.05rem; margin: 1.1rem 0 .3rem; }
@media (max-width: 520px) { .cv-row { grid-template-columns: 1fr; gap: 0; } .cv-row .yr { margin-top: .4rem; } }

/* ==========================================================================
   8e. CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: start; }
.contact-map iframe, .contact-map img { width: 100%; border: 0; border-radius: var(--radius-sm); min-height: 360px; }
.contact-info p { margin-bottom: .35rem; }

/* ==========================================================================
   8g. HOMEPAGE  (large decorative digestive-tract illustration, right side)
   ========================================================================== */
.home-main { position: relative; overflow: hidden; padding-block: var(--space-lg) var(--space-xl); }
.home-main .container { position: relative; }
.home-main .feature { max-width: 720px; margin-block: var(--space-lg); position: relative; z-index: 1; }
.home-deco {
  position: absolute; top: 0; right: max(1vw, 8px);
  height: 100%; max-height: 880px; width: auto;
  opacity: .9; pointer-events: none; z-index: 0;
}
@media (max-width: 1080px) { .home-deco { display: none; } }

/* Compact news cards (two side by side) */
.news { position: relative; overflow: hidden; padding-block: var(--space-lg) var(--space-xl); }
.news .container { position: relative; }
.news h2 { text-align: center; margin-bottom: var(--space-lg); }
.news-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md);
  max-width: 860px; margin-inline: auto;
}
.news-card {
  background: #fff; border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px -26px rgba(71,20,43,.45);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2.3rem 1.8rem 2rem;
}
.news-card__media {
  width: 132px; height: 132px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 1.3rem; flex: 0 0 auto;
  background: var(--color-bg); display: flex; align-items: center; justify-content: center;
}
.news-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.news-card__media--contain { background: #f3edef; }
.news-card__media--contain img { object-fit: contain; padding: 20px; object-position: center; }
.news-card__body { display: flex; flex-direction: column; flex: 1; align-items: center; }
.news-card .eyebrow { margin-bottom: .35rem; }
.news-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.news-card p { font-size: var(--fs-small); color: var(--color-burgundy); margin-bottom: 1rem; }
.news-card .more { margin-top: auto; color: var(--color-navy); font-weight: 700; font-size: var(--fs-small); }
.news-deco {
  position: absolute; top: 50%; right: max(-10px, -2vw); transform: translateY(-50%);
  height: 78%; max-height: 560px; width: auto; opacity: .5; pointer-events: none; z-index: 0;
}
@media (max-width: 760px) {
  .news-grid { grid-template-columns: 1fr; max-width: 420px; }
  .news-deco { display: none; }
}

.brand-logo { position: relative; }

/* ==========================================================================
   8f. ACCORDION  (Patienteninformation)
   ========================================================================== */
.accordion { max-width: 760px; margin-top: var(--space-md); border-top: 1px solid #c79999; }
.accordion__item { border-bottom: 1px solid #c79999; }
.accordion__trigger {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: .9rem;
  padding: 1.1rem 0; text-align: left;
  font-family: var(--font-head); font-size: 1.25rem; color: var(--color-burgundy);
  transition: color .2s ease;
}
.accordion__trigger:hover { color: var(--color-navy); }
.accordion__trigger::before {
  content: "+"; flex: 0 0 auto; width: 1.2em; font-size: 1.4rem;
  line-height: 1; color: var(--color-burgundy); transition: transform .2s ease, color .2s ease;
}
.accordion__item.is-open .accordion__trigger::before { content: "–"; color: var(--color-navy); }
.accordion__panel { display: none; padding: 0 0 1.25rem 2.1rem; }
.accordion__item.is-open .accordion__panel { display: block; }
.accordion__panel p { margin: 0 0 1rem; }
.accordion__panel a.boldLink { font-weight: 700; color: var(--color-navy); }
.accordion__panel ul { margin: 0; padding-left: 1.1rem; }
.accordion__panel ul li { margin-bottom: .5rem; }
.pi-block { margin-bottom: 1.1rem; }

/* two-column lists inside an accordion panel (Angebot) */
.topic-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2.5rem; }
.topic-cols h4 { font-family: var(--font-head); font-weight: 500; color: var(--color-navy);
  font-size: 1.15rem; margin: 0 0 .6rem; }
@media (max-width: 700px) { .topic-cols { grid-template-columns: 1fr; } }

/* ==========================================================================
   9. RESPONSIVE
   ========================================================================== */
@media (max-width: 860px) {
  .feature, .feature--reverse { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topic-list { grid-template-columns: 1fr; }
  .doctor { grid-template-columns: 1fr; }
  .doctor img { max-width: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--color-bg);
    padding: 1rem var(--gutter); box-shadow: 0 12px 24px -18px rgba(71,20,43,.4);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding-block: .6rem; border-bottom: 1px solid var(--color-line); }
  .nav-toggle { display: block; }
  .site-header .container { position: relative; }
}
@media (max-width: 760px) {
  /* stronger, more even light wash so burgundy hero text stays readable on mobile */
  .hero__image::before {
    background: linear-gradient(180deg,
      rgba(245,242,243,.94) 0%,
      rgba(245,242,243,.86) 55%,
      rgba(245,242,243,.74) 100%);
  }
  .hero__content { max-width: 100%; }
}
@media (max-width: 520px) {
  :root { --fs-h1: 2rem; --fs-h2: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   10. COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: #fff; border-top: 1px solid var(--color-line);
  box-shadow: 0 -10px 30px -18px rgba(71,20,43,.45);
  transform: translateY(110%); transition: transform .35s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--maxw); margin-inline: auto; padding: 1.1rem var(--gutter);
  display: flex; gap: 1.5rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cookie-banner__text { margin: 0; font-size: var(--fs-small); color: var(--color-burgundy); max-width: 72ch; line-height: 1.6; }
.cookie-banner__actions { display: flex; gap: .7rem; flex-shrink: 0; }
.cookie-banner__actions .btn { margin-top: 0; }
.cookie-reopen {
  position: fixed; left: 16px; bottom: 16px; z-index: 999;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--color-line);
  background: #fff; cursor: pointer; display: none; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -12px rgba(71,20,43,.5); font-size: 1.1rem;
}
.cookie-reopen.is-visible { display: flex; }
@media (max-width: 600px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; text-align: center; }
}

/* ==========================================================================
   11. HOMEPAGE BACKGROUND WATERMARK (dotted digestive-tract illustration)
   ========================================================================== */
body.home::before {
  content: "";
  position: fixed;
  top: 0; bottom: 0;
  right: max(16px, calc(50% - 600px));
  width: clamp(260px, 30vw, 460px);
  background: url('../assets/images/illu-mdl.svg') no-repeat center center;
  background-size: contain;
  opacity: .08;
  z-index: 0;
  pointer-events: none;
}
/* keep all homepage content above the watermark */
body.home > section,
body.home > footer { position: relative; z-index: 1; }
@media (max-width: 960px) {
  body.home::before { display: none; }
}

/* ==========================================================================
   12. MOBILE-FEINSCHLIFF (Startseite Hero + Abstände)
   ========================================================================== */
@media (max-width: 760px) {
  /* Hero gestapelt: Textkarte oben, Bild darunter – kein Ueberlappen */
  .hero { padding-top: 1rem; }
  .hero__image {
    aspect-ratio: auto;
    min-height: 0;
    background-image: none !important;   /* Bild kommt als eigener Block (::before) */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  /* Bild als eigener, voll sichtbarer Block UNTER dem Text */
  .hero__image::before {
    position: static;
    order: 2;
    content: "";
    display: block;
    width: 100%;
    height: 44vh;
    background: url('../assets/images/hero.jpg') center 28% / cover no-repeat;
    border-radius: 0;
  }
  /* Textkarte: ruhiger cremefarbener Hintergrund, Buttons klar lesbar */
  .hero__content {
    order: 1;
    width: 100%;
    max-width: 100%;
    background: var(--color-bg);
    padding: 2.2rem 1.4rem 2.4rem;
  }
  .hero__content h1 { font-size: 2rem; line-height: 1.15; }
  .hero__content p { font-size: 1.05rem; }
  /* Buttons gestapelt & gut tippbar */
  .hero__cta { flex-direction: column; align-items: stretch; gap: .7rem; }
  .hero__cta .btn { text-align: center; padding: .95rem 1.4rem; }

  /* kompaktere vertikale Abstaende auf dem Handy */
  .services, .news, .home-main { padding-block: var(--space-lg); }
  .trust-bar .container { gap: 1rem 2rem; }
  .cta-band .container { padding-block: var(--space-lg); }
  .cta-band .hero__cta { align-items: center; }
  .cta-band .hero__cta .btn { width: 100%; max-width: 320px; }
}
