@font-face {
  font-family: "Cerebri Sans";
  src: url("assets/fonts/CerebriSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cerebri Sans";
  src: url("assets/fonts/CerebriSans-SemiBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cerebri Sans";
  src: url("assets/fonts/CerebriSans-ExtraBold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold: #ce9233;
  --gold-dark: #a96f1d;
  --black: #181614;
  --black-2: #24211f;
  --ink: #151719;
  --muted: #68737e;
  --line: #e4e0da;
  --soft: #f6f5f2;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(24,22,20,.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cerebri Sans", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1170px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  color: var(--white);
}
.header-top {
  background: var(--black);
  color: #a6a19c;
  font-size: .8rem;
}
.header-top-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.top-contact,
.top-social {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-contact i {
  color: var(--gold);
  margin-right: 7px;
}
.top-social { gap: 14px; }
.top-social a {
  color: #9a9693;
  transition: color .2s ease;
}
.top-social a:hover,
.top-contact a:hover { color: var(--gold); }

.header-shell {
  width: min(1400px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-left: 1px solid rgba(255,255,255,.18);
  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  background: rgba(24,22,20,.36);
  padding: 0 16px;
}
.logo {
  position: relative;
  z-index: 3;
  width: 138px;
  aspect-ratio: 1;
  min-height: 0;
  display: grid;
  place-items: center;
  background: rgba(20,17,14,.96);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 10px;
  margin: 0 0 -46px;
  transform: translateY(16px);
  box-shadow: 0 20px 42px rgba(0,0,0,.34);
}
.site-logo-img {
  width: 112%;
  height: 112%;
  object-fit: contain;
  transform: translateX(3.5%);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.28));
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  font-size: .95rem;
}
.nav a {
  position: relative;
  padding: 28px 13px;
  color: var(--white);
  white-space: nowrap;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav a.active,
.nav a:hover { color: var(--gold); }
.nav a.active::after,
.nav a:hover::after { transform: scaleX(1); }
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-dropdown > a i {
  font-size: .68rem;
}
.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 245px;
  padding: 12px 0;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  border-top: 4px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-submenu a {
  display: block;
  padding: 12px 22px;
  color: var(--black);
  white-space: nowrap;
}
.nav-submenu a::after {
  display: none;
}
.nav-submenu a:hover {
  color: var(--gold);
  background: #f7f4ee;
}
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px;
  background: rgba(255,255,255,.12);
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(206,146,51,.28);
}
.header-call i { color: var(--gold); }
.header-call .call-text {
  display: grid;
  gap: 1px;
  line-height: 1;
}
.header-call strong {
  display: block;
  color: var(--white);
  font-size: .98rem;
}
.header-call small {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--white);
  border-radius: 0;
  padding: 0;
}
.menu-toggle i {
  font-size: 1.25rem;
}
.nav-check {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black) url("assets/images/homepage-header-background.png") center/cover no-repeat;
}
.hero {
  min-height: 820px;
  overflow: visible;
  padding-bottom: 100px;
}
.page-hero {
  min-height: 520px;
  overflow: hidden;
  display: grid;
}
.page-hero.service-hero {
  background-image: url("assets/images/welding-sparks.png");
  background-position: center;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.54) 52%, rgba(0,0,0,.18)),
    radial-gradient(circle at 46% 66%, rgba(206,146,51,.26), transparent 20%),
    radial-gradient(circle at 76% 32%, rgba(255,255,255,.12), transparent 18%);
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: .48;
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 160px 0 130px;
}
.hero-copy {
  max-width: 830px;
  text-align: center;
  margin: 0 auto;
}
.kicker,
.eyebrow,
.page-intro .eyebrow,
.cta-band .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .82rem;
  line-height: 1;
  margin: 0 0 18px;
}
.eyebrow::before,
.page-intro .eyebrow::before,
.cta-band .eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}
.kicker {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.hero h1,
.page-intro h1 {
  margin: 0;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: .98;
}
.hero h1 {
  font-size: clamp(3.2rem, 7.2vw, 6.8rem);
  max-width: 900px;
  margin: 0 auto 24px;
}
.hero p {
  max-width: 720px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,.9);
  font-size: 1.14rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  align-items: center;
}
.section-actions {
  justify-content: flex-start;
  margin-top: 32px;
}
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 27px;
  border: 2px solid transparent;
  border-radius: 0;
  overflow: hidden;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .84rem;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.btn:hover::before { transform: scaleX(1); }
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--black);
}
.btn-light::before { background: var(--gold); }
.btn-light:hover { color: var(--white); }
.btn-outline {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}
.btn-outline::before { background: var(--gold); }
.btn-outline:hover { border-color: var(--gold); }
.btn-dark {
  color: var(--white);
  background: var(--black);
}
.btn-dark::before { background: var(--gold); }

