:root {
  --navy: #071e46;
  --navy-2: #106ca8;
  --brand-blue: #1773ad;
  --brand-purple: #6b1b78;
  --brand-red: #d33b42;
  --steel: #aeb8c3;
  --steel-dark: #202a34;
  --charcoal: #0b1017;
  --red: var(--brand-red);
  --spark: #f3a514;
  --amber: var(--spark);
  --cream: #f7f9fc;
  --white: #ffffff;
  --muted: #c7d0dc;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --header-h: 86px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(23, 115, 173, 0.1), transparent 30rem),
    linear-gradient(180deg, #ffffff, var(--cream));
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--brand-red);
  color: var(--white);
  border-radius: var(--radius);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, rgba(7, 30, 70, 0.92), rgba(7, 30, 70, 0.28));
  color: var(--white);
  transition: background 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: linear-gradient(90deg, rgba(7, 30, 70, 0.96), rgba(48, 28, 92, 0.94));
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.brand img {
  width: clamp(160px, 18vw, 260px);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.32));
}

.main-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.main-nav a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.92rem;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--white);
  background: linear-gradient(135deg, rgba(23, 115, 173, 0.34), rgba(211, 59, 66, 0.24));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  display: block;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) clamp(1.25rem, 6vw, 6rem) 6rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-content,
.hero-strip {
  position: relative;
  z-index: 4;
}

.weld-canvas,
.weld-hotspot {
  position: absolute;
  pointer-events: none;
}

.weld-canvas {
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
}

.weld-hotspot {
  right: clamp(1.4rem, 9vw, 10rem);
  bottom: clamp(9rem, 18vw, 15rem);
  z-index: 2;
  width: clamp(74px, 9vw, 128px);
  aspect-ratio: 1;
  transform: rotate(-18deg);
}

.weld-core,
.weld-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.weld-core {
  width: 28%;
  aspect-ratio: 1;
  background: var(--white);
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.96),
    0 0 34px rgba(243, 165, 20, 0.95),
    0 0 80px rgba(207, 41, 52, 0.65);
}

.weld-ring {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(243, 165, 20, 0.5);
}

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

.hero-media {
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  background:
    radial-gradient(circle at 72% 46%, rgba(243, 165, 20, 0.2), transparent 24rem),
    linear-gradient(90deg, rgba(6, 27, 62, 0.94) 0%, rgba(6, 27, 62, 0.72) 42%, rgba(6, 27, 62, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 7, 12, 0.5), rgba(4, 7, 12, 0.2));
}

.hero-sparks {
  background-image: url("../images/welding-sparks.png");
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.25;
}

.hero-lines {
  position: absolute;
  inset: auto clamp(1rem, 5vw, 5rem) 8rem auto;
  z-index: 3;
  width: min(46vw, 680px);
  opacity: 0.72;
  transform: perspective(900px) rotateY(-12deg) rotateX(6deg);
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(3.35rem, 8vw, 7.8rem);
  line-height: 0.9;
  max-width: 11ch;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
  font-size: 0.56em;
  line-height: 1.02;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.page-hero {
  position: relative;
  min-height: 54svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 5rem) clamp(1.25rem, 6vw, 6rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(7, 30, 70, 0.92), rgba(55, 27, 95, 0.88) 56%, rgba(211, 59, 66, 0.58)),
    url("../images/brushed-steel-texture.png");
  background-size: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple), var(--brand-red));
}

.page-hero > div {
  width: min(760px, 100%);
}

.page-hero h1 {
  max-width: 10ch;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions,
.builder-tabs,
.contact-list,
.quick-work {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple) 48%, var(--brand-red));
  box-shadow: 0 16px 40px rgba(207, 41, 52, 0.28);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-strip {
  position: absolute;
  inset: auto clamp(1rem, 4vw, 4rem) 1.5rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.hero-strip span,
.trust-points span {
  padding: 0.68rem 0.9rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.intro-band {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 6vw, 6rem);
  background: linear-gradient(90deg, var(--navy), #371b5f 52%, #7c1f49);
  color: var(--white);
}

.intro-band p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 2.2rem);
  font-weight: 900;
}

.intro-band strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.35;
}

.services,
.gallery,
.contact {
  padding: clamp(3.25rem, 6vw, 5.75rem) clamp(1.25rem, 6vw, 6rem);
}

main > section {
  scroll-margin-top: 7rem;
}

main > section:last-child {
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: clamp(1.1rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(1.5rem, 3.2vw, 2.8rem);
}

.section-heading .eyebrow {
  grid-column: 1;
  grid-row: 1;
  padding-top: 0.25rem;
}

.section-heading h2 {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.section-motion {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  min-height: 180px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 30, 70, 0.94), rgba(49, 25, 78, 0.88)),
    url("../images/brushed-steel-texture.png");
  background-size: cover;
  box-shadow: 0 22px 58px rgba(7, 30, 70, 0.14);
  isolation: isolate;
}

.section-motion img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.08);
  animation: imageDrift 9s ease-in-out infinite alternate;
}

.section-motion::before,
.section-motion::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-motion::before {
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(6, 27, 62, 0.72), rgba(6, 27, 62, 0.12)),
    linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.26) 48%, transparent 58% 100%);
  background-size: 100% 100%, 220% 100%;
  animation: steelSweep 4.8s ease-in-out infinite;
}

.section-motion::after {
  z-index: 2;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple), var(--brand-red));
}

