/* ==========================================================================
   PCP Cleaning, Inc. — pcpcleaning.com
   Shared stylesheet for all pages. Mobile-first.
   Palette:
     Navy      #10233B  (header, footer, dark sections)
     Charcoal  #1F2937  (body text)
     Light     #F7F8FA  (alternate section backgrounds)
     Accent    #2563EB  (CTAs, links)
   Fonts: Manrope (headings), Inter (body) — loaded via Google Fonts with
   system-font fallback stacks below.
   ========================================================================== */

:root {
  --navy: #0B1F3B;            /* PCP brand navy                             */
  --navy-2: #142B4C;          /* slightly lighter navy for panels on navy   */
  --charcoal: #1F2937;
  --muted: #4B5563;           /* secondary text on light backgrounds        */
  --light: #F1F5F9;           /* PCP brand light gray                       */
  --accent: #2E7D32;          /* PCP brand green                            */
  --accent-dark: #256428;     /* hover state, still >4.5:1 with white       */
  --on-navy-muted: #B9C6D9;   /* secondary text on navy (approx 8:1)        */
  --on-navy-link: #8FD19E;    /* green-tinted links on navy (approx 9:1)    */
  --border: #E2E6EC;
  --border-dark: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --slate: #64748B;           /* PCP brand slate (neutral accents/icons)    */

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Helvetica, Arial, sans-serif;

  --radius: 6px;
  --container: 1140px;
}

/* ---- Reset / base ---- */

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 0.75em;
  color: var(--navy);
  font-weight: 700;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); font-weight: 800; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.25rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); }

p {
  margin: 0 0 1.1em;
}

ul, ol {
  margin: 0 0 1.1em;
  padding-left: 1.3em;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--accent-dark);
}

img, svg {
  max-width: 100%;
  height: auto;
}

/* Visible focus for every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.site-header a:focus-visible,
.site-footer a:focus-visible,
.section-dark a:focus-visible,
.section-dark button:focus-visible {
  outline-color: var(--white);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--white);
  color: var(--navy);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--accent);
}

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

/* ---- Layout helpers ---- */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: 3.5rem;
}

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

.section-dark {
  background: var(--navy);
  color: var(--on-navy-muted);
}

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

.section-dark a {
  color: var(--on-navy-link);
}

.section-dark a:hover {
  color: var(--white);
}

.section-intro {
  max-width: 46rem;
}

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

.section-dark .section-intro p {
  color: var(--on-navy-muted);
}

.kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.section-dark .kicker {
  color: var(--on-navy-link);
}

@media (min-width: 768px) {
  .section {
    padding-block: 5rem;
  }
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* ---- Wordmark ---- */

.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark-logo {
  display: block;
  height: 52px;
  width: auto;
}

.footer-wordmark .wordmark-logo {
  height: 58px;
}

a.wordmark:hover {
  opacity: 0.88;
}

@media (prefers-reduced-motion: no-preference) {
  a.wordmark {
    transition: opacity 0.15s ease;
  }
}

/* ---- Header / navigation ---- */

.site-header {
  position: relative;
  background: var(--navy);
  border-bottom: 1px solid var(--border-dark);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Always-visible tap-to-call button on mobile, where the full nav
   (with the text phone number) is tucked inside the collapsed menu.
   A facility manager on their phone shouldn't have to open a menu
   to call. Hidden at desktop widths, where the text phone number in
   the header is already visible at all times. */
.header-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  color: var(--white);
}

.header-call-btn:hover {
  border-color: var(--on-navy-link);
  color: var(--on-navy-link);
}

.header-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  color: var(--white);
}

.header-email-btn:hover {
  border-color: var(--on-navy-link);
  color: var(--on-navy-link);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  min-width: 48px;
  padding: 0.6rem 0.9rem;
  background: transparent;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.nav-toggle-box {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-menu {
  display: none;
}

body.nav-open .nav-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid var(--border-dark);
  padding: 0.75rem 1.25rem 1.5rem;
  box-shadow: 0 16px 32px rgba(6, 15, 28, 0.35);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.5rem 0.25rem;
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--border-dark);
}

.nav-links a:hover {
  color: var(--on-navy-link);
}

.nav-links a[aria-current="page"] {
  font-weight: 700;
  color: var(--on-navy-link);
}

.nav-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  padding-top: 1.1rem;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

.nav-phone svg {
  color: var(--on-navy-link);
  flex-shrink: 0;
}

.nav-phone:hover {
  color: var(--on-navy-link);
}

.nav-email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-email svg {
  color: var(--on-navy-link);
  flex-shrink: 0;
}

.nav-email:hover {
  color: var(--on-navy-link);
}

/* Raised from the site's usual 960px desktop breakpoint: with both the
   phone number and email address spelled out in the ribbon, 960-1100px
   is too tight and wraps ("754-213-" / "7282", "Request a" / "Quote").
   Below 1120px the compact mobile header (tap-to-call + tap-to-email
   icons, hamburger menu) stays in place instead of a half-broken row. */
