:root {
  --bg: #07080b;
  --bg-soft: #111319;
  --surface: rgba(19, 23, 30, 0.84);
  --surface-strong: rgba(16, 20, 27, 0.97);
  --text: #f4efe4;
  --muted: #b9b3a8;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #f2ba17;
  --accent-2: #ffe082;
  --accent-3: #8e6a12;
  --success: #f5d474;
  --shadow: 0 28px 110px rgba(0, 0, 0, 0.46);
  --radius: 34px;
  --radius-sm: 20px;
  --container: min(1460px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body.admin-bar .header {
  top: 32px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 107, 54, 0.17), transparent 24%),
    radial-gradient(circle at 18% 88%, rgba(214, 167, 106, 0.14), transparent 28%),
    linear-gradient(180deg, #050608 0%, #0b0d12 38%, #131821 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.24;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  pointer-events: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

p,
h1,
h2,
h3,
ul,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(214, 167, 106, 0.08),
      rgba(214, 167, 106, 0.08) 14px,
      rgba(255, 107, 54, 0.09) 14px,
      rgba(255, 107, 54, 0.09) 28px
    ),
    rgba(10, 11, 14, 0.92);
  backdrop-filter: blur(16px);
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 14px 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 10, 14, 0.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand__eyebrow,
.eyebrow {
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand__name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.nav a:not(.button) {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.nav a:hover:not(.button),
.nav a:focus-visible:not(.button) {
  color: var(--text);
}

.nav-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    linear-gradient(135deg, #ff8a44, var(--accent));
  color: #120b07;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 20px 50px rgba(255, 107, 54, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 26px 54px rgba(255, 107, 54, 0.34);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 96px 0 74px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -6% 0;
  height: 52%;
  background:
    linear-gradient(180deg, transparent, rgba(255, 107, 54, 0.09)),
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.05) 12% 13%, transparent 13% 100%);
  transform: perspective(1000px) rotateX(74deg);
  transform-origin: bottom;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 54%, rgba(214, 167, 106, 0.1), transparent 32%),
    radial-gradient(circle at 82% 34%, rgba(255, 107, 54, 0.1), transparent 28%);
  pointer-events: none;
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black, transparent 86%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 68px;
  align-items: center;
}

.hero__copy {
  display: grid;
  gap: 26px;
  max-width: 820px;
}

.hero h1,
.section-heading h2,
.split-grid h2,
.gallery-copy h2,
.contact h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.hero h1 span {
  display: inline-block;
  color: var(--accent);
  text-shadow: 0 0 36px rgba(255, 107, 54, 0.12);
}

.hero__lead,
.section-heading p,
.split-grid p,
.gallery-copy p,
.contact__copy p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.hero__lead {
  max-width: 58ch;
  font-size: 1.12rem;
}

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

.hero__detail {
  position: relative;
  min-height: 132px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(12, 14, 18, 0.52);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.hero__detail::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
}

.hero__detail span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__detail strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__highlights li {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__info,
.hero__callout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  align-content: center;
  height: 100%;
  padding: 28px;
}

.hero__panel--info,
.hero__panel--callout {
  background:
    radial-gradient(circle at top right, rgba(214, 167, 106, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(13, 16, 22, 0.84);
}

.hero__panel--info::after,
.hero__panel--callout::after {
  display: none;
}

.hero__info strong,
.heavy-card h3,
.hero__callout strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero__info-list,
.heavy-feature-list,
.heavy-spec-list {
  display: grid;
  gap: 12px;
}

.hero__info-list li,
.heavy-spec-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  font-weight: 700;
  color: var(--text);
}

.hero__callout span {
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__callout p,
.heavy-copy p,
.heavy-card p {
  color: var(--muted);
}

.hero__visual {
  display: grid;
  grid-template-columns: 1.42fr 0.88fr;
  gap: 20px;
  align-items: stretch;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.hero__panel::before,
.gallery-photo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) - 12px);
  pointer-events: none;
  z-index: 1;
}

.hero__panel img,
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__panel--main {
  grid-row: span 2;
  min-height: 620px;
}

.hero__panel--side {
  min-height: 296px;
}

.hero__panel--accent {
  min-height: 296px;
}

