/* SEFFSHOE — green brand rebuild (Mihir feedback)
   Green #1B7A4E · Charcoal #1A2420 · Red CTAs #CC0000
   Photo hero/sections with dark overlays. Senior-readable. No motion. */

:root {
  --green: #1B7A4E;
  --green-dark: #145C3A;
  --green-deeper: #0F3F28;
  --green-soft: #E8F5EE;
  --green-mid: #D4EBDD;
  --cream: #F7F3EA;
  --cream-deep: #EFE8D8;
  --charcoal: #1A2420;
  --charcoal-mid: #243029;
  --red: #CC0000;
  --red-dark: #A30000;
  --red-soft: #FFF0F0;
  --white: #ffffff;
  --light: #F4F7F5;
  --text: #1A2420;
  --text-muted: #3D4A43;
  --border: #C5D0C9;
  --border-strong: #9AADA3;
  --focus: #1B7A4E;
  --cta-bg: #CC0000;
  --cta-text: #ffffff;
  --overlay: rgba(15, 35, 28, 0.72);
  --overlay-strong: rgba(10, 28, 20, 0.78);
  --shadow-sm: 0 1px 3px rgba(26, 36, 32, 0.08), 0 4px 14px rgba(26, 36, 32, 0.06);
  --shadow-md: 0 4px 8px rgba(26, 36, 32, 0.1), 0 12px 28px rgba(26, 36, 32, 0.08);
  --radius: 8px;
  --radius-lg: 12px;
  --max: 72rem;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
}

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

html {
  font-size: 112.5%; /* ~18px — senior-friendly */
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--green-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

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

/* —— Header (dark charcoal / deep green) —— */
.site-header {
  background: var(--charcoal);
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  line-height: 1.15;
}

.logo:hover {
  color: #b8e0c8;
  text-decoration: none;
}

.logo-img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: var(--white);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text small {
  display: block;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-top: 0.12rem;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal-mid);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--green);
  border-color: var(--green);
}

.site-nav {
  display: none;
  width: 100%;
  flex-basis: 100%;
  background: var(--charcoal-mid);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.5rem;
  margin-top: 0.35rem;
}

.site-nav.is-open {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  padding: 0.7rem 0.85rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 6px;
  min-height: 44px;
}

.site-nav a:hover {
  background: rgba(27, 122, 78, 0.35);
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  background: var(--green);
  color: var(--white);
}

/* Compact Free consultation in header */
.btn-cta-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cta-bg);
  color: var(--cta-text) !important;
  text-decoration: none !important;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 0.95rem;
  border-radius: 6px;
  border: 2px solid var(--cta-bg);
  min-height: 44px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
}

.btn-cta-header:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--cta-text) !important;
}

.btn-cta-header:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

/* —— Layout —— */
main {
  max-width: none;
  margin: 0;
  padding: 0 0 3.5rem;
  width: 100%;
  flex: 1;
}