.blueprint-motion {
  display: grid;
  place-items: center;
  min-height: 180px;
}

.blueprint-motion::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 72% 42%, rgba(243, 165, 20, 0.18), transparent 8rem);
  background-size: 32px 32px, 32px 32px, 100% 100%;
  animation: blueprintGrid 10s linear infinite;
}

.blueprint-motion span {
  position: absolute;
  z-index: 3;
  display: block;
  width: min(72%, 280px);
  height: 3px;
  border-radius: 999px;
  background: rgba(174, 184, 195, 0.9);
  box-shadow: 0 0 18px rgba(155, 215, 255, 0.42);
  transform-origin: left center;
  animation: blueprintDraw 3.6s ease-in-out infinite;
}

.blueprint-motion span:nth-child(1) {
  transform: translateY(-34px) rotate(-22deg) scaleX(0.6);
}

.blueprint-motion span:nth-child(2) {
  transform: translateY(0) scaleX(0.82);
  animation-delay: 320ms;
}

.blueprint-motion span:nth-child(3) {
  transform: translateY(34px) rotate(22deg) scaleX(0.6);
  animation-delay: 640ms;
}

.section-heading > p:last-child {
  grid-column: 1;
  grid-row: 2;
  max-width: 620px;
  margin: 0;
  color: #526174;
  line-height: 1.6;
}

.section-dark .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.section-dark .section-motion {
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.24);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.service-tile {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--steel-dark);
  box-shadow: var(--shadow);
}

.service-tile img,
.gallery-item img,
.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tile::after,
.gallery-item::after,
.contact-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 27, 62, 0.88), transparent 58%);
}

.service-tile > div {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 1;
  color: var(--white);
}

.service-tile span {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: #9bd7ff;
  font-weight: 900;
}

.service-tile p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.builder {
  position: relative;
  padding: clamp(3.25rem, 6vw, 5.75rem) clamp(1.25rem, 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.builder-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  z-index: -2;
}

.builder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(207, 41, 52, 0.22), transparent 25rem),
    linear-gradient(180deg, rgba(6, 27, 62, 0.92), rgba(4, 7, 12, 0.96));
  z-index: -1;
}

.builder-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(1.4rem, 5vw, 4.6rem);
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-strip article {
  min-height: 190px;
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 0.85rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.process-strip article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.5rem;
  width: 1rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 158, 34, 0.75), rgba(255, 255, 255, 0.18));
}

.process-strip span {
  width: fit-content;
  color: #9bd7ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.process-strip strong {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.18;
}

.process-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.product-morph {
  width: 100%;
  min-height: clamp(300px, 28vw, 390px);
  padding: 1rem;
  filter: drop-shadow(0 0 18px rgba(243, 165, 20, 0.28));
}

.morph-shape {
  opacity: 0;
  transition: opacity 420ms ease;
}

.morph-shape.active {
  opacity: 1;
}

.morph-shape path {
  fill: none;
  stroke: var(--steel);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.builder-copy {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.builder-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.builder-tabs button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.72rem 0.95rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 900;
}

.builder-tabs button.active {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  border-color: transparent;
  color: var(--white);
}

.gallery-track {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  grid-auto-rows: 300px;
  gap: 1rem;
}

.gallery-track-full {
  grid-auto-rows: 340px;
}

.about-hero {
  background:
    linear-gradient(135deg, rgba(7, 30, 70, 0.9), rgba(55, 27, 95, 0.86) 56%, rgba(211, 59, 66, 0.5)),
    url("../images/steel-transform-bg.png");
  background-size: cover;
  background-position: center;
}

.about-story {
  padding: clamp(3.25rem, 6vw, 5.75rem) clamp(1.25rem, 6vw, 6rem);
}

.leader-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
}

.leader-card + .leader-card {
  margin-top: clamp(3rem, 7vw, 7rem);
  padding-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid rgba(7, 30, 70, 0.1);
}

.leader-card-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
}

.leader-card-reverse .leader-photo {
  order: 2;
}

.leader-photo {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--steel-dark);
  box-shadow: var(--shadow);
}

.leader-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 30, 70, 0.72), transparent 44%);
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  color: var(--white);
}

.leader-photo figcaption span,
.value-grid span {
  color: #9bd7ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.leader-photo figcaption strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

/* Theme grade: cools and deepens a bright snapshot so it blends with the
   dark/navy sections, plus a vignette for cinematic depth. Non-destructive. */
.leader-photo--graded img {
  object-position: 50% 16%;
  filter: saturate(0.9) contrast(1.08) brightness(0.96);
}

.leader-photo--graded::after {
  background:
    radial-gradient(120% 95% at 50% 26%, transparent 50%, rgba(7, 16, 30, 0.52)),
    linear-gradient(0deg, rgba(7, 30, 70, 0.82), transparent 52%),
    linear-gradient(160deg, rgba(16, 108, 168, 0.18), transparent 42%);
}

.leader-copy h2 {
  max-width: 11ch;
}

.leader-copy p:not(.eyebrow) {
  max-width: 720px;
  color: #526174;
  font-size: 1.04rem;
  line-height: 1.75;
}

.leader-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.leader-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, rgba(23, 115, 173, 0.12), rgba(211, 59, 66, 0.08));
  border: 1px solid rgba(7, 30, 70, 0.1);
}

