/* ============================================
   PAA Ohio — Aviation Conventional Style
   Clean sans-serif, navy + red, high contrast
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --navy: #0a3161;
  --navy-dark: #061f3f;
  --red: #c8102e;
  --red-dark: #a00d24;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f3;
  --gray-200: #d6dbe0;
  --gray-400: #8a929c;
  --gray-700: #3d4651;
  --ink: #1a1f2a;

  --sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

/* ---------- Top utility bar ---------- */
.utility {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.875rem;
  padding: 0.5rem 0;
}
.utility-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.utility .cert {
  font-weight: 600;
}
.utility a { color: var(--white); }
.utility a:hover { color: #ffd700; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  height: 96px;
  width: auto;
  display: block;
  max-width: 100%;
}
@media (max-width: 720px) {
  .brand-logo { height: 64px; }
}
.footer-brand .brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* Phone in header (right side, prominent) */
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.header-phone .label {
  font-size: 0.72rem;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.header-phone a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.header-phone a:hover { color: var(--red); }
@media (max-width: 720px) {
  .header-phone .label { display: none; }
  .header-phone a { font-size: 1.15rem; }
}

/* Nav (now below header in its own bar) */
.main-nav {
  background: var(--navy);
}
.main-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}
.main-nav a {
  display: block;
  padding: 0.95rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.15s;
}
.main-nav a:first-child { border-left: 1px solid rgba(255,255,255,0.1); }
.main-nav a:hover { background: var(--navy-dark); }
.main-nav a.active { background: var(--red); }
.main-nav .nav-cta {
  background: var(--red);
}
.main-nav .nav-cta:hover { background: var(--red-dark); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  margin: 0.5rem 0;
  color: var(--white);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

@media (max-width: 820px) {
  .main-nav-inner { flex-wrap: wrap; }
  .main-nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .main-nav ul.open { display: flex; }
  .main-nav a {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem var(--gutter);
  }
  .main-nav a:first-child { border-left: none; }
  .menu-toggle { display: block; margin-left: var(--gutter); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.hero-content {
  min-width: 0;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero-photo {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.hero-photo figcaption {
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 0.85rem 1rem;
  line-height: 1.5;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.hero .since {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Hero cert badge — now more compact since photo carries the visual weight */
.cert-badge {
  background: var(--white);
  border: 2px solid var(--navy);
  padding: 1.25rem 1.5rem;
}
.cert-badge .stripe {
  background: var(--red);
  color: var(--white);
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: -1.25rem -1.5rem 1rem -1.5rem;
}
.cert-badge h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.85rem;
  font-weight: 700;
}
.cert-badge .cert-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin: 0.5rem 0 0.75rem;
  text-align: center;
}
.cert-badge ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}
.cert-badge li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid var(--gray-100);
}
.cert-badge li:last-child { border-bottom: none; }
.cert-badge li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* ---------- Sections ---------- */
section { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 480px) {
  .section-title { font-size: 1.45rem; }
}
}
.section-lede {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 720px;
  margin-bottom: 2rem;
}
.section-rule {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin-bottom: 1.5rem;
}

/* ---------- Service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--navy);
  transition: border-color 0.15s, transform 0.15s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-top-color: var(--red);
  transform: translateY(-2px);
}
.service-card .card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
}
.service-card .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s;
}
.service-card:hover .card-photo img {
  transform: scale(1.03);
}
.service-card .card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card .num {
  display: inline-block;
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.service-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.service-card p {
  color: var(--gray-700);
  font-size: 0.97rem;
  margin-bottom: 0.85rem;
  flex-grow: 1;
}
.service-card .brands {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 600;
  border-top: 1px solid var(--gray-100);
  padding-top: 0.85rem;
  margin-top: auto;
}
.service-card .brands-label {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

/* ---------- Brands grid (manufacturer logos) ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  border: 1px solid var(--gray-200);
  background: var(--white);
}
.brand-cell {
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 95px;
  background: var(--white);
}
.brand-cell img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}
.brand-cell:hover img { filter: grayscale(0%); opacity: 1; }
.brand-cell .brand-placeholder {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}
.brand-cell .brand-placeholder small {
  display: block;
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ---------- On the Bench photo gallery ---------- */
.bench-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
@media (max-width: 820px) {
  .bench-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .bench-gallery { grid-template-columns: 1fr; }
}
.bench-gallery figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color 0.15s;
}
.bench-gallery figure:hover {
  border-color: var(--red);
}
.bench-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.bench-gallery figure:hover img {
  transform: scale(1.04);
}
.bench-gallery figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

/* ---------- Bench testing process ---------- */
.process {
  background: var(--navy);
  color: var(--white);
}
.process-photo {
  margin: 1.25rem 0 1.5rem;
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
}
.process-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.process-photo figcaption {
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 0.7rem 1rem;
  line-height: 1.5;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

/* ---------- Three commitments band (positioning) ---------- */
.commit-band {
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.commit-band .container {
  position: relative;
}
.commit-headline {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: 0.5rem;
}
.commit-headline .kicker {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--red);
  padding: 0.4rem 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.commit-headline h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.85rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.commit-headline p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}
.commit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 820px) {
  .commit-grid { grid-template-columns: 1fr; }
}
.commit-card {
  background: var(--white);
  color: var(--ink);
  padding: 1.75rem 1.5rem;
  border-top: 4px solid var(--red);
  position: relative;
}
.commit-card .label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.commit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.commit-card p {
  font-size: 0.97rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.commit-card .promise {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 700;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-200);
}
.process .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 820px) {
  .process .container { grid-template-columns: 1fr; gap: 2rem; }
}
.process h2 { color: var(--white); }
.process .section-lede { color: rgba(255,255,255,0.85); }
.process .section-rule { background: var(--red); }
.process-steps {
  background: var(--white);
  color: var(--ink);
  padding: 2rem;
}
.process-steps ol {
  list-style: none;
  counter-reset: step;
}
.process-steps li {
  counter-increment: step;
  padding: 1rem 0 1rem 3.25rem;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.process-steps li:last-child { border-bottom: none; }
.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 32px;
  height: 32px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.process-steps li strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

/* ---------- Stats / facts band ---------- */
.facts {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 2.5rem 0;
}
.facts-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.fact {
  text-align: center;
  padding: 0.5rem;
}
.fact .num {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}
.fact .label {
  font-size: 0.85rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

/* ---------- Why us ---------- */
.why-us {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 820px) {
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.why-grid p {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}
.spec-block {
  background: var(--gray-50);
  border-left: 4px solid var(--red);
  padding: 1.5rem;
}
.spec-block h4 {
  font-size: 0.85rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 1rem;
}
.spec-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}
@media (max-width: 480px) {
  .spec-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
.spec-row:last-child { border-bottom: none; }
.spec-row .k {
  color: var(--gray-700);
  font-weight: 600;
}
.spec-row .v { color: var(--navy); font-weight: 700; word-wrap: break-word; }

/* ---------- Image placeholder ---------- */
.img-placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-200);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--gray-400);
  font-size: 0.85rem;
}

