@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;0,900;1,600&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --black: #040404;
  --ink: #0a0a0b;
  --panel: #101012;
  --panel2: #161618;
  --panel3: #1c1a16;
  --gold: #e2ad45;
  --gold2: #b77719;
  --gold3: #f7d785;
  --gold-deep: #8a5a12;
  --chrome: #c8ccd2;
  --chrome2: #8b9098;
  --white: #f6f2ea;
  --muted: #a39e94;
  --muted2: #6f6a62;
  --line: rgba(226, 173, 69, 0.22);
  --line-strong: rgba(226, 173, 69, 0.42);
  --glass: rgba(8, 8, 9, 0.72);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --container: 1240px;
  --nav-h: 88px;
  --display: 'Barlow Condensed', Impact, sans-serif;
  --body: 'Sora', system-ui, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* subtle film grain + warm vignette */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.28;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(226, 173, 69, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(183, 119, 25, 0.04), transparent 50%);
}

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

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

/* ─── Type ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.88rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold2), var(--gold3));
  flex-shrink: 0;
}

.display {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.88;
  margin: 0.4rem 0 1.2rem;
  font-size: clamp(3.1rem, 7vw, 7.2rem);
  text-wrap: balance;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
  text-wrap: balance;
}

.section-lede {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gold {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold3) 0%, var(--gold) 45%, var(--gold2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── Buttons ─── */
.btn {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  background:
    linear-gradient(180deg, #f0c15a 0%, var(--gold) 48%, #c48a1e 100%);
  color: #0a0703;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 10px 28px rgba(183, 119, 25, 0.28);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 16px 36px rgba(226, 173, 69, 0.38);
  background: linear-gradient(180deg, #f7d785 0%, #e8b84a 48%, #d49a28 100%);
}

.btn:active { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
  clip-path: none;
  border-radius: 0;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-dark:hover {
  background: #1a1a1a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

/* ─── Navigation ─── */
.site-nav {
  height: var(--nav-h);
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease), height 0.3s var(--ease);
}

.site-nav.scrolled,
.inner-page .site-nav {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo: full crest — polished treatment */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-right: auto;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.brand-logo {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 72px;
  width: auto;
  max-width: min(220px, 30vw);
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 18px rgba(226, 173, 69, 0.12));
  transition: filter 0.35s var(--ease), transform 0.35s var(--ease);
}

.brand:hover .brand-logo img {
  filter:
    drop-shadow(0 6px 18px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 28px rgba(226, 173, 69, 0.22));
  transform: scale(1.04);
}

.brand-divider {
  flex-shrink: 0;
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(226, 173, 69, 0.3), transparent);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.brand-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}

.brand-tagline {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand:hover .brand-name {
  color: var(--gold3);
}

/* Scroll / inner-page: slightly smaller */
.site-nav.scrolled .brand-logo img,
.inner-page .site-nav .brand-logo img {
  height: 62px;
}

.site-nav.scrolled .brand-divider,
.inner-page .site-nav .brand-divider {
  height: 38px;
}

.site-nav.scrolled .brand-name,
.inner-page .site-nav .brand-name {
  font-size: 1.3rem;
}

.site-nav.scrolled .brand-tagline,
.inner-page .site-nav .brand-tagline {
  font-size: 0.58rem;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #cfc9bf;
  font-size: 1.02rem;
  padding: 10px 14px;
  transition: color 0.2s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold2), var(--gold3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold3);
}

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

.nav-phone {
  font-family: var(--display);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-phone:hover { color: var(--gold); }

.nav-inner > .btn {
  flex-shrink: 0;
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.95rem;
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: white;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.menu-btn:hover {
  border-color: var(--line-strong);
  background: rgba(226, 173, 69, 0.08);
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
  content: '';
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.25s var(--ease);
}

.menu-btn span { top: 50%; margin-top: -1px; }
.menu-btn::before { top: 15px; }
.menu-btn::after { bottom: 15px; }

.menu-btn.open span { opacity: 0; }
.menu-btn.open::before {
  top: 50%;
  margin-top: -1px;
  transform: translateX(-50%) rotate(45deg);
}
.menu-btn.open::after {
  bottom: 50%;
  margin-bottom: -1px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(226, 173, 69, 0.08), transparent 40%),
    #060606;
  z-index: 150;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mobile-brand .brand-logo img {
  height: 64px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter:
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 18px rgba(226, 173, 69, 0.12));
}

.mobile-brand .brand-divider {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, rgba(226, 173, 69, 0.3), transparent);
}

.mobile-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.mobile-brand .brand-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}

.mobile-brand .brand-tagline {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-close {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  padding-top: 6vh;
}

.mobile-links a {
  padding: 16px 0;
  border-bottom: 1px solid rgba(226, 173, 69, 0.12);
  text-decoration: none;
  font: 800 2.2rem / 1 var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-menu .btn {
  margin-top: auto;
  width: 100%;
}

/* ─── Hero ─── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #030303;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/generated/hero-road.webp') center 48% / cover no-repeat;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.18) 68%, rgba(0, 0, 0, 0.05) 100%),
    linear-gradient(0deg, #050505 0%, transparent 48%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 28%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(transparent, var(--black));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  max-width: 780px;
}

.hero .display {
  font-size: clamp(4rem, 8.5vw, 8.8rem);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

.hero-copy {
  max-width: 560px;
  color: #d4cfc5;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(20, 18, 14, 0.95), rgba(8, 8, 8, 0.92));
  backdrop-filter: blur(12px);
}

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

.trust-item {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.25s var(--ease);
}

.trust-item:first-child { border-left: 1px solid var(--line); }

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.trust-item:hover {
  background: rgba(226, 173, 69, 0.04);
}

.trust-item:hover::before { opacity: 1; }

.trust-item strong {
  display: block;
  font: 800 1.35rem / 1.1 var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Sections ─── */
section { padding: 120px 0; }

.section-dark {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(226, 173, 69, 0.04), transparent 45%),
    var(--ink);
}

.section-head {
  max-width: 720px;
  margin-bottom: 8px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  margin-top: 52px;
  background: var(--line);
  gap: 1px;
}

.service-card {
  padding: 36px 28px 88px;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
  background: var(--black);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold3), var(--gold2));
  transform: scaleY(0);
  transition: transform 0.35s var(--ease);
  transform-origin: bottom;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(226, 173, 69, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}

.service-card:hover {
  background: linear-gradient(165deg, #1a1712 0%, #0e0d0b 100%);
}

.service-card:hover::before { transform: scaleY(1); }
.service-card:hover::after { opacity: 1; }

.service-no {
  font: 700 0.78rem / 1 var(--display);
  color: var(--gold);
  letter-spacing: 0.18em;
}

.service-card h3 {
  font: 800 1.75rem / 1 var(--display);
  text-transform: uppercase;
  margin: 56px 0 14px;
  letter-spacing: 0.01em;
}

.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-link {
  position: absolute;
  bottom: 30px;
  left: 28px;
  text-decoration: none;
  color: var(--gold);
  font: 700 0.9rem / 1 var(--display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: letter-spacing 0.25s, color 0.25s;
}

.service-card:hover .service-link {
  color: var(--gold3);
  letter-spacing: 0.14em;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 680px;
  padding: 0;
}

.split-visual {
  position: relative;
  background: url('../images/generated/equipment-haul.webp') center / cover no-repeat;
  min-height: 420px;
}

.split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 45%, rgba(5, 5, 5, 0.55) 78%, var(--black) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.25), transparent 40%);
}