.about-values {
  padding: clamp(3.25rem, 6vw, 5.75rem) clamp(1.25rem, 6vw, 6rem);
  background:
    linear-gradient(135deg, rgba(7, 30, 70, 0.94), rgba(50, 25, 80, 0.93)),
    url("../images/brushed-steel-texture.png");
  background-size: cover;
}

.values-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto clamp(1.8rem, 4vw, 3rem);
  padding: clamp(1rem, 2.4vw, 1.45rem);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 19, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.values-media {
  position: relative;
  min-height: clamp(330px, 33vw, 460px);
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
}

.values-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.08);
}

.values-media::before,
.values-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.values-media::before {
  background:
    linear-gradient(0deg, rgba(8, 13, 19, 0.84), transparent 58%),
    radial-gradient(circle at 78% 20%, rgba(245, 158, 34, 0.18), transparent 12rem);
}

.values-media::after {
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple), var(--brand-red), var(--weld));
}

.values-media figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  display: grid;
  gap: 0.35rem;
  color: #fff;
}

.values-media figcaption span {
  color: #ffc36b;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.values-media figcaption strong {
  max-width: 24rem;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.values-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.values-copy h2 {
  max-width: 10.5ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.94;
}

.values-copy p:not(.eyebrow) {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.75;
}

.values-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.values-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.58rem 0.76rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.value-grid article {
  min-height: 260px;
  padding: clamp(1rem, 3vw, 1.6rem);
  border-radius: 16px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(14, 22, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.value-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 34, 0.38);
}

.value-grid h3 {
  margin: 1rem 0 0.7rem;
}

.value-grid p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.future-profile {
  padding: clamp(2.75rem, 5vw, 4.5rem) clamp(1.25rem, 6vw, 6rem);
}

.future-profile-inner {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 115, 173, 0.1), rgba(107, 27, 120, 0.08)),
    #ffffff;
  border: 1px solid rgba(7, 30, 70, 0.1);
  box-shadow: 0 18px 60px rgba(7, 30, 70, 0.08);
}

.future-profile-inner h2 {
  max-width: 16ch;
}

.future-profile-inner p:not(.eyebrow) {
  max-width: 760px;
  color: #526174;
  line-height: 1.7;
}

.future-profile-inner .btn {
  margin-top: 1rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--steel-dark);
}

.gallery-item.wide {
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: 1rem;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3.25rem, 6vw, 5.75rem) clamp(1.25rem, 6vw, 6rem);
  background-image: linear-gradient(rgba(6, 27, 62, 0.92), rgba(4, 7, 12, 0.94)), url("../images/brushed-steel-texture.png");
  background-size: cover;
}

.trust-text p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-side {
  display: grid;
  gap: 1rem;
}

.trust-photo {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--steel-dark);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 27, 62, 0.78), transparent 58%);
}

.trust-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: var(--white);
  font-weight: 900;
  line-height: 1.25;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: stretch;
}

.contact-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel {
  align-self: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid rgba(6, 27, 62, 0.08);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 11ch;
}

.shop-address {
  display: grid;
  gap: 0.45rem;
  margin: 1.2rem 0;
  padding: 1rem;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: #f4f7fb;
  font-style: normal;
}

.shop-address span {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.shop-address strong {
  color: var(--charcoal);
  line-height: 1.45;
}

.shop-address a {
  width: fit-content;
  color: var(--red);
  font-weight: 900;
}

.whatsapp-flyer {
  margin: 1.4rem 0;
  padding: 1rem;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 115, 173, 0.96), rgba(107, 27, 120, 0.94) 58%, rgba(211, 59, 66, 0.88)),
    url("../images/brushed-steel-texture.png");
  background-size: cover;
  box-shadow: 0 22px 54px rgba(6, 27, 62, 0.22);
}

.flyer-head {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.flyer-head span {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.flyer-head strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.quick-work a {
  flex: 1 1 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.58rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  text-align: center;
}

.quick-work a:hover,
.quick-work a:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
}

.contact-list {
  margin: 1.5rem 0;
}

.contact-list article {
  flex: 1 1 160px;
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--navy), #23184d);
  color: var(--white);
}

.contact-list span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--steel);
  font-size: 0.8rem;
}

.contact-list strong {
  display: block;
  margin-bottom: 0.85rem;
  color: #9bd7ff;
  font-size: 1.15rem;
}

.contact-list article div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0.5rem;
}

.contact-list article a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.contact-list article a:last-child {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
}

.contact-main-whatsapp {
  width: 100%;
}

.map-embed {
  position: relative;
  height: 300px;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(6, 27, 62, 0.12);
  background: var(--steel-dark);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.9) contrast(1.04);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(130px, 0.58fr) minmax(180px, 0.78fr) minmax(260px, 0.92fr);
  align-items: start;
  gap: clamp(1.6rem, 4vw, 4.5rem);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 6vw, 6rem) 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #321950 55%, #741f47);
}

.footer-brand {
  display: grid;
  gap: 1.1rem;
}

.footer-brand img {
  width: min(245px, 78vw);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand p {
  max-width: 380px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 0.72rem;
}

.footer-links h2,
.footer-gallery h2 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.1;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: #ffc36b;
  transform: translateX(3px);
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 82px));
  gap: 0.7rem;
}

.footer-gallery h2 {
  grid-column: 1 / -1;
}

