:root {
  --navy: #071d35;
  --navy2: #0b2b4a;
  --blue: #0d629f;
  --blue-light: #69b6e8;
  --red: #ec2529;
  --red-dark: #cb1c20;
  --ink: #102338;
  --muted: #667687;
  --light: #f4f7fa;
  --line: #dce4eb;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(calc(100% - 42px), var(--max));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.topbar {
  background: var(--navy);
  color: #d8e4ef;
  font-size: 12px;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact {
  display: flex;
  gap: 14px;
  align-items: center;
}

.topbar a:hover {
  color: white;
}

.nav-wrap {
  height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 245px;
  max-height: 68px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

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

.nav-quote {
  color: white !important;
  background: var(--red);
  padding: 13px 20px;
  border-radius: 4px;
}

.nav-quote:hover {
  background: var(--red-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 29px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    url('../images/IMG_20180727_115815-1536x1072.jpg')
    center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3,20,38,.97) 0%,
      rgba(3,20,38,.90) 42%,
      rgba(3,20,38,.60) 70%,
      rgba(3,20,38,.22) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0 80px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  color: var(--blue-light);
  margin-bottom: 18px;
}

.eyebrow.dark {
  color: var(--blue);
}

.eyebrow.light {
  color: #a8d8f7;
}

.hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -2.7px;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 720px;
  font-size: 21px;
  color: #e4edf5;
  margin: 28px 0 30px;
}

.hero-actions,
.final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  font-weight: 800;
  border-radius: 4px;
  transition: .18s ease;
}

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

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,.78);
  color: white;
}

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

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

.hero-small {
  margin-top: 28px;
  color: #bcd0df;
  font-size: 14px;
}

/* TRUST */

.trust-bar {
  background: var(--navy2);
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.trust-item {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.trust-item:first-child {
  border-left: 1px solid rgba(255,255,255,.14);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 15px;
}

.trust-item span {
  color: #b5c8d9;
  font-size: 12px;
  margin-top: 2px;
}

/* GENERAL */

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.quote-section h2,
.materials-section h2,
.final-cta h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  margin: 0 0 20px;
}

.section-heading p,
.large-copy {
  font-size: 18px;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-copy h2 span {
  display: block;
}

.about-copy p {
  color: var(--muted);
}

.photo-collage {
  display: grid;
  grid-template-columns: 1fr .72fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.photo-collage > div {
  overflow: hidden;
  border-radius: 6px;
  background: var(--light);
}

.photo-large {
  grid-row: 1 / 3;
}

.photo-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-large img {
  min-height: 470px;
}

/* SERVICES */

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.service-card {
  background: white;
  padding: 30px;
  border: 1px solid var(--line);
  min-height: 310px;
  display: flex;
  flex-direction: column;
  transition: .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #b8cad8;
  box-shadow: 0 18px 35px rgba(12,43,74,.10);
}

.service-number {
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
}

.service-card h3 {
  font-size: 24px;
  margin: 22px 0 8px;
}

.service-card p {
  color: var(--muted);
  flex: 1;
}

.service-card span {
  color: var(--blue);
  font-weight: 800;
}

/* QUOTE */

.quote-section {
  background: var(--red);
  color: white;
  padding: 65px 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.quote-section p {
  max-width: 650px;
  color: rgba(255,255,255,.90);
  font-size: 18px;
}

.quote-box {
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.26);
  padding: 28px;
  text-align: center;
  border-radius: 6px;
}

.quote-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--red);
  font-size: 28px;
  font-weight: 900;
}

.quote-box strong,
.quote-box span {
  display: block;
}

.quote-box strong {
  font-size: 19px;
}

.quote-box span {
  font-size: 13px;
  margin: 5px 0 20px;
  color: rgba(255,255,255,.8);
}

/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.process-card {
  border-top: 4px solid var(--navy);
  background: white;
  padding: 30px;
  box-shadow: 0 8px 28px rgba(9,34,57,.08);
}

.process-card > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-weight: 900;
}

.process-card h3 {
  margin: 20px 0 8px;
}

.process-card p {
  color: var(--muted);
}

/* MATERIALS */

.materials-section {
  background: #fff;
}

