/* =========================================================
   MNS Fuel Corp / ProtoStar Energy — main stylesheet
   Build: 2026-09-03-r2
   ========================================================= */

:root {
  --navy: #1d2c67;
  --navy-topbar: #253464;
  --navy-dark: #1a1a54;
  --orange: #e6b234;
  --orange-dark: #d19f24;
  --maroon: #831c1d;
  --gray-bg: #e4e4e4;
  --lightblue: #6488bf;
  --text-dark: #232323;
  --white: #ffffff;

  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin: 0 0 .5em;
  line-height: 1.25;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: var(--navy);
  padding: 10px 16px;
  z-index: 10000;
  font-weight: 700;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* =========================================================
   Top phone bar
   ========================================================= */
.top-bar {
  background: var(--navy-topbar);
  color: var(--white);
  font-size: .95rem;
  padding: 16px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.top-bar .phone-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  color: var(--orange);
  font-size: 1.05rem;
  line-height: 1.5;
}
.top-bar .phone-line .phone-icon { font-size: 1.3rem; line-height: 1.6; display: inline-flex; }
.top-bar .phone-line .phone-icon svg { width: 22px; height: 22px; fill: #fff; }
.top-bar .phone-line a { color: var(--orange); display: block; }
.top-bar .right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.top-bar .open-daily {
  font-style: italic;
  margin: 0;
}
.btn-order {
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-size: 1.15rem;
  white-space: nowrap;
}
.btn-order:hover { background: var(--orange-dark); }

/* =========================================================
   Main nav (sticky)
   ========================================================= */
.main-nav {
  background: var(--navy);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img { height: 60px; width: auto; }

.menu-toggle {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-toggle:hover { background: rgba(255,255,255,.1); }

.nav-panel {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  visibility: hidden;
  z-index: 9999;
  transition: background .3s ease, visibility 0s linear .3s;
}
.nav-panel.open {
  background: rgba(0,0,0,.55);
  visibility: visible;
  transition: background .3s ease, visibility 0s linear 0s;
}
.nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 85vw);
  background: rgba(29,44,103,.98);
  box-shadow: -12px 0 34px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 90px 40px 40px;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: auto;
}
.nav-panel.open .nav-drawer { transform: translateX(0); }
.nav-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-drawer li { margin: 14px 0; }
.nav-drawer a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}
.nav-drawer a:hover,
.nav-drawer a.active { color: var(--orange); }
.nav-drawer-logo {
  margin-top: auto;
  padding-top: 40px;
  max-width: 200px;
}
.nav-panel .close-nav {
  position: absolute;
  top: 24px;
  right: 32px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* =========================================================
   Hero
   ========================================================= */

/* Full-height hero (home page): single full-bleed photo, gradient overlay, text on left */
.hero-split {
  position: relative;
  min-height: calc(100vh - 158px);
  background-image: url('../assets/hero-home-bg.jpg');
  background-size: cover;
  background-position: right center;
  display: flex;
  align-items: center;
}
.hero-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,26,64,.88) 0%, rgba(20,26,64,.72) 32%, rgba(20,26,64,.25) 62%, rgba(20,26,64,0) 85%);
}
.hero-split-text {
  position: relative;
  z-index: 1;
  padding: 60px;
  max-width: 640px;
}
.hero-split-text h1 {
  font-size: 3rem;
  color: var(--orange);
  margin: 0;
}
.hero-split-text .hero-sub {
  color: var(--white);
  font-size: 1.2rem;
  max-width: 480px;
  margin-bottom: 28px;
}

/* Inner-page hero (Services, Contact, Areas): full-bleed photo banner */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .container { position: relative; z-index: 1; text-align: left; margin: 0; width: 100%; max-width: none; padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px)); }
.hero-inner {
  background-image: linear-gradient(rgba(20,30,70,.55), rgba(20,30,70,.55)), var(--bg-img, none);
  background-size: cover;
  background-position: center;
}
.hero-services { background-image: linear-gradient(rgba(20,30,70,.45), rgba(20,30,70,.45)), url('../assets/services-hero-bg.jpg'); }
.hero-contact { background-image: linear-gradient(rgba(20,30,70,.55), rgba(20,30,70,.55)), url('../assets/contact-hero-bg.jpg'); background-position: center; min-height: 460px; }
.hero-areas { background-image: linear-gradient(rgba(20,30,70,.55), rgba(20,30,70,.55)), url('../assets/services-marine.png'); }