/* ---------- Placeholder marker (todo) ---------- */
.todo {
  background: rgba(200, 16, 46, 0.1);
  border-left: 3px solid var(--red);
  padding: 0.15rem 0.5rem;
  font-size: 0.85em;
  color: var(--red-dark);
  font-weight: 600;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 2.5rem 0;
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 4px solid var(--red);
}
.page-header .container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.crumbs {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.crumbs a { color: rgba(255,255,255,0.75); }
.crumbs a:hover { color: #ffd700; }
.page-header h1 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.page-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 720px;
}

/* ---------- Service detail rows (Services page) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 160px 1fr 280px;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.service-row:first-of-type { border-top: 1px solid var(--gray-200); }
@media (max-width: 980px) {
  .service-row { grid-template-columns: 160px 1fr; }
  .service-row .row-photo { grid-column: 1 / -1; max-width: 480px; }
}
@media (max-width: 720px) {
  .service-row { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem 0; }
  .service-row .row-photo { max-width: 100%; }
  .service-row .label { padding-top: 0; }
}
.service-row .label {
  font-size: 0.78rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding-top: 0.35rem;
}
.service-row h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 700;
  word-wrap: break-word;
}
@media (max-width: 480px) {
  .service-row h3 { font-size: 1.2rem; }
  .service-row .label { font-size: 0.72rem; }
}
.service-row p {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0.85rem;
  max-width: 720px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.service-row ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.4rem 1.5rem;
  margin-top: 0.85rem;
  max-width: 720px;
}
@media (max-width: 600px) {
  .service-row ul { grid-template-columns: 1fr; }
}
.service-row ul li {
  font-size: 0.95rem;
  color: var(--ink);
  padding-left: 1rem;
  position: relative;
}
.service-row ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 1px;
  background: var(--red);
}
.service-row .row-photo {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.service-row .row-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.service-row .row-photo figcaption {
  font-size: 0.82rem;
  color: var(--gray-700);
  padding: 0.55rem 0.85rem;
  line-height: 1.45;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

/* ---------- Bench testing banner (Services page) ---------- */
.bench-banner {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-left: 5px solid var(--red);
}
@media (max-width: 480px) {
  .bench-banner { padding: 1rem 1.15rem; }
  .bench-banner strong { font-size: 1.05rem; }
}
.bench-banner strong {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.bench-banner em {
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

/* ---------- Process section links (on dark navy background) ---------- */
.process a.process-link {
  color: var(--red);
  text-decoration: underline;
  font-weight: 700;
}
.process a.process-link:hover {
  color: #ff6b80;
}
.process a.process-link:visited {
  color: #7eb3ff;
}

/* ---------- Forms & downloads cards ---------- */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.download-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--red);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.download-card:hover {
  border-left-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.download-card .download-icon {
  width: 52px;
  height: 64px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.download-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.download-card p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}
.download-card .download-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.download-card:hover .download-cta {
  color: var(--red-dark);
}

/* ---------- About page environmental photo ---------- */
.about-photo {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.about-photo figcaption {
  font-size: 0.88rem;
  color: var(--gray-700);
  padding: 0.85rem 1rem;
  line-height: 1.55;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

/* ---------- Two-column generic ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}
.two-col.weighted-left { grid-template-columns: 1.4fr 1fr; }
@media (max-width: 820px) {
  .two-col.weighted-left { grid-template-columns: 1fr; }
}

/* ---------- Pricing table ---------- */
.pricing-table {
  border-top: 3px solid var(--navy);
  margin-bottom: 2rem;
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: baseline;
}
.pricing-row .name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.pricing-row .desc {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--gray-700);
  margin-top: 0.2rem;
}
.pricing-row .price {
  font-size: 1.05rem;
  color: var(--red);
  font-weight: 700;
  white-space: nowrap;
}
.pricing-note {
  background: var(--gray-50);
  border-left: 4px solid var(--red);
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin-top: 1.5rem;
}
.pricing-note strong { color: var(--navy); font-weight: 700; }

/* ---------- Policy grid (Pricing page) ---------- */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.policy-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--navy);
  padding: 1.5rem;
}
.policy-item h4 {
  font-size: 0.85rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.policy-item p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
}

/* ---------- Contact card ---------- */
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--red);
  padding: 1.75rem;
}
.contact-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.contact-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .k {
  font-size: 0.72rem;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.contact-item .v {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
}
.contact-item .v a { color: var(--navy); }
.contact-item .v a:hover { color: var(--red); }

.contact-note {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--red);
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
  margin-top: 1.25rem;
}
.contact-note strong { color: var(--navy); font-weight: 700; }
.contact-note a { color: var(--red); font-weight: 600; }
.contact-note a:hover { text-decoration: underline; }