.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.material-list {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.material-list a {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  font-size: 17px;
}

.material-list a:hover {
  color: var(--blue);
}

.material-photo {
  overflow: hidden;
  border-radius: 7px;
  height: 470px;
  background: var(--light);
}

.material-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INDUSTRIES */

.industries-section {
  background: var(--navy);
  color: white;
  padding: 85px 0;
}

.light-heading p {
  color: #c5d5e2;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.industry-grid a,
.industry-grid span {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  padding: 20px 22px;
  font-weight: 800;
  border-radius: 4px;
}

.industry-grid a:hover {
  background: rgba(255,255,255,.12);
}

/* RESOURCES */

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

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.resource-card {
  background: white;
  padding: 30px;
  border-top: 4px solid var(--red);
  box-shadow: 0 8px 25px rgba(8,34,57,.07);
}

.resource-tag {
  font-size: 11px;
  letter-spacing: 1.6px;
  font-weight: 900;
  color: var(--blue);
}

.resource-card h3 {
  font-size: 21px;
  line-height: 1.3;
  margin: 12px 0;
}

.resource-card p {
  color: var(--muted);
}

.resource-card strong {
  color: var(--blue);
}

/* FINAL CTA */

.final-cta {
  padding: 60px 0;
  background: #0a2946;
  color: white;
}

.final-cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.final-cta h2 {
  margin-bottom: 5px;
}

.final-cta p {
  margin: 0;
  color: #c6d5e2;
}

/* FOOTER */

footer {
  background: #041321;
  color: #aebdca;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 45px;
  padding: 60px 0;
}

.footer-brand img {
  width: 210px;
  margin-bottom: 20px;
}

footer h4 {
  color: white;
  margin-top: 0;
}

footer a {
  display: block;
  margin: 8px 0;
}

footer a:hover {
  color: white;
}

footer p {
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: 12px;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .nav-wrap {
    height: 70px;
  }

  .logo img {
    width: 205px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    background: white;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    min-height: 580px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .trust-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .about-grid,
  .quote-grid,
  .materials-grid {
    grid-template-columns: 1fr;
  }

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

  .process-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 65px 0;
  }

  .hero {
    min-height: 610px;
    background-position: center;
  }

  .hero-content {
    padding: 70px 0 55px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .trust-item {
    padding: 18px 12px;
  }

  .photo-collage {
    grid-template-columns: 1fr 1fr;
  }

  .photo-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .photo-large img {
    min-height: 280px;
  }

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

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

  .material-photo {
    height: 350px;
  }

  .final-cta-grid {
    display: block;
  }

  .final-buttons {
    margin-top: 25px;
  }

  .final-buttons .btn {
    width: 100%;
  }

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

/* ===== HEADER CONTRAST FIX ===== */

.site-header {
  background: #071d35;
  box-shadow: 0 2px 16px rgba(0,0,0,.20);
}

.nav-wrap {
  background: #071d35;
}

.logo img {
  width: 255px;
  max-height: 70px;
  object-fit: contain;
}

.main-nav a {
  color: #ffffff;
}

.main-nav a:hover {
  color: #69b6e8;
}

.nav-quote {
  background: #ec2529;
  color: #ffffff !important;
}

.nav-quote:hover {
  background: #cb1c20;
  color: #ffffff !important;
}

.menu-toggle {
  color: #ffffff;
}

@media (max-width: 980px) {
  .main-nav {
    background: #071d35;
  }

  .main-nav a {
    color: #ffffff;
  }
}


/* =========================================================
   SERVICE PAGE SYSTEM
   ========================================================= */

.service-hero {
  background: var(--navy);
  color: #fff;
  padding: 82px 0;
  overflow: hidden;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.service-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px,5vw,68px);
  line-height: 1.04;
  letter-spacing: -2.2px;
}

.service-hero p {
  max-width: 670px;
  margin: 24px 0 30px;
  font-size: 19px;
  color: #d2dfeb;
}

.service-hero-image {
  height: 440px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(0,0,0,.25);
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-nav-strip {
  background: #0b2b4a;
  border-top: 1px solid rgba(255,255,255,.08);
}

.service-nav-links {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

.service-nav-links a {
  color: #d8e5ef;
  font-size: 14px;
  font-weight: 800;
}

.service-nav-links a:hover {
  color: #fff;
}

.service-content-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 350px;
  gap: 80px;
  align-items: start;
}

.service-main-copy {
  max-width: 760px;
}

.detail-block {
  padding-bottom: 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.detail-block:last-child {
  border-bottom: 0;
}

.detail-block h2 {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: clamp(28px,3vw,38px);
  line-height: 1.15;
  letter-spacing: -.7px;
}

.detail-block p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.quote-sidebar {
  position: sticky;
  top: 125px;
}

.quote-sidebar-box {
  padding: 32px;
  border-top: 5px solid var(--red);
  background: #f3f6f8;
}

.quote-sidebar-box h2 {
  margin: 0 0 14px;
  font-size: 31px;
}

.quote-sidebar-box p {
  color: var(--muted);
}

.quote-sidebar-box .btn {
  width: 100%;
  margin-top: 10px;
}

.sidebar-contact {
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.sidebar-contact strong,
.sidebar-contact a {
  display: block;
}

.sidebar-contact a {
  margin-top: 5px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.service-rfq {
  padding: 75px 0;
  background: var(--red);
  color: white;
}

.service-rfq-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.service-rfq h2 {
  margin: 0;
  font-size: clamp(34px,4vw,48px);
  line-height: 1.1;
}

.rfq-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rfq-checklist span {
  padding: 15px 17px;
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.2);
  font-weight: 700;
}

.rfq-checklist span::before {
  content: "✓";
  margin-right: 8px;
  font-weight: 900;
}

.service-next {
  background: var(--light);
}

.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.mini-service-grid a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 900;
}

.mini-service-grid a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

@media (max-width: 980px) {
  .service-hero-grid,
  .service-content-grid,
  .service-rfq-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-image {
    height: 390px;
  }

  .quote-sidebar {
    position: static;
  }

  .service-nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .service-nav-links a {
    white-space: nowrap;
  }

  .mini-service-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 640px) {
  .service-hero {
    padding: 60px 0;
  }

  .service-hero h1 {
    font-size: 42px;
  }

  .service-hero-image {
    height: 300px;
  }

  .rfq-checklist {
    grid-template-columns: 1fr;
  }

  .mini-service-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FULL SITE INNER PAGES ===== */

.inner-hero {
  background: var(--navy);
  color: #fff;
  padding: 78px 0;
}

.inner-hero-grid {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:center;
}

.inner-hero h1,
.quote-page-hero h1 {
  margin:0;
  font-size:clamp(44px,5vw,68px);
  line-height:1.04;
  letter-spacing:-2px;
}

.inner-hero p {
  color:#d2dfeb;
  font-size:19px;
  max-width:680px;
  margin:24px 0 30px;
}

.inner-hero-image {
  height:430px;
  overflow:hidden;
  background:#fff;
  border-radius:8px;
  box-shadow:0 22px 50px rgba(0,0,0,.25);
}

.inner-hero-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.inner-content-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) 350px;
  gap:80px;
  align-items:start;
}

.inner-copy {
  max-width:780px;
}

.content-block-section {
  padding-bottom:36px;
  margin-bottom:36px;
  border-bottom:1px solid var(--line);
}

.content-block-section:last-child {
  border-bottom:0;
}

.content-block-section h2 {
  margin:0 0 14px;
  font-size:clamp(28px,3vw,38px);
  color:var(--navy);
  line-height:1.15;
}

.content-block-section p {
  margin:0;
  color:var(--muted);
  font-size:18px;
}

.quote-page-intro {
  max-width:820px;
}

.quote-page-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:60px;
  align-items:start;
}

.quote-form-card {
  padding:34px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 15px 38px rgba(7,29,53,.08);
}

.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.form-grid label {
  display:flex;
  flex-direction:column;
  gap:7px;
  font-weight:800;
  color:var(--navy);
}

.form-grid input,
.form-grid textarea {
  width:100%;
  padding:13px 14px;
  border:1px solid #cbd7e1;
  border-radius:4px;
  font:inherit;
  color:var(--ink);
  background:#fff;
}

.full {
  grid-column:1 / -1;
}

.file-field small {
  color:var(--muted);
  font-weight:400;
}

.honeypot {
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.form-submit {
  margin-top:22px;
  border:0;
  cursor:pointer;
}

.quote-help {
  background:var(--light);
  border-top:5px solid var(--red);
  padding:32px;
}

.quote-help h2 {
  margin:0 0 18px;
  font-size:31px;
}

.quote-help ul {
  padding-left:20px;
  color:var(--muted);
}

.quote-help li {
  margin:10px 0;
}

.quote-direct {
  border-top:1px solid var(--line);
  margin-top:26px;
  padding-top:22px;
}

.quote-direct strong,
.quote-direct a {
  display:block;
}

.quote-direct a {
  color:var(--blue);
  font-weight:900;
  margin-top:7px;
}

.quote-success {
  width:min(calc(100% - 42px),1180px);
  margin:28px auto 0;
  padding:16px 20px;
  background:#eaf7ee;
  border:1px solid #b9dec4;
  color:#1e6435;
  font-weight:800;
}

.site-header,
.nav-wrap {
  background:#071d35;
}

.logo img {
  width:255px;
  max-height:70px;
  object-fit:contain;
}

.main-nav a {
  color:#fff;
}

.main-nav a:hover {
  color:#69b6e8;
}

@media (max-width:980px) {
  .inner-hero-grid,
  .inner-content-grid,
  .quote-page-grid {
    grid-template-columns:1fr;
  }

  .inner-hero-image {
    height:360px;
  }

  .main-nav {
    background:#071d35;
  }
}

@media (max-width:640px) {
  .inner-hero {
    padding:58px 0;
  }

  .inner-hero h1,
  .quote-page-hero h1 {
    font-size:42px;
  }

  .inner-hero-image {
    height:290px;
  }

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

  .full {
    grid-column:auto;
  }

  .quote-form-card {
    padding:22px;
  }
}


/* =========================================================
   VISUAL SERVICE PAGES
   ========================================================= */

.visual-service-hero {
  background: var(--navy);
  color: white;
  padding: 78px 0;
}

.visual-service-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.visual-service-copy h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -2px;
}

.visual-service-copy > p {
  color: #d1dfeb;
  max-width: 670px;
  font-size: 19px;
  margin: 24px 0 30px;
}

.visual-service-photo {
  height: 470px;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
}

.visual-service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-story {
  background: white;
}

.service-story-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.service-story h2 {
  margin: 0;
  font-size: clamp(34px,4vw,48px);
  line-height: 1.12;
}

.service-story p {
  margin: 0;
  font-size: 20px;
  color: var(--muted);
}

.service-facts {
  background: var(--light);
  padding: 75px 0;
}

.service-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.fact-panel {
  background: white;
  padding: 36px;
  border-top: 4px solid var(--red);
}

.fact-panel h2 {
  margin: 0 0 22px;
  font-size: 31px;
}

.clean-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 17px;
}

.clean-list li {
  margin: 10px 0;
}

.material-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.material-pills span {
  padding: 10px 15px;
  background: #eef3f7;
  border: 1px solid var(--line);
  font-weight: 800;
  color: var(--navy);
}

.work-gallery-section {
  background: white;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.work-photo {
  margin: 0;
  height: 240px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--light);
}

.work-photo:nth-child(7n+1),
.work-photo:nth-child(7n+5) {
  grid-column: span 2;
}

.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.work-photo:hover img {
  transform: scale(1.035);
}

@media (max-width: 980px) {
  .visual-service-grid,
  .service-story-grid,
  .service-facts-grid {
    grid-template-columns: 1fr;
  }

  .visual-service-photo {
    height: 390px;
  }

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

  .work-photo:nth-child(7n+1),
  .work-photo:nth-child(7n+5) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .visual-service-hero {
    padding: 58px 0;
  }

  .visual-service-copy h1 {
    font-size: 42px;
  }

  .visual-service-photo {
    height: 300px;
  }

  .work-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .work-photo {
    height: 165px;
  }

  .fact-panel {
    padding: 26px;
  }
}


/* =========================================================
   FACILITIES
   ========================================================= */

.facility-hero {
  background: var(--navy);
  color: white;
  padding: 78px 0;
}

.facility-hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.facility-hero h1 {
  font-size: clamp(46px,5vw,70px);
  line-height: 1.03;
  letter-spacing: -2.3px;
  margin: 0;
}

.facility-hero h1 span {
  display: block;
}

.facility-hero p {
  max-width: 670px;
  color: #d3e0eb;
  font-size: 19px;
  margin: 25px 0 30px;
}

.facility-hero-photo {
  height: 470px;
  overflow: hidden;
  border-radius: 8px;
  background: white;
}

.facility-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.facility-intro {
  padding: 80px 0;
}

.facility-intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
}

.facility-intro h2 {
  margin: 0;
  font-size: clamp(34px,4vw,48px);
  line-height: 1.12;
}

.facility-intro p {
  font-size: 19px;
  color: var(--muted);
}

.facility-equipment-section {
  background: var(--light);
  padding: 80px 0;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.equipment-card {
  background: white;
  padding: 32px;
  border-top: 4px solid var(--red);
}

.equipment-number {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.equipment-card h2 {
  margin: 12px 0 20px;
  color: var(--navy);
}

.equipment-card ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
}

.equipment-card li {
  margin: 9px 0;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
}

.facility-gallery figure {
  margin: 0;
  background: var(--light);
  overflow: hidden;
  border-radius: 6px;
}

.facility-gallery figure:first-child,
.facility-gallery figure:nth-child(5) {
  grid-column: span 2;
}

.facility-gallery img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: white;
}

.facility-gallery figcaption {
  padding: 12px 15px;
  color: var(--navy);
  font-weight: 800;
}

.facility-location {
  background: var(--navy2);
  color: white;
  padding: 70px 0;
}

.facility-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.facility-location h2 {
  font-size: 42px;
  margin: 0 0 15px;
}

.facility-location p {
  color: #c5d5e2;
}

.facility-contact-list {
  display: grid;
  gap: 10px;
}

.facility-contact-list a,
.facility-contact-list div {
  padding: 17px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
}

.facility-contact-list strong,
.facility-contact-list span {
  display: block;
}

.facility-contact-list span {
  color: #c7d8e5;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-hero {
  padding: 90px 0;
  background: var(--navy);
  color: white;
}

.contact-hero h1 {
  font-size: clamp(48px,5vw,72px);
  margin: 0;
  line-height: 1.04;
}

.contact-hero p {
  max-width: 680px;
  font-size: 20px;
  color: #d3e0eb;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.contact-card {
  min-height: 220px;
  padding: 32px;
  border-top: 4px solid var(--red);
  background: var(--light);
}

.contact-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.contact-card > a {
  display: block;
  margin: 22px 0 10px;
  font-size: 25px;
  font-weight: 900;
  color: var(--navy);
}

.contact-card strong {
  display: block;
  margin-top: 22px;
  font-size: 20px;
}

.contact-card p {
  color: var(--muted);
}

.contact-project {
  background: var(--red);
  color: white;
  padding: 65px 0;
}

.contact-project-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.contact-project h2 {
  margin: 0 0 10px;
  font-size: 42px;
}

.contact-project p {
  margin: 0;
  color: rgba(255,255,255,.9);
}


@media (max-width: 980px) {

  .facility-hero-grid,
  .facility-intro-grid,
  .facility-location-grid,
  .contact-project-grid {
    grid-template-columns: 1fr;
  }

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

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

  .facility-gallery figure:first-child,
  .facility-gallery figure:nth-child(5) {
    grid-column: auto;
  }

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


@media (max-width: 640px) {

  .facility-hero {
    padding: 58px 0;
  }

  .facility-hero h1 {
    font-size: 42px;
  }

  .facility-hero-photo {
    height: 300px;
  }

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

  .facility-gallery img {
    height: 260px;
  }

  .contact-hero {
    padding: 65px 0;
  }

  .contact-project .btn {
    width: 100%;
  }
}

/* ===== FACILITIES REBUILD ===== */

.facility-hero-new {
  background: var(--navy);
  color: white;
  padding: 80px 0;
}

.facility-hero-new-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.facility-hero-new h1 {
  margin:0;
  font-size:clamp(46px,5vw,70px);
  line-height:1.03;
  letter-spacing:-2.3px;
}

.facility-hero-new p {
  color:#d3e0eb;
  font-size:19px;
  margin:24px 0 30px;
}

.facility-hero-machines {
  height:430px;
  background:white;
  border-radius:8px;
  overflow:hidden;
}

.facility-hero-machines img {
  width:100%;
  height:100%;
  object-fit:contain;
}

.machine-photo-section {
  background:white;
}

.machine-photo-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.machine-photo-grid figure {
  margin:0;
  border:1px solid var(--line);
  background:white;
  border-radius:6px;
  overflow:hidden;
}

.machine-photo-grid figure:first-child,
.machine-photo-grid figure:nth-child(4) {
  grid-column:span 2;
}

.machine-photo-grid img {
  width:100%;
  height:330px;
  object-fit:contain;
  padding:10px;
  background:#fff;
}

.machine-photo-grid figcaption {
  padding:14px 18px;
  background:var(--light);
  font-weight:900;
  color:var(--navy);
}

.machine-list-section {
  background:var(--light);
  padding:85px 0;
}

.machine-list-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.machine-group {
  background:white;
  padding:30px;
  border-top:4px solid var(--red);
}

.machine-group h3 {
  margin:0 0 18px;
  font-size:25px;
  color:var(--navy);
}

.machine-group ul {
  margin:0;
  padding-left:19px;
  color:var(--muted);
}

.machine-group li {
  margin:9px 0;
}

.facility-shop-cta {
  background:var(--red);
  color:white;
  padding:65px 0;
}

.facility-shop-cta-grid {
  display:grid;
  grid-template-columns:1fr auto;
  gap:50px;
  align-items:center;
}

.facility-shop-cta h2 {
  margin:0 0 8px;
  font-size:42px;
}

.facility-shop-cta p {
  margin:0;
}


/* ===== CONTACT REBUILD ===== */

.contact-visual-hero {
  background:var(--navy);
  color:white;
  padding:80px 0;
}

.contact-visual-grid {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}

.contact-visual-hero h1 {
  margin:0;
  font-size:clamp(46px,5vw,70px);
  line-height:1.04;
  letter-spacing:-2px;
}

.contact-visual-hero p {
  max-width:650px;
  font-size:19px;
  color:#d2dfeb;
  margin:24px 0 30px;
}

.contact-visual-photo {
  height:430px;
  overflow:hidden;
  border-radius:8px;
}

.contact-visual-photo img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.contact-info-band {
  background:var(--navy2);
  color:white;
}

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

.contact-info-grid > * {
  padding:26px;
  border-right:1px solid rgba(255,255,255,.13);
}

.contact-info-grid span,
.contact-info-grid strong {
  display:block;
}

.contact-info-grid span {
  color:#9fc8e5;
  font-size:11px;
  font-weight:900;
  letter-spacing:1.5px;
}

.contact-info-grid strong {
  margin-top:5px;
  font-size:18px;
}

.contact-location-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:stretch;
}

.contact-address,
.contact-project-card {
  padding:40px;
}

.contact-address {
  background:var(--light);
}

.contact-address h2,
.contact-project-card h2 {
  font-size:38px;
  margin:0 0 20px;
}

.address-large {
  font-size:22px;
  color:var(--navy);
  font-weight:800;
}

.contact-project-card {
  background:white;
  border:1px solid var(--line);
  border-top:5px solid var(--red);
}

.contact-project-card p {
  color:var(--muted);
  font-size:18px;
}

@media (max-width:980px) {
  .facility-hero-new-grid,
  .facility-shop-cta-grid,
  .contact-visual-grid,
  .contact-location-grid {
    grid-template-columns:1fr;
  }

  .machine-photo-grid,
  .machine-list-grid {
    grid-template-columns:1fr 1fr;
  }

  .machine-photo-grid figure:first-child,
  .machine-photo-grid figure:nth-child(4) {
    grid-column:auto;
  }

  .contact-info-grid {
    grid-template-columns:1fr;
  }
}

@media (max-width:640px) {
  .facility-hero-machines,
  .contact-visual-photo {
    height:290px;
  }

  .machine-photo-grid,
  .machine-list-grid {
    grid-template-columns:1fr;
  }

  .machine-photo-grid img {
    height:250px;
  }

  .facility-shop-cta .btn {
    width:100%;
  }
}

/* ===== FACILITIES LIST-FIRST POLISH ===== */

.machine-list-section {
  padding-top: 75px;
}

.machine-list-section .section-heading {
  margin-bottom: 34px;
}

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

.machine-group {
  min-height: 100%;
}

.machine-group h3 {
  font-size: 23px;
}

.machine-group ul {
  font-size: 15px;
  line-height: 1.55;
}

.compact-machine-photos {
  padding-top: 75px;
  padding-bottom: 75px;
}

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

.machine-photo-grid.compact figure {
  grid-column: auto !important;
}

.machine-photo-grid.compact img {
  height: 260px;
}

@media (max-width: 980px) {
  .machine-list-grid {
    grid-template-columns: repeat(2,1fr);
  }

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

@media (max-width: 640px) {
  .machine-list-grid,
  .machine-photo-grid.compact {
    grid-template-columns: 1fr;
  }

  .machine-photo-grid.compact img {
    height: 240px;
  }
}

/* ===== SEO GENERATED PAGE POLISH ===== */

.seo-generated-hero {
  padding: 62px 0 64px !important;
}

.seo-generated-hero .container {
  max-width: 1180px;
}

.seo-generated-hero h1 {
  max-width: 980px !important;
  font-size: clamp(42px, 5vw, 64px) !important;
  line-height: 1.02 !important;
  letter-spacing: -1.7px;
}

.seo-generated-body {
  padding: 55px 0 65px !important;
}

.seo-generated-content {
  max-width: 1100px !important;
  margin: 0 auto !important;
}

.seo-generated-content > *:first-child {
  margin-top: 0;
}

.seo-generated-content iframe,
.seo-generated-content video,
.seo-generated-content embed {
  max-width: 100%;
}

.seo-generated-cta {
  margin: 42px 0 0 !important;
  padding: 32px 36px !important;
  border-left: 5px solid var(--red) !important;
  background: var(--light) !important;
}

.seo-generated-cta h2 {
  margin-top: 0 !important;
}

.seo-generated-cta .btn {
  margin-top: 8px;
}

/* Keep SEO footer identical to main site */
body > footer .footer-grid {
  grid-template-columns: 1.35fr .8fr .8fr 1fr;
  align-items: start;
}

body > footer .footer-brand {
  min-width: 0;
}

body > footer .footer-brand img {
  max-width: 250px;
}

body > footer .footer-grid > div {
  min-width: 0;
}

body > footer .footer-grid a {
  display: block;
  margin: 7px 0;
}

@media (max-width: 900px) {
  body > footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .seo-generated-hero {
    padding: 48px 0 50px !important;
  }

  .seo-generated-body {
    padding: 40px 0 50px !important;
  }

  body > footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TIGHTER SITE FOOTER ===== */

footer {
  padding-top: 0 !important;
}

footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.35fr .8fr .8fr 1fr !important;
  gap: 34px !important;
  align-items: start !important;
  padding-top: 42px !important;
  padding-bottom: 34px !important;
}

footer .footer-brand img {
  max-width: 220px !important;
  margin-bottom: 14px !important;
}

footer .footer-brand p {
  max-width: 280px !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

footer .footer-grid h4 {
  margin: 0 0 12px !important;
}

footer .footer-grid a {
  margin: 5px 0 !important;
  line-height: 1.4 !important;
}

footer .footer-grid p {
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}

footer .footer-bottom {
  padding: 16px 20px !important;
  margin-top: 0 !important;
}

@media (max-width: 900px) {
  footer .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding-top: 32px !important;
    padding-bottom: 28px !important;
  }
}

/* ===== FINAL FOOTER LAYOUT FIX ===== */

footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.35fr .8fr .8fr 1fr !important;
  gap: 48px !important;
  align-items: start !important;
  padding: 42px 0 34px !important;
}

footer .footer-grid > div {
  grid-column: auto !important;
  grid-row: auto !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

footer .footer-brand {
  grid-column: 1 !important;
}

footer .footer-grid > div:nth-child(2) {
  grid-column: 2 !important;
}

footer .footer-grid > div:nth-child(3) {
  grid-column: 3 !important;
}

footer .footer-grid > div:nth-child(4) {
  grid-column: 4 !important;
}

footer .footer-brand img {
  width: 220px !important;
  max-width: 100% !important;
  margin: 0 0 16px !important;
}

footer .footer-brand p {
  max-width: 260px !important;
  margin: 0 !important;
}

footer .footer-grid h4 {
  margin: 0 0 12px !important;
  font-size: 20px !important;
}

footer .footer-grid a {
  display: block !important;
  margin: 6px 0 !important;
}

footer .footer-grid p {
  margin: 8px 0 0 !important;
}

footer .footer-bottom {
  margin: 0 !important;
  padding: 16px 0 !important;
  min-height: 0 !important;
}

@media (max-width: 900px) {
  footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  footer .footer-brand,
  footer .footer-grid > div:nth-child(2),
  footer .footer-grid > div:nth-child(3),
  footer .footer-grid > div:nth-child(4) {
    grid-column: auto !important;
  }
}

@media (max-width: 640px) {
  footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

/* ===== CENTER FOOTER CONTENT ===== */

footer .footer-grid {
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;

  grid-template-columns:
    1.2fr
    .85fr
    .85fr
    1fr !important;

  column-gap: 64px !important;
}

footer .footer-brand,
footer .footer-grid > div:nth-child(2),
footer .footer-grid > div:nth-child(3),
footer .footer-grid > div:nth-child(4) {
  justify-self: start !important;
}

footer .footer-bottom {
  text-align: center !important;
}

@media (max-width: 900px) {
  footer .footer-grid {
    max-width: 760px !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 50px !important;
  }
}

@media (max-width: 640px) {
  footer .footer-grid {
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
  }
}

/* ===== QUOTE SECURITY CHECK ===== */

.quote-human-check {
  margin-top: 6px;
  margin-bottom: 8px;
}

.security-label {
  display: block;
  margin-bottom: 9px;
  font-weight: 800;
  color: var(--navy);
}

.cf-turnstile {
  min-height: 65px;
}

/* ===== MATERIAL CALCULATOR ===== */

.calculator-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
}

.calculator-card label {
  display: block;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--navy);
}

.calculator-card input,
.calculator-card select {
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font: inherit;
  background: #fff;
}

.calculator-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.calculator-results > div {
  padding: 20px;
  border-radius: 6px;
  background: #f3f6f8;
}

.calculator-results span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
}