.split-visual::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(226, 173, 69, 0.18);
  pointer-events: none;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(32px, 6vw, 100px);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(226, 173, 69, 0.06), transparent 50%),
    var(--black);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 36px;
}

.check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #d5d1ca;
  font-size: 0.98rem;
}

.check b {
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1.4;
  flex-shrink: 0;
}

/* Work showcase */
.work-showcase {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(226, 173, 69, 0.05), transparent 40%),
    #080808;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1px;
  margin-top: 50px;
  background: var(--line);
  border: 1px solid var(--line);
}

.work-photo {
  margin: 0;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #111;
}

.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.work-photo:hover img { transform: scale(1.04); }

.work-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 80px 28px 26px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.work-photo strong {
  font: 800 1.55rem / 1 var(--display);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
}

.work-photo span {
  max-width: 230px;
  text-align: right;
  color: #c9c4b9;
  font-size: 0.82rem;
}

/* Process */
.process {
  counter-reset: p;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}

.process article {
  background: var(--black);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.process article:hover {
  background: linear-gradient(165deg, #161410, #0a0a0a);
}

.process article::before {
  counter-increment: p;
  content: '0' counter(p);
  display: block;
  font: 900 5rem / 0.85 var(--display);
  color: transparent;
  background: linear-gradient(180deg, rgba(226, 173, 69, 0.22), rgba(226, 173, 69, 0.04));
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

.process h3 {
  font: 800 1.7rem / 1 var(--display);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.process p { color: var(--muted); margin: 0; }

/* Industries */
.industries {
  display: flex;
  flex-wrap: wrap;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry {
  flex: 1 1 230px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font: 700 1.2rem / 1 var(--display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  transition: color 0.25s, background 0.25s;
  cursor: default;
}

.industry::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(226, 173, 69, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.industry:hover {
  color: var(--gold3);
  background: rgba(226, 173, 69, 0.04);
}

.industry:hover::before { opacity: 1; }

/* FAQ */
.faq {
  max-width: 900px;
  margin: 44px auto 0;
  border-top: 1px solid var(--line);
}

.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  padding: 26px 0;
  background: none;
  border: 0;
  color: white;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font: 700 1.28rem / 1.15 var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--gold3); }

.faq-q::after {
  content: '+';
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-q::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq-a > div {
  overflow: hidden;
  color: var(--muted);
}

.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-a p {
  padding: 0 0 26px;
  margin: 0;
  max-width: 720px;
  line-height: 1.7;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, #9a6414 0%, #d4a03a 40%, #efbf58 70%, #c48a1e 100%);
  color: #090704;
  padding: 88px 0;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h30v30H0V0zm30 30h30v30H30V30z' fill='%23000' fill-opacity='.12' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  animation: ctaSheen 6s ease-in-out infinite;
}

@keyframes ctaSheen {
  0%, 40% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(100%); }
}

.cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-row h2 {
  font: 900 clamp(2.7rem, 5vw, 5rem) / 0.9 var(--display);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.02em;
}

.cta-row p {
  font-weight: 600;
  max-width: 520px;
  opacity: 0.85;
}

/* ─── Inner pages ─── */
.page-hero {
  padding: calc(var(--nav-h) + 90px) 0 100px;
  background:
    radial-gradient(circle at 85% 10%, rgba(226, 173, 69, 0.14), transparent 32%),
    radial-gradient(circle at 10% 80%, rgba(183, 119, 25, 0.06), transparent 30%),
    #080808;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.page-hero .display {
  font-size: clamp(3.8rem, 8vw, 7rem);
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold3); }

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.detail-card {
  border: 1px solid var(--line);
  padding: 40px 36px;
  background:
    linear-gradient(155deg, rgba(26, 22, 16, 0.9) 0%, #0b0b0b 55%);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold2), transparent);
  opacity: 0.7;
}

.detail-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.detail-card h3 {
  font: 800 2rem / 1 var(--display);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.detail-card p { color: var(--muted); }

.detail-card .check-list { margin-bottom: 0; }

/* Quote */
.quote-shell {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 650px;
  border: 1px solid var(--line);
  margin-top: 40px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.quote-progress {
  padding: 40px 32px;
  background:
    linear-gradient(180deg, #16140f, #100f0c);
  border-right: 1px solid var(--line);
}

.progress-step {
  padding: 16px 0;
  color: #777;
  border-bottom: 1px solid #29261f;
  font: 700 1rem / 1.2 var(--display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  padding-left: 18px;
  transition: color 0.25s;
}

.progress-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #444;
  transform: translateY(-50%);
}

.progress-step.active {
  color: var(--gold);
}

.progress-step.active::before {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(226, 173, 69, 0.6);
}

.progress-step.done { color: #d5d1ca; }
.progress-step.done::before { background: var(--gold2); }

.quote-panel {
  padding: clamp(28px, 5vw, 70px);
}

.quote-step h2 {
  font: 800 clamp(2.2rem, 4vw, 3.5rem) / 1 var(--display);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 32px 0;
}

.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }

label {
  font: 700 0.88rem / 1 var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cfc9bf;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  background: #111110;
  border: 1px solid #38342d;
  color: white;
  padding: 12px 14px;
  border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #4a453c;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(226, 173, 69, 0.15);
}

input[aria-invalid='true'],
select[aria-invalid='true'] {
  border-color: #ef6b60;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.quote-success {
  padding: 32px;
  border: 1px solid var(--gold);
  background:
    linear-gradient(145deg, rgba(226, 173, 69, 0.1), rgba(226, 173, 69, 0.03));
}

.quote-success strong {
  font: 800 1.6rem / 1 var(--display);
  color: var(--gold);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.contact-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 32px;
}

.contact-row {
  background: #0d0d0d;
  padding: 24px;
  transition: background 0.25s;
}

.contact-row:hover { background: #121210; }

.contact-row small {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin-bottom: 6px;
}

.contact-row a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

.notice {
  border: 1px solid var(--line);
  padding: 20px;
  color: var(--muted);
  font-size: 0.88rem;
  background: rgba(226, 173, 69, 0.05);
  margin-top: 20px;
}

/* ─── Footer ─── */
footer {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(226, 173, 69, 0.05), transparent 40%),
    #030303;
  border-top: 1px solid var(--line);
  padding: 80px 0 28px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.45;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand img {
  width: auto;
  height: auto;
  max-width: 260px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--muted);
  max-width: 340px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col h3 {
  font: 800 1.05rem / 1 var(--display);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
}

.footer-col a,
.footer-col span {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin: 10px 0;
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
}

.footer-col a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid #1c1c1c;
  margin-top: 52px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: #6f6c66;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* ─── Motion ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.top-gap { margin-top: 32px; }

/* Selection */
::selection {
  background: rgba(226, 173, 69, 0.35);
  color: #fff;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .nav-links { gap: 2px; }
  .nav-links a { padding: 10px 10px; font-size: 0.95rem; }
  .nav-inner { gap: 16px; }

  .brand-logo img { height: 62px; max-width: 180px; }
  .brand-name { font-size: 1.15rem; }
  .brand-tagline { font-size: 0.55rem; }
}

@media (max-width: 1000px) {
  .nav-links,
  .nav-phone,
  .nav-inner > .btn { display: none; }

  .menu-btn { display: flex; }
  .mobile-menu { display: flex; flex-direction: column; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card { border: 0; }

  .split { grid-template-columns: 1fr; }
  .split-visual { min-height: 480px; }
  .split-visual::before {
    background:
      linear-gradient(0deg, var(--black) 0%, transparent 55%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 30%);
  }
  .split-visual::after { inset: 16px; }

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

  .quote-shell { grid-template-columns: 1fr; }
  .quote-progress {
    display: flex;
    gap: 8px;
    padding: 18px;
    overflow: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .progress-step {
    white-space: nowrap;
    border: 0;
    padding: 10px 14px 10px 22px;
  }

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

@media (max-width: 800px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-photo { min-height: 300px; }
  .work-photo figcaption {
    padding: 60px 18px 18px;
    display: block;
  }
  .work-photo span {
    display: block;
    text-align: left;
    margin-top: 4px;
    max-width: none;
  }
  .hero-bg { background-position: 63% center; }
}

@media (max-width: 700px) {
  :root { --nav-h: 76px; }

  .container { width: min(100% - 28px, var(--container)); }

  .site-nav { height: var(--nav-h); }

  .brand {
    padding: 4px 10px 4px 4px;
    gap: 10px;
    border-radius: 8px;
  }

  .brand { gap: 10px; }

  .brand-logo img {
    height: 56px;
    max-width: 160px;
  }

  .brand-divider { height: 36px; }
  .brand-name { font-size: 1.2rem; }
  .brand-tagline { font-size: 0.5rem; }

  .site-nav.scrolled .brand-logo img,
  .inner-page .site-nav .brand-logo img {
    height: 50px;
  }

  .site-nav.scrolled .brand-divider,
  .inner-page .site-nav .brand-divider {
    height: 32px;
  }

  .site-nav.scrolled .brand-name,
  .inner-page .site-nav .brand-name {
    font-size: 1.05rem;
  }

  .hero { min-height: auto; }
  .hero-bg {
    animation: none;
    transform: none;
    background-position: 61% top;
  }
  .hero-bg::before {
    background:
      linear-gradient(0deg, #050505 8%, rgba(0, 0, 0, 0.75) 55%, rgba(0, 0, 0, 0.35) 100%);
  }
  .hero-content { padding: 340px 0 48px; }
  .hero .display { font-size: 3.6rem; }
  .hero-copy { font-size: 0.98rem; }
  .hero-actions .btn { width: 100%; }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 18px 14px; }
  .trust-item:nth-child(odd) { border-left: 1px solid var(--line); }
  .trust-item strong { font-size: 1.15rem; }

  section { padding: 80px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card {
    min-height: 260px;
    padding-bottom: 80px;
  }
  .service-card h3 { margin-top: 36px; }

  .split-visual { min-height: 320px; }
  .split-content { padding: 56px 20px; }

  .process article { padding: 32px 24px; }
  .process article::before { font-size: 3.8rem; }

  .cta-band { padding: 64px 0; }
  .cta-row { display: block; }
  .cta-row .btn {
    margin-top: 22px;
    width: 100%;
  }

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

  .field.full { grid-column: auto; }
  .quote-panel { padding: 28px 18px; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand img { max-width: 220px; }
  .footer-bottom {
    display: block;
    line-height: 1.8;
  }

  .display { font-size: 3.2rem; }
  .page-hero { padding: calc(var(--nav-h) + 50px) 0 70px; }

  .faq-q { font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-bg { animation: none; transform: none; }
  .cta-band::after { animation: none; display: none; }
}

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--gold);
  color: #0a0703;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* ─── Print Styles ─── */
@media print {
  body::before,
  body::after { display: none; }
  .site-nav,
  .mobile-menu,
  .menu-btn,
  .cta-band,
  .trust-strip { display: none; }
  .hero {
    min-height: auto;
    padding: 40px 0;
    background: none;
  }
  .hero-bg { display: none; }
  .hero .display { font-size: 2.5rem; color: #000; }
  .hero .gold { color: #8a5a12; -webkit-text-fill-color: #8a5a12; }
  body {
    background: #fff;
    color: #1a1a1a;
  }
  .section-dark { background: #f5f5f5; }
  .display, .section-title { color: #000; }
  .gold { color: #8a5a12; -webkit-text-fill-color: #8a5a12; }
  a { color: #1a1a1a; }
  .btn {
    background: #1a1a1a;
    color: #fff;
    clip-path: none;
    box-shadow: none;
  }
  .btn-outline {
    background: transparent;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
  }
  .btn-dark {
    background: #1a1a1a;
    color: #fff;
  }
  .reveal { opacity: 1; transform: none; }
  .faq-a { grid-template-rows: 1fr !important; }
  .faq-item.open .faq-a,
  .faq-item .faq-a { display: block; }
  .faq-q::after { display: none; }
  footer { border-top: 2px solid #ccc; padding: 20px 0; }
  .footer-grid { gap: 20px; }
  .footer-bottom { color: #666; }
}