.footer-gallery a {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.footer-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.footer-gallery a:hover img,
.footer-gallery a:focus-visible img {
  transform: scale(1.08);
}

.footer-actions {
  grid-column: 1 / 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem;
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.footer-actions a,
.footer-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.68rem 0.85rem;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-actions a:hover,
.footer-actions a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
}

.footer-meta {
  grid-column: 3 / 5;
  display: grid;
  justify-items: end;
  gap: 0.8rem;
  text-align: right;
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.footer-copy {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(100% + clamp(2.5rem, 12vw, 12rem));
  margin-top: clamp(2rem, 4vw, 4rem) !important;
  padding: 1.35rem clamp(1.25rem, 6vw, 6rem);
  text-align: center;
  color: rgba(255, 255, 255, 0.72) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.14);
}

/* Premium industrial luxury design layer */
:root {
  --graphite: #080d13;
  --graphite-2: #101923;
  --metal: #d9dde2;
  --metal-soft: #8f9aa7;
  --weld: #f59e22;
  --gold: #d6a64f;
  --glass: rgba(10, 18, 27, 0.66);
  --glass-line: rgba(255, 255, 255, 0.14);
  --surface: #101922;
  --surface-2: #172231;
  --premium-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --soft-shadow: 0 18px 54px rgba(8, 13, 19, 0.18);
}

body {
  background:
    radial-gradient(circle at 12% 4%, rgba(245, 158, 34, 0.08), transparent 28rem),
    radial-gradient(circle at 90% 12%, rgba(23, 115, 173, 0.1), transparent 30rem),
    linear-gradient(180deg, #f6f7f8 0%, #eef1f4 48%, #f8f9fa 100%);
}

.site-header {
  top: 0.85rem;
  left: clamp(0.85rem, 2vw, 1.35rem);
  right: clamp(0.85rem, 2vw, 1.35rem);
  width: auto;
  height: 78px;
  border: 1px solid var(--glass-line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(7, 17, 29, 0.74), rgba(42, 30, 67, 0.58)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(22px) saturate(1.18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.site-header.is-scrolled {
  height: 68px;
  background:
    linear-gradient(135deg, rgba(7, 17, 29, 0.88), rgba(36, 27, 58, 0.78)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
}

.brand img {
  width: clamp(170px, 15vw, 238px);
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.45));
}

.main-nav {
  gap: 0.35rem;
}

.main-nav a {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.68rem 0.86rem;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  margin-left: 0.35rem;
  color: #1b1204;
  background: linear-gradient(135deg, #ffd88a, var(--weld) 58%, #d75931);
  box-shadow: 0 14px 34px rgba(245, 158, 34, 0.28);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: #130d04;
  background: linear-gradient(135deg, #ffe3a7, #ffad38 58%, #e96436);
}

.hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 6.2rem) clamp(1.25rem, 6vw, 6rem) 7.25rem;
  background: var(--graphite);
}

.hero-media img {
  opacity: 0.95;
  transform: scale(1.04);
}

.hero-media::after {
  background:
    radial-gradient(circle at 78% 64%, rgba(245, 158, 34, 0.36), transparent 13rem),
    radial-gradient(circle at 54% 24%, rgba(23, 115, 173, 0.16), transparent 28rem),
    linear-gradient(90deg, rgba(6, 10, 16, 0.94) 0%, rgba(7, 17, 28, 0.82) 36%, rgba(7, 17, 28, 0.3) 72%, rgba(7, 17, 28, 0.72) 100%),
    linear-gradient(0deg, rgba(5, 8, 13, 0.8), rgba(5, 8, 13, 0.12));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 33%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(8, 13, 19, 0.92), transparent);
}

.hero-content {
  width: min(760px, 100%);
}

.hero-content .eyebrow,
.page-hero .eyebrow {
  color: #ffb44d;
  text-shadow: 0 0 24px rgba(245, 158, 34, 0.25);
}

.hero h1 {
  max-width: 10.6ch;
  font-size: clamp(3.25rem, 6.6vw, 7rem);
  line-height: 0.9;
  color: #fff;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.48);
}

.hero h1 span {
  color: var(--metal);
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  min-height: 50px;
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.btn-primary {
  color: #1a1004;
  background: linear-gradient(135deg, #ffe0a1, var(--weld) 52%, #e65d32);
  box-shadow: 0 18px 46px rgba(245, 158, 34, 0.28);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.56rem 0.76rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-strip {
  z-index: 4;
  bottom: 1.6rem;
}

.hero-strip span,
.trust-points span {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-hero {
  min-height: 52svh;
  padding-top: calc(var(--header-h) + 6rem);
  background:
    radial-gradient(circle at 78% 34%, rgba(245, 158, 34, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(8, 13, 19, 0.92), rgba(20, 30, 42, 0.82)),
    url("../images/brushed-steel-texture.png");
}

.page-hero h1 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(2.8rem, 5.4vw, 5.6rem);
  line-height: 0.92;
}

.intro-band,
.site-footer {
  background:
    linear-gradient(135deg, rgba(8, 13, 19, 0.96), rgba(32, 42, 52, 0.94)),
    url("../images/brushed-steel-texture.png");
  background-size: cover;
}

.services,
.gallery,
.about-story,
.future-profile {
  background:
    radial-gradient(circle at 14% 0%, rgba(245, 158, 34, 0.08), transparent 22rem),
    linear-gradient(180deg, #f8f9fa, #eef2f5);
}

.section-heading h2 {
  max-width: 12.5ch;
}

.services .section-heading {
  position: relative;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3.4rem);
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 12%, rgba(245, 158, 34, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(8, 13, 19, 0.96), rgba(21, 31, 43, 0.92)),
    url("../images/brushed-steel-texture.png");
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(8, 13, 19, 0.24);
  overflow: hidden;
  isolation: isolate;
}

.services .section-heading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 76%);
}

.services .section-heading::after {
  content: "Roof sheds / Gates / Railings / Storage / Custom work";
  grid-column: 2;
  width: fit-content;
  max-width: 100%;
  padding: 0.58rem 0.78rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.3;
}

.services .section-heading .eyebrow {
  color: #ffc36b;
}

.services .section-heading h2 {
  color: #fff;
  font-size: clamp(2.6rem, 5.3vw, 5.4rem);
  line-height: 0.92;
  text-shadow: 0 20px 55px rgba(0, 0, 0, 0.36);
}

.services .section-heading .section-motion {
  min-height: clamp(280px, 34vw, 460px);
  border-radius: 16px;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
}

.services .section-heading .section-motion img {
  opacity: 0.96;
  filter: saturate(1.08) contrast(1.05);
}

.section-motion {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-grid {
  gap: clamp(1rem, 2.2vw, 1.35rem);
}

.service-tile {
  min-height: 500px;
  border: 1px solid rgba(12, 22, 32, 0.12);
  box-shadow: var(--soft-shadow);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-tile::before,
.gallery-item::before {
  content: "Steel Project";
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  color: #171006;
  background: linear-gradient(135deg, #ffe2a5, var(--gold));
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-tile:nth-child(1)::before {
  content: "Roof Shed";
}

.service-tile:nth-child(2)::before {
  content: "Gate Work";
}

.service-tile:nth-child(3)::before {
  content: "Railing";
}

.service-grid-large .service-tile:nth-child(3)::before {
  content: "Grill / Door";
}

.service-grid-large .service-tile:nth-child(4)::before {
  content: "Railing";
}

.service-grid-large .service-tile:nth-child(5)::before {
  content: "Storage";
}

.service-grid-large .service-tile:nth-child(6)::before {
  content: "Furniture";
}

.gallery-item:nth-child(1)::before,
.gallery-item:nth-child(3)::before,
.gallery-item:nth-child(7)::before {
  content: "Home Work";
}

.gallery-item:nth-child(2)::before,
.gallery-item:nth-child(5)::before {
  content: "Storage";
}

.gallery-item:nth-child(4)::before,
.gallery-item:nth-child(8)::before,
.gallery-item:nth-child(12)::before {
  content: "Roof Shed";
}

.gallery-item:nth-child(6)::before,
.gallery-item:nth-child(10)::before,
.gallery-item:nth-child(13)::before {
  content: "Railing";
}

.gallery-item:nth-child(9)::before,
.gallery-item:nth-child(11)::before,
.gallery-item:nth-child(14)::before,
.gallery-item:nth-child(15)::before {
  content: "Gate / Grill";
}

.service-tile::after {
  background:
    linear-gradient(0deg, rgba(7, 12, 18, 0.9), rgba(7, 12, 18, 0.14) 58%, rgba(255, 255, 255, 0.08)),
    linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  background-size: 100% 100%, 220% 100%;
}

.service-tile:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 34, 0.46);
  box-shadow: 0 30px 90px rgba(8, 13, 19, 0.3);
}

.service-tile:hover::after,
.gallery-item:hover::after {
  background-position: 0 0, -90% 0;
}

.service-tile span {
  color: #ffd27d;
}

.section-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: clamp(1.2rem, 3vw, 2rem);
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  color: #1b1204;
  background: linear-gradient(135deg, #ffe0a1, var(--weld) 58%, #e65d32);
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(245, 158, 34, 0.22);
}

.builder,
.trust,
.about-values {
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 158, 34, 0.13), transparent 24rem),
    linear-gradient(135deg, #080d13, #121c27 54%, #0a1119);
}

.builder .section-heading {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
  padding: clamp(1rem, 2.4vw, 1.5rem);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 19, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.builder .section-heading h2 {
  max-width: 10ch;
  grid-column: 2;
  grid-row: 1;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.94;
}

.builder-kicker {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  display: grid;
  gap: 1rem;
}

.builder-kicker p:not(.eyebrow) {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.builder-preview {
  grid-column: 1 / -1;
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #101923;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.builder-preview img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.95) contrast(1.08);
}

.builder-preview::before,
.builder-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.builder-preview::before {
  background:
    radial-gradient(circle at 68% 38%, rgba(245, 158, 34, 0.22), transparent 16rem),
    linear-gradient(90deg, rgba(8, 13, 19, 0.78), rgba(8, 13, 19, 0.2));
}

.builder-preview::after {
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple), var(--brand-red), var(--weld));
}

.builder-preview figcaption {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 2;
  display: grid;
  gap: 0.35rem;
  color: #fff;
}

.builder-preview figcaption span {
  color: #ffc36b;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.builder-preview figcaption strong {
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  line-height: 1;
}

.process-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.builder::after {
  background:
    radial-gradient(circle at 72% 22%, rgba(245, 158, 34, 0.22), transparent 24rem),
    linear-gradient(180deg, rgba(8, 13, 19, 0.78), rgba(8, 13, 19, 0.96));
}

.product-morph {
  filter: drop-shadow(0 0 18px rgba(245, 158, 34, 0.26));
}

.morph-shape path {
  stroke: rgba(225, 232, 240, 0.84);
}

.builder-copy,
.process-strip article,
.value-grid article,
.contact-panel,
.future-profile-inner {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(14, 22, 31, 0.76);
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(18px);
}

.builder-copy h3,
.process-strip strong {
  color: #fff;
}

.gallery-track {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 160px;
}

.gallery-track-full {
  grid-auto-rows: 180px;
}

.gallery-item {
  grid-column: span 4;
  grid-row: span 2;
  border: 1px solid rgba(11, 18, 26, 0.14);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gallery-item.wide {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(11) {
  grid-column: span 8;
}

.gallery-item:nth-child(7),
.gallery-item:nth-child(10) {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 34, 0.42);
  box-shadow: 0 26px 76px rgba(8, 13, 19, 0.28);
}

.gallery-item::after {
  background:
    linear-gradient(0deg, rgba(8, 13, 19, 0.92), rgba(8, 13, 19, 0.12) 62%),
    linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  background-size: 100% 100%, 220% 100%;
}

.gallery-item figcaption {
  z-index: 3;
  font-size: 1.05rem;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

.leader-card {
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.56)),
    linear-gradient(135deg, rgba(245, 158, 34, 0.08), transparent);
  border: 1px solid rgba(8, 13, 19, 0.08);
  box-shadow: var(--soft-shadow);
}

.leader-photo {
  border-radius: 14px;
}

.leader-copy {
  padding: clamp(0.5rem, 3vw, 2rem);
}

.contact {
  background:
    radial-gradient(circle at 12% 20%, rgba(245, 158, 34, 0.12), transparent 22rem),
    linear-gradient(180deg, #f8f9fa, #e9eef3);
}

.contact-panel {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 13, 19, 0.08);
  border-radius: 18px;
}

.contact-panel h2 {
  max-width: 12ch;
}

.contact-list article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(11, 18, 26, 0.98), rgba(28, 39, 52, 0.94)),
    url("../images/brushed-steel-texture.png");
  box-shadow: 0 18px 48px rgba(8, 13, 19, 0.18);
}

.whatsapp-flyer {
  background:
    linear-gradient(135deg, rgba(10, 18, 27, 0.92), rgba(34, 49, 65, 0.9)),
    url("../images/brushed-steel-texture.png");
  border: 1px solid rgba(245, 158, 34, 0.28);
}

.map-embed {
  border-radius: 14px;
  border-color: rgba(8, 13, 19, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.future-profile-inner {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 13, 19, 0.94), rgba(28, 39, 52, 0.9)),
    url("../images/final-cta.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.future-profile-inner p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =============================================
   GALLERY HEADER — Gallery Page
   ============================================= */

.gallery-header {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.68fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.gallery-header-left {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.gallery-header-left h2 {
  max-width: 15ch;
  margin: 0;
}

.gallery-header-desc {
  margin: 0;
  max-width: 500px;
  color: #526174;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.7;
}

.gallery-header-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.gallery-header-tags span {
  padding: 0.42rem 0.88rem;
  border-radius: 999px;
  background: rgba(7, 30, 70, 0.06);
  border: 1px solid rgba(7, 30, 70, 0.12);
  color: #526174;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gallery-header-tags span:hover {
  background: rgba(7, 30, 70, 0.1);
  border-color: rgba(7, 30, 70, 0.22);
  color: var(--navy);
}

.gallery-header-fig {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 0;
  min-height: 300px;
  background: var(--steel-dark);
  box-shadow:
    0 24px 70px rgba(7, 30, 70, 0.14),
    0 0 0 1px rgba(7, 30, 70, 0.06);
}

.gallery-header-fig img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  animation: imageDrift 9s ease-in-out infinite alternate;
}

.gallery-header-fig::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(6, 27, 62, 0.85) 0%, transparent 52%),
    linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.12) 48%, transparent 58% 100%);
  background-size: 100% 100%, 220% 100%;
  animation: steelSweep 5s ease-in-out infinite;
}

.gallery-header-fig::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple), var(--brand-red));
}

