:root {
  --black: #050505;
  --charcoal: #111111;
  --gray: #2a2a2a;
  --mid-gray: #555555;
  --light-gray: #d1d1d1;
  --white: #ffffff;
  --accent: #C9A84C;
  --accent-hover: #B8943A;

  --max-width: 1240px;
  --radius: 4px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--charcoal);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background-color: var(--white);
  color: var(--charcoal);
}

/* ── Eyebrow ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 22px;
  color: var(--light-gray);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  margin-right: 10px;
  flex-shrink: 0;
}

.section-light .eyebrow {
  color: var(--mid-gray);
}

/* ── Typography ──────────────────────────────────────── */
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.015em;
}

h1 {
  max-width: 1000px;
  margin-bottom: 30px;
  font-size: clamp(4.1rem, 10.5vw, 10.6rem);
  text-transform: uppercase;
}

h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(3rem, 6.4vw, 7rem);
  text-transform: uppercase;
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}

/* ── Buttons ─────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease, box-shadow 180ms ease;
  max-width: 100%;
}

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

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.button-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.38);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(5, 5, 5, 0.2);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

/* ── Header ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 12px clamp(20px, 4vw, 52px);
  color: var(--white);
  transition: background 200ms ease, min-height 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  min-height: 86px;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 6px 24px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 22;
}

.brand-logo {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.36);
  transition: width 200ms ease, height 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: 78px;
  height: 78px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}

.brand-logo img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

/* ── Nav ─────────────────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  padding-bottom: 4px;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav a:hover {
  color: var(--white);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 3px;
  border: 1px solid var(--accent) !important;
  background: transparent;
  color: var(--accent) !important;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--black) !important;
  transform: none;
}

/* ── Nav Dropdown ────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 22px;
}

.dropdown-caret {
  font-size: 0.6em;
  margin-left: 3px;
  display: inline-block;
  transition: transform 220ms ease;
  opacity: 0.7;
}

.nav-dropdown:hover .dropdown-caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  padding: 6px 0;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 50;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: rgba(8, 8, 8, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 22px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  transition: color 150ms ease, background 150ms ease, padding-left 180ms ease;
}

.dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 28px;
}

.dropdown-menu a::after {
  display: none !important;
}

/* ── Nav Toggle ──────────────────────────────────────── */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 22;
  width: 48px;
  height: 48px;
  border-radius: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 160px 0 48px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/images/hero-fabrication.png") center right / cover no-repeat;
  filter: grayscale(0.75) contrast(1.12) brightness(0.72);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 36%, rgba(17, 17, 17, 0.46) 72%, rgba(17, 17, 17, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.3) 54%, rgba(5, 5, 5, 0.78) 100%);
}

.hero::after,
.services::before,
.about::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(34px, 6vw, 76px);
  align-items: end;
  margin-bottom: clamp(42px, 8vw, 96px);
}

.hero-main {
  max-width: 1000px;
  min-width: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.03rem, 1.55vw, 1.24rem);
  line-height: 1.65;
}

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