.hero-meta {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: -92px;
  transform: translateX(-50%);
  width: min(1170px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  box-shadow: var(--shadow);
}
.meta-card {
  min-height: 170px;
  padding: 28px 22px;
  color: var(--ink);
  background: var(--white);
  border-right: 1px solid var(--line);
  border-top: 5px solid var(--gold);
}
.meta-card:last-child { border-right: 0; }
.meta-card.hot {
  color: var(--white);
  background: var(--black);
}
.meta-card strong {
  display: block;
  margin: 10px 0 9px;
  font-size: 1.02rem;
  line-height: 1.25;
}
.meta-card p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.55;
}
.meta-card.hot p { color: #bdb8b2; }
.icon-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--gold);
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--ink);
  font-weight: 900;
  font-size: .82rem;
  text-transform: uppercase;
}
.hot .read-more { color: var(--white); }
.read-more span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--gold);
}
.breadcrumb-bar {
  margin-top: 0;
  padding: 17px 0;
  color: #6b6660;
  background: #f4f3f0;
  border-bottom: 1px solid var(--line);
}
.hero + .breadcrumb-bar { margin-top: 92px; }
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  font-size: .88rem;
}
.breadcrumb-bar a:hover,
.breadcrumb-bar [aria-current="page"] { color: var(--black); }

.section { padding: 106px 0; }
.section-after-hero { padding-top: 178px; }
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.section-after-hero .split {
  grid-template-columns: minmax(0,.9fr) minmax(0,1fr);
  align-items: start;
}
.section h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: .98;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}
.about-copy .lead { max-width: 620px; }
.red-title { display: block; color: var(--gold); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 0;
}
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 0;
  color: #303841;
  font-weight: 900;
  border-bottom: 1px solid var(--line);
}
.check-list li::before {
  content: "\f058";
  color: var(--gold);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.service-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}
.service-mosaic::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  width: 18px;
  height: 100%;
  background: var(--gold);
}
.image-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  color: var(--white);
  background: var(--black);
}
.image-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.86)),
    radial-gradient(circle at 72% 20%, rgba(206,146,51,.22), transparent 28%);
}
.image-tile.big {
  min-height: 470px;
  grid-row: span 2;
  background: var(--black) url("assets/welbim/images/welbim-demo-industrial.png") center/cover no-repeat;
}
.custom-tile {
  background: var(--black) url("assets/welbim/images/welbim-demo-custom.png") center/cover no-repeat;
}
.pipeline-tile {
  background: var(--black) url("assets/welbim/images/welbim-demo-pipeline.png") center/cover no-repeat;
}
.tile-icon,
.tile-content,
.arrow-box {
  position: relative;
  z-index: 2;
}
.tile-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--white);
  border: 4px solid var(--gold);
  font-size: 1.45rem;
}
.image-tile h3 {
  margin: 0 0 10px;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}
.image-tile p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: .95rem;
}
.arrow-box {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--gold);
}

.about-band {
  background:
    linear-gradient(rgba(246,245,242,.94), rgba(246,245,242,.94)),
    linear-gradient(90deg, transparent 0 49%, rgba(206,146,51,.08) 49% 51%, transparent 51%);
}
.services-band,
.locations-band {
  color: var(--white);
  background:
    linear-gradient(rgba(24,22,20,.93), rgba(24,22,20,.94)),
    url("assets/images/homepage-header-background.png") center/cover no-repeat;
}
.services-band h2,
.locations-band h2,
.services-band .lead,
.locations-band .lead {
  color: var(--white);
}
.services-band .red-title,
.locations-band .red-title { color: var(--gold); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
  margin-top: 42px;
}
.service-card,
.why-item,
.stat-card,
.gallery-card,
.quote-form {
  background: var(--white);
  box-shadow: var(--shadow);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 34px 28px;
  color: var(--black);
  border-bottom: 5px solid var(--gold);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  color: var(--white);
  background: var(--black);
}
.service-card .letters {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: var(--gold);
  border: 3px dashed var(--gold);
  font-size: 1.55rem;
}
.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
  line-height: 1.12;
  font-weight: 900;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}
