/* Swift Vehicle Solutions — mobile-first responsive styles */

:root {
  --navy:       #0f172a;
  --navy-light: #1e293b;
  --slate:      #334155;
  --slate-mid:  #64748b;
  --slate-light:#94a3b8;
  --white:      #f8fafc;
  --cream:      #f1f5f9;
  --accent:     #f59e0b;
  --accent-dark:#d97706;
  --accent-soft:#fef3c7;
  --success:    #059669;
  --error:      #dc2626;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg:  0 12px 40px rgba(15, 23, 42, 0.12);
  --font:       "DM Sans", system-ui, -apple-system, sans-serif;
  --display:    "Outfit", system-ui, sans-serif;
  --max-w:      1140px;
  --gutter:     clamp(1rem, 4vw, 1.5rem);
  --header-h:   64px;
  --topbar-h:   40px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: var(--navy);
  font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: var(--slate-light);
  font-size: 0.8125rem;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 0.5rem;
}

.topbar__status { display: flex; align-items: center; gap: 0.5rem; }
.topbar__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slate-mid);
  flex-shrink: 0;
}
.topbar__status.is-open::before { background: var(--success); }
.topbar__status.is-closed::before { background: var(--error); }

.topbar__phone {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.topbar__phone:hover { color: var(--accent); }

/* ---------- Header & mobile nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow); }

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

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 102;
}

.logo__img {
  display: block;
  width: auto;
  height: clamp(36px, 8vw, 48px);
  max-width: min(220px, 55vw);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 102;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 85vw);
  background: var(--white);
  padding: calc(var(--header-h) + var(--topbar-h) + 1rem) var(--gutter) 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  z-index: 101;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.15);
}
.nav.is-open { transform: translateX(0); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

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

.nav__link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav__link:hover,
.nav__link.is-active { background: var(--cream); color: var(--accent-dark); }
.nav__link--cta {
  margin-top: 0.5rem;
  background: var(--accent);
  color: var(--navy);
  font-weight: 600;
  justify-content: center;
}
.nav__link--cta:hover { background: var(--accent-dark); color: var(--white); }

body.nav-open { overflow: hidden; }

/* Desktop nav */
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-overlay { display: none !important; }

  .nav {
    position: static;
    width: auto;
    padding: 0;
    transform: none;
    background: none;
    box-shadow: none;
    overflow: visible;
  }

  .nav__list {
    flex-direction: row;
    align-items: center;
    gap: 0.125rem;
  }

  .nav__link {
    min-height: 44px;
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
  }

  .nav__link--cta {
    margin-top: 0;
    margin-left: 0.5rem;
    padding: 0.5rem 1.25rem;
  }
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  margin: 0 0 0.75rem;
}

.section__header { margin-bottom: 2rem; }
.section__title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

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

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

.btn--lg { min-height: 52px; padding: 0.875rem 1.75rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 2.5rem 0 3rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--white) 0%, transparent 40%, var(--white) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--navy);
}

.hero__lead {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--slate);
  margin: 0 0 1.5rem;
  max-width: 36em;
}

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

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__visual img {
  max-width: min(100%, 480px);
  filter: drop-shadow(0 16px 32px rgba(15, 23, 42, 0.12));
}

@media (min-width: 600px) {
  .hero__actions { flex-direction: row; flex-wrap: wrap; }
}