.calculator-results strong {
  font-size: 25px;
  color: var(--navy);
}

.calculator-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 600px) {
  .calculator-card {
    padding: 22px;
  }

  .calculator-results {
    grid-template-columns: 1fr;
  }
}

/* ===== BLOG ARTICLES ===== */

.blog-hero {
  padding-bottom: 44px;
}

.blog-date {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.blog-article .narrow {
  max-width: 820px;
}

.blog-article p {
  margin: 0 0 20px;
  line-height: 1.75;
}

.blog-article h2 {
  margin-top: 42px;
  margin-bottom: 16px;
}

.blog-article h3 {
  margin-top: 30px;
  margin-bottom: 12px;
}

.blog-article ul,
.blog-article ol {
  margin: 0 0 24px 24px;
}

.blog-article li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.blog-article a {
  font-weight: 700;
}

.blog-article img {
  max-width: 100%;
  height: auto;
}

/* ===== REAL SHOP HOMEPAGE SECTION ===== */

.real-shop-section {
  padding: 84px 0;
  background: #fff;
}

.real-shop-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.real-shop-copy {
  max-width: 560px;
}

.real-shop-copy h2 {
  margin: 12px 0 22px;
  max-width: 520px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -.035em;
  color: var(--navy);
}

.real-shop-copy p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.real-shop-copy .real-shop-lead {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
}

.real-shop-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.real-shop-actions .text-link {
  font-weight: 800;
  text-decoration: none;
}

.real-shop-photos {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  grid-template-rows: 245px 245px;
  gap: 14px;
}

.real-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef2f5;
}