/* ---------- Form ---------- */
.form-block {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--red);
  padding: 1.75rem;
}
.form-field {
  display: block;
  margin-bottom: 1.1rem;
}
.form-field label {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--sans);
  font-size: 1rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--red);
}
.form-field textarea { resize: vertical; min-height: 130px; }

/* ---------- Three-up commitments (About page) ---------- */
.commitments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.commitment {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--red);
  padding: 1.75rem 1.5rem;
}
.commitment .num {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.85rem;
}
.commitment h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.commitment p {
  color: var(--gray-700);
  font-size: 0.97rem;
  line-height: 1.55;
}

/* ---------- Brand clarification box ---------- */
.brand-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.5rem 1.75rem;
  background: var(--gray-50);
  border-left: 4px solid var(--red);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
}
.brand-note strong { color: var(--navy); font-weight: 700; display: block; margin-bottom: 0.4rem; }

/* ---------- CTA band ---------- */
.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 720px) {
  .cta-inner { grid-template-columns: 1fr; }
}
.cta-band h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.cta-band p {
  margin-top: 0.4rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
}
.cta-band .btn {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.cta-band .btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-width: 320px;
}
.footer-col h5 {
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li {
  margin-bottom: 0.5rem;
  font-size: 0.93rem;
}
.footer-col a {
  color: rgba(255,255,255,0.85);
  transition: color 0.15s;
}
.footer-col a:hover { color: #ffd700; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem var(--gutter) 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