.page-intro {
  margin: 0;
  padding: 2.5rem 1.25rem 2rem;
  background-color: var(--charcoal);
  background-image:
    linear-gradient(var(--overlay-strong), var(--overlay-strong)),
    url("images/sandal1.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid var(--green);
  color: var(--white);
}

.page-intro-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-intro h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  line-height: 1.22;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.page-intro .lead {
  color: rgba(255, 255, 255, 0.9);
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.section {
  padding: 2.5rem 1.25rem;
}

.section-white {
  background: var(--white);
}

.section-light {
  background: var(--light);
}

.section-green {
  background: var(--green-soft);
  border-top: 1px solid var(--green-mid);
  border-bottom: 1px solid var(--green-mid);
}

.section-cream {
  background: var(--cream);
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
}

.section-alt {
  background: var(--green-mid);
}

.section-dark {
  background: var(--charcoal-mid);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-kicker {
  color: #8fd4a8;
}

.section-dark p,
.section-dark .lead {
  color: rgba(255, 255, 255, 0.88);
}

/* Photo band with overlay (products / stories) */
.section-photo {
  position: relative;
  background-color: var(--charcoal);
  background-image:
    linear-gradient(var(--overlay), var(--overlay)),
    url("images/sandal2.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-top: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
}

.section-photo h2,
.section-photo h3 {
  color: var(--white);
}

.section-photo .section-kicker {
  color: #8fd4a8;
}

.section-photo p,
.section-photo .lead {
  color: rgba(255, 255, 255, 0.9);
}

.section-photo .product-card,
.section-photo .testimonial,
.section-photo .card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.section-photo .product-card h3,
.section-photo .testimonial cite,
.section-photo .card h3 {
  color: var(--charcoal);
}

.section-photo .product-card p,
.section-photo .testimonial .role,
.section-photo .card p {
  color: var(--text-muted);
}

.section-photo .testimonial blockquote {
  color: var(--text);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-body {
  padding: 2rem 1.25rem 0;
  max-width: var(--max);
  margin: 0 auto;
}

.page-body section {
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 2px solid var(--border);
  border-left: 5px solid var(--green);
  box-shadow: var(--shadow-sm);
}

.page-body section:nth-child(even) {
  background: var(--green-soft);
  border-left-color: var(--green-dark);
}

.page-body section:nth-child(3n) {
  background: var(--cream);
  border-left-color: var(--green);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: var(--charcoal);
  margin: 0 0 1rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.12rem;
  color: var(--charcoal-mid);
  margin: 0 0 0.5rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul.plain {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

ul.plain li {
  margin-bottom: 0.5rem;
}

ul.plain li::marker {
  color: var(--green);
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

/* —— Hero (photo + dark overlay) —— */
.hero {
  position: relative;
  background-color: var(--charcoal);
  background-image:
    linear-gradient(var(--overlay-strong), var(--overlay-strong)),
    url("images/hero-bg.png");
  background-size: cover;
  background-position: center 40%;
  border-bottom: 4px solid var(--green);
  padding: 2.75rem 1.25rem 3rem;
  color: var(--white);
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 4.5vw, 2.75rem);
  line-height: 1.18;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: #7dcea0;
}

.hero .lead {
  margin-bottom: 1.5rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-panel {
  background: rgba(26, 36, 32, 0.88);
  color: var(--white);
  border: 2px solid rgba(125, 206, 160, 0.35);
  border-top: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 1.45rem 1.35rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(2px);
}

.hero-panel h2 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fd4a8;
  margin: 0 0 0.85rem;
}

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

.hero-panel li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--white);
  line-height: 1.4;
}

.hero-panel li::before {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--green);
}

/* —— Dark trust bar —— */
.trust-bar {
  background: var(--charcoal);
  color: var(--white);
  border-top: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  padding: 1.5rem 1.25rem;
}

.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  text-align: center;
}

.trust-stat {
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(125, 206, 160, 0.28);
  border-radius: var(--radius);
  background: rgba(27, 122, 78, 0.18);
}

.trust-stat strong {
  display: block;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #8fd4a8;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.trust-stat span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* —— Feature / service cards —— */
.card-grid {
  display: grid;
  gap: 1.15rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin-bottom: 0.45rem;
  color: var(--charcoal);
}

.card p {
  color: var(--text-muted);
}

.service-card {
  position: relative;
  padding-top: 1.6rem;
  border-left: 5px solid var(--green);
}

.service-card:nth-child(2) {
  border-left-color: var(--green-dark);
  background: var(--cream);
}

.service-card:nth-child(3) {
  border-left-color: var(--green-deeper);
  background: var(--green-soft);
}

.service-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.85rem;
  border: 2px solid var(--charcoal);
}

.feature-strip {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 2px solid var(--green-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-strip li {
  background: var(--white);
  padding: 1.35rem 1.25rem;
  border-bottom: 2px solid var(--green-mid);
  display: grid;
  gap: 0.35rem;
}

.feature-strip li:nth-child(2) {
  background: var(--cream);
}

.feature-strip li:nth-child(3) {
  background: var(--green-soft);
}

.feature-strip li:last-child {
  border-bottom: none;
}

.feature-strip .icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--charcoal);
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.feature-strip h3 {
  margin: 0;
  color: var(--charcoal);
}

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

/* —— Product cards (photo-led) —— */
.product-grid {
  display: grid;
  gap: 1.5rem;
  margin: 1.35rem 0 0;
}

.product-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.product-card .product-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--green-soft);
  border-bottom: 3px solid var(--green);
}

.product-card .product-body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.product-card h3 {
  color: var(--charcoal);
  font-size: 1.2rem;
}

/* —— Steps —— */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.steps li {
  background: var(--white);
  border: 2px solid var(--border);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem 1.45rem 4.35rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.steps li:nth-child(even) {
  background: var(--green-soft);
  border-left-color: var(--green-dark);
}

.steps li:nth-child(3n) {
  background: var(--cream);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.1rem;
  top: 1.35rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 2px solid var(--charcoal);
}

/* —— Testimonials —— */
.testimonial {
  background: var(--white);
  border: 2px solid var(--border);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
}

.testimonial:nth-child(2) {
  border-left-color: var(--green-dark);
  background: var(--cream);
}

.testimonial:nth-child(3) {
  border-left-color: var(--green-deeper);
  background: var(--green-soft);
}

.testimonial blockquote {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial .avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
  background: var(--green-soft);
  flex-shrink: 0;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--charcoal);
  display: block;
}

.testimonial .role {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* —— CTA —— */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--cta-bg);
  color: var(--cta-text) !important;
  text-decoration: none !important;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.95rem 1.55rem;
  border-radius: 6px;
  border: 2px solid var(--cta-bg);
  min-height: 50px;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 3px 10px rgba(204, 0, 0, 0.35);
}

.btn-cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--cta-text) !important;
  box-shadow: 0 4px 14px rgba(163, 0, 0, 0.4);
}

