:root {
  --dark: #14181d;
  --dark-2: #1c2229;
  --dark-3: #242c35;
  --accent: #f2541d;
  --accent-2: #ff8a1e;
  --paper: #f7f6f3;
  --white: #ffffff;
  --ink: #1a1e24;
  --muted: #5f646c;
  --muted-light: #9aa1ab;
  --line: #e3e1dc;
  --line-dark: rgba(255, 255, 255, 0.1);
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h2 { font-size: clamp(26px, 3.4vw, 38px); }
h3 { font-size: 19px; }

p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; }
img { max-width: 100%; display: block; }
ul { color: var(--muted); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 14px;
}
.kicker::before { content: ""; width: 28px; height: 3px; background: var(--accent); }

.section-head { max-width: 660px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker::after { content: ""; width: 28px; height: 3px; background: var(--accent); }

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--dark);
  color: var(--muted-light);
  font-size: 13px;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}
.top-bar a { color: var(--white); text-decoration: none; font-weight: 600; }
.top-bar a:hover { color: var(--accent-2); }
.top-bar .gs { color: var(--muted-light); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: var(--dark);
  border-bottom: 1px solid var(--line-dark);
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 84px; }

.logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.logo-mark { height: 54px; width: auto; flex-shrink: 0; }
.logo-text { font-family: 'Archivo', sans-serif; font-weight: 800; text-transform: lowercase; font-size: 25px; line-height: 1; color: var(--white); letter-spacing: 0.01em; }
.logo-text b { color: var(--accent); font-weight: 800; }
.logo-text span { display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 9.5px; letter-spacing: 0.22em; color: var(--muted-light); text-transform: uppercase; margin-top: 3px; white-space: nowrap; }

.main-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; list-style: none; padding: 0; }
.main-nav > li { position: relative; }
.main-nav a { text-decoration: none; font-weight: 600; font-size: 14.5px; color: var(--white); white-space: nowrap; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--accent-2); }

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 8px;
  vertical-align: 2px;
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  box-shadow: 0 18px 40px -18px rgba(20, 24, 29, 0.35);
  padding: 8px;
  min-width: 270px;
  margin: 0;
  list-style: none;
}
.dropdown::before { content: ""; position: absolute; top: -17px; left: 0; right: 0; height: 17px; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown a { display: block; padding: 11px 14px; font-size: 14px; white-space: nowrap; color: var(--ink); }
.dropdown a:hover { background: var(--paper); color: var(--accent); }

.header-cta {
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: var(--white);
  padding: 13px 22px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.15s;
}
.header-cta:hover { background: #d9440f; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 34px; height: 34px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span { display: block; height: 3px; background: var(--white); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  padding: 17px 34px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #d9440f; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.65); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-3); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.42;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url('../images/pipe-pattern.svg'),
    url('../images/pipe-pattern.svg'),
    linear-gradient(100deg, rgba(20,24,29,0.88) 20%, rgba(20,24,29,0.38) 70%, rgba(20,24,29,0.18));
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: -220px -320px, right -280px bottom -360px, center;
  background-size: 700px 700px, 860px 860px, cover;
}
.hero-inner { position: relative; z-index: 2; padding: 90px 0; max-width: 720px; }
.hero .kicker { color: var(--accent-2); }
.hero .kicker::before { background: var(--accent-2); }
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5.4vw, 62px);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--accent-2); }
.hero .lede { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 26px; font-size: 13.5px; color: rgba(255,255,255,0.7); }
.hero-note strong { color: var(--white); }

/* ---------- Feature strip ---------- */
.feature-strip {
  background: linear-gradient(96deg, #e8261c, var(--accent) 45%, var(--accent-2));
  color: var(--white);
  position: relative;
  z-index: 3;
  clip-path: polygon(0 34px, 100% 0, 100% 100%, 0 100%);
  margin-top: -34px;
  padding-top: 34px;
}
.feature-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-left: 1px solid rgba(255,255,255,0.22);
}
.feature:first-child { border-left: none; padding-left: 0; }
.feature svg { width: 30px; height: 30px; flex-shrink: 0; }
.feature b { display: block; font-family: 'Archivo', sans-serif; font-weight: 800; text-transform: uppercase; font-size: 13.5px; letter-spacing: 0.03em; }
.feature small { font-size: 12.5px; opacity: 0.85; }

/* ---------- Services ---------- */
.services { padding: 90px 0; background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -20px rgba(20,24,29,0.3); }
.service-card .thumb { height: 220px; overflow: hidden; position: relative; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-card .thumb::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--accent);
}
.service-card .body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 14.5px; margin-bottom: 18px; flex: 1; }
.service-card .more {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--accent);
}

