/* ============================================
   SCONYERS CONCRETE — Industrial Design System
   ============================================ */

:root {
  --concrete-dark: #0D0D0D;
  --concrete-mid: #161616;
  --concrete-surface: #202020;
  --concrete-light: #2C2C2C;
  --accent: #CC1414;
  --accent-light: #E02020;
  --accent-glow: rgba(204, 20, 20, 0.15);
  --warm-white: #F4F4F4;
  --off-white: #DCDCDC;
  --gray: #888888;
  --gray-light: #AAAAAA;
  --light-bg: #F2F2F2;
  --light-surface: #E4E4E4;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.12);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Lora', Georgia, serif;
  --nav-h: 112px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #0E0E0E;
}

body {
  background: #0E0E0E;
  overscroll-behavior-y: none;
}

body {
  font-family: var(--font-body);
  background: var(--concrete-dark);
  color: var(--warm-white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: 0.02em; }
p { line-height: 1.7; }

em { font-style: italic; }

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

address { font-style: normal; }

/* ── UTILITIES ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header p {
  color: var(--gray-light);
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,97,26,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--warm-white);
  background: rgba(255,255,255,0.05);
}

.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
/* Top announcement bar */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  background: var(--accent);
  height: 36px;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: white;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.top-bar-right {
  color: white;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.top-bar-right:hover { opacity: 1; }

.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  z-index: 9999;
  height: var(--nav-h);
  background: #0E0E0E;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo:hover { transform: scale(1.04); }
.logo:hover .logo-img { filter: drop-shadow(0 3px 8px rgba(204,20,20,0.3)); }
.logo-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--warm-white);
}
.logo-text em { font-style: italic; color: var(--gray-light); font-weight: 400; text-transform: none; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--warm-white); }
.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(36px + var(--nav-h) + 4rem) 2rem 6rem 20rem;
  overflow: hidden;
  background: var(--concrete-dark);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
/* Dark overlay over hero image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,23,20,0.92) 0%,
    rgba(26,23,20,0.75) 50%,
    rgba(26,23,20,0.45) 100%
  );
  z-index: 1;
}

/* Concrete texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,97,26,0.06) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 3px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.008) 40px,
      rgba(255,255,255,0.008) 41px
    );
  pointer-events: none;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(212,97,26,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(212,97,26,0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  margin: 0;
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero-title {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.92;
  margin-bottom: 2rem;
  color: var(--warm-white);
}

.hero-title .line-1, .hero-title .line-2 {
  display: block;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.hero-title .line-1 { animation-delay: 0.3s; }
.hero-title .line-2 { animation-delay: 0.4s; }
.hero-title .line-3 {
  display: block;
  color: var(--accent);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--off-white); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.7s forwards;
}

.hero-badge {
  position: absolute;
  right: 2rem;
  bottom: 6rem;
  text-align: center;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.9s forwards;
}
.badge-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  color: var(--warm-white);
}
.badge-number sup { font-size: 2rem; vertical-align: super; }
.badge-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-top: 0.25rem;
}

/* ── TRUST BAR ── */
.trust-bar-label {
  background: var(--accent);
  text-align: center;
  padding: 0.5rem 2rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.trust-bar {
  background: var(--accent);
  padding: 0.5rem 0 0.85rem;
  overflow: hidden;
  position: relative;
}

/* Fade gradient masks on sides */
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--accent) 72%, transparent 100%);
}
.trust-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--accent) 72%, transparent 100%);
}
.trust-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: trustScroll 28s linear infinite;
}
/* carousel keeps scrolling on hover */
.trust-segment {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.25rem;
  white-space: nowrap;
}
.trust-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-segment span:not(.trust-label):not(.dot) {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}
.trust-segment .dot {
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
}

@keyframes trustScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services {
  padding: 7rem 2rem;
  background: var(--concrete-dark);
}

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

