:root {
  --bg: #080909;
  --panel: #0d0f10;
  --panel-2: #111315;
  --text: #f3f3f3;
  --muted: #a9adb2;
  --line: #25282b;
  --red: #f20d16;
  --red-dark: #a8070d;
  --max: 1180px;
  --header-h: 82px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(5, 6, 6, 0.94);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 330px;
  height: 58px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8e8e8;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active { color: var(--red); }

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  padding: 9px;
}

.menu-toggle span {
  height: 2px;
  background: white;
  margin: 5px 0;
  display: block;
}

.hero {
  min-height: 680px;
  padding-top: var(--header-h);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: var(--header-h) 0 0;
  background:
    linear-gradient(90deg, #080909 0%, rgba(8,9,9,.98) 26%, rgba(8,9,9,.63) 48%, rgba(8,9,9,.12) 72%, rgba(8,9,9,.04) 100%),
    url("../images/concrete-plant-hero.jpg") center right / cover no-repeat;
  filter: saturate(.7) contrast(1.13) brightness(.73);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(242,13,22,.12), transparent 28%),
    linear-gradient(0deg, rgba(0,0,0,.20), rgba(0,0,0,0));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 88px 78px;
  min-height: calc(680px - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-copy {
  max-width: 560px;
  flex: 0 1 560px;
}

.hero-logo-panel {
  flex: 0 1 470px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 70px;
}

.hero-logo {
  width: min(470px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.62));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: .82rem;
}

h1, h2, h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: .98;
  text-transform: uppercase;
  margin-top: 0;
}

.hero-line {
  display: block;
}

h1 {
  font-size: clamp(3.1rem, 5vw, 5.2rem);
  max-width: 560px;
  margin-bottom: 24px;
  line-height: .94;
  text-shadow: 0 3px 28px rgba(0,0,0,.55);
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 720px;
  color: #d4d6d8;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }

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

.btn-primary:hover { background: #ff1c25; }

.btn-outline {
  border-color: #666;
  background: rgba(0,0,0,.3);
}

.btn-outline:hover { border-color: var(--red); }

.section {
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.018), transparent 25%),
    var(--bg);
}

.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.section-title h2,
.center-heading h2,
.contact-info h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  margin-bottom: 18px;
}

.section-copy {
  color: #c6c8cb;
  font-size: 1.05rem;
}

.section-copy p:first-child { margin-top: 0; }

.red-rule {
  display: block;
  width: 42px;
  height: 3px;
  background: var(--red);
}

.center-heading {
  text-align: center;
  margin-bottom: 38px;
}

.center-heading .red-rule { margin: 0 auto; }

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

.card {
  position: relative;
  padding: 34px 26px;
  text-align: center;
  border: 1px solid #303337;
  background: linear-gradient(180deg, #121416, #0c0e0f);
  min-height: 270px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}

.card::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -1px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(242,13,22,.7);
}

.icon,
.value-icon {
  color: var(--red);
  font-size: 3.4rem;
  line-height: 1;
}

.card h3 {
  font-size: 1.55rem;
  margin: 20px 0 12px;
}

.card p,
.value p {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 0;
}

.why-us {
  background: #0a0b0c;
}

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

.value {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 18px 30px;
  border-right: 1px solid #383b3e;
}

.value:last-child { border-right: 0; }

.value h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.contact {
  background:
    linear-gradient(90deg, rgba(242,13,22,.03), transparent 35%),
    repeating-linear-gradient(60deg, rgba(255,255,255,.008) 0 1px, transparent 1px 16px),
    #0b0d0e;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.contact-list {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.contact-list a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.contact-list strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .74rem;
  color: #cfd2d5;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: white;
  border: 1px solid #33363a;
  background: rgba(12,14,15,.78);
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(242,13,22,.10);
}

.contact-form textarea { resize: vertical; }

.contact-form .btn {
  justify-self: start;
  min-width: 210px;
}

.form-note {
  margin: 0;
  font-size: .78rem;
  color: #73777c;
}

.footer {
  border-top: 2px solid var(--red);
  background: #030404;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ea1a4;
  font-size: .8rem;
  letter-spacing: .08em;
}

.footer-mark {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  :root { --header-h: 70px; }

  .brand {
    width: 250px;
    height: 48px;
  }

  .menu-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: #070808;
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid #1c1f21;
  }

  .site-nav a::after { display: none; }

  .hero {
    min-height: 660px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(8,9,9,.98), rgba(8,9,9,.86) 45%, rgba(8,9,9,.42)),
      url("../images/concrete-plant-hero.jpg") center / cover no-repeat;
  }

  .hero-content {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 28px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero-logo-panel {
    flex: none;
    width: 100%;
    justify-content: center;
    padding-top: 0;
  }

  .hero-logo {
    width: min(460px, 100%);
  }

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .value {
    border-right: 0;
    border-bottom: 1px solid #303337;
    padding-inline: 0;
  }
}

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

  .hero-content { padding-block: 80px 55px; }

  h1 { font-size: 2.75rem; }

  .hero-copy {
    max-width: 100%;
  }

  .hero-logo {
    width: min(340px, 100%);
  }

  .section { padding: 58px 0; }

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

  .card { min-height: unset; }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

html{scroll-padding-top:var(--header-h)}
body.admin-bar .site-header{top:32px}
.brand .custom-logo-link{display:block;width:100%;height:100%}
.brand .custom-logo{width:100%;height:100%;object-fit:contain;object-position:left center}
.content-fallback{min-height:70vh;padding:calc(var(--header-h) + 90px) 0 90px;background:#080909}.fallback-entry{max-width:900px}.fallback-entry h1{font-size:clamp(3rem,6vw,5rem)}.entry-content{color:#c6c8cb}.entry-content a{color:var(--red)}
@media screen and (max-width:782px){body.admin-bar .site-header{top:46px}}