.real-photo-large {
  grid-row: 1 / 3;
}

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

.real-photo-large img {
  object-position: center;
}

@media (max-width: 900px) {
  .real-shop-section {
    padding: 64px 0;
  }

  .real-shop-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .real-shop-copy {
    max-width: 680px;
  }

  .real-shop-photos {
    grid-template-rows: 220px 220px;
  }
}

@media (max-width: 620px) {
  .real-shop-section {
    padding: 52px 0;
  }

  .real-shop-copy h2 {
    font-size: 38px;
  }

  .real-shop-copy p {
    font-size: 17px;
  }

  .real-shop-photos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 170px;
  }

  .real-photo-large {
    grid-column: 1 / 3;
    grid-row: 1;
  }
}

/* ===== HOMEPAGE SERVICES CLEAN GRID ===== */

.home-services-clean {
  padding: 78px 0 90px;
  background: #f3f6f8;
}

.home-services-clean .section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.home-services-clean .section-heading h2 {
  margin: 10px 0 12px;
  color: var(--navy);
}

.home-services-clean .section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.home-service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 34px 36px 36px;
  background: #fff;
  border: 1px solid #d7dfe7;
}

.home-service-card .service-number {
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 800;
  color: #ff2a2a;
  letter-spacing: .04em;
}