@media (min-width: 1120px) {
  .nav-toggle {
    display: none;
  }

  .header-call-btn {
    display: none;
  }

  .header-email-btn {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
  }

  .nav-menu,
  body.nav-open .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
  }

  .nav-links {
    display: flex;
    gap: 1.5rem;
  }

  .nav-links a {
    min-height: 44px;
    padding: 0.25rem 0.1rem;
    border-bottom: 2px solid transparent;
  }

  .nav-links a[aria-current="page"] {
    border-bottom-color: var(--on-navy-link);
  }

  .nav-actions {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding-top: 0;
  }

  .btn-nav {
    min-height: 44px;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* ---- Hero ---- */

.hero {
  background: var(--navy);
  color: var(--on-navy-muted);
  padding-block: 3.5rem 4rem;
}

.hero h1 {
  color: var(--white);
  max-width: 21ch;
}

.hero-lede {
  font-size: 1.1rem;
  max-width: 38rem;
  color: var(--on-navy-muted);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-navy-link);
  margin-bottom: 1.1rem;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-call {
  margin: 1.1rem 0 0;
  font-size: 0.95rem;
  color: var(--on-navy-muted);
}

.hero-call a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}

.hero-call a:hover {
  color: var(--on-navy-link);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin: 2rem 0 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--on-navy-muted);
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-facts svg {
  color: var(--on-navy-link);
  flex-shrink: 0;
}

@media (min-width: 960px) {
  .hero {
    padding-block: 5rem 5.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: center;
    gap: 4rem;
  }
}

/* ---- Photography ---- */

.hero-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-2);
}

.card-photo {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
  background: var(--navy-2);
}

.hero-photo img,
.card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-photo {
  max-width: 34rem;
  margin-top: 1.25rem;
}

/* Scannable list of the specific areas a program covers */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.area-tags li {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
}

/* ---- FAQ ---- */

.faq-list {
  max-width: 44rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after {
    transition: none;
  }
}

/* ---- Cards / grids ---- */

.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.card h3 {
  margin-bottom: 0.5em;
}

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

.card .icon {
  color: var(--accent);
  margin-bottom: 1.1rem;
}

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

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Priority industry cards (Hotels, Country Clubs) */

.card-feature {
  padding: 2rem;
  border-top: 4px solid var(--accent);
}

.card-feature .card-note {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---- Pain / response section ---- */

.pain-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.pain-item {
  background: var(--navy-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}

.pain-item h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.4em;
}

.pain-item p {
  margin: 0;
  font-size: 0.97rem;
}

@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Process steps ---- */

.steps {
  counter-reset: step;
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.steps h3 {
  margin-bottom: 0.4em;
}

.steps p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

/* ---- CTA band ---- */

.cta-band {
  text-align: center;
}

.cta-band h2 {
  max-width: 26ch;
  margin-inline: auto;
}

.cta-band p {
  max-width: 40rem;
  margin-inline: auto;
}

.cta-band .btn-group {
  justify-content: center;
}

/* ---- Services page ---- */

.service-section {
  border-top: 1px solid var(--border);
  padding-block: 2.75rem;
}

.service-section:first-of-type {
  border-top: 0;
}

.service-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-head .icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.service-body {
  max-width: 52rem;
}

.service-list {
  columns: 1;
  column-gap: 2.5rem;
  font-size: 0.97rem;
  color: var(--muted);
}

.service-list li {
  margin-bottom: 0.45em;
  break-inside: avoid;
}

@media (min-width: 640px) {
  .service-list { columns: 2; }
}

/* ---- Contact page ---- */

.contact-direct {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-direct li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-direct svg {
  color: var(--on-navy-link);
  flex-shrink: 0;
}

.contact-direct a {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.contact-direct a:hover {
  color: var(--on-navy-link);
  text-decoration: underline;
}

/* ---- Form ---- */

.form-wrap {
  max-width: 46rem;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-field--full { grid-column: 1 / -1; }
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-field .optional-tag {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid #C4CBD4;
  border-radius: var(--radius);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #B42318;
  border-width: 2px;
}

.field-error {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #B42318;
}

/* Only force display:block when the field is actually showing an error —
   otherwise this rule's specificity beats the browser's default
   [hidden] { display: none }, and every field would show a red "Error:"
   label on page load instead of staying hidden until validation fails. */
.field-error:not([hidden]) {
  display: block;
}

.field-error::before {
  content: "Error: ";
}

.form-status {
  margin-top: 1.25rem;
  font-weight: 600;
}

.form-status[data-state="error"] {
  color: #B42318;
  background: #FEF3F2;
  border: 1px solid #B42318;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.form-status[data-state="error"] a {
  color: #B42318;
}

.form-success {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-success h2 {
  margin-bottom: 0.4em;
}

.form-success p:last-child {
  margin-bottom: 0;
}

.form-footnote {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Netlify honeypot: moved off-screen (NOT display:none, which weakens the
   honeypot and is unnecessary), hidden from assistive tech via aria-hidden
   and tabindex=-1 in the markup. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ---- Footer ---- */

.site-footer {
  background: var(--navy);
  color: var(--on-navy-muted);
  padding-top: 3.5rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-wordmark {
  margin-bottom: 1rem;
}

.footer-desc {
  max-width: 26rem;
}

.footer-meta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-navy-link);
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--on-navy-muted);
  text-decoration: none;
}

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

.footer-area {
  color: var(--on-navy-muted);
  padding-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-block: 1.5rem;
  font-size: 0.85rem;
  color: var(--on-navy-muted);
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

/* ---- Reduced motion ---- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
