/* ============================================
   EPP ENGINEERING TECH — Main Stylesheet
   ============================================ */

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

:root {
  --red: #c0392b;
  --red-dark: #96281b;
  --charcoal: #1c1c1c;
  --charcoal-mid: #2d2d2d;
  --grey-dark: #3a3a3a;
  --grey-mid: #6b6b6b;
  --grey-light: #f4f4f4;
  --grey-border: #e0e0e0;
  --white: #ffffff;

  --font: "Barlow", sans-serif;
  --font-display: "Barlow Condensed", sans-serif;

  --max-w: 1200px;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Page load — hero elements */
.anim-slide-right {
  animation: slideRight 0.7s ease both;
}
.anim-fade-up-1 {
  animation: fadeUp 0.8s ease both 0.25s;
}
.anim-fade-up-2 {
  animation: fadeUp 0.8s ease both 0.45s;
}
.anim-fade-up-3 {
  animation: fadeUp 0.8s ease both 0.6s;
}
.anim-scale-in {
  animation: scaleIn 1s ease both 0.2s;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}
.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--charcoal);
  z-index: 1000;
  border-bottom: 3px solid var(--red);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  word-spacing: -16px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--red);
}

/* Footer logo */
.footer-brand .nav-logo {
  font-size: 18px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 3px;
  word-spacing: -2px;
}
.footer-brand .nav-logo img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #adadad;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0 24px !important;
  height: 40px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: background 0.2s !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--charcoal-mid);
  z-index: 999;
  padding: 24px 20px;
  border-top: 1px solid var(--grey-dark);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu ul {
  list-style: none;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: #adadad;
  border-bottom: 1px solid var(--grey-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-menu li:last-child a {
  border-bottom: none;
}
.mobile-menu a:hover {
  color: var(--white);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 15px 32px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid var(--red);
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  padding: 15px 32px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid var(--charcoal);
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   SECTION SHARED STYLES
   ============================================ */

section {
  padding: 100px 0;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title-light {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 17px;
  color: var(--grey-mid);
  line-height: 1.75;
  max-width: 600px;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  margin-top: var(--nav-h);
  background: var(--charcoal);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--red);
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}

.page-hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero h1 em {
  color: var(--red);
  font-style: normal;
}

.page-hero p {
  font-size: 17px;
  color: #a0a0a0;
  line-height: 1.75;
  max-width: 560px;
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */

.img-placeholder {
  width: 100%;
  background: var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: #666;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-height: 200px;
}
.img-placeholder svg {
  opacity: 0.3;
}
.img-placeholder span {
  opacity: 0.45;
}

/* ============================================
   CTA STRIP
   ============================================ */

.cta-strip {
  background: var(--charcoal);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 560px;
}
.cta-strip h2 em {
  color: var(--red);
  font-style: normal;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--charcoal-mid);
  padding: 64px 0 32px;
  border-top: 3px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  font-size: 20px;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: #777;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}

.footer-contact-item {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-item strong {
  color: #adadad;
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--grey-dark);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: #555;
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  background: var(--red);
}

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

.stat-item {
  padding: 36px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: background 0.2s;
}
.stat-item:hover {
  background: rgba(0, 0, 0, 0.12);
}
.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   HOME — HERO
   ============================================ */

.hero {
  margin-top: var(--nav-h);
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(0.7);
  display: block;
  transition: transform 8s ease;
  z-index: 0;
}
.hero:hover .hero-bg-img {
  transform: scale(1.03);
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 28, 28, 0.92) 0%,
    rgba(28, 28, 28, 0.75) 50%,
    rgba(28, 28, 28, 0.4) 100%
  );
  z-index: 1;
}

/* Background placeholder when no image */
.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  z-index: 0;
}

.hero-left-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  max-width: 680px;
  padding-left: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-desc {
  font-size: 18px;
  color: #b0b0b0;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* 2012 badge — bottom right */
.hero-img-badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  background: var(--red);
  padding: 22px 28px;
  z-index: 3;
  text-align: center;
}
.hero-img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-img-badge span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ============================================
   HOME — WHY US
   ============================================ */

.why-us {
  background: var(--grey-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.why-text .section-lead {
  max-width: 100%;
  margin-bottom: 36px;
}

.why-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-point-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.why-point:hover .why-point-icon {
  transform: scale(1.08);
}

.why-point-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
}

.why-point-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.why-point-text span {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.6;
}

.why-visual-wrap {
  display: flex;
  flex-direction: column;
}

.why-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  display: block;
}
.why-img-wrap .img-placeholder {
  height: 280px;
  min-height: unset;
  background: #2a2a2a;
}

.why-visual {
  background: var(--charcoal);
  padding: 40px 44px;
  position: relative;
}
.why-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.why-visual-tagline {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 28px;
}
.why-visual-tagline em {
  color: var(--red);
  font-style: normal;
}

.capability-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-dark);
  font-size: 14px;
  color: #adadad;
  font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}
.capability-item:last-child {
  border-bottom: none;
}
.capability-item:hover {
  color: var(--white);
  padding-left: 6px;
}

.cap-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  flex-shrink: 0;
}

/* ============================================
   HOME — SERVICES PREVIEW
   ============================================ */

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-border);
  border: 1px solid var(--grey-border);
}