.hero__panel::after,
.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.22) 55%, rgba(5, 7, 10, 0.7));
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(8, 10, 14, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  z-index: 2;
}

.hero__badge span {
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__badge strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.ticker__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 20px 0;
  animation: marquee 34s linear infinite;
}

.ticker__track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker__track span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 20px rgba(255, 91, 46, 0.4);
}

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

.stats {
  position: relative;
  z-index: 3;
  margin-top: -26px;
  padding: 0 0 22px;
}

.stats__grid,
.services-grid,
.zone-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.stat-card,
.service-card,
.value-card,
.zone-card,
.process-card,
.faq details,
.contact__card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(13, 16, 22, 0.78);
  box-shadow: var(--shadow);
}

.stat-card {
  min-height: 210px;
  padding: 28px;
}

.stat-card::before,
.service-card::before,
.value-card::before,
.zone-card::before,
.process-card::before,
.contact__card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.stat-card__value {
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 4.8vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--success);
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(214, 167, 106, 0.14);
}

.stat-card__value--small {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
}

.section {
  padding: 108px 0;
}

.section--dark {
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 167, 106, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(0, 0, 0, 0.04));
}

.section--angled {
  position: relative;
}

.section--angled::before {
  content: "";
  position: absolute;
  inset: 34px 0 auto;
  height: 54px;
  background:
    linear-gradient(-45deg, transparent 12px, rgba(255, 91, 46, 0.08) 12px),
    linear-gradient(45deg, transparent 12px, rgba(255, 176, 0, 0.06) 12px);
  opacity: 0.55;
  pointer-events: none;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-grid h2,
.gallery-copy h2,
.contact h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.zone-card,
.process-card,
.value-card {
  min-height: 244px;
  padding: 30px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.value-card:hover,
.zone-card:hover,
.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 167, 106, 0.28);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
}

.service-card {
  display: grid;
  gap: 14px;
}

.service-card__number,
.process-card span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 0.9;
  color: rgba(214, 167, 106, 0.94);
}

.service-card h3,
.value-card h3,
.zone-card h3,
.process-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-card p,
.value-card p,
.zone-card p,
.process-card p,
.faq p,
.contact__meta p {
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.stack {
  display: grid;
  gap: 16px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.65;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.value-stack {
  display: grid;
  gap: 18px;
}

.section--heavy {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 107, 54, 0.08), transparent 24%),
    radial-gradient(circle at 100% 100%, rgba(214, 167, 106, 0.08), transparent 26%);
}

.heavy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  gap: 28px;
  align-items: stretch;
}

.heavy-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.heavy-feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.heavy-feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.65;
}

.heavy-feature-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

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

.heavy-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(13, 16, 22, 0.82);
  box-shadow: var(--shadow);
}

.heavy-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.heavy-card--statement,
.heavy-card--specs {
  display: grid;
  gap: 18px;
  align-content: center;
}

.heavy-card--photo {
  min-height: 560px;
  padding: 0;
}

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

.heavy-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.18) 52%, rgba(5, 7, 10, 0.74));
  pointer-events: none;
}

.heavy-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(8, 10, 14, 0.74);
  backdrop-filter: blur(18px);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.value-card {
  min-height: 0;
}

.zone-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.zone-card--wide {
  grid-column: span 4;
  min-height: 0;
}

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

.section--gallery {
  background:
    radial-gradient(circle at top left, rgba(255, 107, 54, 0.08), transparent 24%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015));
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.55fr) minmax(220px, 0.5fr);
  gap: 22px;
  align-items: stretch;
}

.gallery-copy {
  display: grid;
  gap: 20px;
  align-content: center;
  padding-right: 20px;
}