.hero-capabilities {
  align-self: end;
  display: grid;
  min-width: 0;
  align-content: end;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 17, 17, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-capabilities span,
.hero-location span {
  color: var(--light-gray);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-capabilities ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-capabilities li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-capabilities li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.hero-line {
  display: none;
}

.hero-location {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-width: 240px;
  min-height: 88px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
}

.hero-location strong {
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* ── Ticker ──────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  background: var(--charcoal);
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-right: 36px;
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.ticker-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Hero Entrance Animations ────────────────────────── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(38px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroMediaReveal {
  from { transform: scale(1.08); }
  to   { transform: scale(1.02); }
}

.hero-media {
  animation: heroMediaReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero .eyebrow {
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero h1 {
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.hero .hero-copy {
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both;
}

.hero .hero-actions {
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.58s both;
}

.hero-capabilities {
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both;
}

.hero-location {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* ── Sections (shared) ───────────────────────────────── */
.intro,
.gallery,
.contact {
  padding: clamp(86px, 12vw, 160px) 0;
}

.intro-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.74fr);
  gap: clamp(42px, 9vw, 118px);
  align-items: start;
}

.intro-grid {
  align-items: center;
}

.intro p:last-child,
.section-heading.split p,
.about-copy p,
.contact-copy {
  color: var(--gray);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.services,
.about {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 13vw, 178px) 0;
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

/* ── Stats ───────────────────────────────────────────── */
.stats {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid rgba(42, 42, 42, 0.1);
  border-bottom: 1px solid rgba(42, 42, 42, 0.1);
}

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

.stat {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(42, 42, 42, 0.1);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ── Services ────────────────────────────────────────── */
.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  display: block;
  min-height: 325px;
  padding: clamp(28px, 3.4vw, 44px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.026));
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.service-card::before {
  display: none;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.044));
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-link::after {
  content: "";
  width: 28px;
  height: 2px;
  margin-left: 10px;
  background: var(--accent);
  transition: width 220ms ease;
}

.service-card:hover .service-link::after {
  width: 42px;
}

.service-number {
  display: inline-block;
  margin-bottom: 72px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
}

/* ── Gallery ─────────────────────────────────────────── */
.gallery-slider {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.gallery-slide {
  position: relative;
  flex: 0 0 100%;
  height: min(720px, 68vh);
  min-height: 360px;
  margin: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.gallery-arrow-prev {
  left: 20px;
}

.gallery-arrow-next {
  right: 20px;
}

.gallery-arrow:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.gallery-dot {
  width: 30px;
  height: 4px;
  border: 0;
  border-radius: 0;
  background: rgba(42, 42, 42, 0.18);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.gallery-dot.is-active {
  background: var(--accent);
  transform: scaleY(1.5);
}

/* ── Process ─────────────────────────────────────────── */
.process {
  padding: clamp(86px, 12vw, 150px) 0;
  background: var(--charcoal);
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: clamp(34px, 6vw, 72px);
}

.process-step {
  padding: clamp(28px, 3.5vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 220ms ease;
}

.process-step:last-child {
  border-right: none;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.03);
}

.process-num {
  display: block;
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
}

.process-step h3 {
  font-size: clamp(1.4rem, 1.9vw, 2rem);
  margin-bottom: 14px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.68;
  margin-bottom: 0;
}

/* ── About ───────────────────────────────────────────── */
.about-copy {
  position: relative;
  z-index: 1;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.about-points span {
  min-height: 48px;
  padding: 15px 20px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 17, 17, 0.68);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease;
}

.about-points span:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.08);
}

/* ── Contact ─────────────────────────────────────────── */
.business-info {
  margin-top: 34px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(42, 42, 42, 0.12);
  background: var(--white);
}

.business-info p {
  margin-bottom: 8px;
}

.business-info a {
  color: var(--black);
  font-weight: 700;
}

.business-info a:hover {
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(42, 42, 42, 0.12);
  border-radius: 4px;
  background: var(--white);
}

label {
  display: grid;
  gap: 8px;
  color: var(--gray);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(42, 42, 42, 0.18);
  border-radius: 3px;
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
  min-height: 50px;
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input[type="file"] {
  padding: 11px 14px;
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 10px 14px;
  border: 1px solid var(--black);
  border-radius: 3px;
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

input[type="file"]::file-selector-button:hover {
  background: var(--gray);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.contact-form .button {
  width: fit-content;
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.contact-form .button:hover {
  background: var(--gray);
  border-color: var(--gray);
  box-shadow: none;
}

/* ── Contact Map ─────────────────────────────────────── */
.contact-map {
  margin-top: clamp(48px, 7vw, 72px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(300px, 38vw, 460px);
  border: 0;
  filter: grayscale(1) contrast(1.05);
  transition: filter 400ms ease;
}

.contact-map:hover iframe {
  filter: grayscale(0) contrast(1);
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq {
  padding: clamp(86px, 12vw, 150px) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  min-height: 245px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  transition: border-color 220ms ease, background 220ms ease;
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.05), rgba(255, 255, 255, 0.02));
}

.faq-item h3 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
}

.faq-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.72;
}

/* ── Service Pages ───────────────────────────────────── */
.service-page .site-header {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(12px);
}

.service-hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 170px 0 72px;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 44%, rgba(5, 5, 5, 0.5) 100%),
    url("assets/images/hero-fabrication.png") center right / cover no-repeat;
  filter: grayscale(0.85) contrast(1.12) brightness(0.68);
}

.service-hero .container {
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  max-width: 980px;
}

.service-hero-copy {
  max-width: 680px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.04rem, 1.55vw, 1.24rem);
  line-height: 1.68;
}

.service-detail {
  padding: clamp(86px, 12vw, 150px) 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: clamp(42px, 8vw, 104px);
  align-items: start;
}

.service-detail-copy p,
.service-local-copy {
  color: var(--gray);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.78;
}

.service-detail-copy p:last-child {
  margin-bottom: 0;
}

.service-panel {
  display: grid;
  gap: 28px;
  padding: clamp(26px, 3.4vw, 38px);
  border-radius: var(--radius);
  border: 1px solid rgba(42, 42, 42, 0.12);
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.service-panel h2,
.service-list-section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.service-panel ul,
.service-list-section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-panel li,
.service-list-section li {
  color: var(--gray);
  font-weight: 700;
}

.service-panel li::before,
.service-list-section li::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 12px;
  transform: translateY(-4px);
  background: var(--accent);
}

.service-lists {
  padding: clamp(86px, 12vw, 150px) 0;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-list-section {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.026));
}

.service-list-section li {
  color: rgba(255, 255, 255, 0.72);
}

.service-list-section li::before {
  background: var(--accent);
}

.service-cta {
  padding: clamp(86px, 12vw, 144px) 0;
}

.service-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.service-cta-box p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--gray);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.78;
}

.service-cta .button-primary {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.service-cta .button-primary:hover {
  background: var(--gray);
  border-color: var(--gray);
  box-shadow: none;
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  padding: 36px 0;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: clamp(16px, 2.5vw, 28px);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-email {
  color: rgba(255, 255, 255, 0.5);
  transition: color 180ms ease;
}

.footer-email:hover {
  color: var(--accent);
}

/* ── Thank You ───────────────────────────────────────── */
.thank-you-section {
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: 160px 0 80px;
}

.thank-you-content {
  max-width: 760px;
}

.thank-you-content p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.65;
}

/* ── Scroll Reveal ───────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ── Responsive: 900px ───────────────────────────────── */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 28px;
    background: rgba(5, 5, 5, 0.97);
    font-size: 1.1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-dropdown {
    display: contents;
  }

  .dropdown-caret {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: contents;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    min-width: 0;
    transform: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    padding: 4px 0;
  }

  .intro-grid,
  .about-grid,
  .contact-grid,
  .section-heading.split,
  .hero-content,
  .service-detail-grid,
  .service-cta-box {
    grid-template-columns: 1fr;
  }

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

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

  .service-list-grid {
    grid-template-columns: 1fr;
  }

  .hero-capabilities {
    max-width: 600px;
  }

  .hero-capabilities ul {
    grid-template-columns: repeat(4, max-content);
    gap: 13px 18px;
  }

  .gallery-slide {
    height: min(580px, 60vh);
    min-height: 320px;
  }

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

  .stat:nth-child(2) {
    border-right: none;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-top: 1px solid rgba(42, 42, 42, 0.1);
  }

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

  .process-step:nth-child(2) {
    border-right: none;
  }

  .process-step:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .process-step:nth-child(4) {
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

/* ── Responsive: 640px ───────────────────────────────── */
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 56px), var(--max-width));
  }

  .site-header {
    min-height: 84px;
    padding: 10px 20px;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
  }

  .site-header.is-scrolled {
    min-height: 72px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 58px;
    height: 58px;
  }

  .hero {
    min-height: 94vh;
    align-items: end;
    padding: 124px 0 32px;
  }

  .service-hero {
    min-height: 78svh;
    padding: 132px 0 52px;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.76)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.34) 58%);
  }

  .hero-content {
    gap: 32px;
    margin-bottom: 40px;
  }

  .hero-main,
  .hero-actions,
  .hero-capabilities {
    width: 100%;
    max-width: calc(100vw - 56px);
  }

  .hero-copy,
  .hero-actions {
    width: calc(100vw - 56px);
    max-width: 334px;
  }

  .hero-actions {
    display: grid;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.8rem);
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.7rem);
  }

  .hero-copy {
    margin-bottom: 28px;
  }

  .hero-capabilities ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-bottom {
    justify-content: stretch;
  }

  .hero-location {
    min-width: 0;
    text-align: center;
    border-radius: var(--radius);
  }

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

  .service-card {
    min-height: 235px;
  }

  .service-panel,
  .service-list-section {
    padding: 26px;
  }

  .faq-item {
    min-height: 0;
  }

  .service-number {
    margin-bottom: 48px;
  }

  .gallery-slide {
    height: 420px;
    min-height: 280px;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .gallery-arrow-prev {
    left: 12px;
  }

  .gallery-arrow-next {
    right: 12px;
  }

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

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

  .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .footer-grid {
    flex-direction: column;
    gap: 14px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}