.home-service-card h3 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.15;
  color: var(--navy);
}

.home-service-card p {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  flex-grow: 1;
}

.home-service-card a {
  margin-top: auto;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}

@media (max-width: 1400px) {
  .home-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-services-clean {
    padding: 64px 0 72px;
  }

  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-service-card {
    padding: 28px;
  }

  .home-service-card h3 {
    font-size: 24px;
  }
}

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

/* Slightly cleaner about-section photo stack */
.real-shop-photos {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.real-photo {
  border-radius: 10px;
  overflow: hidden;
}

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

.real-photo-large {
  grid-row: 1 / 3;
}

@media (max-width: 900px) {
  .real-shop-photos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 180px;
  }

  .real-photo-large {
    grid-column: 1 / 3;
    grid-row: 1;
  }
}

/* ===== HOME ABOUT CTA BUTTONS ===== */

.about-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  transition: all .2s ease;
}

.btn-primary {
  background: #ff2a2a;
  color: #fff;
  border: 2px solid #ff2a2a;
}

.btn-primary:hover {
  opacity: .92;
}

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

.btn-outline:hover {
  background: rgba(8, 34, 66, 0.04);
}

/* ===== TIGHTER ABOUT PHOTO STACK ===== */

.real-shop-photos {
  display: grid;
  grid-template-columns: 1.45fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.real-photo-large {
  grid-row: 1 / 3;
}

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

/* ===== SHORTER SERVICE CARDS ===== */

.home-services-clean {
  padding: 64px 0 76px;
}

.home-services-clean .section-heading {
  margin-bottom: 24px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.home-service-card {
  display: flex;
  flex-direction: column;
  padding: 24px 24px 22px;
  background: #fff;
  border: 1px solid #d7dfe7;
  min-height: 0;
}

.home-service-card .service-number {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 800;
  color: #ff2a2a;
}

.home-service-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.15;
  color: var(--navy);
}

.home-service-card p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  flex-grow: 1;
}