.service-card {
  background: var(--white);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  background: var(--grey-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-bottom: 20px;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s, transform 0.4s;
}
.service-card:hover .service-img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.service-img-wrap .img-placeholder {
  height: 160px;
  min-height: unset;
  background: #2a2a2a;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.25s;
}
.service-card:hover .service-icon {
  background: var(--red);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  transition: stroke 0.25s;
}
.service-card:hover .service-icon svg {
  stroke: var(--white);
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.65;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
  padding: 40px 0 0;
}

.services-cta .section-lead {
  max-width: 560px;
  margin: 0 auto 28px;
}

.services-cta .btn-primary {
  display: inline-block;
  margin-top: 0;
}

/* ============================================
   HOME — PHOTO STRIP
   ============================================ */

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 240px;
  overflow: hidden;
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6) saturate(0.6);
  transition: filter 0.4s, transform 0.5s;
}
.photo-strip-item:hover img {
  filter: brightness(0.85) saturate(1);
  transform: scale(1.06);
}

.photo-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 57, 43, 0);
  transition: background 0.3s;
}
.photo-strip-item:hover .photo-strip-overlay {
  background: rgba(192, 57, 43, 0.1);
}

.photo-strip-item .img-placeholder {
  height: 240px;
  min-height: unset;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-img {
  position: relative;
}
.about-intro-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}
.about-intro-img .img-placeholder {
  height: 480px;
  min-height: unset;
  background: #2a2a2a;
}

.about-year-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  padding: 28px 32px;
  text-align: center;
}
.about-year-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about-year-badge span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.about-intro-text .section-lead {
  margin-bottom: 28px;
}

.about-detail {
  font-size: 15px;
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Values */
.values-section {
  background: var(--grey-light);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-border);
  border: 1px solid var(--grey-border);
  margin-top: 56px;
}

.value-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.2s;
  position: relative;
}
.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.3s;
}
.value-card:hover {
  background: var(--grey-light);
}
.value-card:hover::after {
  width: 100%;
}

.value-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--grey-border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.2s;
}
.value-card:hover .value-number {
  color: var(--red);
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.65;
}

/* Industry focus */
.industry-section {
  background: var(--charcoal);
}
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.industry-img {
  position: relative;
}
.industry-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) saturate(0.7);
}
.industry-img .img-placeholder {
  height: 400px;
  min-height: unset;
  background: #333;
}

.industry-text .section-title-light {
  margin-bottom: 20px;
}
.industry-text .section-lead {
  color: #a0a0a0;
  margin-bottom: 32px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.industry-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #adadad;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.industry-tag:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--grey-border);
  border: 1px solid var(--grey-border);
}

.service-full-card {
  background: var(--white);
  display: grid;
  grid-template-columns: 240px 1fr;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.service-full-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.service-full-card:hover {
  background: var(--grey-light);
}
.service-full-card:hover::before {
  transform: scaleY(1);
}

.service-full-img {
  width: 240px;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.3s;
}
.service-full-card:hover .service-full-img {
  filter: grayscale(0%);
}
.service-full-card .img-placeholder {
  width: 240px;
  min-height: 220px;
  background: #2a2a2a;
}

.service-full-content {
  padding: 36px 32px;
}

.service-full-icon {
  width: 44px;
  height: 44px;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.25s;
}
.service-full-card:hover .service-full-icon {
  background: var(--red);
}
.service-full-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  transition: stroke 0.25s;
}
.service-full-card:hover .service-full-icon svg {
  stroke: var(--white);
}

.service-full-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-full-content p {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.7;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 15px;
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
}
.contact-detail-text strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 4px;
}
.contact-detail-text span {
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.5;
}

/* Form */
.contact-form-wrap {
  background: var(--grey-light);
  padding: 48px;
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--grey-border);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  margin-top: 8px;
}
.form-submit .btn-primary {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 16px;
}

.form-success {
  display: none;
  background: #1a3a1a;
  border: 1px solid #2d6a2d;
  color: #7bc97b;
  padding: 16px 20px;
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
}


/* REASSURANCE STRIP */
.reassurance-strip {
  background: var(--grey-light);
  padding: 64px 0;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--grey-border);
  border: 1px solid var(--grey-border);
}

.reassurance-item {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.reassurance-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reassurance-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.reassurance-item span {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 32px 24px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  .nav-inner {
    padding: 0 32px;
  }

  /* hero */
  .hero-content {
    padding: 80px 40px;
    max-width: 100%;
  }

  /* grids */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-full-grid {
    grid-template-columns: 1fr;
  }
  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 320px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-intro {
    grid-template-columns: 1fr;
  }
  .about-year-badge {
    right: 0;
    bottom: 0;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .nav-inner {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  section {
    padding: 72px 0;
  }
  .page-hero .container {
    padding: 0 24px;
  }
  .page-hero h1 {
    font-size: clamp(36px, 8vw, 52px);
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding: 60px 20px;
  }
  .hero-img-badge {
    bottom: 24px;
    right: 20px;
    padding: 16px 20px;
  }
  .hero-img-badge strong {
    font-size: 32px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .stat-item:last-child {
    border-bottom: none;
  }

  .services-page-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .services-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 200px;
  }
  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-full-card {
    grid-template-columns: 1fr;
  }
  .service-full-img,
  .service-full-card .img-placeholder {
    width: 100%;
    min-height: 180px;
  }

  .service-full-img {
    width: 100%;
    height: 200px;
    min-height: unset;
  }

  .service-full-content {
    padding: 24px 20px;
  }

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

  .value-card {
    min-width: 0;
  }

  [style*="repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

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

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

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

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