.gallery-photo {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.gallery-photo--tall {
  min-height: 600px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 24px 26px;
}

.faq summary {
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.faq details p {
  margin-top: 12px;
}

.contact__card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  padding: 40px;
  background:
    radial-gradient(circle at top right, rgba(214, 167, 106, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.contact__copy {
  display: grid;
  gap: 16px;
}

.contact__actions,
.contact__meta {
  display: grid;
  gap: 12px;
  align-content: start;
}

.floating-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8c4a, var(--accent));
  color: #160d08;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 44px rgba(255, 107, 54, 0.42);
}

.footer {
  padding: 36px 0 92px;
  color: var(--muted);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-main--default {
  padding: 120px 0 90px;
}

.page-shell {
  max-width: 980px;
}

.page-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(13, 16, 22, 0.82);
  box-shadow: var(--shadow);
}

.page-shell__title {
  margin-bottom: 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.entry-content {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.entry-content > * + * {
  margin-top: 1rem;
}

.entry-content a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(214, 167, 106, 0.5);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker__track,
  [data-reveal] {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .heavy-layout,
  .split-grid,
  .contact__card,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .heavy-visuals {
    grid-template-columns: 1fr;
  }

  .heavy-card--photo {
    min-height: 420px;
  }

  .zone-card--wide {
    grid-column: span 2;
  }

  .gallery-copy {
    padding-right: 0;
  }
}

@media (max-width: 860px) {
  body.admin-bar .header {
    top: 46px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    background: rgba(8, 10, 14, 0.96);
    box-shadow: var(--shadow);
  }

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

  .hero {
    padding-top: 62px;
  }

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

  .hero__panel--main,
  .hero__panel--side,
  .hero__panel--accent,
  .gallery-photo--tall {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .topbar__inner {
    font-size: 0.76rem;
  }

  .section,
  .hero {
    padding: 64px 0;
  }

  .stats {
    margin-top: 0;
    padding-top: 6px;
  }

  .stats__grid,
  .services-grid,
  .zone-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .zone-card--wide {
    grid-column: span 1;
  }

  .stat-card,
  .service-card,
  .zone-card,
  .process-card,
  .value-card,
  .heavy-card,
  .faq details {
    padding: 22px;
  }

  .heavy-card--photo {
    min-height: 320px;
    padding: 0;
  }

  .contact__card {
    padding: 24px;
  }

  .page-card {
    padding: 24px;
  }

  .hero__actions,
  .contact__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2,
  .split-grid h2,
  .gallery-copy h2,
  .contact h2 {
    word-break: break-word;
  }

  .ticker__track span {
    font-size: 1.55rem;
  }
}

.home-premium {
  overflow: clip;
}

.showcase {
  position: relative;
  padding: 88px 0 36px;
}

.showcase__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 8, 11, 0.92) 0%, rgba(6, 8, 11, 0.78) 34%, rgba(6, 8, 11, 0.36) 64%, rgba(6, 8, 11, 0.72) 100%),
    linear-gradient(180deg, rgba(6, 8, 11, 0.18), rgba(6, 8, 11, 0.8));
}

.showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.04);
}

.showcase__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.56fr);
  gap: 28px;
  align-items: end;
  min-height: 72svh;
}

.showcase__copy,
.showcase__card,
.trustbar__item,
.service-pillar,
.heavy-showcase__panel,
.advantage-card,
.territory__card,
.faq-slab__list details,
.contact-band__card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.showcase__copy {
  display: grid;
  gap: 22px;
  max-width: 820px;
}

.showcase__copy h1,
.section-intro h2,
.contact-band__copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.showcase__lead,
.section-intro p,
.contact-band__copy p,
.showcase__card p,
.service-pillar p,
.advantage-card p,
.territory__card p,
.faq-slab__list p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.showcase__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.showcase__bullets li {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.42);
  backdrop-filter: blur(18px);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase__card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(9, 11, 15, 0.78);
  backdrop-filter: blur(18px);
}

.showcase__card h2,
.heavy-showcase__panel h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.showcase__metrics {
  display: grid;
  gap: 14px;
}

.showcase__metric {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.showcase__metric strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.showcase__metric span {
  color: var(--muted);
}

.trustbar {
  position: relative;
  z-index: 2;
  margin-top: -18px;
  padding-bottom: 34px;
}

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

.trustbar__item {
  display: grid;
  gap: 8px;
  min-height: 200px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(10, 12, 16, 0.88);
}

.trustbar__item span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 0.9;
  color: var(--success);
  text-transform: uppercase;
}

.home-section,
.territory,
.faq-slab,
.contact-band {
  padding: 92px 0;
}

.section-intro {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin-bottom: 30px;
}