.gallery-header-fig figcaption {
  position: absolute;
  left: clamp(1rem, 2.5vw, 1.5rem);
  bottom: clamp(1rem, 2.5vw, 1.5rem);
  z-index: 3;
  display: grid;
  gap: 0.22rem;
  color: var(--white);
}

.gallery-header-fig figcaption span {
  color: #ffc36b;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-header-fig figcaption strong {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.05;
}

/* =============================================
   PROCESS SECTION — Services Page
   ============================================= */

.proc-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 82% 22%, rgba(245, 148, 30, 0.11), transparent 42%),
    radial-gradient(ellipse at 12% 80%, rgba(211, 59, 66, 0.07), transparent 35%),
    linear-gradient(180deg, #060b10 0%, #0a1119 60%, #080d13 100%);
}

.proc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: forgeGridScroll 30s linear infinite;
  pointer-events: none;
}

/* Top: Heading + Flow diagram */
.proc-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.5fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.proc-head h2 {
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: 0.92;
  margin-bottom: clamp(1.2rem, 2.5vw, 2rem);
}

.proc-lead {
  margin: 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.7;
}

/* Flow diagram panel */
.proc-flow {
  padding: clamp(1rem, 2.5vw, 1.75rem);
  background: linear-gradient(148deg, rgba(13, 24, 36, 0.96), rgba(6, 14, 24, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(245, 148, 30, 0.28);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(245, 148, 30, 0.06),
    0 36px 90px rgba(0, 0, 0, 0.45);
}

.proc-svg {
  width: 100%;
  display: block;
}

/* Step cards row */
.proc-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
}

.proc-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
}

