/* Rebekah's Cleaning Service — Lane County, OR
   Brand: hibiscus red, burgundy, navy. Fast, static, mobile-first. */

:root {
  --burgundy: #6b1d2a;
  --burgundy-deep: #4a1220;
  --navy: #1e3a5f;
  --navy-soft: #2c4a6e;
  --hibiscus: #c41e3a;
  --hibiscus-hot: #e31c3d;
  --cream: #faf7f5;
  --cream-dark: #f0ebe6;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: rgba(107, 29, 42, 0.12);
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(74, 18, 32, 0.08);
  --shadow-sm: 0 4px 16px rgba(30, 58, 95, 0.08);
  --radius: 14px;
  --max: 1120px;
  --header-h: 72px;
  --font-display: Georgia, "Times New Roman", "Palatino Linotype", Palatino, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--hibiscus);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

:focus-visible {
  outline: 3px solid var(--hibiscus);
  outline-offset: 3px;
}

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

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand:hover {
  color: inherit;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--burgundy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--hibiscus);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--hibiscus);
  color: var(--white) !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(196, 30, 58, 0.28);
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: var(--burgundy);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  font-size: 1.25rem;
  color: var(--navy);
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
    box-shadow: var(--shadow-sm);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .brand-tag {
    display: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--hibiscus);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.25);
}

.btn-primary:hover {
  background: var(--burgundy);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  background: var(--cream);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(196, 30, 58, 0.06), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(30, 58, 95, 0.06), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hibiscus);
  margin-bottom: 0.85rem;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--hibiscus);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  color: var(--burgundy);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 1.02rem;
}

.hero-contact a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.hero-contact a:hover {
  color: var(--hibiscus);
}

.hero-contact .label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: min(100%, 380px);
  filter: drop-shadow(0 16px 36px rgba(74, 18, 32, 0.1));
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.trust-item {
  text-align: center;
  padding: 0.5rem;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--burgundy);
  line-height: 1.2;
}

.trust-item span {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-contact {
    align-items: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-eyebrow::before {
    display: none;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .trust-item {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    text-align: left;
  }

  .trust-item strong {
    font-size: 1.1rem;
  }
}

/* ---------- Sections ---------- */
section {
  padding: 4rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hibiscus);
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--burgundy);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Services ---------- */
.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff 0%, var(--cream) 100%);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--burgundy);
  box-shadow: 0 1px 2px rgba(74, 18, 32, 0.04);
}

.service-icon svg {
  display: block;
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  color: var(--hibiscus);
  border-color: rgba(196, 30, 58, 0.22);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.1);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- About ---------- */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-copy p {
  margin-bottom: 1rem;
  color: var(--ink);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.serve-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.serve-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.serve-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(196, 30, 58, 0.1);
  color: var(--hibiscus);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 0.1rem;
}

@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Eco banner ---------- */
.eco-banner {
  margin-top: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #f3faf4 0%, #e8f5eb 100%);
  border: 1px solid rgba(45, 122, 62, 0.18);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.eco-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(45, 122, 62, 0.2);
  color: #2d7a3e;
  display: grid;
  place-items: center;
}

.eco-banner strong {
  display: block;
  color: #1e5a2c;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.eco-banner p {
  color: #3d5c45;
  font-size: 0.98rem;
  margin: 0;
}

/* ---------- Gallery + before/after ---------- */
.gallery {
  background: var(--white);
}

.ba-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.ba-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.ba-card h3 {
  font-family: var(--font-display);
  color: var(--burgundy);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.ba-pair figure {
  margin: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.ba-pair img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.ba-pair figcaption {
  position: absolute;
  left: 0.65rem;
  top: 0.65rem;
  margin: 0;
}

.ba-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: #fff;
}

.ba-label.before {
  background: rgba(90, 40, 40, 0.88);
}

.ba-label.after {
  background: rgba(30, 100, 55, 0.9);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-dark);
  min-height: 220px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.72));
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .gallery-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .ba-pair {
    grid-template-columns: 1fr;
  }

  .ba-pair img {
    height: 220px;
  }

  .gallery-grid-3 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 45%, #8b2438 100%);
  color: var(--white);
  padding: 3.25rem 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.5rem;
}

.cta-band p {
  opacity: 0.92;
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--burgundy);
  box-shadow: none;
}

.cta-band .btn-primary:hover {
  background: var(--cream);
  color: var(--burgundy-deep);
}

.cta-band .btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ---------- Service area map ---------- */
.service-area {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  padding: 4rem 0;
}

.area-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.area-map-wrap {
  min-width: 0;
}

.area-map {
  height: min(420px, 55vh);
  min-height: 280px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 1;
  background: var(--cream-dark);
}

.area-map-note {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.area-cities {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.area-cities h3 {
  font-family: var(--font-display);
  color: var(--burgundy);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.city-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.city-chips li {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.area-cities p {
  color: var(--muted);
  font-size: 0.98rem;
}

@media (max-width: 820px) {
  .area-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact ---------- */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-family: var(--font-display);
  color: var(--burgundy);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-methods {
  display: grid;
  gap: 1rem;
}

.contact-method {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-method .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.contact-method strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.contact-method a {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  word-break: break-word;
}

.contact-method a:hover {
  color: var(--hibiscus);
}

.contact-note {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

@media (max-width: 560px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

input,
textarea,
select {
  width: 100%;
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--hibiscus);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.15);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  font-size: 0.95rem;
  min-height: 1.3em;
}

.form-status.ok {
  color: #1b6b3a;
}

.form-status.err {
  color: var(--hibiscus);
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--burgundy-deep);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand img {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 32ch;
  opacity: 0.85;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
  opacity: 0.75;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