.hero h1 {
  font-size: 2.75rem;
  color: var(--orange);
  max-width: 640px;
}
.hero-inner h1 { color: var(--white); font-size: 2.5rem; }
.hero-sub {
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 24px;
}
.hero-divider {
  width: 260px;
  height: 3px;
  background: var(--maroon);
  border: none;
  margin: 20px 0;
}

/* =========================================================
   About / intro section — navy text panel + image w/ overlaid card
   ========================================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.about-heading-panel {
  background: var(--navy);
  color: var(--orange);
  display: flex;
  align-items: center;
  padding: 60px;
}
.about-heading-panel h2 {
  font-size: 3.1rem;
  line-height: 1.15;
  margin: 0;
}
.about-image-wrap {
  position: relative;
  background: url('../assets/oiltruck-about.png') center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.about-card {
  position: relative;
  background: var(--white);
  padding: 36px;
  border-top: 3px solid var(--maroon);
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
  max-width: 460px;
}
.about-card h3 { color: var(--navy); }
.about-card a { color: var(--lightblue); font-weight: 600; }
.about-card img {
  margin-top: 20px;
  border: 3px solid var(--white);
  outline: 1px solid #ddd;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* =========================================================
   Price banner — merged orange banner + nested call-strip
   ========================================================= */
.price-banner {
  background: var(--orange);
  border-top: 4px solid var(--maroon);
  border-bottom: 4px solid var(--maroon);
  padding: 22px 0;
}
.price-banner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.price-banner h2 {
  color: var(--navy);
  font-size: 1.3rem;
  margin: 0;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-navy:hover { background: var(--navy-dark); }

.call-strip {
  background: var(--lightblue);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  padding: 18px;
  font-size: 1.05rem;
}
.call-strip a { color: var(--white); text-decoration: underline; }

/* Final "Let us help you..." CTA — orange, larger text */
.cta-final {
  background: var(--orange);
  color: var(--navy);
  text-align: center;
  font-weight: 700;
  padding: 26px 18px;
  font-size: 1.25rem;
  line-height: 1.6;
}
.cta-final a { color: var(--navy); text-decoration: underline; }

/* =========================================================
   Services intro (home) — centered intro + icon-card grid
   ========================================================= */
.services-intro {
  background: linear-gradient(135deg, rgba(29,44,103,.07) 0%, var(--gray-bg) 45%, rgba(230,178,52,.09) 100%);
  padding: 80px 0;
}
.services-intro-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 46px;
}
.services-intro-header h2 { color: var(--navy); }
.services-intro-header p { color: #444; font-size: 1.05rem; }

.services-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}
.services-pill-row .pill {
  background: var(--white);
  border: 1px solid #d8dbe6;
  color: var(--navy);
  font-weight: 700;
  font-size: .82rem;
  padding: 8px 16px;
  border-radius: 999px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  padding: 40px 26px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(20,26,64,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20,26,64,.14);
}
.service-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.service-card:nth-child(1) .service-icon-badge { background: var(--navy); }
.service-card:nth-child(2) .service-icon-badge { background: var(--lightblue); }
.service-card:nth-child(3) .service-icon-badge { background: var(--maroon); }
.service-card:nth-child(4) .service-icon-badge { background: var(--orange); }
.service-icon-badge img { width: 32px; height: 32px; filter: brightness(0) invert(1); }
.service-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.service-card p { font-size: .92rem; color: #555; margin: 0; }

/* =========================================================
   Feature tiles (Family owned / no contract / etc.)
   ========================================================= */
.feature-tiles {
  background: var(--gray-bg);
  padding: 60px 0;
  border-top: 3px solid var(--maroon);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 14px;
}
.feature-tile {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
  overflow: hidden;
}
.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20,25,45,.42);
}
.feature-tile span { position: relative; z-index: 1; padding: 0 12px; }
.feature-family { background-image: url('../assets/feature-family-owned.jpg'); }
.feature-sameday { background-image: url('../assets/feature-same-day.jpg'); background-position: left center; }
.feature-schedule { background-image: url('../assets/feature-schedule-online.jpg'); background-position: right center; }
.feature-nocontract { background-image: url('../assets/feature-no-contract.jpg'); }
.feature-delivery { background-image: url('../assets/feature-delivery.jpg'); }

