:root {
  --bg: #101113;
  --bg-soft: #17191c;
  --panel: #1e2024;
  --paper: #f3f1ec;
  --white: #ffffff;
  --text: #17181a;
  --muted: #696d73;
  --muted-light: #a7abb2;
  --line: rgba(18, 19, 21, .12);
  --line-dark: rgba(255,255,255,.12);
  --orange: #ff6a00;
  --orange-dark: #dd4f00;
  --orange-soft: #ff8d3c;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0,0,0,.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  background: rgba(16,17,19,.88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}
.brand-mark svg { width: 100%; }
.brand-mark path:first-child { fill: #fff; }
.brand-mark .spark { fill: var(--orange); }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text strong {
  font-size: 20px;
  letter-spacing: .1em;
}
.brand-text small {
  margin-top: 6px;
  color: #9da1a8;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .16em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #d7d8db;
  font-size: 14px;
  font-weight: 650;
}
.main-nav a { transition: color .2s ease, background .2s ease; }
.main-nav a:hover { color: #fff; }
.main-nav .nav-cta {
  padding: 10px 17px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
}
.main-nav .nav-cta:hover { background: var(--orange-soft); }

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 155px 0 55px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 35%, rgba(255,106,0,.12), transparent 28%),
    linear-gradient(120deg, #111214, #17191c 62%, #0c0d0f);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
              linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.hero::after {
  content: "";
  position: absolute;
  left: -12%;
  bottom: -210px;
  width: 700px;
  height: 420px;
  border: 90px solid rgba(255,255,255,.025);
  transform: rotate(-20deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 30px;
  height: 2px;
  background: currentColor;
}
.eyebrow.light { color: #fff; }

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 7.2vw, 98px);
  line-height: .95;
  letter-spacing: -.055em;
}
.hero h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: #b9bdc4;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 760;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 35px rgba(255,106,0,.22);
}
.button-primary:hover { background: var(--orange-soft); }
.button-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.045);
}
.button-secondary:hover { background: rgba(255,255,255,.09); }
.button-secondary svg {
  width: 18px;
  fill: currentColor;
}
.button-light {
  color: #17181a;
  background: #fff;
}
.button-light:hover { background: #f3f3f3; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 31px;
  color: #9da1a9;
  font-size: 13px;
}
.hero-points span {
  position: relative;
  padding-left: 17px;
}
.hero-points span::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
}

.hero-illustration {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 40px 45px rgba(0,0,0,.32));
}

.weld-glow {
  position: absolute;
  z-index: 1;
  top: 36%;
  right: 13%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,106,0,.36);
  filter: blur(55px);
}