.btn-cta:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.cta-block {
  background: var(--charcoal);
  color: var(--white);
  border: 2px solid var(--charcoal);
  border-top: 5px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 0 1.25rem 0;
  box-shadow: var(--shadow-md);
}

.cta-block p {
  margin: 0 auto 1.25rem;
  font-size: 1.12rem;
  color: var(--white);
  font-weight: 600;
  max-width: 32rem;
}

.page-body .cta-block,
.section .cta-block {
  margin-left: 0;
  margin-right: 0;
}

/* —— Contact —— */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.contact-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-list strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.contact-list a {
  word-break: break-word;
}

.contact-list address {
  font-style: normal;
  margin: 0;
}

.clinics-note {
  background: var(--cream);
  border: 2px solid var(--border);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.contact-card {
  margin-bottom: 2rem;
  border-left: 5px solid var(--green) !important;
}

/* —— Footer —— */
.site-footer {
  background: var(--charcoal);
  color: #e8f1ec;
  padding: 2.75rem 1.25rem 2rem;
  margin-top: auto;
  border-top: 4px solid var(--green);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
}

.site-footer a {
  color: #8fd4a8;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer h2 {
  font-family: var(--font);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0;
}

.site-footer p,
.site-footer address {
  font-style: normal;
  margin: 0 0 0.5rem;
  color: #b8c9bf;
  line-height: 1.65;
}

.footer-cta {
  margin-top: 0.25rem;
}

.site-footer .btn-cta {
  background: var(--red);
  border-color: var(--red);
}

.site-footer .btn-cta:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal) !important;
  box-shadow: none;
}

.footer-copy {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: #8a9f94;
}

.footer-copy p {
  color: #8a9f94;
  margin: 0;
}

/* —— Desktop —— */
@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .header-inner {
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .header-actions {
    margin-left: 0;
    order: 3;
  }

  .site-nav {
    display: block;
    width: auto;
    flex-basis: auto;
    border: none;
    padding: 0;
    margin-top: 0;
    background: transparent;
    order: 2;
    margin-left: auto;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
  }

  .site-nav a {
    padding: 0.5rem 0.85rem;
    font-size: 0.98rem;
  }

  .site-nav a[aria-current="page"] {
    background: var(--green);
    border-radius: 6px;
  }

  .site-nav a:hover {
    background: rgba(27, 122, 78, 0.4);
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 3.25rem 1.75rem 3.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.45fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }

  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-strip li {
    border-bottom: none;
    border-right: 2px solid var(--green-mid);
  }

  .feature-strip li:last-child {
    border-right: none;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .page-intro {
    padding: 3rem 1.75rem 2.5rem;
  }

  .page-body {
    padding: 2.5rem 1.75rem 0;
  }

  .section {
    padding: 2.75rem 1.75rem;
  }

  .cta-block {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
    padding: 2.25rem 2rem;
  }

  .page-body .cta-block,
  .section .cta-block {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 960px) {
  html {
    font-size: 118.75%; /* ~19px */
  }

  .card-grid.issues {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .logo-img {
    width: 3.35rem;
    height: 3.35rem;
  }

  .btn-cta-header {
    font-size: 0.92rem;
    padding: 0.6rem 1.1rem;
  }
}

@media (max-width: 719px) {
  .btn-cta-header {
    font-size: 0.8rem;
    padding: 0.5rem 0.7rem;
  }

  .header-actions {
    order: 2;
  }

  .nav-toggle {
    order: 3;
  }

  .site-nav {
    order: 4;
  }
}

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