/* =========================================================
   Fresh Start Health — Hep C Landing Page (Current Site Style)
   Matches https://www.freshstarthealth.com branding:
   - Deep teal #115e67, amber #ffb81c, sky-grey #E7EFF0
   - Roboto Slab (free Ebony alternative) + Open Sans
   ========================================================= */

:root {
  /* Brand palette — matched to current freshstarthealth.com */
  --fs-teal:        #115e67;   /* primary brand */
  --fs-teal-hover:  #0d4a52;
  --fs-teal-mid:    #58A1AA;   /* hover/secondary */
  --fs-amber:       #ffb81c;   /* accent — buttons, underlines, sun */
  --fs-amber-hover: #e6a512;
  --fs-sky:         #E7EFF0;   /* light teal-grey page background */
  --fs-ink:         #1F3236;   /* body text */
  --fs-gray:        #5A6A6A;   /* muted text */
  --fs-gray-faint:  #99A8A8;
  --fs-border:      #C9D7D9;
  --fs-divider:     #DEE7E8;
  --fs-white:       #FFFFFF;

  /* Type */
  --font-display: 'Roboto Slab', 'Ebony', Georgia, serif;
  --font-body:    'Open Sans', system-ui, -apple-system, sans-serif;

  --text-xs:   13px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-md:   18px;
  --text-lg:   20px;
  --text-xl:   28px;
  --text-2xl:  40px;
  --text-3xl:  56px;
  --text-hero: clamp(40px, 4.5vw, 72px);

  --radius-sm:   3px;
  --radius-md:   6px;
  --radius-lg:   10px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(17,94,103,0.08);
  --shadow-md: 0 4px 16px rgba(17,94,103,0.10);
  --shadow-lg: 0 12px 40px rgba(17,94,103,0.16);

  --transition: 220ms ease;

  --container-wide: 1280px;
  --container: 1140px;
  --container-narrow: 760px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.625;
  color: var(--fs-ink);
  background: var(--fs-white);
  min-height: 100dvh;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--fs-teal); text-decoration: none; }
a:hover { color: var(--fs-teal-mid); }
button { cursor: pointer; background: none; border: none; font: inherit; }
:focus-visible { outline: 3px solid var(--fs-amber); outline-offset: 2px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fs-teal);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--text-hero); }
h2 { font-size: clamp(28px, 3.5vw, 48px); line-height: 1.1; }
h3 { font-size: var(--text-xl); font-weight: 400; line-height: 1.2; }
h4 { font-size: var(--text-md); font-weight: 700; }
p { max-width: 68ch; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.container--default { max-width: var(--container); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(56px, 7vw, 96px); }

/* TOP UTILITY BAR ------------------------------------- */
.top-bar {
  background: var(--fs-sky);
  border-bottom: 1px solid rgba(17,94,103,0.07);
  font-size: var(--text-sm);
}
.top-bar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding-block: 12px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--fs-ink); }
.top-bar a:hover { color: var(--fs-teal); }
.top-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 3px solid var(--fs-amber);
  border-radius: var(--radius-sm);
  color: var(--fs-teal) !important;
  font-weight: 700;
  font-family: var(--font-display);
  background: var(--fs-white);
  transition: background var(--transition), color var(--transition);
}
.top-bar__cta:hover { background: var(--fs-amber); color: var(--fs-teal) !important; }
.top-bar__cta::after {
  content: "›";
  font-size: 1.3em;
  line-height: 1;
}

/* HEADER --------------------------------------------- */
.site-header {
  background: var(--fs-sky);
  border-bottom: 1px solid rgba(17,94,103,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--fs-teal);
}
.brand:hover { color: var(--fs-teal); }
.brand-logo {
  height: auto;
  width: 220px;
  max-width: 100%;
  display: block;
}
.brand__tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--fs-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-left: 2px solid var(--fs-amber);
  padding-left: 14px;
  line-height: 1.3;
  max-width: 16ch;
}
.brand--footer { gap: 0; }
.brand-logo--footer {
  width: 220px;
  height: auto;
  margin-bottom: 12px;
}

/* Phone & header CTA on the right */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fs-teal);
  font-size: var(--text-md);
}
.phone svg { color: var(--fs-amber); }

/* Buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
  border: 3px solid transparent;
  line-height: 1.2;
}
.btn--primary {
  background: var(--fs-white);
  color: var(--fs-teal);
  border-color: var(--fs-amber);
}
.btn--primary:hover { background: var(--fs-amber); color: var(--fs-teal); }
.btn--primary::after { content: "›"; font-size: 1.4em; line-height: 0.7; }
.btn--solid {
  background: var(--fs-teal);
  color: var(--fs-white);
  border-color: var(--fs-teal);
}
.btn--solid:hover { background: var(--fs-teal-hover); border-color: var(--fs-teal-hover); color: var(--fs-white); }
.btn--solid::after { content: "›"; font-size: 1.4em; line-height: 0.7; color: var(--fs-amber); }
.btn--lg { padding: 18px 36px; font-size: var(--text-md); }
.btn--block { width: 100%; }

/* Eyebrow + amber underline -------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fs-teal);
  padding-bottom: 6px;
  border-bottom: 4px solid var(--fs-amber);
}
.amber-underline {
  position: relative;
  display: inline-block;
}
.amber-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 4px;
  background: var(--fs-amber);
}

/* HERO ------------------------------------------------ */
.hero {
  background: var(--fs-sky);
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 96px);
}
.hero::before {
  /* diagonal-line decorative pattern matching live site */
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 360px;
  height: 220px;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(17,94,103,0.08) 0,
    rgba(17,94,103,0.08) 1px,
    transparent 1px,
    transparent 14px
  );
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--fs-teal);
  margin-block: 16px 24px;
}
.hero__lede {
  font-size: var(--text-md);
  color: var(--fs-ink);
  max-width: 42ch;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero__bullets {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--fs-ink);
}
.hero__bullets svg {
  color: var(--fs-amber);
  flex: none;
  margin-top: 4px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: var(--text-sm);
  color: var(--fs-gray);
  align-items: center;
}
.hero__trust strong { color: var(--fs-teal); font-family: var(--font-display); }
.hero__trust .dot { width: 5px; height: 5px; background: var(--fs-amber); border-radius: 50%; }

/* Eligibility card */
.hero__card {
  background: var(--fs-white);
  border-top: 6px solid var(--fs-amber);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-md);
}
.hero__card .badge {
  display: inline-block;
  background: var(--fs-amber);
  color: var(--fs-teal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__card h2 {
  font-size: var(--text-xl);
  margin-block: 12px 8px;
  font-weight: 700;
}
.hero__card p {
  color: var(--fs-gray);
  font-size: var(--text-sm);
  margin-bottom: 24px;
}
.hero__card-note {
  text-align: center;
  margin-top: 16px;
  font-size: var(--text-sm);
  color: var(--fs-gray);
}

/* STATS BAND (deep teal stripe) ---------------------- */
.stats {
  background: var(--fs-teal);
  color: var(--fs-white);
  padding-block: clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.stats::before {
  /* diagonal-line texture in stripe */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.04) 0,
    rgba(255,255,255,0.04) 1px,
    transparent 1px,
    transparent 18px
  );
  pointer-events: none;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  color: var(--fs-amber);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 700;
}
.stat__label {
  color: rgba(255,255,255,0.92);
  font-size: var(--text-sm);
  max-width: 22ch;
  margin: 0 auto;
}

/* SECTION HEAD ---------------------------------------- */
.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-inline: auto;
}
.section-head h2 { margin-block: 16px 16px; }
.section-head p { color: var(--fs-gray); margin-inline: auto; font-size: var(--text-md); }

/* HOW IT WORKS ---------------------------------------- */
.how__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.how__step {
  background: var(--fs-white);
  border: 1px solid var(--fs-border);
  border-top: 4px solid var(--fs-amber);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.how__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--fs-amber);
  line-height: 1;
  margin-bottom: 12px;
}
.how__step h3 {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--fs-teal);
  margin-bottom: 12px;
}
.how__step p { color: var(--fs-gray); font-size: var(--text-sm); }

/* TRUST ----------------------------------------------- */
.trust { background: var(--fs-sky); position: relative; overflow: hidden; }
.trust::after {
  content: "";
  position: absolute;
  top: 40px; left: -40px;
  width: 280px; height: 200px;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(17,94,103,0.08) 0,
    rgba(17,94,103,0.08) 1px,
    transparent 1px,
    transparent 14px
  );
  pointer-events: none;
}
.trust__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.trust__copy h2 { margin-bottom: 24px; }
.trust__copy > p { font-size: var(--text-md); margin-bottom: 24px; color: var(--fs-ink); }
.trust__list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.trust__list li {
  padding-left: 28px;
  position: relative;
  color: var(--fs-ink);
}
.trust__list li::before {
  content: "›";
  position: absolute;
  left: 0; top: -2px;
  color: var(--fs-amber);
  font-weight: 700;
  font-size: 22px;
  font-family: var(--font-display);
}
.trust__list strong { color: var(--fs-teal); font-family: var(--font-display); }

.trust__locations {
  background: var(--fs-white);
  border-top: 6px solid var(--fs-amber);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.trust__locations h3 {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--fs-teal);
  margin-bottom: 8px;
}
.trust__locations .muted { color: var(--fs-gray); font-size: var(--text-sm); margin-bottom: 20px; }
.trust__loc-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.trust__loc-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--fs-border);
}
.trust__loc-list li:last-child { border: 0; }
.trust__loc-list strong { color: var(--fs-teal); font-family: var(--font-display); font-weight: 700; }
.trust__loc-list span { color: var(--fs-gray); font-size: var(--text-sm); }