.visual-label {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 26px;
  width: 250px;
  padding: 17px 19px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: rgba(18,19,22,.82);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.visual-label strong { display: block; font-size: 14px; }
.visual-label span { color: #9ea2aa; font-size: 12px; }

.stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 35px;
  border-top: 1px solid rgba(255,255,255,.11);
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.stats div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
}
.stats div + div { border-left: 1px solid rgba(255,255,255,.11); }
.stats strong {
  color: var(--orange);
  font-size: 25px;
}
.stats span { color: #c5c8cd; font-size: 13px; }

.section { padding: 108px 0; }

.section-heading {
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}
.section-heading h2,
.products-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.section-heading > p,
.products-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.services { background: #f4f2ed; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 300px;
  position: relative;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 22px 55px rgba(20,21,23,.09);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 45px;
  color: #34363b;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}
.service-icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-icon .accent { stroke: var(--orange); }

.service-card h3 {
  margin: 0 0 11px;
  font-size: 21px;
  letter-spacing: -.025em;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card-cta {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 8%, rgba(255,106,0,.36), transparent 30%),
    var(--bg);
}
.service-card-cta:hover { background:
  radial-gradient(circle at 90% 8%, rgba(255,106,0,.46), transparent 34%),
  #17191c;
}
.service-card-cta .small-label {
  color: var(--orange-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.service-card-cta h3 {
  max-width: 270px;
  margin-top: 43px;
  font-size: 26px;
}
.service-card-cta p:not(.small-label) { color: #aeb2b8; }
.service-card-cta a {
  position: absolute;
  left: 29px;
  bottom: 27px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}
.service-card-cta a span { color: var(--orange); }

.products {
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #111214;
  background-size: 54px 54px;
}

.products-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 85px;
}
.products-copy > p { margin-top: 24px; color: #aeb2b9; }
.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 32px;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: #d8dade;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--orange);
  font-size: 11px;
  font-weight: 900;
}
.text-link {
  display: inline-flex;
  gap: 8px;
  color: #fff;
  font-weight: 750;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.text-link span { color: var(--orange); }

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.product-card {
  min-height: 280px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 17px;
  background: linear-gradient(145deg, #23252a, #17191c);
}
.product-card-large {
  min-height: 575px;
  grid-row: span 2;
}
.product-card .tag {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--orange-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.product-card h3 {
  margin: 0;
  font-size: 25px;
}
.product-card p {
  margin: 8px 0 0;
  color: #9ea2aa;
  font-size: 13px;
}

.product-art {
  position: relative;
  flex: 1;
  min-height: 150px;
}
.smoker-art {
  width: 270px;
  margin: 20px auto 35px;
}
.smoker-art .body {
  position: absolute;
  left: 43px;
  top: 80px;
  width: 185px;
  height: 285px;
  border: 2px solid #5b5f67;
  border-radius: 10px;
  background: linear-gradient(135deg, #35383e, #17191c);
  box-shadow: 0 30px 45px rgba(0,0,0,.35);
}
.smoker-art .chimney {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 170px;
  width: 32px;
  height: 79px;
  background: linear-gradient(90deg, #3c3f45, #202226);
}
.smoker-art .chimney::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -8px;
  width: 48px;
  height: 12px;
  border-radius: 2px;
  background: #45494f;
}
.smoker-art .door {
  position: absolute;
  z-index: 3;
  left: 60px;
  width: 151px;
  border: 1px solid #5a5e65;
  border-radius: 5px;
  background: #222428;
}
.smoker-art .door::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 25px;
  height: 4px;
  border-radius: 3px;
  background: var(--orange);
}
.smoker-art .door-one { top: 106px; height: 142px; }
.smoker-art .door-two { top: 263px; height: 78px; }
.smoker-art .leg {
  position: absolute;
  top: 357px;
  width: 15px;
  height: 56px;
  background: #25272b;
}
.smoker-art .l1 { left: 58px; }
.smoker-art .l2 { right: 58px; }
.smoker-art .heat {
  position: absolute;
  z-index: 4;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255,106,0,.8);
}
.smoker-art .h1 { left: 119px; top: 312px; width: 7px; height: 7px; }
.smoker-art .h2 { left: 144px; top: 319px; width: 4px; height: 4px; }

.grill-art {
  min-height: 170px;
}
.grill-art .tray {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 55px;
  height: 72px;
  border: 2px solid #5b5f66;
  border-top: 6px solid #777b83;
  transform: perspective(260px) rotateX(-10deg);
  background: linear-gradient(#303339, #1b1d20);
}
.grill-art .grill-leg {
  position: absolute;
  top: 120px;
  width: 8px;
  height: 66px;
  background: #45484e;
}
.grill-art .gl1 { left: 23%; transform: rotate(8deg); }
.grill-art .gl2 { right: 23%; transform: rotate(-8deg); }
.grill-art .grill-line {
  position: absolute;
  left: 20%;
  right: 20%;
  top: 76px;
  height: 3px;
  background: repeating-linear-gradient(90deg, #989ca3 0 3px, transparent 3px 9px);
}

.frame-art span {
  position: absolute;
  background: linear-gradient(90deg, #5e6269, #27292e);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.frame-art span:nth-child(1),
.frame-art span:nth-child(2) {
  top: 25px;
  width: 15px;
  height: 130px;
}
.frame-art span:nth-child(1) { left: 22%; }
.frame-art span:nth-child(2) { right: 22%; }
.frame-art span:nth-child(3),
.frame-art span:nth-child(4) {
  left: 22%;
  width: 56%;
  height: 15px;
}
.frame-art span:nth-child(3) { top: 25px; }
.frame-art span:nth-child(4) { top: 140px; }
.frame-art::after {
  content: "";
  position: absolute;
  top: 72px;
  left: 46%;
  width: 18px;
  height: 18px;
  background: var(--orange);
  transform: rotate(45deg);
  box-shadow: 0 0 25px rgba(255,106,0,.55);
}

.process { background: #f4f2ed; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.process-step {
  min-height: 260px;
  padding: 30px 25px 0;
  border-right: 1px solid var(--line);
}
.process-step:first-child { border-left: 1px solid var(--line); }
.step-number {
  display: inline-block;
  margin-bottom: 50px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
}
.process-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-strip {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--orange);
}
.cta-strip::after {
  content: "M";
  position: absolute;
  right: -10px;
  top: -105px;
  color: rgba(255,255,255,.09);
  font-size: 300px;
  font-weight: 950;
  line-height: 1;
}
.cta-strip-inner {
  min-height: 260px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.cta-strip h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.contact {
  color: #fff;
  background: #111214;
}
.contact-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 80px;
}
.contact-copy > p {
  margin-top: 23px;
  color: #aeb2b9;
}
.contact-list {
  display: grid;
  gap: 13px;
  margin-top: 40px;
}
.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
}
.contact-icon svg {
  width: 20px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-list small {
  display: block;
  color: #858a92;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-list strong {
  display: block;
  font-size: 16px;
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: #191b1f;
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
}
.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #c6c9cf;
  font-size: 12px;
  font-weight: 700;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  outline: none;
  background: #111214;
}
.contact-form input,
.contact-form select { height: 51px; padding: 0 14px; }
.contact-form textarea { min-height: 145px; padding: 13px 14px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,106,0,.12);
}
.contact-form select { color-scheme: dark; }
.form-submit { width: 100%; border: 0; }
.form-note {
  margin: 13px 0 0;
  color: #7f848c;
  font-size: 11px;
  text-align: center;
}
.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: #ffad73;
  font-size: 12px;
  text-align: center;
}

.site-footer {
  color: #d8dade;
  background: #0b0c0e;
}
.footer-top {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-links {
  display: flex;
  gap: 24px;
  color: #9da1a8;
  font-size: 13px;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #6f747c;
  font-size: 12px;
}
.footer-bottom a:hover { color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    min-height: calc(100vh - 78px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 20px 50px;
    color: #fff;
    background: rgba(16,17,19,.98);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .main-nav.open { transform: none; }
  .main-nav a {
    padding: 17px 8px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 18px;
  }
  .main-nav .nav-cta {
    margin-top: 18px;
    text-align: center;
    border: 0;
    border-radius: 9px;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: auto; padding-top: 132px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 4; }
  .hero-visual { min-height: 440px; margin-top: -20px; }
  .hero-illustration { max-width: 620px; margin: 0 auto; }
  .visual-label { right: 8%; }

  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading > p { max-width: 680px; }
  .service-grid { grid-template-columns: 1fr 1fr; }

  .products-layout { grid-template-columns: 1fr; gap: 55px; }
  .products-copy { max-width: 700px; }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(3) { border-left: 1px solid var(--line); }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .contact-copy { max-width: 700px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand-text strong { font-size: 17px; }
  .brand-text small { font-size: 7px; }
  .nav-wrap { min-height: 70px; }
  .main-nav { top: 70px; min-height: calc(100vh - 70px); }

  .hero { padding: 120px 0 35px; }
  .hero h1 { font-size: clamp(52px, 16vw, 72px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-points { display: grid; gap: 8px; }
  .hero-visual { min-height: 345px; }
  .visual-label {
    right: 0;
    bottom: 6px;
    width: 225px;
  }
  .stats { grid-template-columns: 1fr; }
  .stats div { min-height: 72px; }
  .stats div + div {
    border-top: 1px solid rgba(255,255,255,.11);
    border-left: 0;
  }

  .section { padding: 78px 0; }
  .section-heading h2,
  .products-copy h2,
  .contact-copy h2 { font-size: 40px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }

  .product-showcase { grid-template-columns: 1fr; }
  .product-card-large { min-height: 540px; grid-row: auto; }
  .product-card { min-height: 260px; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step {
    min-height: 220px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .process-step:last-child { border-bottom: 0; }
  .step-number { margin-bottom: 35px; }

  .cta-strip-inner {
    min-height: 330px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .cta-strip h2 { font-size: 40px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 23px; }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .footer-top { padding: 35px 0; }
  .footer-links { flex-wrap: wrap; gap: 14px 20px; }
  .footer-bottom { padding: 24px 0; }
}

@media (max-width: 410px) {
  .brand-text small { display: none; }
  .hero h1 { font-size: 49px; }
  .hero-visual { min-height: 295px; }
  .visual-label { display: none; }
}

/* Gallery — clean project journal */
.main-nav .active { color: #fff; }
.gallery-page { color: #fff; background: #101113; }
.gallery-hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 94px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,106,0,.14), transparent 27%),
    linear-gradient(125deg, #111214, #191b1f 64%, #0b0c0e);
}
.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 95%);
}
.gallery-hero-inner { position: relative; z-index: 1; }
.gallery-hero h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 108px);
  line-height: .93;
  letter-spacing: -.06em;
}
.gallery-hero h1 em { color: var(--orange); font-style: normal; }
.gallery-hero-inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 27px 0 0;
  color: #adb1b8;
  font-size: 18px;
}
.gallery-content {
  padding: 46px 0 110px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: #101113;
}
.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 27px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button {
  min-height: 40px;
  padding: 8px 15px;
  color: #aeb2b9;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,.025);
  font-size: 12px;
  font-weight: 750;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.filter-button:hover { color: #fff; border-color: rgba(255,255,255,.25); }
.filter-button.active { color: #fff; border-color: var(--orange); background: var(--orange); }
.gallery-note { color: #70757d; font-size: 11px; text-align: right; }
.project-feed { display: grid; gap: 28px; }
.project-post {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: #17191c;
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
}
.project-post.is-hidden { display: none; }
.project-heading {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.project-heading h2 {
  margin: 7px 0 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.project-kicker {
  color: var(--orange-soft);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.project-state {
  flex: 0 0 auto;
  padding: 7px 11px;
  color: #c8cbd0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(330px, .78fr);
  min-height: 530px;
}
.project-media {
  display: grid;
  grid-template-rows: minmax(340px, 1fr) 150px;
  gap: 8px;
  padding: 8px;
  border-right: 1px solid rgba(255,255,255,.09);
  background: #0d0e10;
}
.project-main-image { min-height: 340px; }
.project-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gallery-image {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 9px;
  cursor: zoom-in;
  background: #202226;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease, opacity .3s ease;
}
.gallery-image:hover img { transform: scale(1.015); opacity: .92; }
.project-media-single { grid-template-rows: 1fr; }
.project-media-single .project-main-image { min-height: 520px; }
.repair-media {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 8px;
}
.repair-media figure { position: relative; margin: 0; min-width: 0; }
.repair-media .gallery-image { min-height: 510px; }
.repair-media figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 11px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  background: rgba(10,11,13,.82);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 800;
}
.project-copy {
  display: flex;
  flex-direction: column;
  padding: 32px 30px 29px;
}
.project-intro {
  margin: 0 0 25px;
  color: #c5c8cd;
  font-size: 16px;
  line-height: 1.7;
}
.project-specs {
  display: grid;
  gap: 0;
  margin: 0 0 26px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.project-specs div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.project-specs dt {
  color: #6f747c;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-specs dd { margin: 0; color: #ebeced; font-size: 12px; font-weight: 720; }
.project-description h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .02em;
}
.project-description p { margin: 0; color: #92979f; font-size: 13px; line-height: 1.7; }
.project-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  font-weight: 800;
}
.project-link span { color: var(--orange); font-size: 19px; }
.no-projects { padding: 55px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; color: #aeb2b9; text-align: center; background: #17191c; }
.gallery-bottom-cta {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 28px;
  padding: 34px 39px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 0%, rgba(255,255,255,.14), transparent 30%),
    var(--orange);
}
.gallery-bottom-cta h2 { max-width: 720px; margin: 8px 0 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -.04em; }
.gallery-bottom-cta .project-kicker { color: #fff; }
.gallery-bottom-cta .button-primary { color: #17181a; background: #fff; box-shadow: none; }
.gallery-bottom-cta .button-primary:hover { background: #f1f1f1; }
.image-lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(5,6,7,.95);
  backdrop-filter: blur(10px);
}
.image-lightbox[hidden] { display: none; }
.image-lightbox img { max-width: min(1320px, 94vw); max-height: 88vh; border-radius: 10px; box-shadow: 0 35px 90px rgba(0,0,0,.55); }
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 25px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255,255,255,.06);
  font-size: 32px;
  line-height: 1;
}
@media (max-width: 980px) {
  .project-layout { grid-template-columns: 1fr; }
  .project-media { min-height: 560px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .project-media-single .project-main-image { min-height: 560px; }
  .repair-media { min-height: 540px; }
  .repair-media .gallery-image { min-height: 520px; }
}
@media (max-width: 680px) {
  .gallery-hero { padding: 126px 0 68px; }
  .gallery-hero h1 { font-size: 56px; }
  .gallery-hero-inner > p:not(.eyebrow) { font-size: 15px; }
  .gallery-content { padding-top: 28px; }
  .gallery-toolbar { align-items: flex-start; flex-direction: column; }
  .gallery-note { text-align: left; }
  .gallery-filters { width: 100%; }
  .filter-button { flex: 1 1 calc(50% - 8px); }
  .project-heading { min-height: auto; align-items: flex-start; flex-direction: column; padding: 21px 18px; }
  .project-heading h2 { font-size: 28px; }
  .project-media { min-height: auto; grid-template-rows: 260px 120px; }
  .project-main-image { min-height: 260px; }
  .project-media-single { grid-template-rows: 330px; }
  .project-media-single .project-main-image { min-height: 330px; }
  .repair-media { min-height: auto; grid-template-columns: 1fr; grid-template-rows: 280px 280px; }
  .repair-media .gallery-image { min-height: 280px; }
  .project-copy { padding: 25px 19px 22px; }
  .project-specs div { grid-template-columns: 90px 1fr; }
  .gallery-bottom-cta { min-height: 310px; align-items: flex-start; flex-direction: column; justify-content: center; padding: 28px 22px; }
  .gallery-bottom-cta .button { width: 100%; }
  .image-lightbox { padding: 14px; }
}