.service-card:hover p { color: #c8c2bb; }
.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: max-content;
  min-height: 42px;
  margin-top: auto;
  padding: 0 18px;
  color: var(--white);
  background: var(--black);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.service-card:hover .card-button {
  color: var(--black);
  background: var(--gold);
}

.dark-panel {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.dark-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  background: #f4f3f0;
}
.dark-panel .container {
  position: relative;
  z-index: 2;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
}
.why-grid > div:first-child {
  grid-column: 1 / -1;
  max-width: 820px;
}
.why-item {
  min-height: 250px;
  padding: 36px;
  border-top: 5px solid var(--gold);
}
.why-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--black);
  border: 4px solid var(--gold);
}
.why-item h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 900;
}
.why-item p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(24,22,20,.96), rgba(24,22,20,.86)),
    url("assets/images/homepage-header-background.png") center/cover no-repeat;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 34%;
  background: rgba(206,146,51,.88);
  clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
}
.cta-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.cta-shell h2 {
  max-width: 780px;
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}
.cta-shell p {
  margin: 0;
  color: rgba(255,255,255,.84);
}
.cta-band .actions {
  display: grid;
  min-width: 275px;
}
.cta-band .btn { width: 100%; }

.page-intro {
  position: relative;
  z-index: 2;
  max-width: 900px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 84px;
  box-sizing: border-box;
}
.page-intro h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.7vw, 5.2rem);
}
.page-intro .lead {
  max-width: 820px;
  color: rgba(255,255,255,.9);
}

.media-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: var(--black) url("assets/images/homepage-header-background.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.72));
}
.media-label {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  padding: 24px 28px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border-left: 6px solid var(--gold);
}
.media-label i {
  color: var(--gold);
  margin-bottom: 8px;
}
.media-label span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.media-label strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 38px;
}
.stat-card {
  min-height: 185px;
  padding: 34px;
  border-bottom: 5px solid var(--gold);
}
.locations-band .stat-card {
  color: var(--ink);
}
.stat-icon {
  color: var(--gold);
  font-size: 1.65rem;
  margin-bottom: 18px;
}
.stat-card strong {
  display: block;
  color: var(--black);
  font-size: 3rem;
  line-height: .92;
  font-weight: 900;
}
.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 30px;
}
.gallery-card {
  overflow: hidden;
}
.gallery-icon {
  position: relative;
  height: 255px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.9);
  background:
    linear-gradient(rgba(24,22,20,.72), rgba(24,22,20,.85)),
    url("assets/images/industrial-welding-tile.png") center/cover no-repeat;
  font-size: clamp(4rem, 8vw, 6rem);
}
.gallery-card:nth-child(2) .gallery-icon,
.gallery-card:nth-child(6) .gallery-icon {
  background:
    linear-gradient(rgba(24,22,20,.7), rgba(24,22,20,.84)),
    url("assets/images/custom-fabrication-tile.png") center/cover no-repeat;
}
.gallery-card:nth-child(3) .gallery-icon {
  background:
    linear-gradient(rgba(24,22,20,.68), rgba(24,22,20,.84)),
    url("assets/images/field-pipeline-welding.png") center/cover no-repeat;
}
.gallery-card-body {
  padding: 26px;
  border-bottom: 5px solid var(--gold);
}
.gallery-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  font-weight: 900;
}
.gallery-card p {
  margin: 0;
  color: var(--muted);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 46px;
  align-items: start;
}
.service-detail-main {
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 8px solid var(--gold);
}
.service-detail-image {
  min-height: 340px;
  background: var(--black) url("assets/images/welding-sparks.png") center/cover no-repeat;
}
.service-detail-content {
  padding: 42px;
}
.service-detail-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.service-detail-content p {
  color: var(--muted);
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 28px;
}
.detail-list div {
  padding: 20px;
  background: #f8f7f4;
  border-left: 5px solid var(--gold);
  font-weight: 900;
}
.service-sidebar {
  display: grid;
  gap: 22px;
}
.service-menu,
.service-quote-card {
  padding: 30px;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}