/* Plain-text service list — sits in the 6th grid cell, no box/background */
.service-list-plain {
  display: flex;
  align-items: center;
  padding: 10px 16px;
}
.service-list-plain ul { list-style: none; padding: 0; margin: 0; width: 100%; }
.service-list-plain li {
  padding: 6px 0;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid #d5d5d5;
}
.service-list-plain li::before { content: "› "; color: var(--maroon); font-weight: 900; }

/* =========================================================
   Contact info section (no form — phone/address/hours cards)
   ========================================================= */
.contact-info-section {
  background: var(--gray-bg);
  padding: 80px 0;
}
.contact-intro-headline {
  text-align: center;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  max-width: 760px;
  margin: 0 auto 30px;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 700px;
  margin: 40px auto 0;
}
.contact-info-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  border-top: 3px solid var(--maroon);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.contact-info-card .icon { font-size: 2.2rem; margin-bottom: 14px; }
.contact-info-card .icon svg { width: 40px; height: 40px; fill: var(--lightblue); }
.contact-info-card h3 { color: var(--navy); }
.contact-info-card p { margin: 0; }
.contact-info-card a {
  color: var(--maroon);
  font-weight: 800;
  font-size: 1.25rem;
  display: inline-block;
  margin-top: 8px;
}
.contact-cta-row {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================================================
   Services page — boxed/contained service blocks
   ========================================================= */
.services-page-intro {
  background: var(--gray-bg);
  padding: 50px 0;
}
.service-block-wrap { padding: 70px 0; }
.service-block-wrap:nth-child(even) { background: var(--gray-bg); }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
}
.service-block-reverse { direction: rtl; }
.service-block-reverse > * { direction: ltr; }
.service-block-image {
  background-size: cover;
  background-position: center;
  min-height: 340px;
}
.service-block-card {
  background: var(--white);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 3px solid var(--maroon);
}
.service-block-card h3 { color: var(--navy); font-size: 1.6rem; }
.service-block-card .btn-order {
  align-self: center;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(230,178,52,.4);
  justify-content: center;
  min-width: 200px;
}
.service-block-card .call-note {
  margin-top: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  font-weight: 700;
  display: block;
  text-align: center;
}
.service-block-card .call-note a { color: var(--white); }

/* =========================================================
   Areas we serve list
   ========================================================= */