.home-service-card a {
  margin-top: auto;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

@media (max-width: 1400px) {
  .home-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .real-shop-photos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 180px;
  }

  .real-photo-large {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .about-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ===== SEO DETAIL CONTENT ===== */

.seo-detail-section {
  background: #fff;
}

.seo-detail-section .narrow {
  max-width: 840px;
}

.seo-detail-section h2 {
  margin-top: 42px;
  margin-bottom: 15px;
}

.seo-detail-section h2:first-child {
  margin-top: 0;
}

.seo-detail-section h3 {
  margin-top: 26px;
  margin-bottom: 8px;
}

.seo-detail-section p,
.seo-detail-section li {
  line-height: 1.72;
}

.seo-detail-section ul {
  margin: 0 0 26px 22px;
}

.seo-detail-section li {
  margin-bottom: 7px;
}

/* ===== CLEAN SERVICE CARD LINKS ===== */

.home-service-card a {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  margin-top: auto;
  text-decoration: none;
  line-height: 1.25;
}

.home-service-card a::after {
  content: "→";
  display: inline-block;
  flex: 0 0 auto;
  transition: transform .18s ease;
}

.home-service-card a:hover::after {
  transform: translateX(4px);
}

/*
 * Keep the arrow attached to the final line of text
 * instead of dropping underneath by itself.
 */
.home-service-card a::after {
  white-space: nowrap;
}


/* ===== SEO DETAIL SECTIONS - BATCH 2 ===== */

.seo-detail-section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.seo-detail-section + .seo-detail-section {
  padding-top: 0;
}

.seo-detail-section .narrow {
  max-width: 840px;
}

.seo-detail-section h2 {
  color: var(--navy);
  margin-top: 42px;
  margin-bottom: 15px;
}

.seo-detail-section h2:first-child {
  margin-top: 0;
}

.seo-detail-section h3 {
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 8px;
}

.seo-detail-section p {
  margin-bottom: 18px;
  line-height: 1.72;
}

.seo-detail-section ul {
  margin: 0 0 28px 22px;
}

.seo-detail-section li {
  margin-bottom: 8px;
  line-height: 1.65;
}

/* ===== ONLINE MACHINE SHOP ===== */

.online-shop-section {
  padding: 76px 0;
  background: var(--navy);
  color: #fff;
}

.online-shop-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.online-shop-section .eyebrow {
  color: #72b9ef;
}

.online-shop-section h2 {
  margin: 12px 0 0;
  max-width: 600px;
  color: #fff;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
}

.online-shop-section p {
  margin: 0 0 18px;
  max-width: 700px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.7;
}

.online-shop-section .btn {
  margin-top: 10px;
}

@media (max-width: 800px) {
  .online-shop-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