.proc-connector svg {
  width: 48px;
  height: 16px;
  flex-shrink: 0;
}

.proc-card {
  padding: clamp(1.2rem, 2.2vw, 1.75rem);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 2px solid rgba(245, 148, 30, 0.32);
  backdrop-filter: blur(14px);
  color: var(--white);
  transition: border-top-color 0.28s ease, transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.proc-card:hover {
  border-top-color: rgba(245, 148, 30, 0.7);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.proc-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: clamp(0.85rem, 1.5vw, 1.2rem);
}

.proc-card-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(245, 148, 30, 0.55);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.proc-card-icon {
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.proc-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.15;
  color: var(--white);
}

.proc-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  line-height: 1.62;
}

/* =============================================
   FORGE SECTION — Cinematic Steel Builder
   ============================================= */

.forge {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 72% 38%, rgba(245, 148, 30, 0.13), transparent 40%),
    radial-gradient(ellipse at 18% 78%, rgba(211, 59, 66, 0.08), transparent 35%),
    linear-gradient(180deg, #060b10 0%, #0a1119 55%, #080d13 100%);
}

/* Animated blueprint grid */
.forge-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  animation: forgeGridScroll 28s linear infinite;
  pointer-events: none;
}

/* Warm ambient glow orb */
.forge-glow-orb {
  position: absolute;
  top: 15%;
  right: 20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 148, 30, 0.07), transparent 70%);
  animation: forgeOrbPulse 7s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

