:root {
  --gold: #f0b429;
  --gold-2: #d9a017;
  --ink: #1c1c1c;
  --muted: #6d6d6d;
  --paper: #ffffff;
  --tint: #f6f4ef;
  --line: #e8e4dc;
  --dark: #151515;
  --display: Jost, system-ui, sans-serif;
  --sans: Jost, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: rgba(240,180,41,.35); color: var(--ink); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, .hero-copy h1, .page-banner h1, .sec-head h2, .prose h2, .about h2, .callback h2, .contact-grid h2, .regions-intro h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.02em;
  font-style: normal;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: 16px; top: -48px; z-index: 80; background: var(--gold); color: var(--ink); padding: 10px 16px; }
.skip-link:focus { top: 16px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.btn {
  --btn-rail: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  border: 0;
  padding: 14px 28px 14px 32px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  isolation: isolate;
  transition: background .2s, color .2s, transform .15s, padding .2s;
}
.btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--btn-rail);
  transition: width .2s, background .2s;
}
.btn::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(0,0,0,.18);
  transform: scaleX(.28);
  transform-origin: left center;
  transition: transform .28s ease, background .2s;
}
.btn:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  padding-left: 34px;
}
.btn:hover::before { width: 6px; }
.btn:hover::after { transform: scaleX(1); background: rgba(0,0,0,.28); }
.btn:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,.5);
  --btn-rail: var(--gold);
}
.btn-ghost::after { background: rgba(255,255,255,.35); }
.btn-ghost:hover { background: white; color: var(--ink); --btn-rail: var(--ink); }
.btn-ghost:hover::after { background: rgba(0,0,0,.2); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  --btn-rail: var(--gold);
}
.btn-outline:hover { background: var(--ink); color: white; --btn-rail: var(--gold); }
.btn-outline:hover::after { background: rgba(255,255,255,.25); }

.topbar {
  position: relative;
  background:
    linear-gradient(90deg, rgba(240,180,41,.08), transparent 28%),
    #121212;
  color: #cfcfcf;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 18%, transparent 52%);
}
.topbar svg { flex: 0 0 auto; }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  gap: 24px;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  min-height: 44px;
  color: #d6d6d6;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: color .2s, background .2s;
}
.topbar-left .topbar-item:first-child { padding-left: 0; }
.topbar-right .topbar-item:last-of-type { border-right: 0; }
.topbar-item span { display: grid; gap: 1px; line-height: 1.15; min-width: 0; }
.topbar-item small {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.46);
  font-weight: 500;
}
.topbar-item b {
  font-size: 12px;
  font-weight: 600;
  color: #f0f0f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-item svg { color: var(--gold); }
.topbar-item--mail:hover,
.topbar-item--place:hover { color: white; background: rgba(255,255,255,.03); }
.topbar-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
  padding: 0 14px 0 8px;
  min-height: 44px;
  color: white;
  transition: background .2s;
}
.topbar-call__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 0 4px rgba(240,180,41,.12);
}
.topbar-call__text { display: grid; gap: 1px; line-height: 1.1; }
.topbar-call__text small {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.topbar-call strong {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .01em;
  white-space: nowrap;
}
.topbar-call:hover { background: rgba(255,255,255,.03); }
.topbar-call:hover .topbar-call__icon { background: #ffc44a; }
.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,.08);
}
.topbar-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: #ececec;
  background: rgba(255,255,255,.03);
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.topbar-social a:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); transition: box-shadow .3s, background .3s; }
.site-header.is-stuck { box-shadow: 0 4px 20px rgba(0,0,0,.06); background: rgba(255,255,255,.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 24px; transition: min-height .3s; }
.site-header.is-stuck .header-inner { min-height: 68px; }
.brand { display: flex; width: 140px; height: 58px; flex: 0 0 auto; transition: width .3s, height .3s; }
.site-header.is-stuck .brand { width: 120px; height: 50px; }
.brand img { object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a { position: relative; display: inline-flex; align-items: center; gap: 4px; padding: 12px 14px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; transition: color .2s; }
.main-nav a::after { content: ''; position: absolute; bottom: 6px; left: 14px; right: 14px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a:hover, .main-nav a.is-active { color: var(--gold-2); }
.has-sub { position: relative; }
.submenu {
  position: absolute; top: 100%; left: -8px; min-width: 260px; background: white;
  border: 1px solid var(--line); border-radius: 8px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s, visibility .25s, transform .25s;
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.submenu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: flex; align-items: center; padding: 11px 20px; font-size: 13px; text-transform: none; letter-spacing: 0; font-weight: 500; transition: background .15s, color .15s, padding-left .2s; }
.submenu a:hover { background: var(--tint); color: var(--gold-2); padding-left: 24px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; border: 0; background: none; cursor: pointer; padding: 8px; border-radius: 6px; transition: background .2s; }
.nav-toggle:hover { background: var(--tint); }
.mobile-nav { display: none; }

.hero { position: relative; height: min(86vh, 820px); min-height: 560px; overflow: hidden; color: white; background: #111; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { height: 100%; object-fit: cover; transform: scale(1.02); animation: heroZoom 9s ease-out both; }
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: .08;
  mix-blend-mode: soft-light;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,8,8,.82) 0%, rgba(8,8,8,.46) 48%, rgba(8,8,8,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.36) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 110px 0 72px;
}
.hero-copy__inner {
  max-width: 760px;
  animation: heroContentIn .8s ease both;
}
.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-copy h1 { font-size: clamp(42px, 6vw, 82px); line-height: .98; margin: 0 0 18px; font-weight: 700; font-style: normal; max-width: 11ch; }
.hero-copy p { font-size: 18px; max-width: 620px; color: #eee; margin: 0 0 28px; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.45);
}
.hero-link:hover { border-bottom-color: var(--gold); color: var(--gold); }
.hero-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
}
.hero-progress {
  width: min(420px, 52vw);
  height: 3px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}
.hero-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold), #fff2c0);
  animation: heroProgress 7s linear both;
}
.hero-count {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: rgba(255,255,255,.72);
}
.hero-count strong {
  color: white;
  font-family: var(--sans);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}