@media (min-width: 900px) {
  .hero { padding: 4rem 0 5rem; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .hero__visual { justify-content: flex-end; }
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 0;
}

.cta-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.cta-strip h2 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.cta-strip p {
  margin: 0;
  color: var(--slate-light);
  font-size: 0.9375rem;
}

@media (min-width: 700px) {
  .cta-strip__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .cta-strip .btn { flex-shrink: 0; }
}

/* ---------- Sections ---------- */
.section { padding: 3.5rem 0; }
.section--alt { background: var(--cream); }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about__copy p { margin: 0 0 1rem; color: var(--slate); }

.about__goal {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.5rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about__goal p {
  margin: 0;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image img { width: 100%; object-fit: cover; }

@media (min-width: 800px) {
  .about__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* ---------- Services grid ---------- */
.services-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.section--alt .service-card { border-color: transparent; }

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

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(245, 158, 11, 0.15) 100%);
  color: var(--accent-dark);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card:hover .service-card__icon {
  background: var(--accent);
  color: var(--navy);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.service-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--slate-mid);
}

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

@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

/* ---------- MOT ---------- */
.mot__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.mot__content p { color: var(--slate); margin: 0 0 1.25rem; }

.check-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  color: var(--slate);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.mot__panel-inner {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.mot__panel-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
}

.mot__panel-content {
  position: relative;
  padding: 1.5rem;
  color: var(--white);
}

.mot__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.mot__panel-content p { margin: 0; font-size: 0.9375rem; line-height: 1.5; }

@media (min-width: 800px) {
  .mot__grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .mot__panel-inner { min-height: 360px; }
}

/* ---------- Brand divider ---------- */
.brand-divider {
  padding: 0.5rem 0 0.25rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.brand-divider--to-light {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.brand-divider__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.brand-divider__line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.15), transparent);
}

.brand-divider__img {
  width: clamp(110px, 28vw, 160px);
  height: auto;
  opacity: 0.9;
  flex-shrink: 0;
}

/* ---------- Reviews / testimonials ---------- */
.reviews__header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.google-rating__logo {
  display: flex;
  flex-shrink: 0;
}

.google-rating__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}

.google-rating__score {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1;
}

.google-rating__count {
  font-size: 0.8125rem;
  color: var(--slate-mid);
  width: 100%;
}

.stars {
  color: #fbbc04;
  letter-spacing: 0.05em;
  font-size: 0.9375rem;
  line-height: 1;
}

.reviews-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.review-card__source {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-mid);
}

.review-card blockquote {
  margin: 0 0 1.15rem;
  padding: 0;
  flex: 1;
}

.review-card blockquote p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slate);
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.review-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9375rem;
}

.review-card footer span {
  font-size: 0.8125rem;
  color: var(--slate-mid);
}

.reviews__cta {
  margin: 1.75rem 0 0;
  text-align: center;
}

@media (min-width: 600px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .google-rating__count { width: auto; }
}

@media (min-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-style: normal;
}

.contact-card h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--navy);
}

.contact-card p { margin: 0; color: var(--slate); }

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.contact-list a {
  color: var(--accent-dark);
  font-weight: 500;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.contact-list a:hover { text-decoration: underline; }

.hours {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.hours caption {
  font-family: var(--display);
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.hours th,
.hours td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
}

.hours th { font-weight: 500; color: var(--slate-mid); width: 40%; }
.hours .closed td { color: var(--slate-mid); }

/* Contact form */
.contact-form {
  background: var(--white);
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.field { margin-bottom: 1rem; }

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

.required { color: var(--error); }

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 1rem; /* prevents iOS zoom on focus */
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

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

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

.field input.is-invalid,
.field textarea.is-invalid {
  border-color: var(--error);
}

.field-error {
  margin: 0.375rem 0 0;
  font-size: 0.8125rem;
  color: var(--error);
  min-height: 1.25em;
}

.form-recaptcha-note {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  color: var(--slate-mid);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

/* Alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.alert--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  min-height: 250px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 800px) {
  .contact__grid { grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: start; }
  .map-wrap { aspect-ratio: 21 / 9; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: var(--slate-light);
  padding: 2.5rem 0;
  font-size: 0.875rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer__brand strong {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
}

.footer__brand p { margin: 0; }

.footer__tags {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  opacity: 0.8;
}

.footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  opacity: 0.6;
}

@media (min-width: 600px) {
  .footer__inner { text-align: left; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Safe area for notched phones ---------- */
@supports (padding: max(0px)) {
  .topbar__inner,
  .header__inner,
  .container {
    padding-left: max(var(--gutter), env(safe-area-inset-left));
    padding-right: max(var(--gutter), env(safe-area-inset-right));
  }
  .footer { padding-bottom: max(2.5rem, env(safe-area-inset-bottom)); }
}