/* ---------- Split (about) ---------- */
.split { padding: 90px 0; }
.split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; height: 460px; object-fit: cover; }
.split-media .floating-badge {
  position: absolute;
  bottom: -24px;
  right: -18px;
  background: var(--accent);
  color: var(--white);
  padding: 22px 26px;
  max-width: 220px;
}
.floating-badge b { display: block; font-family: 'Archivo', sans-serif; font-weight: 800; text-transform: uppercase; font-size: 20px; }
.floating-badge small { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }
.check-list { list-style: none; padding: 0; margin: 0 0 28px; }
.check-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  background: var(--accent);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 16%, 84% 2%, 40% 70%);
}

/* ---------- Stats ---------- */
.stats { background: var(--dark); color: var(--white); padding: 66px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; text-align: center; }
.stat b {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--accent-2);
  text-transform: uppercase;
  line-height: 1.1;
}
.stat span { font-size: 13.5px; color: var(--muted-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* ---------- Process ---------- */
.process { padding: 90px 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.process-step { border-top: 3px solid var(--line); padding-top: 22px; position: relative; }
.process-step::before {
  content: "";
  position: absolute;
  top: -3px; left: 0;
  width: 56px; height: 3px;
  background: var(--accent);
}
.step-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.process-step h3 { font-size: 16.5px; margin-bottom: 6px; }
.process-step p { font-size: 14px; margin: 0; }

/* ---------- Portfolio ---------- */
.portfolio { padding: 90px 0; background: var(--paper); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-item { position: relative; overflow: hidden; height: 300px; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(20,24,29,0.85));
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13.5px;
  letter-spacing: 0.05em;
}

/* ---------- FAQ ---------- */
.faq { padding: 90px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); margin-bottom: 12px; background: var(--white); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--accent); flex-shrink: 0; font-family: 'Inter', sans-serif; font-weight: 700; }
.faq-item[open] { border-left: 3px solid var(--accent); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .answer { padding: 0 24px 20px; }
.faq-item .answer p { margin: 0; font-size: 15px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 80% 20%, rgba(242,84,29,0.25), transparent);
}
.cta-banner .wrap { position: relative; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: var(--muted-light); max-width: 540px; margin: 0 auto 30px; }
.cta-banner .hero-ctas { justify-content: center; }
.cta-phone {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 38px);
  color: var(--accent-2);
  text-decoration: none;
  margin-bottom: 24px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: var(--dark);
  color: var(--white);
  padding: 72px 0;
}
.page-hero .hero-bg { opacity: 0.28; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url('../images/pipe-pattern.svg'),
    linear-gradient(100deg, rgba(20,24,29,0.92) 30%, rgba(20,24,29,0.55));
  background-repeat: no-repeat, no-repeat;
  background-position: right -260px top -300px, center;
  background-size: 720px 720px, cover;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 12px; }
.page-hero .lede { color: rgba(255,255,255,0.82); max-width: 620px; margin: 0; font-size: 17px; }
.page-hero .kicker { color: var(--accent-2); }
.page-hero .kicker::before { background: var(--accent-2); }

.breadcrumbs { font-size: 13px; color: var(--muted-light); margin-bottom: 22px; }
.breadcrumbs a { text-decoration: none; color: rgba(255,255,255,0.75); }
.breadcrumbs a:hover { color: var(--accent-2); }
.breadcrumbs .sep { margin: 0 7px; }

/* ---------- Content sections ---------- */
.content { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.content-main h2 { font-size: clamp(22px, 2.6vw, 30px); margin-top: 1.6em; }
.content-main h2:first-child { margin-top: 0; }
.content-main img { width: 100%; height: 340px; object-fit: cover; margin: 8px 0 28px; }

.sidebar { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--paper); border: 1px solid var(--line); padding: 26px; }
.sidebar-card.dark { background: var(--dark); border-color: var(--dark); color: var(--white); }
.sidebar-card.dark h3 { color: var(--white); }
.sidebar-card.dark p { color: var(--muted-light); }
.sidebar-card h3 { font-size: 16px; margin-bottom: 12px; }
.sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card ul a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}
.sidebar-card ul a:hover, .sidebar-card ul a[aria-current="page"] { color: var(--accent); }
.sidebar-card ul li:last-child a { border-bottom: none; }
.sidebar-card .btn { width: 100%; text-align: center; padding: 15px 10px; }
.sidebar-phone {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent-2);
  text-decoration: none;
  margin: 6px 0 14px;
}

