:root {
  --ink: #121719;
  --ink-soft: #1b2224;
  --paper: #f2f0ea;
  --white: #ffffff;
  --muted: #a7b0b2;
  --line: rgba(255, 255, 255, 0.15);
  --blue: #1d6c86;
  --accent: #f4a223;
}

.captcha-box { display: grid; grid-template-columns: 220px auto; gap: 12px; align-items: center; margin-bottom: 22px; }
.captcha-box img { width: 220px; height: 70px; border: 1px solid #adb3af; background: #e5e2da; }
.captcha-refresh { width: 44px; height: 44px; border: 1px solid #aeb3af; background: transparent; color: var(--blue); font-size: 21px; cursor: pointer; }
.captcha-refresh:hover { border-color: var(--blue); }
.form-message { display: none; max-width: 430px; margin: 0; font-size: 13px; line-height: 1.55; }
.form-message.is-visible { display: block; }
.form-message.is-success { color: #19663a; }
.form-message.is-error { color: #9e342d; }
.button[disabled] { cursor: wait; opacity: .65; transform: none; }
.noscript-note { margin: 0 0 18px; color: #8a3e28; font-size: 12px; }
.privacy-page { min-height: 100vh; padding: 150px max(24px, calc((100vw - 1000px) / 2)) 90px; background: var(--paper); color: var(--ink); }
.privacy-page h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(46px, 6vw, 76px); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
.privacy-page h2 { margin: 40px 0 12px; font-size: 22px; }
.privacy-page p, .privacy-page li { color: #4f5a5c; line-height: 1.75; }
.privacy-page a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.privacy-back { display: inline-flex; margin-top: 44px; font-weight: 800; }

@media (max-width: 600px) {
  .captcha-box { grid-template-columns: 1fr auto; }
  .captcha-box img { width: 100%; max-width: 220px; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1460px, calc(100% - 64px));
  height: 96px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 44px;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 180px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  transform: skew(-6deg);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 24px; letter-spacing: .08em; }
.brand-copy small { margin-top: 6px; color: #c5cbcc; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.3vw, 38px); margin-left: auto; }
.desktop-nav a { color: #d8dddd; font-size: 14px; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.header-phone { font-weight: 700; white-space: nowrap; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { background: transparent; color: var(--accent); transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 20px; font-size: 13px; }
.mobile-menu { display: none; }

.hero {
  min-height: 950px;
  padding: 164px max(32px, calc((100vw - 1460px) / 2)) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 12%, rgba(44, 83, 92, .24), transparent 35%),
    linear-gradient(120deg, #151b1d 0%, #101416 72%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow > span { width: 34px; height: 2px; background: currentColor; }
.hero h1,
.section-heading h2,
.next-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}
.hero h1 { max-width: 710px; font-size: clamp(66px, 6.6vw, 108px); }
.hero h1 em,
.section-heading h2 em { color: var(--accent); font-weight: inherit; }
.hero-lead { max-width: 610px; margin: 34px 0 0; color: #bdc5c6; font-size: clamp(17px, 1.25vw, 20px); line-height: 1.75; }
.hero-buttons { display: flex; align-items: center; gap: 34px; margin-top: 40px; }
.text-link { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.35); font-weight: 700; font-size: 14px; }
.text-link span { margin-left: 10px; color: var(--accent); font-size: 18px; }
.hero-visual { position: relative; min-height: 650px; }
.hero-image-wrap {
  position: absolute;
  inset: 0 0 0 48px;
  overflow: hidden;
  clip-path: polygon(11% 0, 100% 0, 100% 88%, 86% 100%, 0 100%, 0 12%);
  background: #263033;
}
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,16,.08), rgba(10,15,16,.16));
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero-line { position: absolute; z-index: 2; right: 25px; bottom: 28px; width: 120px; height: 4px; background: var(--accent); }
.hero-badge {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 56px;
  width: 210px;
  min-height: 136px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  background: var(--accent);
  color: var(--ink);
}
.hero-badge strong { font-family: Georgia, serif; font-size: 58px; line-height: .8; }
.hero-badge span { font-size: 12px; font-weight: 800; line-height: 1.3; text-transform: uppercase; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-facts > div { min-height: 122px; padding: 28px 38px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--line); }
.hero-facts > div:first-child { border-left: 0; padding-left: 0; }
.hero-facts strong { color: #f6f7f7; font-size: 17px; }
.hero-facts span { margin-top: 6px; color: #8f9a9c; font-size: 13px; }

.services-section {
  padding: 128px max(32px, calc((100vw - 1460px) / 2));
  background: var(--paper);
  color: var(--ink);
}
.section-heading { display: grid; grid-template-columns: 1.1fr .75fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.eyebrow.dark { color: var(--blue); }
.section-heading h2 { font-size: clamp(50px, 5vw, 82px); }
.section-heading h2 em { color: var(--blue); }
.section-heading > p { max-width: 520px; margin: 0 0 6px; color: #5b6466; font-size: 18px; line-height: 1.75; }
.services-layout { display: grid; grid-template-columns: minmax(380px, .78fr) 1.22fr; gap: clamp(48px, 7vw, 110px); align-items: start; }
.service-photo { position: sticky; top: 32px; height: 655px; overflow: hidden; background: #293235; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12,16,17,.8)); }
.photo-caption { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 26px; display: flex; flex-direction: column; }
.photo-caption span { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.photo-caption strong { margin-top: 6px; color: #fff; font-size: 17px; }
.service-list { border-top: 1px solid #c8c9c4; }
.service-item {
  display: grid;
  grid-template-columns: 44px 1fr 40px;
  gap: 18px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #c8c9c4;
  transition: padding .2s ease, border-color .2s ease;
}
.service-item:hover { padding-left: 10px; border-color: var(--blue); }
.service-index { padding-top: 5px; color: var(--blue); font-size: 12px; font-weight: 800; }
.service-item h3 { margin: 0; font-size: clamp(21px, 1.65vw, 27px); line-height: 1.2; }
.service-item p { max-width: 620px; margin: 11px 0 0; color: #646d6e; font-size: 14px; line-height: 1.65; }
.service-arrow { color: var(--blue); font-size: 24px; text-align: right; }
.next-section { min-height: 360px; padding: 110px max(32px, calc((100vw - 1460px) / 2)); background: #192124; }
.next-section h2 { max-width: 850px; font-size: clamp(52px, 5vw, 82px); }

.about-section {
  padding: 132px max(32px, calc((100vw - 1460px) / 2));
  background: #182124;
}
.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(52px, 8vw, 128px); align-items: center; }
.about-photo { position: relative; height: 780px; overflow: hidden; background: #202a2d; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(9,14,15,.86)); }
.about-photo-note { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 32px; display: flex; flex-direction: column; gap: 7px; }
.about-photo-note strong { color: var(--accent); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }
.about-photo-note span { max-width: 380px; color: #e3e7e7; font-size: 15px; }
.about-copy h2,
.equipment-heading h2,
.process-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 5.5vw, 88px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}
.about-copy h2 em,
.equipment-heading h2 em,
.contact-copy h2 em { color: var(--accent); font-weight: inherit; }
.about-lead { max-width: 700px; margin: 34px 0 0; color: #b8c0c2; font-size: 18px; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-stats > div { min-height: 130px; padding: 27px 18px; display: flex; align-items: flex-end; gap: 13px; border-left: 1px solid var(--line); }
.about-stats > div:first-child { border-left: 0; padding-left: 0; }
.about-stats strong { color: var(--accent); font-family: Georgia, serif; font-size: clamp(37px, 3vw, 52px); line-height: .95; }
.about-stats span { color: #d0d5d5; font-size: 11px; font-weight: 700; line-height: 1.35; text-transform: uppercase; }
.about-meta { margin-top: 30px; }
.about-meta p { margin: 0; padding: 13px 0; display: grid; grid-template-columns: 150px 1fr; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.09); }
.about-meta span { color: #829093; font-size: 13px; }
.about-meta strong { color: #e7eaea; font-size: 14px; }

.equipment-section {
  padding: 132px max(32px, calc((100vw - 1460px) / 2));
  overflow: hidden;
  background: #101617;
}
.equipment-heading { display: grid; grid-template-columns: 1.15fr .7fr; gap: 80px; align-items: end; }
.equipment-heading > p { max-width: 540px; margin: 0 0 5px; color: #9ca8aa; font-size: 17px; line-height: 1.8; }
.equipment-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(54px, 7vw, 108px); margin-top: 76px; align-items: center; }
.equipment-images { position: relative; height: 680px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; }
.equipment-images img { width: 100%; height: 100%; object-fit: cover; }
.equipment-images img:last-of-type { margin-top: 78px; height: calc(100% - 78px); }
.equipment-label { position: absolute; left: 24px; bottom: 22px; padding: 12px 15px; background: rgba(15,20,21,.88); color: white; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.equipment-list { border-top: 1px solid var(--line); }
.equipment-list article { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.equipment-list article > span { color: var(--accent); font-size: 11px; font-weight: 800; }
.equipment-list h3 { margin: 0; font-size: 22px; }
.equipment-list p { margin: 8px 0 0; color: #889598; font-size: 13px; line-height: 1.7; }

.projects-section { padding: 132px max(32px, calc((100vw - 1460px) / 2)); background: var(--paper); color: var(--ink); }
.projects-heading { margin-bottom: 72px; }
.projects-heading h2 em { color: var(--blue); }
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 320px; gap: 18px; }
.project-card { position: relative; min-height: 320px; overflow: hidden; grid-column: span 3; background: #293336; }
.project-card.project-tall { grid-column: span 5; grid-row: span 2; }
.project-card:nth-child(3) { grid-column: span 4; }
.project-card.project-wide { grid-column: span 7; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.project-card:hover img { transform: scale(1.035); }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(7,12,13,.9)); }
.project-overlay { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 23px; color: white; }
.project-overlay > span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-overlay h3 { max-width: 510px; margin: 8px 0 0; font-size: clamp(19px, 1.55vw, 25px); line-height: 1.22; }
.project-overlay p { margin: 8px 0 0; color: #c3cbcc; font-size: 12px; }
.geography-panel { margin-top: 72px; padding: 58px 64px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; background: var(--blue); color: white; }
.geography-panel h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(40px, 4vw, 62px); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.geography-panel ul { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; list-style: none; border-top: 1px solid rgba(255,255,255,.28); }
.geography-panel li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.22); color: #e0eef1; font-size: 14px; }
.geography-panel li:nth-child(even) { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.22); }
.clients-row { margin-top: 48px; padding-top: 27px; display: grid; grid-template-columns: 210px 1fr; gap: 38px; border-top: 1px solid #c9cbc6; }
.clients-row > span { color: #6d7778; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.clients-row > div { display: flex; flex-wrap: wrap; gap: 20px 34px; }
.clients-row strong { color: #536063; font-size: 12px; letter-spacing: .04em; }

.process-section { padding: 116px max(32px, calc((100vw - 1460px) / 2)); display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; background: var(--blue); }
.process-intro h2 { font-size: clamp(52px, 5vw, 78px); }
.process-list { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; list-style: none; border-top: 1px solid rgba(255,255,255,.3); }
.process-list li { min-height: 190px; padding: 28px 28px 28px 0; display: grid; grid-template-columns: 42px 1fr; gap: 15px; border-bottom: 1px solid rgba(255,255,255,.25); }
.process-list li:nth-child(even) { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.25); }
.process-list li > span { color: var(--accent); font-size: 12px; font-weight: 800; }
.process-list h3 { margin: 0; font-size: 20px; line-height: 1.25; }
.process-list p { margin: 11px 0 0; color: #d5e6e9; font-size: 13px; line-height: 1.7; }

.contact-section { padding: 132px max(32px, calc((100vw - 1460px) / 2)); display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(70px, 9vw, 150px); background: #111719; }
.contact-copy > p:not(.eyebrow) { max-width: 500px; margin: 31px 0 0; color: #aeb8ba; font-size: 17px; line-height: 1.75; }
.contact-links { margin-top: 45px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.contact-links > * { padding: 18px 0; display: grid; grid-template-columns: 92px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.contact-links span { color: #7e8b8e; font-size: 12px; }
.contact-links strong { color: #eef0f0; font-size: 15px; line-height: 1.55; }
.contact-form { padding: 48px; background: var(--paper); color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: block; margin-bottom: 22px; }
.contact-form label > span { display: block; margin-bottom: 9px; color: #4e595b; font-size: 12px; font-weight: 800; }
.contact-form input:not([type="checkbox"]),
.contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #aeb3af; border-radius: 0; background: transparent; color: #13191a; font: inherit; outline: 0; }
.contact-form input:not([type="checkbox"]) { height: 48px; }
.contact-form textarea { min-height: 110px; padding: 12px 0; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 1px 0 var(--blue); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.captcha-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.captcha-row p { margin: 0; color: #778082; font-size: 11px; line-height: 1.55; }
.consent { display: flex !important; gap: 10px; align-items: flex-start; }
.consent input { flex: 0 0 auto; margin-top: 3px; accent-color: var(--blue); }
.consent span { margin: 0 !important; font-weight: 400 !important; line-height: 1.55; }
.form-submit-row { display: flex; align-items: center; gap: 24px; margin-top: 28px; }
.contact-form .button { border: 0; cursor: pointer; }
.form-status { max-width: 390px; margin: 0; color: var(--blue); font-size: 12px; line-height: 1.55; }

.site-footer { padding: 36px max(32px, calc((100vw - 1460px) / 2)); display: grid; grid-template-columns: 220px 1fr auto; gap: 50px; align-items: center; background: #0b0f10; border-top: 1px solid var(--line); }
.footer-legal p { margin: 3px 0; color: #7f8a8c; font-size: 11px; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; color: #7f8a8c; font-size: 11px; }
.footer-right a { color: #c6cccd; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1180px) {
  .site-header { width: calc(100% - 40px); gap: 24px; }
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr .9fr; gap: 30px; }
  .hero-visual { min-height: 580px; }
  .hero-image-wrap { left: 20px; }
  .services-layout { grid-template-columns: .85fr 1.15fr; gap: 48px; }
  .about-grid { gap: 56px; }
  .about-photo { height: 690px; }
  .equipment-grid { gap: 52px; }
  .equipment-images { height: 580px; }
  .contact-section { gap: 58px; }
  .contact-form { padding: 38px; }
}

@media (max-width: 900px) {
  .site-header { height: 82px; }
  .header-actions { display: none; }
  .mobile-menu { display: block; margin-left: auto; position: relative; }
  .mobile-menu summary { width: 44px; height: 44px; display: grid; align-content: center; gap: 5px; padding: 10px; list-style: none; cursor: pointer; border: 1px solid var(--line); }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { height: 2px; background: white; }
  .mobile-menu nav { position: absolute; top: 52px; right: 0; width: 230px; padding: 18px; display: grid; gap: 5px; background: #20282a; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 18px 40px rgba(0,0,0,.35); }
  .mobile-menu nav a { padding: 10px; font-weight: 700; }
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 3; }
  .hero-visual { min-height: 520px; margin-top: 10px; }
  .hero-image-wrap { left: 70px; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts > div { min-height: auto; padding: 20px 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero-facts > div:first-child { border-top: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .services-layout { grid-template-columns: 1fr; }
  .service-photo { position: relative; top: auto; height: 500px; }
  .about-grid,
  .equipment-heading,
  .equipment-grid,
  .process-section,
  .contact-section { grid-template-columns: 1fr; }
  .about-photo { height: 590px; }
  .equipment-heading,
  .process-section { gap: 34px; }
  .equipment-grid { margin-top: 45px; }
  .projects-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 360px; }
  .project-card,
  .project-card.project-tall,
  .project-card:nth-child(3),
  .project-card.project-wide { grid-column: auto; grid-row: auto; }
  .geography-panel { grid-template-columns: 1fr; gap: 36px; padding: 48px; }
  .process-section { gap: 45px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer .brand { grid-row: span 2; }
}

@media (max-width: 600px) {
  .site-header { width: calc(100% - 28px); }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 21px; }
  .brand-copy small { font-size: 8px; }
  .hero { min-height: auto; padding: 120px 18px 0; }
  .hero h1 { font-size: clamp(56px, 16vw, 76px); }
  .hero-lead { margin-top: 26px; font-size: 16px; line-height: 1.65; }
  .hero-buttons { align-items: stretch; flex-direction: column; gap: 10px; }
  .text-link { width: fit-content; }
  .hero-visual { min-height: 460px; margin-top: 32px; }
  .hero-image-wrap { left: 24px; }
  .hero-badge { bottom: 28px; width: 176px; min-height: 112px; padding: 20px; }
  .hero-badge strong { font-size: 48px; }
  .hero-facts { margin-top: 34px; }
  .services-section { padding: 86px 18px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2 { font-size: 48px; }
  .section-heading > p { font-size: 16px; }
  .service-photo { height: 360px; }
  .service-item { grid-template-columns: 34px 1fr 25px; gap: 10px; }
  .service-item p { font-size: 13px; }
  .next-section { padding: 86px 18px; }
  .about-section,
  .equipment-section,
  .projects-section,
  .process-section,
  .contact-section { padding: 86px 18px; }
  .about-photo { height: 520px; }
  .about-copy h2,
  .equipment-heading h2,
  .contact-copy h2 { font-size: 50px; }
  .about-lead { font-size: 16px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stats > div { min-height: 90px; padding: 20px 0; border-left: 0; border-top: 1px solid var(--line); }
  .about-stats > div:first-child { border-top: 0; }
  .about-meta p { grid-template-columns: 110px 1fr; }
  .equipment-images { height: 440px; gap: 8px; }
  .equipment-images img:last-of-type { margin-top: 48px; height: calc(100% - 48px); }
  .projects-grid { grid-template-columns: 1fr; grid-auto-rows: 380px; }
  .geography-panel { margin-top: 44px; padding: 35px 24px; }
  .geography-panel ul { grid-template-columns: 1fr; }
  .geography-panel li:nth-child(even) { padding-left: 0; border-left: 0; }
  .clients-row { grid-template-columns: 1fr; gap: 20px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li:nth-child(even) { padding-left: 0; border-left: 0; }
  .form-row,
  .captcha-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 20px; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .site-footer { padding: 42px 18px; grid-template-columns: 1fr; gap: 28px; }
  .site-footer .brand { grid-row: auto; }
  .footer-right { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