/* Diagonal light streaks */
.forge-streaks {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.forge-streak {
  position: absolute;
  width: 1px;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(245, 148, 30, 0.09), transparent);
  animation: forgeStreakFall var(--dur, 10s) linear var(--del, 0s) infinite;
}

.forge-streak:nth-child(1) { left: 16%; --dur: 12s; --del: 0s; }
.forge-streak:nth-child(2) { left: 40%; --dur: 8.5s; --del: 3.2s; }
.forge-streak:nth-child(3) { left: 68%; --dur: 14s; --del: 1.8s; }
.forge-streak:nth-child(4) { left: 90%; --dur: 10s; --del: 5.5s; }

/* Two-column asymmetric layout */
.forge-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  max-width: 1360px;
  margin-inline: auto;
}

.forge-left {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 3vw, 2.6rem);
}

/* === CINEMATIC TYPOGRAPHY === */
.forge-heading {
  margin: 0;
  font-size: clamp(3.6rem, 6.8vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.025em;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
}

.forge-line {
  display: block;
}

.forge-gradient {
  background: linear-gradient(135deg, #f5941e 15%, #f3c714 55%, #e8630a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.forge-outline {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.55);
  color: transparent;
}

.forge-micro {
  margin: 0;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  line-height: 1.7;
}

/* === ANIMATED STATS === */
.forge-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.forge-stat {
  padding: clamp(0.9rem, 1.8vw, 1.2rem) clamp(0.7rem, 1.4vw, 1rem);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top-color: rgba(245, 148, 30, 0.38);
  backdrop-filter: blur(14px);
  transition: border-top-color 0.3s ease, background 0.3s ease;
}

.forge-stat:hover {
  border-top-color: rgba(245, 148, 30, 0.65);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.forge-stat strong {
  display: block;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.32rem;
  font-variant-numeric: tabular-nums;
}

.forge-stat p {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1.35;
}

/* === PREMIUM TABS === */
.forge-tabs {
  display: flex;
}

.forge-tabs-inner {
  position: relative;
  display: flex;
  gap: 3px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  flex-wrap: wrap;
  row-gap: 4px;
}

.forge-tab-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: 60px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 148, 30, 0.26), rgba(211, 59, 66, 0.2));
  border: 1px solid rgba(245, 148, 30, 0.42);
  box-shadow:
    0 0 20px rgba(245, 148, 30, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    left 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    width 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.forge-tab {
  position: relative;
  z-index: 1;
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: color 0.22s ease;
  white-space: nowrap;
}

.forge-tab.active {
  color: var(--white);
}

.forge-tab:hover:not(.active) {
  color: rgba(255, 255, 255, 0.82);
}

/* === VISUAL PANEL (RIGHT COLUMN) === */
.forge-right {
  perspective: 1400px;
  perspective-origin: 50% 50%;
}

.forge-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 58% 32%, rgba(245, 148, 30, 0.055), transparent 62%),
    linear-gradient(148deg, rgba(13, 24, 36, 0.97), rgba(6, 14, 24, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(245, 148, 30, 0.07),
    0 48px 120px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition: transform 0.18s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.forge-panel:hover {
  box-shadow:
    0 0 0 1px rgba(245, 148, 30, 0.18),
    0 56px 140px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Corner bracket accents */
.forge-corner {
  position: absolute;
  z-index: 6;
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.forge-corner::before,
.forge-corner::after {
  content: '';
  position: absolute;
  background: rgba(245, 148, 30, 0.65);
  border-radius: 1px;
}

.forge-corner::before { width: 100%; height: 2px; top: 0; left: 0; }
.forge-corner::after  { width: 2px; height: 100%; top: 0; left: 0; }

.fc-tl { top: 14px; left: 14px; }
.fc-tr { top: 14px; right: 14px; transform: scaleX(-1); }
.fc-bl { bottom: 14px; left: 14px; transform: scaleY(-1); }
.fc-br { bottom: 14px; right: 14px; transform: scale(-1); }

/* Scan line sweep */
.forge-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 20%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(245, 148, 30, 0.45) 30%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(245, 148, 30, 0.45) 70%,
    transparent 100%
  );
  animation: forgeScanLine 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

/* Status bar */
.forge-status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1.3rem;
  background: rgba(5, 12, 20, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(14px);
  z-index: 5;
}

.forge-status-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ecf7a;
  box-shadow: 0 0 8px rgba(62, 207, 122, 0.65);
  animation: forgeStatusPulse 2.2s ease-in-out infinite;
}

.forge-status-text {
  flex: 1;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.forge-status-badge {
  font-size: 0.62rem;
  font-weight: 900;
  color: #3ecf7a;
  letter-spacing: 0.14em;
  padding: 0.18rem 0.48rem;
  border: 1px solid rgba(62, 207, 122, 0.3);
  border-radius: 3px;
  background: rgba(62, 207, 122, 0.07);
}

/* Blueprint SVG */
.forge-svg {
  width: 100%;
  display: block;
  padding: 3.2rem 1.4rem 0.3rem;
  min-height: 280px;
}

.forge-shape {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.forge-shape.active {
  opacity: 1;
}

/* Detail lines (dashed) — fade via CSS, not draw animation */
.forge-shape .forge-s-detail,
.forge-shape .forge-s-baluster {
  opacity: 0;
  transition: opacity 0s;
}

.forge-shape.active .forge-s-detail,
.forge-shape.active .forge-s-baluster {
  opacity: 1;
  transition: opacity 0.55s ease 0.65s;
}

/* Dimension text — fade in last */
.forge-shape .forge-s-dim {
  opacity: 0;
  transition: opacity 0s;
}

.forge-shape.active .forge-s-dim {
  opacity: 1;
  transition: opacity 0.45s ease 0.9s;
}

/* SVG stroke classes */
.forge-s-frame {
  fill: none;
  stroke: rgba(218, 228, 240, 0.9);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.forge-s-bar {
  fill: none;
  stroke: rgba(174, 184, 195, 0.62);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.forge-s-detail {
  fill: none;
  stroke: rgba(174, 184, 195, 0.35);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-dasharray: 5 4;
}

.forge-s-track {
  fill: none;
  stroke: rgba(245, 148, 30, 0.72);
  stroke-width: 2;
  stroke-linecap: round;
}

.forge-s-weld {
  fill: rgba(245, 148, 30, 0.88);
  stroke: rgba(245, 148, 30, 0.35);
  stroke-width: 3;
  filter: drop-shadow(0 0 4px rgba(245, 148, 30, 0.55));
}

.forge-s-baluster {
  fill: none;
  stroke: rgba(174, 184, 195, 0.25);
  stroke-width: 0.9;
  stroke-linecap: round;
}

.forge-s-dim {
  fill: rgba(85, 165, 255, 0.62);
  font-size: 10px;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 0.05em;
  text-anchor: middle;
  dominant-baseline: middle;
}

/* Info strip */
.forge-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.4rem;
  background: rgba(5, 12, 20, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(14px);
  min-height: 72px;
}

.forge-info-label {
  margin: 0 0 0.28rem;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
}

.forge-info-desc {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.55;
  max-width: 280px;
}

.forge-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  justify-content: flex-end;
  flex-shrink: 0;
}

.forge-spec {
  padding: 0.28rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(245, 148, 30, 0.88);
  background: rgba(245, 148, 30, 0.1);
  border: 1px solid rgba(245, 148, 30, 0.24);
  border-radius: 4px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Staggered reveal */
.forge-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s ease;
  transition-delay: calc(var(--fd, 0) * 95ms);
}

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

/* Welding spark particles (spawned by JS) */
.forge-spark-p {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f5941e;
  pointer-events: none;
  z-index: 8;
  box-shadow: 0 0 6px rgba(245, 148, 30, 0.9);
  transform: translate(-50%, -50%);
  animation: forgeSparkFly 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* =============================================
   VIDEO GALLERY ITEMS
   ============================================= */

.gallery-item {
  cursor: pointer;
}

.gallery-item-video {
  background:
    radial-gradient(ellipse at 50% 44%, rgba(245, 148, 30, 0.12), transparent 68%),
    linear-gradient(145deg, #0a1220, #111c2c);
}

.gallery-item-video::after {
  background:
    linear-gradient(0deg, rgba(8, 13, 19, 0.72), rgba(8, 13, 19, 0.18) 62%);
  background-size: 100% 100%;
}

.gallery-item-video::before {
  content: "Video" !important;
}

.gallery-item-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 148, 30, 0.18);
  border: 2px solid rgba(245, 148, 30, 0.72);
  border-radius: 50%;
  color: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.gallery-item-play svg {
  display: block;
  transform: translateX(2px);
}

.gallery-item-video:hover .gallery-item-play {
  background: rgba(245, 148, 30, 0.36);
  border-color: rgba(245, 148, 30, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* =============================================
   GALLERY LIGHTBOX
   ============================================= */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5, 10, 16, 0.96);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 88vh;
}

img.lightbox-media {
  max-width: 92vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6);
  display: block;
}

video.lightbox-media {
  width: min(88vw, 980px);
  height: auto;
  max-height: 80vh;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6);
  display: none;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

  .lightbox-close {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }
}