.section-intro--narrow {
  max-width: 660px;
}

.section-intro--light h2,
.section-intro--light p {
  color: var(--muted);
}

.section-intro--light h2 {
  color: var(--text);
}

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

.service-pillar {
  display: grid;
  gap: 14px;
  min-height: 230px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(12, 15, 20, 0.82);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 186, 23, 0.28);
}

.service-pillar span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  line-height: 0.9;
  color: rgba(255, 224, 130, 0.92);
}

.service-pillar h3,
.advantage-card h3,
.territory__card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.service-pillar--featured {
  background:
    radial-gradient(circle at top right, rgba(242, 186, 23, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(15, 18, 23, 0.9);
}

.heavy-showcase {
  padding: 100px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(242, 186, 23, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(6, 8, 11, 0.02));
}

.heavy-showcase__layout {
  display: grid;
  gap: 30px;
}

.heavy-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  gap: 22px;
}

.heavy-showcase__primary,
.heavy-showcase__secondary {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.heavy-showcase__primary {
  min-height: 680px;
}

.heavy-showcase__secondary {
  min-height: 280px;
}

.heavy-showcase__primary img,
.heavy-showcase__secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heavy-showcase__primary::after,
.heavy-showcase__secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 8, 11, 0.18) 55%, rgba(7, 8, 11, 0.78));
}

.heavy-showcase__primary figcaption,
.heavy-showcase__secondary figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 10, 14, 0.72);
  backdrop-filter: blur(16px);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.heavy-showcase__stack {
  display: grid;
  gap: 22px;
}

.heavy-showcase__panel {
  display: grid;
  gap: 16px;
  min-height: 0;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(242, 186, 23, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(12, 15, 20, 0.9);
}

.heavy-showcase__list {
  display: grid;
  gap: 12px;
}

.heavy-showcase__list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.6;
}

.heavy-showcase__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

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

.advantage-card {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(12, 15, 20, 0.82);
}

.territory {
  background:
    radial-gradient(circle at top left, rgba(242, 186, 23, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.territory__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.territory__card {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(11, 14, 18, 0.84);
}

.territory__card--wide {
  grid-column: span 4;
  min-height: 0;
}

.faq-slab {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(6, 8, 11, 0.04)),
    rgba(8, 10, 14, 0.36);
}

.faq-slab__list {
  display: grid;
  gap: 14px;
}

.faq-slab__list details {
  padding: 24px 26px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(11, 14, 18, 0.84);
}

.faq-slab__list summary {
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.faq-slab__list details p {
  margin-top: 12px;
}

.contact-band {
  padding-bottom: 110px;
}

.contact-band__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(242, 186, 23, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(12, 15, 20, 0.92);
}

.contact-band__copy {
  display: grid;
  gap: 14px;
}

.contact-band__actions {
  display: grid;
  gap: 12px;
  align-content: center;
}

@media (max-width: 1180px) {
  .showcase__layout,
  .heavy-showcase__grid,
  .contact-band__card {
    grid-template-columns: 1fr;
  }

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

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

  .territory__card--wide {
    grid-column: span 2;
  }

  .heavy-showcase__primary {
    min-height: 520px;
  }
}

@media (max-width: 860px) {
  .showcase {
    padding-top: 64px;
  }

  .showcase__layout {
    min-height: auto;
  }

  .showcase__copy h1,
  .section-intro h2,
  .contact-band__copy h2 {
    font-size: clamp(2.8rem, 12vw, 4.8rem);
  }

  .showcase__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-section,
  .territory,
  .faq-slab,
  .contact-band,
  .heavy-showcase {
    padding: 64px 0;
  }

  .showcase__card,
  .trustbar__item,
  .service-pillar,
  .heavy-showcase__panel,
  .advantage-card,
  .territory__card,
  .faq-slab__list details,
  .contact-band__card {
    padding: 22px;
    border-radius: 24px;
  }

  .service-pillars,
  .advantage-grid,
  .trustbar__grid,
  .territory__grid {
    grid-template-columns: 1fr;
  }

  .territory__card--wide {
    grid-column: span 1;
  }

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

  .heavy-showcase__primary,
  .heavy-showcase__secondary {
    min-height: 320px;
  }
}