.service-menu h3,
.service-quote-card h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1.25rem;
  text-transform: uppercase;
}
.service-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #302e2c;
  color: #c8c2bb;
  font-weight: 900;
}
.service-menu a:hover,
.service-menu a.active {
  color: var(--gold);
}
.service-quote-card {
  background: var(--gold);
  color: var(--black);
}
.service-quote-card h3,
.service-quote-card p {
  color: var(--black);
}
.service-quote-card .btn {
  width: 100%;
  margin-top: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-box {
  padding: 42px;
  color: var(--white);
  background: var(--black);
  border-top: 8px solid var(--gold);
  box-shadow: var(--shadow);
}
.contact-heading {
  margin: 0 0 18px;
  color: var(--white);
}
.contact-logo-placeholder {
  display: grid;
  place-items: center;
  min-height: 175px;
  margin: 18px 0 30px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(206,146,51,.14), rgba(255,255,255,.05)),
    rgba(255,255,255,.04);
  border: 1px solid rgba(206,146,51,.72);
}
.contact-logo-img {
  width: min(100%, 285px);
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.32));
}
.contact-box p {
  color: #c8c2bb;
}
.contact-list {
  display: grid;
  gap: 19px;
  margin-top: 28px;
}
.contact-list a,
.contact-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--white);
  font-weight: 900;
}
.contact-list span {
  width: 22px;
  color: var(--gold);
  flex: 0 0 22px;
}
.contact-list .location-lines ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-list .location-lines li {
  position: relative;
  padding-left: 15px;
}
.contact-list .location-lines li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.quote-form {
  padding: 42px;
  border-top: 8px solid var(--gold);
}
.thank-you-section {
  min-height: 560px;
  display: grid;
  align-items: center;
}
.thank-you-card {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 74px);
  text-align: center;
  background: var(--white);
  border-top: 8px solid var(--gold);
  box-shadow: var(--shadow);
}
.thank-you-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-size: 2.15rem;
}
.thank-you-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2.5vw, 2.4rem);
  white-space: nowrap;
}
.thank-you-card > p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
}
.redirect-notice {
  margin: 30px 0 26px;
  padding: 18px 22px;
  color: var(--black);
  background: var(--light-gray);
  border-left: 4px solid var(--gold);
  font-weight: 800;
}
.redirect-notice strong {
  color: var(--gold-dark);
  font-size: 1.15em;
}
@media (max-width: 640px) {
  .thank-you-card h2 {
    white-space: normal;
  }
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}
.field {
  display: grid;
  gap: 8px;
}
.field.full { grid-column: 1 / -1; }
label {
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
}
input,
textarea,
select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #f8f7f4;
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(206,146,51,.28);
  border-color: var(--gold);
}

.site-footer {
  color: #9a9693;
  background:
    linear-gradient(rgba(24,22,20,.96), rgba(24,22,20,.98)),
    url("assets/images/homepage-header-background.png") center/cover no-repeat;
  padding: 82px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr .9fr .9fr;
  gap: 46px;
  padding-bottom: 58px;
}
.footer-logo {
  color: var(--white);
  width: 132px;
  aspect-ratio: 1;
  min-height: 0;
  margin: 0 0 22px;
  padding: 9px;
  transform: none;
  background: rgba(20,17,14,.96);
  border: 2px solid var(--gold);
  box-shadow: 0 15px 30px rgba(0,0,0,.24);
}
.footer-title {
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  display: grid;
  gap: 10px;
  font-weight: 700;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 22px max(20px, calc((100vw - 1170px) / 2));
  color: #9a9693;
  background: #12100f;
  border-top: 1px solid #302e2c;
  font-size: .9rem;
}