.hero-nav {
  position: absolute; top: 50%; z-index: 3; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.08);
  color: white; display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(8px); transition: background .2s, border-color .2s, transform .2s;
}
.hero-nav:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.46); transform: translateY(-2px); }
.hero-nav.prev { left: 18px; }
.hero-nav.next { right: 18px; }
.hero-dots { position: absolute; bottom: 34px; right: max(20px, calc((100vw - 1200px) / 2 + 20px)); left: auto; transform: none; display: flex; gap: 10px; z-index: 3; }
.hero-dots button { width: 11px; height: 11px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.18); transition: transform .2s, background .2s, border-color .2s; }
.hero-dots button.is-active { background: var(--gold); border-color: var(--gold); transform: scale(1.12); }
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.0); }
}
@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.section { padding: clamp(72px, 8vw, 96px) 0; }
.section--tint { background: var(--tint); }
.sec-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 40px; }
.sec-head h2, .prose h2, .about h2, .callback h2, .contact-grid h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.15; margin: 8px 0 0; }
.sec-head p { color: var(--muted); max-width: 420px; }
.sec-head > div:last-child { display: grid; gap: 14px; justify-items: start; }
.about { padding: clamp(72px, 8vw, 96px) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about p, .prose p { color: var(--muted); font-size: 16px; margin: 0 0 14px; }
.about .btn { margin-top: 12px; }
.about-photo { position: relative; }
.about-photo img { height: 520px; object-fit: cover; }
.about-photo:after { content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 8px solid var(--gold); z-index: -1; }

.band { background: var(--ink); color: white; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats article { padding: 40px 0; border-right: 1px solid rgba(255,255,255,.08); text-align: center; position: relative; }
.stats article:last-child { border-right: 0; }
.stats-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 12px; background: rgba(240,180,41,.1); color: var(--gold); }
.stats strong { display: block; font-family: var(--sans); font-size: 48px; color: var(--gold); line-height: 1; margin-bottom: 8px; font-weight: 800; }
.stats span { color: #a0a0a0; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }

.card-grid { display: grid; gap: 24px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.svc-card { background: white; box-shadow: 0 10px 30px rgba(0,0,0,.06); display: flex; flex-direction: column; height: 100%; border: 1px solid rgba(0,0,0,.04); border-radius: 6px; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.1); border-color: rgba(0,0,0,.04); }
.svc-card-image { height: 190px; overflow: hidden; }
.svc-card-image img { height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover img { transform: scale(1.06); }
.svc-card-body { position: relative; padding: 28px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-arrow {
  position: absolute; top: -18px; right: 18px; width: 36px; height: 36px; background: var(--gold);
  display: grid; place-items: center; color: var(--ink);
}
.svc-card h3, .prj-card h3, .info-card h3 { margin: 0 0 10px; font-size: 20px; font-family: var(--display); font-weight: 700; }
.svc-card p, .info-card p { margin: 0; color: var(--muted); font-size: 14px; }

.prj-card { position: relative; overflow: hidden; color: white; min-height: 280px; border-radius: 6px; transition: transform .3s, box-shadow .3s; }
.prj-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.16); }
.prj-card img { height: 280px; object-fit: cover; transition: transform .5s; }
.prj-card:hover img { transform: scale(1.05); }
.prj-card div {
  position: absolute; inset: auto 0 0; padding: 22px;
  background: linear-gradient(0deg, rgba(0,0,0,.78), transparent);
}
.prj-card h3 { margin-bottom: 0; }
.prj-card span { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.info-card { background: white; border: 1px solid var(--line); padding: 28px 24px; height: 100%; border-radius: 8px; transition: transform .25s, box-shadow .25s; }
.info-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.07); border-color: var(--line); }
.info-card span { color: var(--gold-2); font-weight: 700; font-family: var(--sans); letter-spacing: 0; }
.ref-marquee {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  border-block: 1px solid var(--line);
}
.ref-marquee::before,
.ref-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 1;
  pointer-events: none;
}
.ref-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(255,255,255,0));
}
.ref-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(255,255,255,0));
}
.ref-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: refMarquee 26s linear infinite;
}
.ref-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 96px;
  flex: 0 0 auto;
  padding: 18px 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,.04);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.ref-item:hover {
  transform: translateY(-4px);
  border-color: rgba(240,180,41,.4);
  box-shadow: 0 18px 36px rgba(0,0,0,.08);
}
.ref-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .25s, opacity .25s;
}
.ref-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes refMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.callback {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px;
  background: linear-gradient(180deg, #faf8f3, #f4efe4);
  overflow: hidden;
  border-radius: 24px;
  color: var(--ink);
}
.callback .eyebrow { color: var(--gold-2); }
.callback h2 { color: var(--ink); font-style: normal; }
.callback-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 42px;
  align-items: center;
  padding: 44px;
  border-radius: 22px;
  background: rgba(255,255,255,.36);
}
.callback-copy {
  max-width: 560px;
}
.callback-copy p {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.callback-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.callback-points div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
}
.callback-points svg { color: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.callback-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-weight: 600;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.52);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border-radius: 0;
}
.callback-phone b { display: block; color: var(--gold-2); }
.callback-card {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 22px 70px rgba(0,0,0,.10);
  color: var(--ink);
}
.callback-card__head {
  margin-bottom: 18px;
}
.callback-card__head h3 {
  margin: 6px 0 8px;
  font-size: clamp(26px, 3vw, 34px);
  font-family: var(--display);
  font-style: normal;
  line-height: 1.12;
}
.callback-card__head p {
  margin: 0;
  color: var(--muted);
}