.service-card {
  background: var(--concrete-mid);
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover { background: var(--concrete-surface); }
.service-card:hover::after { transform: scaleX(1); }

.service-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img img { transform: scale(1.04); }

.service-body {
  padding: 1.75rem 1.75rem;
  flex: 1;
}

.service-card h3 {
  color: var(--warm-white);
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}
.service-card p { color: var(--gray-light); font-size: 0.92rem; }

.services-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.services-cta p {
  color: var(--gray-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.services-cta strong { color: var(--warm-white); }

/* ── ABOUT ── */
.about {
  padding: 7rem 2rem;
  background: var(--light-bg);
  color: var(--concrete-dark);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.about .section-tag { color: var(--accent); border-color: var(--accent); }
.about h2 { color: var(--concrete-dark); margin-bottom: 1.5rem; }
.about .lead {
  font-size: 1.15rem;
  color: #3D3830;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.about p { color: #5A534A; margin-bottom: 1.25rem; }

blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  background: var(--light-surface);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--concrete-dark);
}
blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.75rem;
}

.about-img {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.about-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}
.stat-card {
  background: white;
  border: 1px solid var(--light-surface);
  border-radius: 4px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.stat-card.highlight {
  background: var(--accent);
  border-color: var(--accent);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.stat-num sup { font-size: 1.2rem; }
.stat-card.highlight .stat-num { color: white; }
.stat-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1.3;
}
.stat-card.highlight .stat-label { color: rgba(255,255,255,0.8); }

/* ── WHY US ── */
.why-us {
  padding: 7rem 2rem;
  background: var(--concrete-surface);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 0;
  position: relative;
}
.pillars::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pillar { padding-top: 2rem; text-align: center; }
.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  color: rgba(212,97,26,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.pillar:hover .pillar-num { color: rgba(212,97,26,0.5); }
.pillar h3 { color: var(--warm-white); margin-bottom: 0.75rem; }
.pillar p { color: var(--gray-light); font-size: 0.95rem; max-width: 280px; margin: 0 auto; }

/* ── CONTACT ── */
.contact {
  padding: 7rem 2rem;
  background: var(--concrete-dark);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact h2 { margin-bottom: 1rem; }
.contact > .contact-inner > .contact-info > p { color: var(--gray-light); margin-bottom: 2rem; }

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.contact-list svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.contact-list a, .contact-list address {
  color: var(--gray-light);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.contact-list a:hover { color: var(--warm-white); }

.contact-form {
  background: var(--concrete-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--concrete-surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group select option { background: var(--concrete-surface); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group:last-child { margin-bottom: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--concrete-mid);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  color: var(--gray);
  font-size: 0.88rem;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a, .footer-contact a {
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-contact p { color: var(--gray-light); font-size: 0.9rem; margin-bottom: 0.5rem; }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  text-align: center;
}
.footer-bottom p {
  color: var(--gray);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
/* ── TABLET ── */
@media (max-width: 1100px) {
  .hero { padding: calc(var(--nav-h) + 3rem) 3rem 5rem 3rem; }
  .hero-inner { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-badge { position: static; margin-top: 3rem; display: flex; gap: 1rem; align-items: center; }
  .badge-number { font-size: 3rem; }
  .nav-links { position: static; transform: none; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  :root { --nav-h: 88px; }

  /* Nav */
  /* Mobile dropdown — animate down/up */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #0E0E0E;
    padding: 0 1.5rem;
    border-bottom: 2px solid var(--accent);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
  }
  .nav-links.open {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 1rem 1.5rem 2rem;
  }
  .nav-links li a {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff !important;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.05em;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links li a:hover { color: var(--accent) !important; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; width: 44px; height: 44px; }
  .nav-toggle span { width: 30px; height: 3px; }
  .logo-img { width: 72px; height: 72px; }
  .logo-text { font-size: 0.9rem; }

  /* Top bar */
  .top-bar { height: 32px; }
  .nav { top: 32px; }
  .top-bar-inner { padding: 0 1rem; }
  .top-bar-left, .top-bar-right { font-size: 0.65rem; letter-spacing: 0.05em; }

  /* Hero */
  .hero { padding: calc(32px + var(--nav-h) + 2rem) 1.5rem 4rem 1.5rem; text-align: center; }
  .hero-inner { max-width: 100%; }
  .hero-title { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: min(100%, 340px); justify-content: center; padding: 1rem 2rem; font-size: 1rem; }
  .hero-actions .btn-primary {
    background: var(--accent);
    border: none;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 1.1rem 2rem;
    box-shadow: 0 4px 20px rgba(204,20,20,0.4);
  }
  .hero-actions .btn-primary:hover { background: var(--accent-light); }
  .hero-badge { display: none; }
  .section-tag { margin-left: auto; margin-right: auto; }

  /* Trust bar — narrower gradient so it doesn't eat the middle */
  .trust-bar-label { font-size: 0.65rem; }
  .trust-bar::before,
  .trust-bar::after { width: 40px; }
  .trust-bar::before { background: linear-gradient(to right, var(--accent) 0%, transparent 100%); }
  .trust-bar::after { background: linear-gradient(to left, var(--accent) 0%, transparent 100%); }

  /* Services */
  .services { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }

  /* About */
  .about { padding: 4rem 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-img img { height: 200px; }

  /* Why Us */
  .why-us { padding: 4rem 1.5rem; }
  .pillars { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Contact */
  .contact { padding: 4rem 1.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.5rem; }

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

  /* Footer */
  .footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: unset; }
  .logo-text { display: none; }

  /* Section spacing */
  .section-inner { padding: 0 1.5rem; }
  h2 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
}

/* ── FAQ ACCORDION STYLE ── */
.faq-section {
  padding: 7rem 2rem;
  background: var(--concrete-mid);
  border-top: 1px solid var(--border);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--concrete-surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.faq-item summary {
  padding: 1.25rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  outline: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  font-weight: 400;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--warm-white);
}
.faq-content {
  padding: 0 1.75rem 1.75rem;
  color: var(--gray-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-content p {
  margin-bottom: 0.75rem;
}
.faq-content p:last-child {
  margin-bottom: 0;
}

/* ── COMPARISON TABLE STYLE ── */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 2.5rem auto;
  max-width: 900px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--concrete-mid);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.comparison-table th,
.comparison-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--concrete-surface);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table td {
  font-size: 0.95rem;
  color: var(--gray-light);
}
.comparison-table td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: rgba(255, 255, 255, 0.02);
}

/* ── LOCAL PROOF / REFERENCE SECTIONS ── */
.local-proof {
  padding: 7rem 2rem;
  background: var(--concrete-surface);
  border-top: 1px solid var(--border);
}
.local-proof-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.local-proof h2 {
  margin-bottom: 1.5rem;
}
.local-proof p {
  font-size: 1.1rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ── COMPLIANCE HIGHLIGHT BLOCK ── */
.compliance-block {
  background: var(--concrete-mid);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  padding: 2rem;
  margin: 2.5rem auto;
  max-width: 800px;
  text-align: left;
}
.compliance-block h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.compliance-block ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75rem;
}
.compliance-block li {
  font-size: 0.92rem;
  color: var(--gray-light);
  position: relative;
  padding-left: 1.25rem;
}
.compliance-block li::before {
  content: "•";
  color: var(--accent);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