@media (max-width: 1180px) {
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 45;
    pointer-events: none;
    background: rgba(0,0,0,.62);
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility .24s ease;
  }
  body:has(.nav-check:checked)::before {
    opacity: 1;
    visibility: visible;
  }
  .header-shell {
    flex-wrap: wrap;
    padding: 14px 16px;
    background: rgba(24,22,20,.9);
    border-color: rgba(206,146,51,.42);
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
  }
  .nav-check:checked + .menu-toggle {
    background: transparent;
    color: var(--white);
  }
  .nav-check:checked + .menu-toggle i::before {
    content: "\f00d";
  }
  .header-call {
    display: none;
    width: 100%;
  }
  .nav {
    display: grid;
    gap: 8px;
    width: 100%;
    margin-top: 0;
    padding: 0 11px;
    background: #171411;
    border-top: 0 solid var(--gold);
    box-shadow: 0 20px 45px rgba(0,0,0,.35);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-10px);
    transition: max-height .32s ease, opacity .22s ease, transform .22s ease, visibility .22s ease, margin .22s ease, padding .22s ease, border-width .22s ease;
  }
  .nav-check:checked ~ .nav {
    margin-top: 10px;
    padding: 11px;
    border-top-width: 3px;
    max-height: 680px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }
  .nav a {
    padding: 13px 16px;
    color: var(--white);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.12);
    border-left: 4px solid transparent;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
  }
  .nav a:hover {
    background: rgba(206,146,51,.12);
    border-color: rgba(206,146,51,.45);
    color: var(--gold);
    transform: translateX(3px);
  }
  .nav a.active {
    color: var(--gold);
    background: rgba(206,146,51,.14);
    border-color: rgba(206,146,51,.5);
    border-left-color: var(--gold);
  }
  .nav-dropdown {
    display: grid;
    gap: 8px;
  }
  .nav-dropdown > a {
    display: flex;
    justify-content: space-between;
  }
  .nav-submenu {
    position: static;
    min-width: 0;
    display: grid;
    gap: 8px;
    padding: 0 0 0 18px;
    border-top: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-submenu a {
    color: rgba(255,255,255,.78);
    padding: 11px 14px;
    background: rgba(255,255,255,.035);
    border-color: rgba(255,255,255,.1);
  }
  .nav-submenu a:hover {
    color: var(--gold);
    background: transparent;
  }
  .nav a::after { display: none; }
  .hero-content {
    padding-top: 190px;
  }
  .hero-meta {
    grid-template-columns: repeat(2, minmax(0,1fr));
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(100% - 40px, 1170px);
    margin: -110px auto 0;
  }
  .hero + .breadcrumb-bar { margin-top: 0; }
  .section-after-hero { padding-top: 90px; }
  .split,
  .contact-layout,
  .service-detail-layout,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .cta-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1170px); }
  .header-top-inner,
  .top-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .top-social { display: none; }
  .header-top { padding: 8px 0; }
  .header-shell {
    width: min(100% - 28px, 1170px);
    min-height: 64px;
    gap: 10px;
    padding: 8px 14px;
  }
  .logo {
    width: 88px;
    aspect-ratio: 1;
    min-height: 0;
    margin: 0 0 -24px;
    padding: 6px;
    transform: translateY(6px);
    border-radius: 4px;
  }
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }
  .hero-content {
    min-height: auto;
    padding: 226px 0 82px;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }
  .hero p {
    margin-bottom: 26px;
  }
  .actions {
    gap: 12px;
  }
  .hero .actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero .btn,
  .section-actions .btn {
    width: 100%;
  }
  .page-hero { min-height: 430px; }
  .page-intro {
    min-height: 430px;
    padding: 168px 0 58px;
  }
  .page-intro h1 { margin-bottom: 18px; }
  .breadcrumb-bar { padding: 13px 0; }
  .hero-meta,
  .services-grid,
  .gallery-grid,
  .stats,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-meta {
    width: min(100% - 28px, 1170px);
    gap: 0;
    margin: -42px auto 0;
  }
  .meta-card {
    min-height: auto;
    padding: 23px 20px;
  }
  .meta-card { border-right: 0; }
  .section { padding: 64px 0; }
  .section-after-hero { padding-top: 62px; }
  .section h2 { font-size: clamp(2.2rem, 12vw, 3.15rem); }
  .split,
  .contact-layout,
  .service-detail-layout,
  .why-grid {
    gap: 34px;
  }
  .check-list {
    margin-top: 24px;
  }
  .service-mosaic {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-mosaic::before { display: none; }
  .image-tile {
    min-height: 260px;
    padding: 25px;
  }
  .image-tile.big {
    min-height: 350px;
    grid-row: auto;
  }
  .services-grid,
  .gallery-grid,
  .stats {
    gap: 16px;
  }
  .service-card,
  .gallery-card,
  .stat-card,
  .why-card {
    min-height: auto;
    padding: 26px 22px;
  }
  .about-band {
    padding: 66px 0;
  }
  .cta-band {
    padding: 56px 0;
  }
  .cta-band::before { display: none; }
  .cta-shell {
    gap: 24px;
  }
  .cta-band .actions,
  .cta-band .btn {
    width: 100%;
    min-width: 0;
  }
  .contact-box,
  .quote-form,
  .service-detail-content,
  .sidebar-card,
  .service-quote-card {
    padding: 28px 22px;
  }
  .contact-logo-placeholder {
    min-height: 145px;
    margin: 16px 0 24px;
    padding: 22px;
  }
  .footer-grid {
    gap: 30px;
    padding-bottom: 42px;
  }
  .site-footer {
    padding-top: 58px;
  }
  .field.full { grid-column: auto; }
  .detail-list { grid-template-columns: 1fr; }
}