.quick { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%); }
.quick-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 28px 0; }
.quick-call { display: flex; align-items: center; gap: 12px; }
.quick-call b, .quick h3 { display: block; color: var(--ink); }
.quick h3 { margin: 0; font-size: 22px; font-weight: 600; }
.quick .btn { background: var(--ink); color: white; --btn-rail: var(--gold); }
.quick .btn::after { background: rgba(255,255,255,.25); }

.footer { background: var(--dark); color: #cfcfcf; position: relative; }
.footer-top { background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-top-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding: 36px 0; }
.footer-top-brand { display: flex; align-items: center; gap: 24px; }
.footer-logo { display: block; width: 120px; flex: 0 0 auto; background: white; padding: 8px 12px; border-radius: 6px; margin: 0; }
.footer-logo img { width: 100%; height: auto; }
.footer-lead { color: #b7b7b7; line-height: 1.8; margin: 0; max-width: 420px; font-size: 14px; }
.footer-top-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.footer-top-cta span { color: rgba(255,255,255,.6); font-size: 14px; font-weight: 500; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr 1fr; gap: 40px; padding: 50px 0; }
.footer-col { min-width: 0; }
.footer-contact-links { display: grid; gap: 0; margin-bottom: 18px; }
.footer-contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ccc;
  font-size: 14px;
  padding: 10px 0;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.footer-contact-links a:last-child { border-bottom: 0; }
.footer-contact-links a:hover { color: var(--gold); }
.footer-contact-links svg { color: var(--gold-2); flex: 0 0 16px; }
.footer-info-row { display: flex; align-items: flex-start; gap: 12px; color: #999; font-size: 13px; line-height: 1.7; margin-bottom: 10px; }
.footer-info-row svg { color: var(--gold-2); flex: 0 0 16px; margin-top: 2px; }
.footer-desc { color: #999; font-size: 14px; line-height: 1.8; margin: 0 0 14px; }
.footer-sectors { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-sectors span { font-size: 12px; padding: 5px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; color: #bbb; transition: border-color .2s, color .2s; }
.footer-sectors span:hover { border-color: var(--gold); color: var(--gold); }
.footer h4 { color: white; margin: 0 0 18px; font-size: 15px; text-transform: uppercase; letter-spacing: .06em; }
.footer p { color: #b7b7b7; margin: 0 0 8px; }
.footer-col > a:not(.footer-logo):not(.btn) { display: block; color: #b7b7b7; font-size: 14px; padding: 4px 0; margin: 0 0 4px; transition: color .2s, padding-left .2s; }
.footer-col > a:not(.footer-logo):not(.btn):hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 13px; }
.footer-bottom .axo-link { margin-left: auto; }
.footer-cities {
  padding: 8px 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-cities h4 { margin: 22px 0 14px; }
.footer-cities nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  align-items: center;
}
.footer-cities a {
  display: inline-block;
  color: #9a9a9a;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
}
.footer-cities a:hover { color: var(--gold); border-color: rgba(240,180,41,.35); }

.regions-intro { margin-bottom: 28px; max-width: 760px; }
.regions-intro h2 { margin: 8px 0 14px; }
.regions-intro p { color: var(--muted); line-height: 1.85; }
.regions-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.regions-services a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
}
.regions-services a:hover { border-color: rgba(240,180,41,.45); color: var(--gold-2); }
.region-block { margin-bottom: 36px; }
.region-block h3 { margin: 0 0 14px; font-size: 18px; }
.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.region-card {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.region-card strong { font-size: 15px; overflow-wrap: break-word; }
.region-card span { color: var(--muted); font-size: 12px; }
.region-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240,180,41,.4);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.city-nearby { margin-top: 56px; }
.city-nearby h3 { margin: 0 0 16px; }
.city-services { margin-top: 56px; }
.city-services > h3 { margin: 0 0 18px; }
.detail-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.detail-gallery__hero img,
.detail-gallery__thumbs img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.detail-gallery__hero img { height: 420px; }
.detail-gallery__thumbs { display: grid; gap: 12px; }
.detail-gallery__thumbs img { height: 204px; }
.regions-visuals {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 176px 176px;
  gap: 12px;
  margin: 8px 0 48px;
}
.regions-visuals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.regions-visuals img.is-hero { grid-row: span 2; }
.service-detail__bullets a { color: inherit; }

.float-api {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 30;
  display: grid;
  gap: 10px;
  justify-items: start;
}
.site-header.is-open ~ .float-api {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.float-chip {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 54px;
  max-width: 54px;
  overflow: hidden;
  border-radius: 999px;
  color: white;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  transition: max-width .35s cubic-bezier(.22,1,.36,1), box-shadow .25s, transform .2s, opacity .2s;
}
.float-chip__icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
}
.float-chip__panel {
  display: grid;
  gap: 2px;
  padding: 0;
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width .35s cubic-bezier(.22,1,.36,1), opacity .25s, padding .35s;
}
.float-chip__panel strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.float-chip__panel b {
  font-size: 13px;
  font-weight: 600;
  opacity: .92;
  line-height: 1.2;
}
.float-phone { background: linear-gradient(135deg, #2f6fad, #1f4f7a); }
.float-wa { background: linear-gradient(135deg, #4ecb5a, #249c3a); }
.float-ig { background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af); }
.float-ig--arch { background: linear-gradient(135deg, #833ab4, #c13584 55%, #e1306c); }
@media (hover: hover) and (pointer: fine) {
  .float-chip:hover,
  .float-chip:focus-visible {
    max-width: 280px;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0,0,0,.28);
  }
  .float-chip:hover .float-chip__panel,
  .float-chip:focus-visible .float-chip__panel {
    max-width: 210px;
    opacity: 1;
    padding: 0 18px 0 4px;
  }
}

.page-banner { position: relative; height: 340px; color: white; overflow: hidden; display: flex; align-items: center; }
.page-banner img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.page-banner-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,.78) 0%, rgba(10,10,10,.42) 60%, rgba(10,10,10,.22) 100%); }
.page-banner-copy { position: relative; z-index: 2; padding-top: 10px; }
.page-banner h1 { font-size: clamp(36px, 5vw, 58px); margin: 0 0 12px; max-width: 18ch; font-style: normal; }
.page-banner ol { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0 0 18px; color: #ddd; font-size: 14px; }
.page-banner ol li:not(:last-child):after { content: '/'; margin-left: 10px; color: var(--gold); }

.prose { max-width: 820px; }
.prose .lead { font-size: 20px; color: var(--ink); line-height: 1.7; margin: 0 0 8px; }
.intro { color: var(--muted); font-size: 17px; margin: 0 0 28px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.split img { height: 420px; object-fit: cover; }
.service-row { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: center; padding: 40px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.service-row img { height: 260px; object-fit: cover; }
.service-row ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0; margin: 18px 0 0; list-style: none; }
.service-row li { border-top: 1px solid var(--line); padding-top: 8px; font-size: 14px; }
.services-hero-intro {
  max-width: 920px;
  margin: 0 0 42px;
  padding: 34px 36px;
  background:
    linear-gradient(135deg, rgba(240, 180, 41, .09), rgba(240, 180, 41, 0) 55%),
    linear-gradient(180deg, #fff, #fbfaf7);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(0,0,0,.05);
}
.services-hero-intro h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  margin: 8px 0 14px;
}
.services-hero-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
}
.service-panel {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 42px;
  padding: 42px 0 56px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 120px;
}
.service-panel:first-of-type { border-top: 0; }
.service-panel__media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.12);
}
.service-panel__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.16) 100%);
}
.service-panel__media img {
  height: 100%;
  object-fit: cover;
}
.service-panel__content {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.service-panel__sticky {
  position: sticky;
  top: 132px;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}
.service-panel__sticky h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.14;
  margin: 8px 0 14px;
}
.service-panel__lead {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
}
.service-panel__btn {
  width: fit-content;
  margin: 0 0 16px;
}
.service-panel__list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-panel__list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #faf8f3);
  font-size: 14px;
  font-weight: 500;
}
.service-panel__detail {
  display: grid;
  gap: 18px;
}
.service-panel__detail p {
  margin: 0;
  padding: 24px 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0,0,0,.04);
  color: #525252;
  font-size: 16px;
  line-height: 1.9;
}
.service-panel__detail p:nth-child(odd) {
  background: linear-gradient(180deg, #fff, #fcfbf7);
}

.service-detail {
  padding-top: 70px;
}
.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.service-detail__sticky {
  position: sticky;
  top: 132px;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}
.service-detail__sticky h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.14;
  margin: 10px 0 14px;
  overflow-wrap: break-word;
}
.service-detail__lead {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}
.service-detail__bullets {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-detail__bullets li {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #faf8f3);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.service-detail__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.service-detail__actions .btn { min-width: 0; }
.service-detail__p {
  margin: 0 0 18px;
  padding: 26px 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0,0,0,.04);
  color: #525252;
  font-size: 16px;
  line-height: 1.95;
}
.service-detail__other {
  padding-top: 8px;
}
.detail-block { margin-top: 64px; }
.detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 8px 0 28px;
}
.detail-split img {
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 10px 0 0; color: var(--muted); line-height: 1.8; }
.project-lead .btn { margin: 8px 0 28px; }
.service-detail__other .sec-head {
  margin-bottom: 26px;
}
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 24px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filters button { border: 1px solid var(--line); background: white; padding: 8px 14px; cursor: pointer; border-radius: 4px; transition: background .2s, color .2s, border-color .2s; }
.filters button.is-active, .filters button:hover { background: var(--ink); color: white; border-color: var(--ink); }
.meta-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 32px; }
.meta-row > div { padding: 20px 24px; border-right: 1px solid var(--line); background: var(--tint); }
.meta-row > div:first-child { border-radius: 8px 0 0 8px; }
.meta-row > div:last-child { border-right: 0; border-radius: 0 8px 8px 0; }
.meta-row span { display: block; color: var(--gold-2); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; }
.meta-row p { margin: 0; color: var(--ink); font-weight: 600; font-size: 15px; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 40px 0; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 8px; }
.gallery img { height: 360px; object-fit: cover; transition: transform .4s; }
.gallery figure:hover img { transform: scale(1.03); }
.gallery--single { grid-template-columns: 1fr; }
.gallery--single img { height: 480px; }
.pager { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding-top: 32px; margin-top: 12px; border-top: 1px solid var(--line); }
.pager a { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); transition: color .2s; }
.pager a:hover { color: var(--ink); }
.pager a:last-child { justify-content: end; text-align: right; }
.pager b { display: block; font-size: 15px; color: var(--ink); font-weight: 600; margin-top: 2px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; }
.contact-list { margin-top: 24px; }
.contact-list > * { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-list b { display: block; color: var(--ink); }
.contact-box { background: var(--tint); padding: 36px; border-radius: 12px; }
.contact-box h3 { margin-top: 0; }
.map { height: 420px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3); }