/* ---------- Areas ---------- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; margin-top: 8px; }
.area-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 13px 16px;
  font-weight: 600;
  font-size: 14.5px;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info-list { list-style: none; padding: 0; margin: 0 0 8px; }
.contact-info-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .ic {
  width: 44px; height: 44px;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-list .ic svg { width: 20px; height: 20px; }
.contact-info-list b { display: block; font-family: 'Archivo', sans-serif; text-transform: uppercase; font-size: 13px; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-info-list a { text-decoration: none; color: var(--muted); }
.contact-info-list a:hover { color: var(--accent); }

.contact-form { background: var(--paper); border: 1px solid var(--line); padding: 34px; display: flex; flex-direction: column; gap: 18px; }
.contact-form h3 { margin-bottom: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: 2px solid var(--accent); outline-offset: -1px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--muted-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 64px 0 44px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 13.5px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { text-decoration: none; font-size: 14.5px; color: var(--muted-light); }
.footer-col a:hover { color: var(--accent-2); }
.footer-col p { font-size: 14.5px; color: var(--muted-light); }
.footer-about .logo-text { color: var(--white); margin-bottom: 14px; }
.footer-logo-img { width: 170px; height: auto; margin-bottom: 18px; }
.footer-gs {
  display: inline-block;
  margin-top: 12px;
  border: 1px solid var(--line-dark);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--white);
}
.footer-gs b { color: var(--accent-2); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}
.footer-bottom p { margin: 0; color: var(--muted-light); }

/* ---------- Mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--accent);
}
.mobile-call-bar a {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--white);
  padding: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .feature-strip .wrap { grid-template-columns: 1fr 1fr; }
  .feature { border-left: none; padding-left: 0; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .split-inner { grid-template-columns: 1fr; gap: 48px; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0; right: 0;
    background: var(--dark-2);
    border-bottom: 1px solid var(--line-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 24px 20px;
    gap: 0;
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.5);
    max-height: calc(100vh - 122px);
    overflow-y: auto;
  }
  .site-header.nav-open .main-nav > li > a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line-dark); }
  .dropdown {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    border-left: 3px solid var(--accent);
    padding: 0 0 0 14px;
    min-width: 0;
  }
  .dropdown a { color: var(--muted-light); }
  .dropdown a:hover { background: transparent; color: var(--accent-2); }
  .has-dropdown.open .dropdown { display: block; }
}

@media (max-width: 760px) {
  .top-bar .gs { display: none; }
  .header-cta { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 56px; }
  .hero { min-height: 520px; }
  .split-media .floating-badge { right: 0; }
}

/* ---------- Pipe pattern on dark surfaces ---------- */
.hero, .page-hero, .stats, .cta-banner, .site-footer, .sidebar-card.dark {
  background-image: url('../images/pipe-pattern.svg'), url('../images/pipe-pattern.svg');
  background-repeat: no-repeat, no-repeat;
  background-position: -190px -300px, right -260px bottom -320px;
  background-size: 620px 620px, 780px 780px;
}
.sidebar-card.dark {
  background-position: -260px -300px, right -200px bottom -260px;
  background-size: 480px 480px, 460px 460px;
}

/* ---------- Polish ---------- */
::selection { background: var(--accent); color: var(--white); }

.btn { transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { box-shadow: 0 16px 30px -10px rgba(242, 84, 29, 0.55); }

.header-cta { transition: background 0.15s ease, transform 0.15s ease; }
.header-cta:hover { transform: translateY(-1px); }

.service-card .thumb img { transition: transform 0.4s ease; }
.service-card:hover .thumb img { transform: scale(1.06); }

.portfolio-item .cap { transition: padding-bottom 0.25s ease; }
.portfolio-item:hover .cap { padding-bottom: 22px; }

.cta-phone { transition: color 0.15s ease; }
.cta-phone:hover { color: var(--white); }

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

/* ---------- Scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
}

/* ---------- Look-better pass ---------- */
.service-card, .service-card .thumb { border-radius: 10px 10px 0 0; }
.service-card { border-radius: 10px; overflow: hidden; }
.split-media img, .content-main img, .portfolio-item, .map-embed { border-radius: 10px; }
.portfolio-item { overflow: hidden; }
.sidebar-card, .contact-form, .faq-item { border-radius: 10px; }
.area-chip { border-radius: 8px; }

.portfolio-item::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 4px; width: 0;
  background: linear-gradient(90deg, #e8261c, var(--accent-2));
  transition: width 0.3s ease;
  z-index: 2;
}
.portfolio-item:hover::before { width: 100%; }

.site-footer { border-top: 3px solid var(--accent); }

.split-media .floating-badge { border-radius: 10px; box-shadow: 0 24px 44px -18px rgba(232, 38, 28, 0.55); }

.stats .wrap { position: relative; }
.stat b { text-shadow: 0 2px 24px rgba(255, 138, 30, 0.25); }

.content-main img { box-shadow: 0 20px 40px -24px rgba(20, 24, 29, 0.4); }