/* COST ------------------------------------------------ */
.cost__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cost__card {
  background: var(--fs-white);
  border: 1px solid var(--fs-border);
  border-top: 4px solid var(--fs-amber);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cost__card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--fs-teal);
}
.cost__price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--fs-teal);
  font-weight: 700;
}
.cost__card p { color: var(--fs-gray); font-size: var(--text-sm); }

/* TESTIMONIAL ----------------------------------------- */
.testimonial {
  background: var(--fs-teal);
  color: var(--fs-white);
  padding-block: clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.04) 0,
    rgba(255,255,255,0.04) 1px,
    transparent 1px,
    transparent 18px
  );
  pointer-events: none;
}
.testimonial figure {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--fs-white);
}
.testimonial blockquote::before { content: "\201C"; }
.testimonial blockquote::after { content: "\201D"; }
.testimonial figcaption {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.78);
}
.testimonial figcaption strong { color: var(--fs-amber); font-family: var(--font-display); font-weight: 700; }

/* FAQ ------------------------------------------------- */
.faq__list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-inline: auto;
}
.faq__item {
  background: var(--fs-white);
  border: 1px solid var(--fs-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq__item[open] {
  border-color: var(--fs-amber);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fs-teal);
  font-size: var(--text-md);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.5em;
  font-weight: 400;
  color: var(--fs-amber);
  transition: transform var(--transition);
  flex: none;
}
.faq__item[open] summary::after { content: "−"; }
.faq__body {
  padding: 0 24px 24px;
  color: var(--fs-ink);
  font-family: var(--font-body);
}

/* FORM ------------------------------------------------ */
.start { background: var(--fs-sky); position: relative; overflow: hidden; }
.start::before {
  content: "";
  position: absolute;
  bottom: -40px; left: -40px;
  width: 360px; height: 220px;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(17,94,103,0.08) 0,
    rgba(17,94,103,0.08) 1px,
    transparent 1px,
    transparent 14px
  );
  pointer-events: none;
}
.start__form {
  background: var(--fs-white);
  border-top: 6px solid var(--fs-amber);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.form-row { display: grid; gap: 6px; }
.form-row--full { grid-column: 1 / -1; }
.form-row label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--fs-teal);
}
.form-row .muted { color: var(--fs-gray); font-weight: 400; font-family: var(--font-body); }
.form-row input,
.form-row select {
  font: inherit;
  padding: 12px 16px;
  border: 2px solid var(--fs-border);
  border-radius: var(--radius-sm);
  background: var(--fs-white);
  color: var(--fs-ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--fs-amber);
  box-shadow: 0 0 0 3px rgba(255,184,28,0.18);
}
.form-consent {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--fs-gray);
  background: var(--fs-sky);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin: 0;
}
.start__form .btn--block { grid-column: 1 / -1; }
.form-success, .form-error {
  grid-column: 1 / -1;
  padding: 20px;
  border-radius: var(--radius-sm);
}
.form-success {
  background: rgba(17,94,103,0.08);
  border-left: 4px solid var(--fs-teal);
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fs-teal);
  margin-bottom: 6px;
}
.form-error {
  background: #FBEEEE;
  border-left: 4px solid #B33636;
  color: #6F2222;
}
.form-error a { color: inherit; text-decoration: underline; }

/* MOBILE STICKY CALL BAR ------------------------------ */
.callbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--fs-teal);
  z-index: 60;
  padding: 8px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.20);
}
.callbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--fs-amber);
  color: var(--fs-teal);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
}
.callbar a.ghost {
  background: transparent;
  color: var(--fs-white);
  border: 2px solid rgba(255,255,255,0.4);
}

/* FOOTER ---------------------------------------------- */
.site-footer {
  background: var(--fs-teal);
  color: rgba(255,255,255,0.88);
  padding-block: 64px 32px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.03) 0,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 18px
  );
  pointer-events: none;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fs-white);
  font-size: var(--text-md);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100px; height: 4px;
  background: var(--fs-white);
}
.site-footer a {
  color: var(--fs-white);
  display: inline-block;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.site-footer a:hover { color: var(--fs-amber); }
.site-footer .footer-tag { font-size: var(--text-sm); margin-top: 12px; color: rgba(255,255,255,0.7); }
.site-footer .brand__name,
.site-footer .brand__tag { color: var(--fs-white); }
.site-footer .brand-mark { color: var(--fs-white); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  position: relative;
  z-index: 1;
}

/* RESPONSIVE ------------------------------------------ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { order: -1; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: 1fr; }
  .cost__grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .brand__tagline { display: none; }
  .brand-logo { width: 180px; }
}
@media (max-width: 640px) {
  .top-bar__inner { justify-content: center; }
  .site-header__inner { gap: 12px; }
  .header-actions .phone span { display: none; }
  .brand-logo { width: 150px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .start__form { grid-template-columns: 1fr; }
  .callbar { display: flex; }
  body { padding-bottom: 76px; }
  .site-footer__inner { grid-template-columns: 1fr; }
}