.cform { display: grid; gap: 14px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform input, .cform select, .cform textarea {
  width: 100%; border: 1px solid var(--line); background: white; padding: 14px 15px; outline: none; min-height: 54px; border-radius: 6px; transition: border-color .2s, box-shadow .2s;
}
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,180,41,.12); }
.cform textarea { min-height: 132px; resize: vertical; }
.cform .btn { width: 100%; min-height: 54px; }
.cform--compact .btn { width: 100%; }
.form-note { font-size: 13px; color: var(--muted); margin: 0; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  border: 0;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
  overflow: auto;
  background: transparent;
  color: inherit;
}
.modal:not([open]) {
  display: none !important;
}
.modal[open] {
  display: grid;
  place-items: center;
}
.modal::backdrop { background: rgba(0,0,0,.55); }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); border: 0; }
.modal-card { position: relative; z-index: 1; width: min(640px, 100%); max-height: min(92vh, 720px); overflow: auto; background: white; padding: 28px; border-radius: 10px; }
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; background: var(--ink); color: white; margin: -28px -28px 20px; padding: 14px 18px; }
.modal-head button { background: none; border: 0; color: white; font-size: 28px; cursor: pointer; }

.axo-link { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; }
.axo-label { font-size: .625rem; font-weight: 500; letter-spacing: .04em; color: rgba(252,251,249,.4); }
.axo-link:hover .axo-label { color: rgba(252,251,249,.7); }
.axo-brand { position: relative; display: inline-flex; align-items: center; }
@property --axo-shift { syntax: "<length>"; inherits: true; initial-value: 0px; }
.axo-word { display: inline-flex; font-size: 13px; font-weight: 700; letter-spacing: -.02em; --axo-shift: 0px; animation: axoShine 3s linear infinite; }
.axo-letter {
  display: inline-block;
  background-image: linear-gradient(90deg,#3ec8ff 0%,#5b6cff 16%,#8b3dff 32%,#d42d88 50%,#ff8c28 68%,#ffd24a 84%,#3ec8ff 100%);
  background-size: 12.5em 100%; background-repeat: repeat-x;
  background-position: calc(var(--i) * -.62em + var(--axo-shift)) 0;
  background-clip: text; -webkit-background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.axo-link:hover .axo-word { animation: axoShine 1.15s linear infinite; }
.axo-link:hover .axo-letter { animation: axoBounce .62s cubic-bezier(.22,1,.36,1) calc(var(--i) * 42ms); }
.axo-sign-dot { height: 6px; width: 6px; border-radius: 999px; background: #d42d88; animation: axoPulse 2.2s ease-out infinite; }
.axo-sparks { pointer-events: none; position: absolute; inset: -8px -10px; }
.axo-sparks i { position: absolute; height: 5px; width: 5px; border-radius: 999px; background: #3ec8ff; opacity: 0; }
.axo-sparks i:nth-child(1) { left: 8%; top: 0; }
.axo-sparks i:nth-child(2) { right: 12%; top: -2px; background: #d42d88; }
.axo-sparks i:nth-child(3) { right: 38%; bottom: -4px; background: #ffd24a; }
.axo-link:hover .axo-sparks i { animation: axoSpark .85s ease-out infinite; }
@keyframes axoShine { from { --axo-shift: 0em; } to { --axo-shift: 12.5em; } }
@keyframes axoPulse { 0% { transform: scale(.85); } 70% { transform: scale(1); } 100% { transform: scale(.85); } }
@keyframes axoBounce { 0% { transform: translateY(0); } 35% { transform: translateY(-7px); } 100% { transform: translateY(0); } }
@keyframes axoSpark { 0% { opacity: 0; } 35% { opacity: 1; } 100% { opacity: 0; } }

@media (max-width: 1100px) {
  .topbar-item--mail { display: none; }
  .topbar-item--hours b { font-size: 11px; }
}
@media (max-width: 980px) {
  .topbar-left { display: none; }
  .topbar-inner {
    min-height: 44px;
    justify-content: space-between;
  }
  .topbar-right {
    width: 100%;
    justify-content: space-between;
  }
  .topbar-call {
    margin-left: 0;
    padding-left: 0;
  }
  .topbar-social {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
  .mobile-nav { display: none; background: white; border-top: 1px solid var(--line); padding: 16px 20px 28px; }
  .mobile-nav.is-open { display: grid; gap: 4px; }
  .mobile-nav a { display: block; padding: 12px 0; font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--line); }
  .mobile-nav a.sub { padding-left: 16px; font-weight: 400; color: var(--muted); font-size: 14px; border-bottom: 0; }
  .mobile-nav .btn { margin-top: 12px; width: 100%; justify-content: center; }
  .about-grid, .contact-grid, .service-row, .sec-head, .quick-inner, .footer-grid, .split, .service-panel, .service-panel__content, .service-detail__grid, .callback-form { grid-template-columns: 1fr; }
  .footer-top-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-top-brand { flex-direction: column; align-items: flex-start; }
  .card-grid--3, .card-grid--4, .stats, .cform-row, .gallery, .meta-row { grid-template-columns: 1fr 1fr; }
  .ref-item { width: 176px; height: 88px; padding: 16px 20px; }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-gallery, .detail-split { grid-template-columns: 1fr; }
  .detail-gallery__hero img { height: 280px; }
  .detail-gallery__thumbs { grid-template-columns: 1fr 1fr; }
  .detail-gallery__thumbs img { height: 160px; }
  .detail-split img { height: 220px; }
  .regions-visuals { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 140px 140px; }
  .regions-visuals img.is-hero { grid-column: 1 / -1; grid-row: auto; }
  .callback-form { padding: 28px; }
  .page-banner { height: 260px; }
  .hero-nav { display: none; }
  .hero-copy { padding: 90px 0 64px; }
  .hero-meta { margin-top: 30px; }
  .hero-dots { right: 20px; bottom: 22px; }
  .callback { padding: 20px; width: min(1200px, calc(100% - 32px)); }
  .service-panel__sticky { position: static; }
  .service-panel__media { min-height: 320px; }
  .service-detail__sticky { position: static; }
  .footer-grid { gap: 28px; padding: 36px 0; }
  .footer-bottom .axo-link { margin-left: 0; }
  .footer-sectors { gap: 6px; }
  .float-api { gap: 8px; }
  .float-chip,
  .float-chip__icon {
    min-height: 48px;
    width: 48px;
    height: 48px;
    max-width: 48px;
    flex-basis: 48px;
  }
  .contact-box { padding: 24px 18px; }
  .map { height: 300px; }
  .modal-card { padding: 22px 16px; }
  .modal-head { margin: -22px -16px 16px; }
  .footer { padding-bottom: calc(200px + env(safe-area-inset-bottom)); }
}
@media (max-width: 640px) {
  .card-grid--3, .card-grid--4, .stats, .cform-row, .gallery, .service-row ul { grid-template-columns: 1fr; }
  .meta-row { grid-template-columns: 1fr; gap: 0; }
  .meta-row > div { border-right: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .meta-row > div:first-child { border-radius: 8px 8px 0 0; }
  .meta-row > div:last-child { border-bottom: 0; border-radius: 0 0 8px 8px; }
  .gallery--single img { height: auto; }
  .ref-marquee { padding: 10px 0; }
  .ref-track { gap: 14px; animation-duration: 22s; }
  .ref-item { width: 152px; height: 76px; padding: 14px 16px; }
  .region-grid { grid-template-columns: 1fr; }
  .hero { min-height: 520px; height: 70vh; }
  .hero-copy h1 { font-size: 36px; }
  .quick-inner { justify-items: start; }
  .footer-bottom, .toolbar, .pager { flex-direction: column; align-items: flex-start; }
  .pager { grid-template-columns: 1fr; }
  .about-photo img, .split img, .service-row img, .gallery img { height: auto; }
  .services-hero-intro,
  .service-panel__sticky,
  .service-panel__detail p { padding: 22px 20px; }
  .container { width: min(1200px, calc(100% - 28px)); }
  .header-inner { min-height: 78px; gap: 16px; }
  .brand { width: 124px; height: 54px; }
  .hero-copy { padding: 78px 0 58px; justify-content: end; }
  .hero-copy__inner { max-width: 100%; }
  .hero-copy p,
  .services-hero-intro p,
  .service-panel__lead,
  .service-detail__lead,
  .service-detail__p,
  .about p,
  .prose p,
  .intro { font-size: 15px; }
  .hero-kicker { font-size: 11px; letter-spacing: .14em; }
  .hero-actions { gap: 14px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-progress { width: 100%; }
  .hero-count strong { font-size: 28px; }
  .hero-dots { left: 14px; right: auto; bottom: 18px; }
  .topbar-call strong { font-size: 12px; }
  .topbar-call__text small { display: none; }
  .topbar-social a { width: 30px; height: 30px; }
  .callback { padding: 14px; width: min(1200px, calc(100% - 20px)); }
  .callback-card { padding: 22px 18px; }
  .callback-phone { width: 100%; justify-content: flex-start; }
  .page-banner h1 { max-width: 16ch; }
  .ref-grid span { min-height: 74px; border-right: 0; }
  .footer { padding-bottom: calc(220px + env(safe-area-inset-bottom)); }
  .float-api { left: max(10px, env(safe-area-inset-left)); bottom: max(10px, env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
  .axo-word, .axo-letter, .axo-sign-dot, .hero-slide, .hero-slide img, .hero-progress__bar, .hero-copy__inner { animation: none !important; }
  html { scroll-behavior: auto; }
}