.areas-section { padding: 70px 0; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 32px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.areas-grid li {
  padding: 8px 0;
  border-bottom: 1px solid #e4e4e4;
  color: var(--navy);
  font-weight: 600;
}

/* Areas We Serve — county tables */
.areas-intro {
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 30px;
}
.county-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--gray-bg);
  padding: 30px;
}
.county-table h3 {
  text-align: center;
  color: var(--navy);
  margin-bottom: 14px;
}
.county-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.county-table thead th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 10px 14px;
  font-family: var(--font-heading);
}
.county-table tbody td {
  padding: 8px 14px;
}
.county-table tbody tr:nth-child(odd) { background: #eef0f2; }
.county-table tbody tr:nth-child(even) { background: var(--lightblue); color: var(--white); }

@media (max-width: 800px) {
  .county-tables { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.85);
}
.footer-top {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 40px;
}
.footer-top h3 {
  color: var(--white);
  font-size: 1.1rem;
  border-bottom: 2px solid var(--maroon);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.footer-top a:hover { color: var(--orange); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; font-weight: 600; }
.footer-logo { margin-top: 36px; max-width: 220px; display: block; margin-left: auto; margin-right: auto; }
.footer-contact li { margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .icon-inline { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; margin-top: 3px; }

/* Links and Contact Us columns are centered; About Us stays left-aligned */
.footer-top > div:nth-child(2),
.footer-top > div:nth-child(3) { text-align: center; }
.footer-top > div:nth-child(2) h3::after,
.footer-top > div:nth-child(3) h3::after { content: ""; display: block; }
.footer-top > div:nth-child(2) .footer-links,
.footer-top > div:nth-child(3) .footer-contact { display: inline-block; text-align: left; }
.footer-top > div:nth-child(2) h3,
.footer-top > div:nth-child(3) h3 { text-align: center; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 18px 0;
  text-align: center;
  font-size: .88rem;
}
.footer-bottom .legal-links { margin-top: 6px; }
.footer-bottom .legal-links a { color: #9fb4e6; }
.footer-bottom .legal-links a:hover { color: var(--orange); }

/* =========================================================
   Generic content sections (legal pages, 404, areas)
   ========================================================= */
.page-content {
  padding: 60px 0;
  max-width: 900px;
  margin: 0 auto;
}
.page-content h2 { color: var(--navy); margin-top: 2em; }
.page-content h2:first-child { margin-top: 0; }
.page-content a { color: var(--lightblue); text-decoration: underline; }

.error-404 {
  text-align: center;
  padding: 100px 0;
}
.error-404 h1 { font-size: 6rem; color: var(--navy); margin: 0; }
.error-404 p { font-size: 1.2rem; }

/* =========================================================
   Accessibility toolbar — left-edge tab + slide-out panel
   ========================================================= */
.a11y-toggle {
  position: fixed;
  top: 160px;
  left: 0;
  z-index: 10000;
  width: 54px;
  height: 54px;
  background: var(--navy);
  border: 2px solid var(--white);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.a11y-toggle:hover { background: var(--orange); transform: scale(1.05); }
.a11y-toggle svg { width: 28px; height: 28px; fill: var(--white); }

.a11y-panel {
  position: fixed;
  top: 160px;
  left: 0;
  z-index: 9999;
  width: 270px;
  background: #262a3f;
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: 0 8px 8px 0;
  padding: 22px 20px 20px;
  transform: translateX(-110%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.a11y-panel.open { transform: translateX(0); opacity: 1; }
.a11y-panel h4 { margin-top: 0; color: var(--white); }
.a11y-panel button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  margin-bottom: 6px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: var(--white);
  border-radius: 4px;
  cursor: pointer;
  font-size: .92rem;
}
.a11y-panel button:hover { background: rgba(255,255,255,.08); }
.a11y-panel button[aria-pressed="true"] {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
  font-weight: 700;
}
.a11y-panel .reset-btn { color: #ff8a8a; font-weight: 700; }

/* html-level toggle classes */
html.a11y-grayscale { filter: grayscale(1); }
html.a11y-invert { filter: invert(1) hue-rotate(180deg); }
html.a11y-contrast body { background: #000; color: #fff; }
html.a11y-contrast .site-footer,
html.a11y-contrast .main-nav,
html.a11y-contrast .top-bar { background: #000; }
html.a11y-light body,
html.a11y-light section { background: #fff !important; color: #000 !important; }
html.a11y-underline a { text-decoration: underline !important; }
html.a11y-readable body,
html.a11y-readable * { font-family: Arial, Helvetica, sans-serif !important; }
html.a11y-scale-1 body { font-size: 112%; }
html.a11y-scale-2 body { font-size: 125%; }
html.a11y-scale-3 body { font-size: 140%; }

/* =========================================================
   Responsive breakpoints
   ========================================================= */

/* Tablet / mid-size — prevent header/logo overflow in the 800px range */
@media (max-width: 960px) {
  .logo img { height: 48px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split { min-height: auto; padding: 40px 0; }
  .hero-split-text { padding: 44px 30px; }
  .about-split { grid-template-columns: 1fr; }
  .about-heading-panel { padding: 44px 30px; }
  .about-heading-panel h2 { font-size: 2.3rem; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: 1fr; }
  .service-block,
  .service-block-reverse { grid-template-columns: 1fr; direction: ltr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .top-bar .container { flex-direction: column; align-items: flex-start; text-align: left; }
  .top-bar .right-col { align-items: flex-start; width: 100%; }
  .btn-order { width: 100%; justify-content: center; }
  .hero { min-height: 460px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-sub { font-size: 1rem; }
  .hero-split-text h1 { font-size: 2.1rem; }
  .price-banner-row { flex-direction: column; text-align: center; }
  .service-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .feature-tile { min-height: 140px; }
  .areas-grid { grid-template-columns: 1fr; }
  .about-heading-panel h2 { font-size: 1.9rem; }
  .a11y-panel { width: calc(100vw - 54px); }
}
