:root {
  --ink: #131619;
  --muted: #5e6872;
  --line: #dfe3e7;
  --surface: #ffffff;
  --soft: #f5f2ed;
  --charcoal: #20262c;
  --accent: #d6a342;
  --accent-dark: #8a5a16;
  --gold-light: #f9e89f;
  --gold-mid: #d6a342;
  --gold-deep: #8a5a16;
  --gold-gradient: linear-gradient(135deg, #fff0ad 0%, #d6a342 42%, #8a5a16 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(255, 240, 173, 0.22), rgba(214, 163, 66, 0.1));
  --steel: #778898;
  --shadow: 0 24px 70px rgba(20, 24, 28, 0.16);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --content-width: 1137px;
  --page-gutter: clamp(20px, 5vw, 64px);
  --content-pad: max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
}

img,
svg {
  display: block;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  background: var(--gold-gradient);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px var(--content-pad);
  color: #fff;
  transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(22, 28, 35, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 300px;
  padding: 5px 12px;
  color: var(--ink);
  background: transparent;
  transition: transform 150ms var(--ease-out), background-color 150ms ease;
}

.brand:hover {
  background: transparent;
}

.brand:active {
  transform: scale(0.98);
}

.brand img {
  width: 205px;
  height: 78px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.nav-item > a {
  opacity: 0.82;
  transition: opacity 150ms ease, transform 150ms var(--ease-out);
}

.site-nav a:hover,
.nav-item > a:hover {
  opacity: 1;
}

.site-nav a.is-active,
.nav-item > a.is-active {
  opacity: 1;
  color: var(--gold-mid);
}

.nav-item {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  min-width: 230px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 60px rgba(15, 18, 22, 0.16);
  opacity: 0;
  transform: translateX(-50%) translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.submenu::before {
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
  content: "";
}

.submenu a {
  padding: 12px 14px;
  opacity: 0.82;
}

.submenu a:hover {
  color: var(--gold-deep);
  background: var(--gold-gradient-soft);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.site-nav a:active,
.btn:active,
.header-call:active,
.map-card:active {
  transform: scale(0.97);
}

.header-call {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  transition: transform 150ms var(--ease-out), background-color 150ms ease, color 150ms ease;
}

.site-header:not(.is-scrolled) .header-call:hover {
  background: #fff;
  color: var(--ink);
}

.site-header.is-scrolled .header-call:hover {
  background: var(--ink);
  color: #fff;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 150px var(--content-pad) 44px;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 19, 22, 0.92) 0%, rgba(16, 19, 22, 0.68) 38%, rgba(16, 19, 22, 0.15) 72%),
    linear-gradient(0deg, rgba(16, 19, 22, 0.68) 0%, rgba(16, 19, 22, 0) 42%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-bottom: 92px;
}

.license,
.label,
.section-heading p {
  margin: 0 0 16px;
  color: var(--gold-mid);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 72px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: transform 150ms var(--ease-out), background-color 150ms ease, border-color 150ms ease,
    color 150ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #111417;
  box-shadow: 0 14px 34px rgba(138, 90, 22, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffeaa0 0%, #c8932f 46%, #70460f 100%);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(17, 22, 27, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 22px 24px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel span {
  display: block;
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1;
}

.hero-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: var(--content-pad);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-strip div {
  min-height: 108px;
  padding: 26px clamp(20px, 4vw, 46px);
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 16px;
}

.trust-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: clamp(72px, 9vw, 122px) var(--content-pad);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading h2,
.split h2,
.service-area h2,
.contact h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 330px;
  padding: 34px;
  background: var(--surface);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(28, 34, 39, 0.12);
}

.icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: var(--soft);
  color: var(--gold-deep);
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.service-card h3 {
  margin: 62px 0 14px;
  font-size: 26px;
}

.service-card p,
.split-copy p,
.process-row p,
.service-area p,
.contact-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(38px, 8vw, 96px);
  background: var(--soft);
}

.split-copy p {
  max-width: 650px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #263039;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--gold-gradient);
  clip-path: polygon(14% 50%, 38% 74%, 86% 22%, 100% 36%, 39% 96%, 0 58%);
}

.process {
  align-self: center;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.process-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 30px;
}

.process-row + .process-row {
  border-top: 1px solid var(--line);
}

.process-row span {
  color: var(--gold-mid);
  font-size: 14px;
  font-weight: 800;
}

.process-row h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.process-row p {
  margin: 0;
}

.service-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.service-area p {
  max-width: 670px;
}

.map-card {
  display: grid;
  gap: 12px;
  min-height: 300px;
  align-content: end;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(32, 38, 44, 0.94), rgba(32, 38, 44, 0.72)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  transition: transform 150ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.map-card:hover {
  box-shadow: var(--shadow);
}

.map-card span,
.map-card small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.map-card strong {
  max-width: 320px;
  font-size: 34px;
  line-height: 1.05;
}

.contact {
  background: var(--charcoal);
  color: #fff;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 8vw, 96px);
  width: min(100%, 1280px);
  margin: 0 auto;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-methods a {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-methods span,
.contact-methods strong {
  display: block;
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.contact-methods strong {
  margin-top: 7px;
  font-size: clamp(19px, 2.2vw, 26px);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: #fff;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #35404a;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 4px rgba(214, 163, 66, 0.16);
}

.contact-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 16% 0%, rgba(214, 163, 66, 0.15), transparent 28%),
    #12161a;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.65fr));
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(54px, 7vw, 86px) var(--content-pad);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
  width: max-content;
  padding: 0;
  background: transparent;
}

.footer-logo img {
  width: 196px;
  height: 82px;
  object-fit: contain;
}

.footer-col a,
.footer-col span,
.footer-license {
  display: block;
}

.footer-brand p {
  max-width: 420px;
  margin: 22px 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.footer-license {
  width: max-content;
  max-width: 100%;
  padding-top: 14px;
  border-top: 1px solid rgba(214, 163, 66, 0.42);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.footer-col h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
  transition: color 150ms ease, transform 150ms var(--ease-out);
}

.footer-col a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--content-pad);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--gold-light);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out),
    filter 680ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  filter: blur(5px);
  will-change: opacity, transform, filter;
}

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

.stagger .reveal:nth-child(2) {
  --reveal-delay: 90ms;
}

.stagger .reveal:nth-child(3) {
  --reveal-delay: 170ms;
}

.stagger .reveal:nth-child(4) {
  --reveal-delay: 250ms;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 150px var(--content-pad) 84px;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.compact-hero {
  min-height: 500px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 19, 22, 0.9), rgba(16, 19, 22, 0.58), rgba(16, 19, 22, 0.18)),
    linear-gradient(0deg, rgba(16, 19, 22, 0.56), rgba(16, 19, 22, 0));
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--hero-shift, 0px)) scale(1.04);
  transform-origin: center;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.page-hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero p:not(.license) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.contact-hero {
  min-height: 430px;
  color: #fff;
  background: var(--charcoal);
}

.contact-hero .page-hero-content p:not(.license) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-hero-rich {
  min-height: 620px;
}

.contact-hero-rich .page-hero-bg::after {
  background:
    linear-gradient(90deg, rgba(13, 16, 19, 0.93), rgba(13, 16, 19, 0.62), rgba(13, 16, 19, 0.18)),
    linear-gradient(0deg, rgba(13, 16, 19, 0.56), rgba(13, 16, 19, 0));
}

.contact-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-hero-facts span {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.fact-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-self: center;
  background: #fff;
  box-shadow: var(--shadow);
}

.fact-panel div {
  min-height: 150px;
  padding: 28px;
  border: 1px solid var(--line);
}

.fact-panel span {
  display: block;
  color: var(--gold-mid);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-panel strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.05;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.value-card {
  min-height: 250px;
  padding: 32px;
  background: #fff;
}

.value-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-detail-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.service-detail {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(34px, 6vw, 70px);
  background: #fff;
}

.service-detail span {
  color: var(--gold-mid);
  font-size: 14px;
  font-weight: 800;
}

.service-detail h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1;
}

.service-detail p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.service-detail h2 a {
  transition: color 150ms ease;
}

.service-detail h2 a:hover,
.text-link:hover {
  color: var(--gold-deep);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold-deep);
  font-size: 14px;
  font-weight: 900;
}

.cta-band {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 390px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(13, 16, 19, 0.98) 0%, rgba(27, 32, 37, 0.96) 58%, rgba(41, 35, 25, 0.9) 100%),
    #171b1f;
  border-block: 1px solid rgba(214, 163, 66, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

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

.cta-band::before {
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    repeating-linear-gradient(135deg, rgba(214, 163, 66, 0.12) 0 1px, transparent 1px 18px);
  background-size: 76px 76px, 76px 76px, auto;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.cta-band::after {
  background:
    radial-gradient(circle at 78% 34%, rgba(249, 232, 159, 0.24), transparent 24%),
    radial-gradient(circle at 92% 52%, rgba(214, 163, 66, 0.22), transparent 22%),
    linear-gradient(110deg, transparent 0 64%, rgba(214, 163, 66, 0.15) 64% 64.35%, transparent 64.35%);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band .label {
  color: var(--gold-light);
}

.cta-band .btn {
  min-width: 168px;
  border-color: rgba(255, 240, 173, 0.42);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34), 0 12px 32px rgba(138, 90, 22, 0.24);
}

.cta-band h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.gallery-section {
  background: var(--soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: 0 18px 48px rgba(28, 34, 39, 0.12);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.gallery-lightbox-trigger {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  transition: border-color 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item:hover {
  box-shadow: 0 24px 58px rgba(28, 34, 39, 0.16);
  transform: translateY(-3px);
}

.gallery-item:hover::after {
  border-color: rgba(214, 163, 66, 0.46);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(8, 10, 12, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  backdrop-filter: blur(14px);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(100%, 1280px);
  max-height: calc(100vh - 96px);
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.lightbox button {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  transition: transform 160ms var(--ease-out), background-color 160ms ease;
}

.lightbox button:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(calc(-50% - 1px));
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.page-contact {
  padding-top: clamp(72px, 9vw, 112px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.google-map-section {
  width: 100%;
  height: clamp(380px, 48vw, 560px);
  background: var(--charcoal);
  overflow: hidden;
}

.google-map-section iframe {
  display: block;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 32px);
  bottom: clamp(18px, 3vw, 32px);
  z-index: 45;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: #fff;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(7, 94, 84, 0.32);
  transition: transform 160ms var(--ease-out), box-shadow 160ms ease;
}

.whatsapp-float::before,
.whatsapp-float::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, 0.58);
  animation: whatsapp-shockwave 2.2s var(--ease-out) infinite;
}

.whatsapp-float::after {
  animation-delay: 1.1s;
}

.whatsapp-float i {
  position: relative;
  z-index: 1;
  font-size: 34px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 24px 52px rgba(7, 94, 84, 0.42);
}

.whatsapp-float:active {
  transform: scale(0.96);
}

@keyframes whatsapp-shockwave {
  0% {
    opacity: 0.78;
    transform: scale(1);
  }

  78%,
  100% {
    opacity: 0;
    transform: scale(1.72);
  }
}

.landing-copy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.gold-panel {
  position: relative;
  overflow: hidden;
}

.gold-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 78% 18%, rgba(214, 163, 66, 0.2), transparent 34%);
  pointer-events: none;
}

.gold-panel > * {
  position: relative;
}

.feature-image {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.feature-image:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 20px;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms var(--ease-out);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 14px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 14px;
  }

  .site-nav.is-open .nav-item {
    display: grid;
  }

  .site-nav.is-open .submenu {
    position: static;
    min-width: 0;
    padding: 0 0 0 12px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .site-nav.is-open .submenu a {
    padding: 11px 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 720px;
    padding-top: 118px;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(16, 19, 22, 0.94), rgba(16, 19, 22, 0.56)),
      linear-gradient(0deg, rgba(16, 19, 22, 0.72), rgba(16, 19, 22, 0.08));
  }

  .hero-content {
    padding-bottom: 52px;
  }

  .hero-panel,
  .trust-strip,
  .section-heading,
  .service-grid,
  .split,
  .service-area,
  .contact-box,
  .value-grid,
  .gallery-grid,
  .fact-panel,
  .landing-copy-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .cta-band {
    display: grid;
  }

  .hero-panel div + div,
  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-strip div + div {
    border-top-color: var(--line);
  }
}

@media (max-width: 560px) {
  .brand {
    max-width: 174px;
    padding: 4px 8px;
  }

  .brand img {
    width: 142px;
    height: 54px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 24px;
  }

  .page-hero {
    min-height: 420px;
    padding: 112px 20px 56px;
  }

  .hero h1 {
    font-size: clamp(38px, 14vw, 58px);
  }

  .page-hero h1 {
    font-size: clamp(36px, 13vw, 54px);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-panel {
    width: 100%;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-card,
  .process-row,
  .contact-form,
  .map-card,
  .value-card,
  .service-detail,
  .fact-panel div {
    padding: 24px;
  }

  .process-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .whatsapp-float::before,
  .whatsapp-float::after {
    animation: none;
  }
}
