@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/Outfit-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-black: #030303;
  --color-charcoal: #090909;
  --color-panel: rgba(12, 12, 12, 0.72);
  --color-gold: #d9ad42;
  --color-gold-bright: #f0d176;
  --color-gold-deep: #9e741f;
  --color-white: #ffffff;
  --color-soft-white: rgba(255, 255, 255, 0.86);
  --color-muted: rgba(255, 255, 255, 0.58);
  --color-line: rgba(255, 255, 255, 0.16);
  --font-main: "Outfit", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --container: 1640px;
  --mobile-hero-placeholder: url("../assets/images/placeholder/hero-placeholder-9-16.svg");
  --home-hero-desktop: url("../assets/images/hero-cover-pc.webp");
  --home-hero-mobile: url("../assets/images/hero-cover-mobile.webp");
  --about-hero-desktop: url("../assets/images/about-cover.webp");
  --about-hero-mobile: url("../assets/images/about-cover-mobile.webp");
  --contact-hero-desktop: url("../assets/images/contact-hero.webp");
  --contact-hero-mobile: url("../assets/images/contact-cover-mobile.webp");
  --work-hero-desktop: url("../assets/images/our-work-bg.webp");
  --work-hero-mobile: url("../assets/images/our-work-cover-mobile.webp");
  --branches-hero-desktop: url("../assets/images/branch.webp");
  --branches-hero-mobile: url("../assets/images/branch-mobile.webp");
  --paint-hero-desktop: url("../assets/images/paint-protection-coating.webp");
  --paint-hero-mobile: url("../assets/images/paint-protect-mobile-cover.webp");
  --interior-hero-desktop: url("../assets/images/interior.webp");
  --interior-hero-mobile: url("../assets/images/interior-mobile.webp");
  --exterior-hero-desktop: url("../assets/images/exterior.webp");
  --exterior-hero-mobile: url("../assets/images/exterior-mobile.webp");
  --restoration-hero-desktop: url("../assets/images/restoration.webp");
  --restoration-hero-mobile: url("../assets/images/deep-clean.webp");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-white);
  background: var(--color-black);
}

body.menu-open {
  overflow: hidden;
}

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

h2 {
  font-weight: 700;
  text-transform: 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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100px;
  background: rgba(3, 3, 3, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 260px 1fr 350px;
  align-items: center;
  width: min(100% - 128px, var(--container));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-self: start;
  line-height: 1;
}

.brand img {
  display: block;
  width: 82px;
  height: auto;
}

.brand-tagline {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-main {
  color: var(--color-gold-bright);
  font-size: 35px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(217, 173, 66, 0.16);
}

.brand-sub {
  margin-top: 6px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 8px;
}

.brand-sub-wide {
  margin-top: 7px;
  color: var(--color-gold-bright);
  font-size: 12px;
  letter-spacing: 5.8px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  padding: 0 24px;
  transition: color 180ms ease;
}

.nav-service-group {
  position: relative;
  order: 1;
}

.nav-service-group.is-open {
  z-index: 40;
}

.nav-service-group > a,
.service-menu-toggle {
  display: inline-flex;
  align-items: center;
}

.service-menu-toggle {
  position: relative;
  padding: 0 24px;
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.service-menu-toggle:hover,
.service-menu-toggle:focus-visible,
.service-menu-toggle.is-active,
.nav-service-group.is-open .service-menu-toggle {
  color: var(--color-gold-bright);
}

.service-menu-chevron {
  margin-left: 8px;
  font-size: 13px;
  line-height: 1;
  transition: transform 180ms ease;
}

.nav-service-group.is-open .service-menu-chevron {
  transform: rotate(180deg);
}

.primary-nav > a + a::before,
.nav-service-group + a::before,
.primary-nav > a + .nav-service-group::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 22px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--color-gold-bright);
}

.service-submenu {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  z-index: 45;
  display: grid;
  min-width: 340px;
  padding: 12px;
  border: 1px solid rgba(217, 173, 66, 0.34);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.service-submenu a {
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.service-submenu a:last-child {
  border-bottom: 0;
}

.service-submenu a::before {
  display: none;
}

.nav-service-group.is-open .service-submenu {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.primary-nav a[href="#top"],
.primary-nav a[href="index.html"] {
  order: 1;
}

.primary-nav a[href="#about"],
.primary-nav a[href="about.html"] {
  order: 2;
}

.primary-nav .nav-service-group,
.primary-nav a[href="#services"],
.primary-nav a[href="index.html#services"] {
  order: 3;
}

.primary-nav a[href="#works"],
.primary-nav a[href="index.html#works"],
.primary-nav a[href="work.html"] {
  order: 4;
}

.primary-nav a[href="branches.html"] {
  order: 5;
}

.primary-nav a[href="#contact"],
.primary-nav a[href="index.html#contact"],
.primary-nav a[href="contact.html"] {
  order: 6;
}

.mobile-menu-head,
.mobile-menu-actions,
.mobile-follow,
.mobile-only,
.mobile-text,
.mobile-nav-icon,
.mobile-action-icon {
  display: none;
}

.desktop-text {
  display: inline;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.translate-shell {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
}

#google_translate_element {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.language-select {
  width: 174px;
  min-height: 58px;
  padding: 0 40px 0 18px;
  color: var(--color-soft-white);
  border: 1px solid rgba(240, 209, 118, 0.5);
  border-radius: 4px;
  background:
    linear-gradient(45deg, transparent 50%, var(--color-gold-bright) 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.language-select:focus-visible {
  border-color: var(--color-gold-bright);
  box-shadow: 0 0 0 3px rgba(240, 209, 118, 0.14);
}

.language-select option {
  color: #111;
  background: #fff;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

.goog-te-gadget img {
  display: none !important;
}

.goog-te-gadget-simple {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  min-height: 58px;
  padding: 0 18px !important;
  border: 1px solid rgba(240, 209, 118, 0.5) !important;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06) !important;
}

.goog-te-gadget-simple span {
  display: inline !important;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: var(--color-soft-white) !important;
  font-family: var(--font-main) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

body > .skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 17px;
  font-weight: 500;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  justify-self: end;
  width: 174px;
  padding: 0 24px;
  color: #120f08;
  background: linear-gradient(135deg, #f3d77f 0%, var(--color-gold) 58%, #c4922b 100%);
  box-shadow: 0 16px 40px rgba(217, 173, 66, 0.16);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(217, 173, 66, 0.24);
}

.nav-cta > span[aria-hidden="true"],
.btn > span[aria-hidden="true"],
.form-submit > span[aria-hidden="true"] {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  overflow: hidden;
  color: currentColor;
  font-size: 0;
  line-height: 0;
}

.nav-cta > span[aria-hidden="true"]::before,
.btn > span[aria-hidden="true"]::before,
.form-submit > span[aria-hidden="true"]::before {
  position: absolute;
  inset: 0;
  content: "";
  background: url("../assets/images/right-arrow.svg") center / contain no-repeat;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(209, 184, 184, 0.18);
  border-radius:5px;
  background: rgba(7, 7, 7);
}

.menu-toggle-line {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-white);
}

.menu-close {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 1100px;
  overflow: hidden;
  background: var(--color-black);
}

.hero-section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 240px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(3, 3, 3, 0.58) 48%, #050505 100%);
}

.hero-bg,
.hero-overlay,
.hero-light-ring {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: var(--home-hero-desktop);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.9;
  transform: none;
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 48%, rgba(217, 173, 66, 0.1) 0 10%, rgba(217, 173, 66, 0) 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 34%, rgba(0, 0, 0, 0.18) 66%, rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.1) 64%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-light-ring {
  pointer-events: none;
}

.hero-light-ring::before {
  position: absolute;
  right: 42%;
  bottom: -32%;
  width: 650px;
  height: 650px;
  content: "";
  border: 4px solid transparent;
  border-top-color: rgba(246, 207, 95, 0.88);
  border-left-color: rgba(246, 207, 95, 0.34);
  border-radius: 50%;
  filter: drop-shadow(0 0 14px rgba(246, 207, 95, 0.72));
  transform: rotate(-18deg);
}

.hero-light-ring::after {
  position: absolute;
  right: 62%;
  bottom: 20%;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--color-gold-bright);
  border-radius: 999px;
  box-shadow: 0 0 18px 8px rgba(246, 207, 95, 0.38);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 128px, var(--container));
  min-height: 1100px;
  margin: 0 auto;
  padding: 100px 0;
}

.hero-content {
  width: min(100%, 720px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--color-gold-bright);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  color: var(--color-white);
  font-size: 52px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-content h1 span {
  color: transparent;
  background: linear-gradient(180deg, #fff4b8 0%, #f3cd62 34%, #c99228 68%, #8c5d12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 10px 26px rgba(217, 173, 66, 0.18);
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--color-soft-white);
  font-size: 19px;
  line-height: 1.85;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 700px);
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 26px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.trust-item {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 0;
  text-align: center;
}

.trust-item svg {
  width: 38px;
  height: 38px;
  color: var(--color-gold-bright);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item strong {
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #f1d47f 48%, #b98424 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 15px;
  line-height: 1.25;
}

.trust-item span {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.btn {
  width: 180px;
  padding: 0 28px;
}

.btn > span:first-child {
  white-space: nowrap;
}

@media (min-width: 621px) {
  .hero-actions .btn-secondary {
    width: 230px;
  }
}

.btn-primary {
  color: #120f08;
  background: linear-gradient(135deg, #f3d77f 0%, var(--color-gold) 58%, #c4922b 100%);
}

.btn-secondary {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(217, 173, 66, 0.58);
}

.btn-secondary span:last-child {
  color: var(--color-white);
}

.btn-secondary > span[aria-hidden="true"]::before {
  filter: brightness(0) invert(1);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--color-white);
  border-color: var(--color-gold-bright);
  transform: translateY(-2px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 1120px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(9, 9, 9, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  overflow: hidden;

}

.metrics-section {
  position: relative;
  z-index: 4;
  height: 0;
  background: transparent;
  pointer-events: none;
}

.metrics-shell {
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
  transform: translateY(-50%);
  pointer-events: auto;
}

.hero-metrics article {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px;
  text-align: center;
}

.hero-metrics article + article::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 0;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.28);
}

.hero-metrics strong {
  color: transparent;
  background: linear-gradient(180deg, #fff4b8 0%, #f3cd62 34%, #c99228 68%, #8c5d12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(30px, 2.2vw, 43px);
  line-height: 1;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-shadow: 0 10px 26px rgba(217, 173, 66, 0.16);
}

.hero-metrics strong span {
  font-size: 0.74em;
}

.hero-metrics p {
  margin: 10px 0 0;
  color: var(--color-soft-white);
  font-size: 16px;
  line-height: 1.2;
}

.about-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding-top: 64px;
  background: #050505;
}

.about-section::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  z-index: 1;
  height: 220px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.78) 34%, rgba(5, 5, 5, 0) 100%);
}

.about-section::after,
.services-section::after,
.works-section::after,
.promotion-section::after,
.contact-section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 190px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.64) 54%, #030303 100%);
}

.services-section::before,
.works-section::before,
.promotion-section::before,
.contact-section::before,
.site-footer::after {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  z-index: 1;
  height: 180px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, #030303 0%, rgba(3, 3, 3, 0.72) 38%, rgba(3, 3, 3, 0) 100%);
}

.about-bg,
.about-overlay,
.about-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-bg {
  background-image: url("../assets/images/home-about.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  opacity: 0.62;
  transform: scale(1.02);
}



.about-lines::before {
  position: absolute;
  left: 0;
  bottom: -20%;
  width: 760px;
  height: 360px;
  content: "";
  border-top: 1px solid rgba(217, 173, 66, 0.18);
  border-radius: 50%;
  transform: rotate(-17deg);
  box-shadow:
    0 -24px 0 -23px rgba(217, 173, 66, 0.16),
    0 -54px 0 -53px rgba(217, 173, 66, 0.12),
    0 -84px 0 -83px rgba(217, 173, 66, 0.08);
}

.about-lines::after {
  position: absolute;
  left: 14px;
  bottom: 130px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    44px 0 rgba(255, 255, 255, 0.18),
    0 44px rgba(255, 255, 255, 0.18),
    44px 44px rgba(255, 255, 255, 0.18);
}

.about-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(100% - 128px, var(--container));
  min-height: 760px;
  margin: 0 auto;
  padding: 100px 0;
}

.about-content {
  width: min(100%, 760px);
}

.about-kicker {
  margin: 0;
  color: var(--color-gold-bright);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.about-rule {
  display: block;
  width: 74px;
  height: 3px;
  margin: 34px 0 28px;
  background: linear-gradient(90deg, var(--color-gold-bright), var(--color-gold-deep));
}

.about-content h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 60px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

.about-content h2 span {
  color: transparent;
  background: linear-gradient(180deg, #fff4b8 0%, #f3cd62 34%, #c99228 68%, #8c5d12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 14px 32px rgba(217, 173, 66, 0.18);
}

.about-lead {
  margin: 28px 0 0;
  color: var(--color-white);
  font-size: 30px;
  line-height: 1.35;
  font-weight: 500;
}

.about-rule-short {
  width: 54px;
  margin: 28px 0 34px;
}

.about-copy {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.services-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 92px;
  background: #050505;
}

.services-bg,
.services-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-bg {
  background:
  
    url("../assets/images/service.webp") center / cover no-repeat;
  opacity: 0.62;
}

.services-lines::before {
  position: absolute;
  right: -8%;
  bottom: -34%;
  width: 820px;
  height: 460px;
  content: "";
  border-top: 1px solid rgba(217, 173, 66, 0.34);
  border-radius: 50%;
  transform: rotate(-13deg);
  box-shadow:
    0 -18px 0 -17px rgba(217, 173, 66, 0.55),
    0 -58px 0 -57px rgba(217, 173, 66, 0.26),
    0 -96px 0 -95px rgba(217, 173, 66, 0.16);
}

.services-lines::after {
  position: absolute;
  top: 92px;
  left: 31%;
  width: 1px;
  height: 170px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(217, 173, 66, 0.9), transparent);
  transform: rotate(38deg);
}

.services-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(360px, 560px) minmax(300px, 520px);
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 54px;
}

.section-heading {
  position: relative;
  padding-left: 56px;
}

.section-heading::after {
  position: absolute;
  right: -54px;
  bottom: 2px;
  width: 250px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(217, 173, 66, 0.88), rgba(217, 173, 66, 0.08));
  transform: skewX(-38deg);
  transform-origin: right center;
}

.section-kicker {
  margin: 0 0 20px;
  color: rgba(240, 209, 118, 0.78);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 10px;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 60px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

.section-heading h2 span {
  color: transparent;
  background: linear-gradient(180deg, #fff4b8 0%, #f3cd62 34%, #c99228 68%, #8c5d12 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-intro {
  max-width: 520px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.85;
}

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

.service-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(8, 8, 8, 0.88);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 22%, rgba(0, 0, 0, 0.2) 46%, rgba(0, 0, 0, 0.94) 78%);
  pointer-events: none;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(240, 209, 118, 0.55);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.42);
  transform: translateY(-4px);
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.service-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 220ms ease, opacity 220ms ease;
}

.service-card:hover .service-image img {
  opacity: 1;
  transform: scale(1.04);
}

.service-card-body {
  position: relative;
  z-index: 1;
  margin-top: -38px;
  padding: 0 34px 34px;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 74px;
}

.service-number {
  color: var(--color-gold-bright);
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--color-white);
  border: 1px solid rgba(240, 209, 118, 0.74);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 173, 66, 0.22), rgba(0, 0, 0, 0.62) 62%);
  box-shadow: 0 0 22px rgba(240, 209, 118, 0.42);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 28px 0 0;
  color: var(--color-white);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0;
}

.service-rule {
  display: block;
  width: 38px;
  height: 4px;
  margin: 22px 0 18px;
  background: var(--color-gold-bright);
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.75;
}

.service-card-list {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.service-card-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-gold-bright);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card-list ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card-list li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.35;
}

.service-card-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--color-gold-bright);
  border-radius: 50%;
  transform: translateY(-50%);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--color-gold-bright);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-card-link::after {
  margin-left: 10px;
  content: "→";
}

.works-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 76px;
  background: #05070a;
}

.works-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("../assets/images/our-work.webp") center / cover no-repeat;
  opacity: 0.72;
}


.works-bg::before {
  top: -210px;
  left: -60px;
}

.works-bg::after {
  top: -160px;
  right: -60px;
}

.works-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
}

.works-heading {
  text-align: center;
}

.works-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 22px;
  color: var(--color-gold-bright);
  font-size: 21px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 9px;
  text-transform: uppercase;
}

.works-kicker span {
  width: 132px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-bright));
}

.works-kicker span:last-child {
  background: linear-gradient(90deg, var(--color-gold-bright), transparent);
}

.works-heading h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 60px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

.works-heading h2 span {
  color: transparent;
  background: linear-gradient(180deg, #fff4b8 0%, #f3cd62 34%, #c99228 68%, #8c5d12 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.works-heading > p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.45;
}

.work-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
}

.work-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 235px;
  min-height: 58px;
  padding: 0 28px;
  color: var(--color-soft-white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.work-tab svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold-bright);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-tab.is-active,
.work-tab:hover,
.work-tab:focus-visible {
  color: #0d0a04;
  border-color: rgba(240, 209, 118, 0.9);
  background: linear-gradient(135deg, #fff0a7 0%, var(--color-gold) 58%, #b98222 100%);
  box-shadow: 0 0 30px rgba(240, 209, 118, 0.26);
}

.work-tab.is-active svg,
.work-tab:hover svg,
.work-tab:focus-visible svg {
  color: #0d0a04;
}

.works-gallery {
  position: relative;
  min-height: 455px;
  margin-top: 46px;
}

.work-card {
  position: absolute;
  top: 70px;
  overflow: hidden;
  border: 1px solid rgba(217, 173, 66, 0.62);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38), 0 0 18px rgba(217, 173, 66, 0.12);
  will-change: left, right, width, opacity, transform;
  transition:
    left 520ms cubic-bezier(0.22, 1, 0.36, 1),
    right 520ms cubic-bezier(0.22, 1, 0.36, 1),
    top 520ms cubic-bezier(0.22, 1, 0.36, 1),
    width 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.work-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card-main {
  top: 0;
  left: 50%;
  right: auto;
  z-index: 5;
  width: min(760px, 54vw);
  aspect-ratio: 16 / 9;
  border-color: rgba(240, 209, 118, 0.88);
  transform: translateX(-50%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), 0 0 26px rgba(240, 209, 118, 0.18);
}

.work-card-left,
.work-card-right {
  z-index: 3;
  width: min(420px, 30vw);
  aspect-ratio: 4 / 3;
}

.work-card-left {
  left: 10%;
  right: auto;
  transform: translateX(0) scale(0.96);
}

.work-card-right {
  left: auto;
  right: 10%;
  transform: translateX(0) scale(0.96);
}

.work-card-far-left,
.work-card-far-right {
  z-index: 2;
  width: min(300px, 22vw);
  aspect-ratio: 4 / 3;
  opacity: 0.74;
}

.work-card-far-left {
  left: 0;
  right: auto;
  transform: translateX(-10px) scale(0.9);
}

.work-card-far-right {
  left: auto;
  right: 0;
  transform: translateX(10px) scale(0.9);
}

.work-card-hidden {
  left: 50%;
  right: auto;
  z-index: 1;
  width: min(760px, 54vw);
  aspect-ratio: 16 / 9;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.86);
}

.gallery-arrow {
  position: absolute;
  top: calc((min(760px, 54vw) * 9 / 16) / 2);
  z-index: 6;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  max-width: 60px;
  min-height: 60px;
  max-height: 60px;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  padding: 0;
  color: var(--color-white);
  border: 1px solid rgba(240, 209, 118, 0.9);
  border-radius: 999px;
  background: rgba(6, 8, 10, 0.9);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.04),
    0 0 16px rgba(240, 209, 118, 0.48);
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  transform: translateY(-50%);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gallery-arrow::before {
  width: 13px;
  height: 13px;
  content: "";
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  margin-top: 15px;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  color: var(--color-white);
  border-color: var(--color-gold-bright);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.05),
    0 0 22px rgba(240, 209, 118, 0.68);
  transform: translateY(-50%) scale(1.04);
}

.gallery-arrow-left {
  left: -28px;
}

.gallery-arrow-left::before {
  transform: rotate(-45deg) translate(1px, 1px);
}

.gallery-arrow-right {
  right: -28px;
}

.gallery-arrow-right::before {
  transform: rotate(135deg) translate(1px, 1px);
}

.work-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.work-dots button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.work-dots button.is-active {
  background: var(--color-gold-bright);
  box-shadow: 0 0 18px rgba(240, 209, 118, 0.52);
  transform: scale(1.12);
}

.works-glow-line {
  display: block;
  width: min(100%, 760px);
  height: 1px;
  margin: 28px auto 0;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  box-shadow: 0 0 18px rgba(240, 209, 118, 0.48);
}

.promotion-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 42px;
  background: #030303;
}

.promotion-section :is(h2, h3, p, span, strong, small) {
  font-weight: 500;
}

.promotion-bg,
.promotion-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.promotion-bg {
  background:
    url("../assets/images/promotion-bg.webp") center / cover no-repeat;
  opacity: 1;
  transform: scale(1.02);
}

.promotion-overlay {
  background:
    radial-gradient(circle at 63% 25%, rgba(240, 209, 118, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.78) 0%, rgba(3, 3, 3, 0.48) 48%, rgba(3, 3, 3, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.12) 44%, rgba(0, 0, 0, 0.72) 100%);
}

.promotion-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
}

.promotion-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(480px, 760px) minmax(320px, 420px);
  align-items: end;
  gap: 42px;
  min-height: 420px;
}

.promotion-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 30px;
  color: var(--color-gold-bright);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.promotion-kicker::after {
  width: 190px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.promotion-copy h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 46px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

.promotion-copy h2 span {
  display: inline-block;
  margin-top: 4px;
  color: transparent;
  background: linear-gradient(180deg, #fff4b8 0%, #f3cd62 34%, #c99228 68%, #8c5d12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.22em;
  font-weight: 700;
  text-shadow: 0 14px 32px rgba(217, 173, 66, 0.18);
}

.promotion-copy > p {
  margin: 24px 0 0;
  color: var(--color-soft-white);
  font-size: 27px;
  line-height: 1.35;
}

.promotion-glow-line {
  display: block;
  width: min(100%, 710px);
  height: 2px;
  margin-top: 36px;
  background: linear-gradient(90deg, var(--color-gold), rgba(240, 209, 118, 0.8), transparent);
  box-shadow: 0 0 18px rgba(240, 209, 118, 0.55);
}

.promotion-side-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 420px;
  margin-bottom: -20px;
  z-index: 2;
}

.promotion-side-image::before {
  position: absolute;
  inset: 8% -18% 0 8%;
  content: "";
  background: radial-gradient(circle, rgba(240, 209, 118, 0.22), transparent 58%);
  filter: blur(10px);
}

.promotion-side-image img {
  position: relative;
  display: block;
  width: min(100%, 390px);
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
}

.promotion-side-image::after {
  display: none;
}

.promotion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 0;
  position: relative;
  z-index: 3;
}

.promotion-card {
  overflow: hidden;
  padding: 26px 38px 32px;
  border: 1px solid rgba(217, 173, 66, 0.72);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.promotion-card > p {
  margin: 0;
  color: var(--color-gold-bright);
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.promotion-card h3 {
  margin: 28px 0 12px;
  color: var(--color-white);
  font-size: 52px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
}

.promotion-card > strong {
  display: block;
  padding: 14px 10px;
  color: #040302;
  background: linear-gradient(180deg, #ffe79c 0%, #d9ad42 56%, #a7751d 100%);
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%, 8% 50%);
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.promotion-card > strong.is-emphasis {
  font-weight: 600;
}

.equals {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 16px;
  color: var(--color-white);
  font-size: 28px;
  font-weight: 500;
}

.equals::before,
.equals::after {
  flex: 1;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}

.credit {
  padding-bottom: 22px;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 36px;
  line-height: 1;
  text-align: center;
}

.credit span {
  color: transparent;
  background: linear-gradient(180deg, #fff4b8 0%, #f3cd62 34%, #c99228 68%, #8c5d12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 52px;
  font-weight: 500;
}

.promotion-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.35;
}

.promotion-note svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--color-gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.terms-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
}

.terms-line span {
  width: 390px;
  max-width: 28vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.terms-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 20px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 30px;
  background: #030303;
}

.contact-bg,
.contact-overlay,
.contact-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-bg {
  background: url("../assets/images/contact-bg.webp") center left / cover no-repeat;
  opacity: 0.62;
  transform: scale(1.02);
}

.contact-overlay {
  background:
   
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.2) 100%);
}

.contact-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(440px, 620px) minmax(520px, 640px);
  align-items: center;
  justify-content: space-between;
  gap: 72px;
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
  padding-bottom: 26px;
}

.contact-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 24px;
  color: var(--color-gold-bright);
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-kicker::after {
  width: 64px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.contact-copy h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 60px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.contact-copy h2 span {
  color: transparent;
  background: linear-gradient(180deg, #fff4b8 0%, #f3cd62 34%, #c99228 68%, #8c5d12 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.contact-intro {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.55;
}

.contact-rule {
  display: block;
  width: 64px;
  height: 2px;
  margin: 28px 0 22px;
  background: var(--color-gold-bright);
}

.direct-contact {
  display: grid;
  grid-template-columns: 54px 1fr 210px;
  align-items: center;
  gap: 20px;
  max-width: 610px;
  padding: 20px 20px 20px 24px;
  border: 1px solid rgba(217, 173, 66, 0.55);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
}

.direct-icon,
.form-heading-icon {
  display: inline-grid;
  place-items: center;
  color: var(--color-gold-bright);
  border: 1px solid rgba(217, 173, 66, 0.78);
  border-radius: 999px;
}

.direct-icon {
  width: 50px;
  height: 50px;
}

.direct-icon svg,
.field-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direct-contact strong {
  display: block;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}

.direct-contact p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.35;
}

.direct-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 28px;
  color: #100d07;
  border-radius: 4px;
  background: linear-gradient(135deg, #f3d77f 0%, var(--color-gold) 58%, #c4922b 100%);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 610px;
  margin-top: 36px;
}

.contact-features article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-features article:last-child {
  border-right: 0;
}

.contact-features svg {
  width: 40px;
  height: 40px;
  color: var(--color-gold-bright);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-features strong {
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-features p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.contact-form {
  padding: 48px;
  border: 1px solid rgba(217, 173, 66, 0.58);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 34px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.form-heading {
  margin-bottom: 34px;
}

.form-heading h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: none;
}

.form-heading p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.form-heading div > span {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 20px;
  background: var(--color-gold-bright);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
}

.field {
  position: relative;
  display: block;
}

.field-full {
  grid-column: 1 / -1;
}

.field-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  z-index: 1;
  color: var(--color-gold-bright);
  transform: translateY(-50%);
}

.message-field .field-icon {
  top: 28px;
  transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 64px;
  padding: 0 20px 0 62px;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  font: inherit;
  font-size: 15px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field select {
  appearance: none;
  color-scheme: dark;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.78) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.78) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.field select option {
  color: var(--color-white);
  background: #111;
}

.field textarea {
  min-height: 132px;
  padding-top: 22px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(217, 173, 66, 0.72);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(217, 173, 66, 0.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  width: 100%;
  min-height: 64px;
  margin-top: 24px;
  color: #100d07;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, #f3d77f 0%, var(--color-gold) 58%, #c4922b 100%);
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  box-shadow: 0 20px 48px rgba(217, 173, 66, 0.22);
  transform: translateY(-2px);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-submit span {
  font-size: 30px;
  line-height: 1;
}

.form-submit > span[aria-hidden="true"] {
  font-size: 0;
  line-height: 0;
}

.form-status {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.form-status.is-success {
  border-color: rgba(217, 173, 66, 0.45);
  color: #f4db92;
  background: rgba(217, 173, 66, 0.1);
}

.form-status.is-error {
  border-color: rgba(255, 119, 119, 0.46);
  color: #ffb4b4;
  background: rgba(255, 91, 91, 0.08);
}

.form-safe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.form-safe span {
  color: var(--color-gold-bright);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 54px 0 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(240, 209, 118, 0.12), transparent 28%),
    linear-gradient(180deg, #050505 0%, #020202 100%);
  border-top: 1px solid rgba(217, 173, 66, 0.18);
}

.site-footer::before {
  position: absolute;
  right: -12%;
  bottom: -110px;
  width: 760px;
  height: 260px;
  content: "";
  border-top: 1px solid rgba(217, 173, 66, 0.26);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
  box-shadow:
    0 -24px 0 -23px rgba(240, 209, 118, 0.18),
    0 -62px 0 -61px rgba(240, 209, 118, 0.1);
}

.footer-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) repeat(3, minmax(180px, 0.75fr));
  gap: 48px;
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
  padding-bottom: 52px;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.footer-logo img {
  display: block;
  width: 90px;
  height: auto;
}

.footer-logo-tagline {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-logo-main {
  color: var(--color-gold-bright);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-logo-sub {
  margin-top: 8px;
  color: var(--color-gold-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
}

.footer-brand p {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.7;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 18px;
  color: #0d0a04;
  border-radius: 4px;
  background: linear-gradient(135deg, #fff0a7 0%, var(--color-gold) 58%, #b98222 100%);
  font-size: 15px;
  font-weight: 500;
  display: none;
}

.footer-whatsapp img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h3 {
  margin: 0 0 22px;
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.footer-column a,
.footer-column p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.45;
}

.footer-column a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--color-gold-bright);
  transform: translateX(4px);
}

.footer-contact p {
  max-width: 270px;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 128px, var(--container));
  min-height: 74px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.4;
}

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

.about-page-hero {
  position: relative;
  min-height: clamp(560px, 43vw, 820px);
  overflow: hidden;
  background: #030303;
}

.about-page-bg,
.about-page-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-page-bg {
  background-image: var(--about-hero-desktop);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.86;
  transform: none;
}

.about-page-overlay {
  background:
    radial-gradient(circle at 72% 34%, rgba(217, 173, 66, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 56%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.14) 58%, rgba(0, 0, 0, 0.72) 100%);
}

.about-page-shell {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(100% - 128px, var(--container));
  min-height: clamp(560px, 43vw, 820px);
  margin: 0 auto;
  padding: 150px 0 72px;
}

.page-kicker {
  margin: 0 0 24px;
  color: var(--color-gold-bright);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.about-page-shell h1 {
  max-width: 760px;
  margin: 0;
  color: var(--color-white);
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.about-page-shell h1 span {
  color: transparent;
  background: linear-gradient(180deg, #fff4b8 0%, #f3cd62 34%, #c99228 68%, #8c5d12 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

main h1 span,
main h2 span {
  color: transparent;
  background: linear-gradient(180deg, #fff4b8 0%, #f3cd62 34%, #c99228 68%, #8c5d12 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.about-page-shell p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.7;
}

.about-story-section,
.about-stats-section,
.about-journey-section,
.about-mission-section,
.about-values-section,
.about-area-section {
  position: relative;
  overflow: hidden;
}

.about-story-section,
.about-stats-section,
.about-mission-section {
  background: #050505;
}

.about-page-hero::after,
.about-story-section::after,
.about-stats-section::after,
.about-journey-section::after,
.about-mission-section::after,
.about-values-section::after,
.about-area-section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 190px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.64) 54%, #030303 100%);
}

.about-story-section::before,
.about-stats-section::before,
.about-journey-section::before,
.about-mission-section::before,
.about-values-section::before,
.about-area-section::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  z-index: 1;
  height: 180px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, #030303 0%, rgba(3, 3, 3, 0.72) 38%, rgba(3, 3, 3, 0) 100%);
}

.about-story-section {
  padding: 100px 0;
}

.about-story-shell,
.about-values-shell,
.about-area-shell,
.about-journey-shell,
.about-mission-shell,
.about-stats-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
}

.about-story-shell {
  display: grid;
  grid-template-columns: minmax(420px, 650px) minmax(360px, 560px);
  align-items: center;
  justify-content: space-between;
  gap: 78px;
}

.about-story-copy h2,
.about-values-heading h2,
.about-mission-shell h2,
.about-area-shell h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 52px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0;
}

.about-story-copy p:not(.section-kicker),
.about-mission-shell p:not(.section-kicker),
.about-area-shell p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.72;
}

.about-story-image {
  overflow: hidden;
  border: 1px solid rgba(217, 173, 66, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.about-story-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-stats-section {
  padding: 0 0 100px;
}

.about-stats-shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(217, 173, 66, 0.34);
  border-radius: 8px;
  background: rgba(9, 9, 9, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.about-stats-shell article {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 24px;
  text-align: center;
}

.about-stats-shell article + article::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
}

.about-stats-shell strong {
  color: transparent;
  background: linear-gradient(180deg, #fff4b8 0%, #f3cd62 34%, #c99228 68%, #8c5d12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}

.about-stats-shell span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.35;
}

.about-values-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(217, 173, 66, 0.12), transparent 28%),
    #030303;
}

.about-journey-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(217, 173, 66, 0.12), transparent 28%),
    #030303;
}

.about-values-heading {
  display: grid;
  grid-template-columns: minmax(320px, 620px);
  margin-bottom: 46px;
}

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

.about-timeline article {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 2px solid rgba(217, 173, 66, 0.5);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    #070707;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.4);
}

.about-timeline article::before {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 54%;
  height: 40%;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(34deg, transparent 0 18%, rgba(217, 173, 66, 0.14) 18.5% 20%, transparent 20.5% 100%),
    repeating-linear-gradient(28deg, rgba(217, 173, 66, 0.07) 0 2px, transparent 2px 34px);
  opacity: 0.42;
  mask-image: linear-gradient(135deg, transparent 0%, #000 34%, #000 100%);
}

.about-timeline article::after {
  display: none;
}

.timeline-card-media {
  position: relative;
  z-index: 1;
  height: 220px;
  margin: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.timeline-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.1) 66%, rgba(7, 7, 7, 0.56) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 42%, rgba(0, 0, 0, 0.16));
}

.timeline-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.timeline-card-body {
  position: relative;
  z-index: 1;
  min-height: 150px;
  padding: 24px 24px 30px;
}

.about-timeline span {
  display: block;
  margin: 0;
  color: #f4d76e;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(217, 173, 66, 0.22);
}

.about-timeline span::after {
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 18px;
  content: "";
  background: linear-gradient(90deg, #f0d176, rgba(217, 173, 66, 0.18));
  box-shadow: 0 0 10px rgba(240, 209, 118, 0.36);
}

.about-timeline h3 {
  margin: 24px 0 0;
  color: var(--color-white);
  font-size: 26px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.about-timeline p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0;
}

.about-mission-section {
  padding: 0 0 100px;
}

.about-mission-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-mission-shell article {
  min-height: 360px;
  padding: 42px;
  border: 1px solid rgba(217, 173, 66, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 173, 66, 0.1), rgba(255, 255, 255, 0.035) 42%, rgba(255, 255, 255, 0.02));
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-values-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.about-values-grid span {
  color: transparent;
  background: linear-gradient(180deg, #fff4b8 0%, #f3cd62 52%, #a7751d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.about-values-grid h3 {
  margin: 42px 0 0;
  color: var(--color-white);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 500;
}

.about-values-grid p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.65;
}

.about-area-section {
  padding: 88px 0;
  background: url("../assets/images/about-cta.webp") center right / cover no-repeat;
}

.about-promise-section .about-area-shell {
  align-items: end;
}

.about-promise-section .about-area-shell p {
  max-width: 780px;
}

.about-area-shell {
  display: grid;
  grid-template-columns: minmax(420px, 720px) 280px;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.about-area-shell .btn {
  width: 280px;
}

.contact-page-hero {
  position: relative;
  min-height: clamp(540px, 43vw, 800px);
  overflow: hidden;
  background: #030303;
}

.contact-page-bg,
.contact-page-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-page-bg {
  background-image: var(--contact-hero-desktop);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.84;
  transform: none;
}

.contact-page-overlay {
  background:
    radial-gradient(circle at 72% 32%, rgba(217, 173, 66, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 58%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.12) 56%, rgba(0, 0, 0, 0.72) 100%);
}

.contact-page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(100% - 128px, var(--container));
  min-height: clamp(540px, 43vw, 800px);
  margin: 0 auto;
  padding: 150px 0 68px;
}

.contact-page-shell h1 {
  max-width: 780px;
  margin: 0;
  color: var(--color-white);
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-page-shell p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.7;
}

.work-page-hero {
  position: relative;
  min-height: clamp(560px, 43vw, 820px);
  overflow: hidden;
  background: #030303;
}

.work-page-bg,
.work-page-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.work-page-bg {
  background-image: var(--work-hero-desktop);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.78;
}

.work-page-overlay {
  background:
    radial-gradient(circle at 68% 34%, rgba(217, 173, 66, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.54) 56%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.78) 100%);
}

.work-page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(100% - 128px, var(--container));
  min-height: clamp(560px, 43vw, 820px);
  margin: 0 auto;
  padding: 132px 0 80px;
}

.work-page-shell h1 {
  max-width: 780px;
  margin: 0;
  color: var(--color-white);
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.work-page-shell p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.7;
}

.work-page-main {
  padding-top: 100px;
}

.before-after-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 88% 12%, rgba(240, 209, 118, 0.12), transparent 28%),
    linear-gradient(180deg, #05070a 0%, #030303 100%);
}

.before-after-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(217, 173, 66, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(217, 173, 66, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  pointer-events: none;
}

.before-after-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.before-after-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(217, 173, 66, 0.48);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34);
}

.before-after-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.38) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.before-after-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 420ms ease;
}

.before-after-card:nth-child(1) img,
.before-after-card:nth-child(3) img {
  object-fit: cover;
}

.before-after-card:hover img {
  transform: scale(1.04);
}

.before-after-card-wide {
  grid-column: auto;
}

@media (max-width: 1200px) {
  .before-after-shell {
    width: min(100% - 56px, var(--container));
  }

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

@media (max-width: 640px) {
  .before-after-section {
    padding: 64px 0;
  }

  .before-after-shell {
    width: min(100% - 28px, var(--container));
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .before-after-card,
  .before-after-card-wide {
    grid-column: auto;
    aspect-ratio: 16 / 9;
  }
}

.work-category-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(240, 209, 118, 0.1), transparent 26%),
    #050505;
}

.work-category-section::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  z-index: 1;
  height: 180px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, #030303 0%, rgba(3, 3, 3, 0.72) 38%, rgba(3, 3, 3, 0) 100%);
}

.work-category-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
}

.branches-page-hero {
  position: relative;
  min-height: clamp(560px, 43vw, 820px);
  overflow: hidden;
  background: #030303;
}

.branches-page-bg,
.branches-page-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.branches-page-bg {
  background-image: var(--branches-hero-desktop);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.78;
}

.branches-page-overlay {
  background:
    radial-gradient(circle at 68% 34%, rgba(217, 173, 66, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.54) 56%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.78) 100%);
}

.branches-page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(100% - 128px, var(--container));
  min-height: clamp(560px, 43vw, 820px);
  margin: 0 auto;
  padding: 132px 0 80px;
}

.branches-page-shell h1 {
  max-width: 780px;
  margin: 0;
  color: var(--color-white);
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.branches-page-shell p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.7;
}

.branches-list-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(240, 209, 118, 0.1), transparent 26%),
    #050505;
}

.branches-list-section::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  z-index: 1;
  height: 180px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, #030303 0%, rgba(3, 3, 3, 0.72) 38%, rgba(3, 3, 3, 0) 100%);
}

.branches-list-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
}

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

.branch-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 2px solid rgba(217, 173, 66, 0.58);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    #070707;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
}

.branch-card::before {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 52%;
  height: 46%;
  content: "";
  background:
    radial-gradient(circle at 62% 48%, rgba(217, 173, 66, 0.15) 0 5px, transparent 6px),
    linear-gradient(34deg, transparent 0 18%, rgba(217, 173, 66, 0.12) 18.5% 20%, transparent 20.5% 100%),
    linear-gradient(148deg, transparent 0 28%, rgba(217, 173, 66, 0.1) 28.5% 30%, transparent 30.5% 100%),
    linear-gradient(88deg, transparent 0 38%, rgba(217, 173, 66, 0.08) 38.5% 40%, transparent 40.5% 100%),
    repeating-linear-gradient(28deg, rgba(217, 173, 66, 0.06) 0 2px, transparent 2px 34px);
  opacity: 0.44;
  pointer-events: none;
  mask-image: linear-gradient(135deg, transparent 0%, #000 34%, #000 100%);
}

.branch-card::after {
  position: absolute;
  right: 18%;
  bottom: 18%;
  z-index: 0;
  width: 58px;
  height: 58px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse fill='%23f0d176' cx='256' cy='193.6' rx='54.8' ry='54.1'/%3E%3Cpath fill='%23f0d176' d='m256 0c-107.7 0-195.4 86.8-195.4 193.6 0 44 31 110.3 92 197 44.4 63 88.1 113.2 89.9 115.3 6.5 7.4 17.8 8.2 25.2 1.7.6-.5 1.2-1.1 1.7-1.7 1.8-2.1 45.5-52.3 89.9-115.3 61-86.7 92-153 92-197 .1-106.8-87.6-193.6-195.3-193.6zm0 283.4c-49.9 0-90.5-40.3-90.5-89.8s40.6-89.8 90.5-89.8 90.5 40.3 90.5 89.8-40.6 89.8-90.5 89.8z'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.4));
}

.branch-card-media {
  position: relative;
  z-index: 1;
  height: 220px;
  margin: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.branch-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.15) 62%, rgba(7, 7, 7, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 38%, rgba(0, 0, 0, 0.22));
}

.branch-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
}

.branch-card-number {
  position: absolute;
  top: -2px;
  left: 22px;
  z-index: 2;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  color: #090909;
  background: linear-gradient(180deg, #ffe783 0%, #d8a832 100%);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.branch-card-number::after {
  position: absolute;
  right: 10px;
  bottom: -10px;
  left: 10px;
  height: 10px;
  content: "";
  background: #b78322;
  border-radius: 0 0 6px 6px;
}

.branch-card-body {
  position: relative;
  z-index: 1;
  padding: 24px 24px 30px;
}

.branch-card h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 27px;
  line-height: 1.08;
  font-weight: 700;
  text-shadow: 0 5px 20px rgba(255, 255, 255, 0.18);
}

.branch-card p,
.branch-card a {
  display: grid;
  position: relative;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

.branch-card a {
  text-decoration: none;
  transition: color 180ms ease;
}

.branch-detail-phone {
  padding-top: 26px;
  border-top: 1px solid rgba(217, 173, 66, 0.36);
}

.branch-card a:hover,
.branch-card a:focus-visible {
  color: var(--color-gold-bright);
}

.branch-map-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin: 12px 0 0 34px;
  padding: 0;
  color: #f0d176;
  border: 0;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.branch-card p span,
.branch-card a span {
  color: var(--color-gold-bright);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.branch-detail::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  content: "";
  background: var(--color-gold-bright);
}

.branch-detail-address::before {
  display: none;
}

.branch-detail-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  display: block;
  color: #f0d176;
  fill: currentColor;
}

.branch-detail-icon path,
.branch-detail-icon ellipse {
  fill: currentColor;
}

.branch-detail-phone::before {
  display: none;
}

.branch-detail-phone .branch-detail-icon {
  top: 24px;
}

.contact-info-section {
  padding: 82px 0;
  background: #050505;
}

.contact-info-shell,
.contact-page-main-shell {
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
}

.contact-info-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-info-shell article {
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(217, 173, 66, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-info-shell article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--color-gold-bright);
  border: 1px solid rgba(217, 173, 66, 0.58);
  border-radius: 999px;
}

.contact-info-shell svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-shell h2 {
  margin: 28px 0 0;
  color: var(--color-white);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-info-shell a,
.contact-info-shell p {
  display: inline-block;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.45;
}

.contact-page-main {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 173, 66, 0.12), transparent 30%),
    #030303;
}

.contact-page-main-shell {
  display: grid;
  grid-template-columns: minmax(420px, 620px) minmax(520px, 640px);
  align-items: start;
  justify-content: space-between;
  gap: 72px;
}

.contact-page-copy h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 52px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-page-copy > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.72;
}

.contact-map-frame {
  display: grid;
  min-height: 280px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(217, 173, 66, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 173, 66, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.035);
}

.contact-map-frame iframe {
  width: 100%;
  min-height: 320px;
  display: block;
  border: 0;
}

.contact-map-frame span {
  color: var(--color-gold-bright);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-map-frame strong {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.service-page-hero {
  position: relative;
  min-height: clamp(560px, 43vw, 820px);
  overflow: hidden;
  background: #030303;
}

.service-page-bg,
.service-page-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-page-bg {
  background-image: url("../assets/images/service.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.86;
  transform: none;
}

.page-paint-protection .service-page-bg {
  background-image: var(--paint-hero-desktop);
}

.page-interior-care .service-page-bg {
  background-image: var(--interior-hero-desktop);
}

.page-exterior-care .service-page-bg {
  background-image: var(--exterior-hero-desktop);
}

.page-restoration-care .service-page-bg {
  background-image: var(--restoration-hero-desktop);
}

.service-page-overlay {
  background:
    radial-gradient(circle at 70% 32%, rgba(217, 173, 66, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 58%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.12) 56%, rgba(0, 0, 0, 0.72) 100%);
}

.service-page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(100% - 128px, var(--container));
  min-height: clamp(560px, 43vw, 820px);
  margin: 0 auto;
  padding: 150px 0 72px;
}

.service-page-shell h1 {
  max-width: 780px;
  margin: 0;
  color: var(--color-white);
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.service-page-shell p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.7;
}

.service-category-section,
.service-process-section {
  position: relative;
  overflow: hidden;
  background: #050505;
}

.service-category-section {
  padding: 100px 0;
}

.service-category-shell,
.service-process-shell,
.service-cta-shell {
  width: min(100% - 128px, var(--container));
  margin: 0 auto;
}

.service-category-heading {
  display: grid;
  grid-template-columns: minmax(420px, 680px) minmax(320px, 520px);
  align-items: end;
  justify-content: space-between;
  gap: 52px;
  margin-bottom: 48px;
}

.service-category-heading h2,
.service-process-shell h2,
.service-cta-shell h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 52px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0;
}

.service-category-heading > p,
.service-cta-shell p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.68;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.service-detail-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-detail-grid article {
  overflow: hidden;
  border: 1px solid rgba(217, 173, 66, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.service-detail-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-detail-grid div {
  padding: 26px;
}

.service-detail-grid span,
.service-process-steps span {
  color: transparent;
  background: linear-gradient(180deg, #fff4b8 0%, #f3cd62 52%, #a7751d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.service-detail-grid h3,
.service-process-steps h3 {
  margin: 28px 0 0;
  color: var(--color-white);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 500;
}

.service-detail-grid p,
.service-process-steps p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.65;
}

.service-process-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 86% 10%, rgba(217, 173, 66, 0.1), transparent 28%),
    #030303;
}

.service-process-shell {
  display: grid;
  grid-template-columns: minmax(360px, 500px) minmax(520px, 1fr);
  gap: 70px;
}

.service-process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-process-steps article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.service-cta-section {
    padding: 88px 0;
    background: url(../assets/images/about-cta.webp) center right / cover no-repeat;
}

.service-cta-shell {
  display: grid;
  grid-template-columns: minmax(420px, 760px) 190px;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.service-cta-shell p {
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .nav-shell,
  .hero-shell,
  .about-shell,
  .services-shell,
  .works-shell,
  .contact-shell,
  .promotion-shell,
  .footer-shell,
  .footer-bottom,
  .metrics-shell {
    width: min(100% - 56px, var(--container));
  }

  .nav-shell {
    grid-template-columns: 210px 1fr 300px;
  }

  .brand-main {
    font-size: 30px;
  }

  .brand img {
    width: 70px;
  }

  .primary-nav {
    font-size: 16px;
  }

  .primary-nav a {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 54px;
  }

  .section-heading h2 {
    font-size: 54px;
  }

  .about-content h2 {
    font-size: 54px;
  }

  .about-lead {
    font-size: 26px;
  }

  .about-copy {
    font-size: 19px;
  }

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

  .promotion-hero {
    grid-template-columns: minmax(420px, 1fr) 320px;
    min-height: 380px;
  }

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

  .work-tab {
    min-width: 210px;
    padding: 0 22px;
  }

  .work-card-main {
    width: min(680px, 58vw);
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-copy {
    width: min(100%, 760px);
  }

  .footer-shell {
    grid-template-columns: 1.1fr repeat(3, 1fr);
    gap: 34px;
  }

  .about-page-shell,
  .work-page-shell,
  .work-category-shell,
  .branches-page-shell,
  .branches-list-shell,
  .about-story-shell,
  .about-values-shell,
  .about-area-shell,
  .about-journey-shell,
  .about-mission-shell,
  .about-stats-shell {
    width: min(100% - 56px, var(--container));
  }

  .about-story-shell {
    grid-template-columns: 1fr 0.85fr;
    gap: 44px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-page-shell,
  .contact-info-shell,
  .contact-page-main-shell {
    width: min(100% - 56px, var(--container));
  }

  .contact-page-main-shell {
    grid-template-columns: minmax(360px, 0.9fr) minmax(500px, 1fr);
    gap: 44px;
  }

  .service-page-shell,
  .service-category-shell,
  .service-process-shell,
  .service-cta-shell {
    width: min(100% - 56px, var(--container));
  }

  .service-detail-grid,
  .service-detail-grid-two,
  .service-detail-grid-three {
    grid-template-columns: repeat(2, 1fr);
  }

  .branch-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .branch-card {
    min-height: 560px;
  }

  .branch-card-media {
    height: 260px;
  }

  .branch-card-body {
    padding: 26px 34px 34px;
  }

  .branch-card h3 {
    font-size: 34px;
  }

  .branch-card p,
  .branch-card a {
    font-size: 17px;
  }

  .service-process-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 76px;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
    width: min(100% - 28px, var(--container));
  }

  .brand-main {
    font-size: 26px;
  }

  .brand img {
    width: 58px;
  }

  .brand-tagline {
    margin-top: 4px;
  }

  .brand-sub {
    font-size: 10px;
    letter-spacing: 5px;
  }

  .brand-sub-wide {
    font-size: 9px;
    letter-spacing: 4px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-cta {
    order: 2;
    width: auto;
    min-height: 46px;
    padding: 0 18px;
    gap: 20px;
    font-size: 14px;
  }

  .header-actions {
    order: 2;
    gap: 10px;
  }

  .translate-shell {
    min-height: 40px;
  }

  .language-select {
    width: 138px;
    min-height: 40px;
  }

  .goog-te-gadget-simple {
    min-height: 40px;
    padding: 0 10px !important;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 24px 20px 28px;
    overflow-y: auto;
    color: var(--color-white);
    background:
      radial-gradient(circle at 100% 0%, rgba(217, 173, 66, 0.12), transparent 36%),
      linear-gradient(135deg, rgba(9, 9, 9, 0.98), rgba(0, 0, 0, 0.98));
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1), visibility 260ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .primary-nav > a {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }

  .primary-nav > a.is-active,
  .primary-nav > a:hover,
  .primary-nav > a:focus-visible {
    color: var(--color-gold-bright);
  }

  .primary-nav .mobile-menu-head {
    order: 0;
  }

  .primary-nav > a[href="#top"] {
    order: 1;
  }

  .primary-nav > a[href="#about"],
  .primary-nav > a[href="about.html"] {
    order: 2;
  }

  .primary-nav > a[href="#services"],
  .primary-nav > a[href="index.html#services"] {
    order: 3;
  }

  .primary-nav .nav-service-group {
    order: 3;
  }

  .primary-nav .nav-service-group > a,
  .primary-nav .service-menu-toggle {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 58px;
    padding: 0;
    color: inherit;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-align: left;
  }

  .primary-nav .nav-service-group > a.is-active,
  .primary-nav .service-menu-toggle.is-active,
  .primary-nav .nav-service-group.is-open .service-menu-toggle {
    color: var(--color-gold-bright);
  }

  .primary-nav .service-submenu {
    position: static;
    display: grid;
    min-width: 0;
    max-height: 0;
    padding: 0 0 0 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 240ms ease, padding 240ms ease;
  }

  .primary-nav .nav-service-group.is-open .service-submenu {
    max-height: 260px;
    padding: 8px 0 10px 44px;
     transform: translate(0%, 0);
  }


  .primary-nav .service-submenu a {
    min-height: 0;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.58);
    border-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
    white-space: normal;
    text-transform: uppercase;
  }

  .primary-nav .service-submenu a:hover,
  .primary-nav .service-submenu a:focus-visible {
    color: var(--color-gold-bright);
  }

  .primary-nav > a[href="#works"],
  .primary-nav > a[href="index.html#works"],
  .primary-nav > a[href="work.html"] {
    order: 4;
  }

  .primary-nav > a[href="branches.html"] {
    order: 5;
  }

  .primary-nav > a[href="#contact"]:not(.mobile-only),
  .primary-nav > a[href="index.html#contact"]:not(.mobile-only),
  .primary-nav > a[href="contact.html"]:not(.mobile-only) {
    order: 6;
  }

  .primary-nav .mobile-menu-actions {
    order: 7;
  }

  .primary-nav .mobile-follow {
    order: 8;
  }

  .primary-nav > a + a::before,
  .primary-nav .nav-service-group::before {
    display: none;
  }

  .primary-nav > a:last-of-type {
    border-bottom: 0;
  }

  .mobile-menu-head,
  .mobile-menu-actions,
  .mobile-follow {
    display: grid;
  }

  .mobile-menu-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
    padding: 0 2px;
  }

  .mobile-menu-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    order: 0 !important;
    padding: 0;
    border-bottom: 0;
    line-height: 1;
  }

  .mobile-menu-logo img {
    display: block;
    width: 50px;
    height: auto;
  }

  .mobile-menu-tagline {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 9px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .mobile-menu-logo .brand-main {
    font-size: 23px;
    font-weight: 800;
  }

  .mobile-menu-logo .brand-sub {
    margin-top: 7px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 4px;
  }

  .mobile-menu-logo .brand-sub-wide {
    margin-top: 6px;
    font-size: 7px;
    letter-spacing: 3.2px;
  }

  .menu-close {
    position: relative;
    display: block;
    order: 1;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-close::before,
  .menu-close::after {
    position: absolute;
    top: 20px;
    left: 8px;
    width: 25px;
    height: 2px;
    content: "";
    background: var(--color-gold-bright);
  }

  .menu-close::before {
    transform: rotate(45deg);
  }

  .menu-close::after {
    transform: rotate(-45deg);
  }

  .mobile-only {
    display: grid;
  }

  .mobile-text,
  .mobile-nav-icon {
    display: inline-grid;
  }

  .desktop-text {
    display: none;
  }

  .mobile-nav-icon {
    place-items: center;
    width: 26px;
    height: 26px;
    color: var(--color-gold-bright);
  }

  .mobile-nav-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-menu-actions {
    gap: 6px;
    margin-top: 12px;
  }

  .mobile-call {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    column-gap: 12px;
    min-height: 58px;
    padding: 10px 14px;
    border: 1px solid rgba(217, 173, 66, 0.62);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
  }

  .mobile-action-icon {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--color-gold-bright);
    border: 1px solid rgba(217, 173, 66, 0.54);
    border-radius: 999px;
  }

  .mobile-action-icon svg,
  .mobile-action-icon img {
    width: 19px;
    height: 19px;
    object-fit: contain;
  }

  .mobile-action-icon img {
    filter: sepia(1) saturate(2.2) hue-rotate(356deg) brightness(0.92);
  }

  .mobile-action-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-call span:not(.mobile-action-icon) {
    color: rgba(240, 209, 118, 0.72);
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-call strong {
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: none;
  }

  .mobile-follow {
    justify-items: center;
    gap: 13px;
    margin-top: 22px;
  }

  .mobile-follow p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .mobile-follow div {
    display: flex;
    gap: 14px;
  }

  .mobile-follow a {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    padding: 0;
    border: 1px solid rgba(217, 173, 66, 0.74);
    border-radius: 999px;
  }

  .mobile-follow img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: sepia(1) saturate(2.2) hue-rotate(356deg) brightness(0.92);
  }

  .hero-bg {
    background-position: center top;
    background-size: cover;
    opacity: 0.86;
  }


  .hero-light-ring::before {
    right: 18%;
    bottom: -20%;
    width: 430px;
    height: 430px;
  }

  .hero-light-ring::after {
    right: 66%;
    bottom: 22%;
  }

  .hero-shell {
    width: min(100% - 28px, var(--container));
    min-height: 1100px;
    padding: 100px 0;
  }

  .services-section {
    padding: 82px 0 70px;
  }

  .promotion-section {
    padding: 76px 0 42px;
  }

  .works-section {
    padding: 66px 0 64px;
  }

  .contact-section {
    padding: 72px 0 28px;
  }

  .contact-shell {
    width: min(100% - 28px, var(--container));
    gap: 44px;
  }

  .contact-copy h2 {
    font-size: 44px;
  }

  .contact-form {
    padding: 34px;
  }

  .works-shell {
    width: min(100% - 28px, var(--container));
  }

  .works-heading h2 {
    font-size: 40px;
  }

  .works-heading > p {
    font-size: 17px;
  }

  .work-tabs {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
  }

  .work-tab {
    min-width: calc(50% - 6px);
    min-height: 52px;
    font-size: 14px;
  }

  .works-gallery {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: clamp(250px, 58vw, 430px);
    margin-top: 34px;
  }

  .work-card {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    opacity: 0;
    aspect-ratio: 16 / 9;
    pointer-events: none;
    transform: translateX(110%) scale(0.98);
    transition:
      opacity 360ms ease,
      transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 220ms ease,
      box-shadow 220ms ease;
  }

  .works-gallery.is-instant .work-card {
    transition: none;
  }

  .works-gallery.is-slide-next .work-card-main {
    animation: mobileWorkSlideNext 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .works-gallery.is-slide-prev .work-card-main {
    animation: mobileWorkSlidePrev 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes mobileWorkSlideNext {
    from {
      opacity: 0.86;
      transform: translateX(110%) scale(0.98);
    }

    to {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }

  @keyframes mobileWorkSlidePrev {
    from {
      opacity: 0.86;
      transform: translateX(-110%) scale(0.98);
    }

    to {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }

  .work-card-main {
    z-index: 3;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
  }

  .work-card-left,
  .work-card-far-left {
    transform: translateX(-110%) scale(0.98);
  }

  .work-card-right,
  .work-card-far-right {
    transform: translateX(110%) scale(0.98);
  }

  .work-card-left,
  .work-card-right,
  .work-card-far-left,
  .work-card-far-right,
  .work-card-hidden {
    display: block;
    width: 100%;
  }

  .gallery-arrow {
    display: grid;
    top: calc((100vw - 28px) * 9 / 32);
    width: 46px;
    height: 46px;
    min-width: 46px;
    max-width: 46px;
    min-height: 46px;
    max-height: 46px;
  }

  .gallery-arrow::before {
    width: 10px;
    height: 10px;
    border-width: 2px 0 0 2px;
  }

  .gallery-arrow-left {
    left: 12px;
  }

  .gallery-arrow-right {
    right: 12px;
  }

  .promotion-shell {
    width: min(100% - 28px, var(--container));
  }

  .promotion-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }

  .promotion-copy h2 {
    font-size: 40px;
  }

  .promotion-copy > p {
    font-size: 22px;
  }

  .promotion-side-image {
    justify-content: center;
    min-height: 360px;
    margin-top: 22px;
    margin-bottom: -34px;
  }

  .promotion-side-image img {
    width: min(100%, 360px);
  }

  .about-section,
  .about-shell {
    min-height: 680px;
  }

  .about-section {
    padding-top: 110px;
  }

  .about-shell {
    width: min(100% - 28px, var(--container));
    padding: 84px 0;
  }

  .about-bg {
    background-position: center center;
    opacity: 0.48;
  }

  .about-overlay {
    background:
      linear-gradient(90deg, rgba(2, 2, 2, 0.98) 0%, rgba(2, 2, 2, 0.82) 58%, rgba(2, 2, 2, 0.36) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.86) 100%);
  }

  .about-content h2 {
    font-size: 42px;
  }

  .about-lead {
    font-size: 26px;
  }

  .about-copy {
    max-width: 560px;
    font-size: 17px;
  }

  .services-shell {
    width: min(100% - 28px, var(--container));
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }

  .section-heading {
    padding-left: 0;
  }

  .section-heading::after {
    right: auto;
    left: 0;
    bottom: -18px;
    width: 220px;
  }

  .section-heading h2 {
    font-size: 40px;
  }

  .section-intro {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-content {
    width: min(100%, 620px);
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .trust-panel {
    grid-template-columns: repeat(2, 1fr);
    max-width: 520px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-metrics article:nth-child(3)::before {
    display: none;
  }

  .hero-metrics article {
    min-height: 96px;
  }

  .footer-shell,
  .footer-bottom,
  .metrics-shell {
    width: min(100% - 28px, var(--container));
  }

  .footer-shell {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 620px;
  }

  .about-page-shell,
  .work-page-shell,
  .work-category-shell,
  .branches-page-shell,
  .branches-list-shell,
  .about-story-shell,
  .about-values-shell,
  .about-area-shell,
  .about-stats-shell {
    width: min(100% - 28px, var(--container));
  }

  .about-page-shell h1,
  .work-page-shell h1,
  .branches-page-shell h1 {
    font-size: 46px;
  }

  .about-story-shell,
  .about-area-shell {
    grid-template-columns: 1fr;
  }

  .about-mission-shell {
    grid-template-columns: 1fr;
  }

  .about-story-copy h2,
  .about-values-heading h2,
  .about-mission-shell h2,
  .about-area-shell h2 {
    font-size: 40px;
  }

  .about-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-shell article:nth-child(3)::before {
    display: none;
  }

  .contact-page-shell,
  .contact-info-shell,
  .contact-page-main-shell {
    width: min(100% - 28px, var(--container));
  }

  .contact-page-shell h1 {
    font-size: 46px;
  }

  .contact-info-shell,
  .contact-page-main-shell {
    grid-template-columns: 1fr;
  }

  .contact-page-copy h2 {
    font-size: 40px;
  }

  .service-page-shell,
  .service-category-shell,
  .service-process-shell,
  .service-cta-shell {
    width: min(100% - 28px, var(--container));
  }

  .service-page-shell h1 {
    font-size: 46px;
  }

  .service-category-heading,
  .service-cta-shell {
    grid-template-columns: 1fr;
  }

  .service-category-heading h2,
  .service-process-shell h2,
  .service-cta-shell h2 {
    font-size: 40px;
  }
}

@media (max-width: 620px) {
  .nav-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .goog-te-gadget-simple {
    max-width: 120px;
    min-width: 112px;
    overflow: hidden;
  }

  .language-select {
    width: 112px;
    padding-right: 26px;
    font-size: 12px;
  }

  .hero-shell {
    min-height: 1100px;
    padding-top: 100px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 3px;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.75;
  }

  .trust-panel {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 250px);
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .metrics-shell {
    transform: translateY(-30%);
  }

  .hero-metrics article + article::before {
    display: block;
    top: 0;
    right: 28px;
    bottom: auto;
    left: 28px;
    width: auto;
    height: 1px;
  }

  .hero-metrics article:nth-child(3)::before {
    display: block;
  }

  .hero-metrics strong {
    font-size: 34px;
  }

  .hero-metrics p {
    font-size: 14px;
  }

  .services-section {
    padding: 64px 0 56px;
  }

  .about-section,
  .about-shell {
    min-height: 0px;
  }

  .about-section {
    padding-top: 0px;
  }

  .about-shell {
    padding: 80px 0;
  }

  .about-kicker {
    font-size: 13px;
    letter-spacing: 4px;
  }

  .about-rule {
    margin: 24px 0 22px;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-lead {
    margin-top: 22px;
    font-size: 22px;
  }

  .about-rule-short {
    margin: 22px 0 26px;
  }

  .about-copy {
    font-size: 16px;
  }

  .section-kicker {
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: 5px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

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

  .service-card {
    min-height: 470px;
  }

  .service-card-body {
    padding: 0 24px 28px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .service-card p {
    font-size: 15px;
  }

  .promotion-section {
    padding: 62px 0 34px;
  }

  .works-kicker {
    gap: 12px;
    font-size: 13px;
    letter-spacing: 5px;
  }

  .works-kicker span {
    width: 58px;
  }

  .works-heading h2 {
    font-size: 32px;
  }

  .work-tab {
    min-width: 100%;
    justify-content: flex-start;
  }

  .work-card-left,
  .work-card-right {
    display: none;
  }

  .contact-copy h2 {
    font-size: 34px;
  }

  .contact-intro {
    font-size: 16px;
  }

  .direct-contact {
    grid-template-columns: 48px 1fr;
  }

  .direct-contact a {
    grid-column: 1 / -1;
  }

  .contact-features {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-features article {
    border-right: 0;
    padding-right: 0;
  }

  .contact-form {
    padding: 24px;
  }

  .form-heading {
    margin-bottom: 28px;
  }

  .form-heading h2 {
    font-size: 20px;
  }

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

  .promotion-kicker {
    font-size: 13px;
  }

  .promotion-kicker::after {
    width: 96px;
  }

  .promotion-copy h2 {
    font-size: 32px;
  }

  .promotion-copy > p {
    font-size: 18px;
  }

  .promotion-glow-line {
    margin-top: 24px;
  }

  .promotion-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .promotion-card {
    padding: 24px 24px 28px;
  }

  .promotion-card h3 {
    font-size: 42px;
  }

  .promotion-card > strong {
    font-size: 24px;
  }

  .credit {
    font-size: 28px;
  }

  .credit span {
    font-size: 42px;
  }

  .terms-line {
    gap: 18px;
  }

  .terms-line p {
    font-size: 15px;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo-main {
    font-size: 32px;
  }

  .footer-logo-sub {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .footer-brand p,
  .footer-column a,
  .footer-column p {
    font-size: 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 96px;
    padding: 20px 0;
  }

  .about-page-hero,
  .about-page-shell,
  .work-page-hero,
  .work-page-shell,
  .branches-page-hero,
  .branches-page-shell {
    min-height: 620px;
  }

  .about-page-shell,
  .work-page-shell,
  .branches-page-shell {
    padding: 116px 0 56px;
  }

  .about-page-shell h1,
  .work-page-shell h1,
  .branches-page-shell h1 {
    font-size: 38px;
  }

  .about-page-shell p:last-child,
  .work-page-shell p:last-child,
  .branches-page-shell p:last-child,
  .about-story-copy p:not(.section-kicker),
  .about-mission-shell p:not(.section-kicker),
  .about-area-shell p {
    font-size: 16px;
  }

  .about-story-section,
  .about-journey-section,
  .about-values-section {
    padding: 64px 0;
  }

  .about-mission-section {
    padding-bottom: 64px;
  }

  .about-story-copy h2,
  .about-values-heading h2,
  .about-mission-shell h2,
  .about-area-shell h2 {
    font-size: 32px;
  }

  .about-stats-section {
    padding-bottom: 64px;
  }

  .about-stats-shell {
    grid-template-columns: 1fr;
  }

  .about-stats-shell article + article::before {
    display: block;
    top: 0;
    right: 28px;
    bottom: auto;
    left: 28px;
    width: auto;
    height: 1px;
  }

  .about-stats-shell strong {
    font-size: 30px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline {
    grid-template-columns: 1fr;
  }

  .about-timeline article {
    min-height: 0;
    padding: 0;
  }

  .timeline-card-media {
    height: 238px;
  }

  .timeline-card-body {
    min-height: 0;
    padding: 24px;
  }

  .about-timeline h3 {
    font-size: 28px;
  }

  .about-mission-shell article {
    min-height: 0;
    padding: 28px;
  }

  .about-values-grid article {
    min-height: 220px;
    padding: 24px;
  }

.about-area-section {
    position: relative;
    overflow: hidden;
}

.about-area-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
    pointer-events: none;
    height: 100%;
}

.about-area-section > * {
    position: relative;
    z-index: 2;
}

  
  .about-area-shell .btn {
    width: 100%;
  }

  .contact-page-hero,
  .contact-page-shell {
    min-height: 620px;
  }

  .contact-page-shell {
    padding: 116px 0 56px;
  }

  .contact-page-shell h1 {
    font-size: 38px;
  }

  .contact-page-shell p:last-child,
  .contact-page-copy > p {
    font-size: 16px;
  }

  .contact-info-section {
    padding: 64px 0;
  }

  .contact-info-shell article {
    min-height: 190px;
    padding: 24px;
  }

  .contact-page-main {
    padding: 64px 0;
  }

  .contact-page-copy h2 {
    font-size: 32px;
  }

  .contact-map-frame {
    min-height: 220px;
  }

  .contact-map-frame iframe {
    min-height: 260px;
  }

  .service-page-hero,
  .service-page-shell {
    min-height: 620px;
  }

  .service-page-shell {
    padding: 116px 0 56px;
  }

  .service-page-shell h1 {
    font-size: 38px;
  }

  .service-page-shell p:last-child,
  .service-category-heading > p,
  .service-cta-shell p {
    font-size: 16px;
  }

  .service-category-section,
  .service-process-section {
    padding: 64px 0;
  }

  .service-detail-grid,
  .service-detail-grid-two,
  .service-detail-grid-three,
  .branch-card-grid,
  .service-process-steps {
    grid-template-columns: 1fr;
  }

  .service-detail-grid div,
  .service-process-steps article {
    padding: 24px;
  }

  .branches-list-section {
    padding: 64px 0;
  }

  .branch-card {
    min-height: 0;
    padding: 0;
    border-radius: 20px;
  }

  .branch-card::before {
    width: 68%;
    height: 42%;
  }

  .branch-card::after {
    right: 16%;
    bottom: 16%;
    width: 58px;
    height: 58px;
  }

  .branch-card-media {
    height: 238px;
  }

  .branch-card-number {
    left: 24px;
    width: 74px;
    height: 74px;
    font-size: 32px;
  }

  .branch-card-body {
    padding: 24px 24px 30px;
  }

  .branch-card h3 {
    font-size: 32px;
  }

  .branch-card p,
  .branch-card a {
    margin-top: 22px;
    padding-left: 36px;
    font-size: 16px;
  }

  .branch-card p span,
  .branch-card a span {
    font-size: 14px;
  }

  .branch-detail::before {
    width: 24px;
    height: 24px;
  }

  .branch-detail-icon {
    width: 24px;
    height: 24px;
  }

  .service-category-heading h2,
  .service-process-shell h2,
  .service-cta-shell h2 {
    font-size: 32px;
  }

.service-cta-section {
    position: relative;   /* 一定要有 */
    overflow: hidden;
    padding: 64px 0;
}

.service-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1;
}

.service-cta-section > * {
    position: relative;
    z-index: 2;
}

}

@media (max-width: 767px) {
  .hero-section,
  .hero-shell,
  .about-page-hero,
  .about-page-shell,
  .contact-page-hero,
  .contact-page-shell,
  .work-page-hero,
  .work-page-shell,
  .branches-page-hero,
  .branches-page-shell,
  .service-page-hero,
  .service-page-shell {
    min-height: calc(100vw * 16 / 9);
  }

  .hero-shell,
  .about-page-shell,
  .contact-page-shell,
  .work-page-shell,
  .branches-page-shell,
  .service-page-shell {
    padding-top: 116px;
    padding-bottom: 56px;
  }

  .hero-bg {
    background-image: var(--home-hero-mobile);
    background-position: center center;
    background-size: cover;
  }

  .about-page-bg {
    background-image: var(--about-hero-mobile);
    background-position: center center;
    background-size: cover;
  }

  .contact-page-bg {
    background-image: var(--contact-hero-mobile);
    background-position: center center;
    background-size: cover;
  }

  .work-page-bg {
    background-image: var(--work-hero-mobile);
    background-position: center center;
    background-size: cover;
  }

  .branches-page-bg {
    background-image: var(--branches-hero-mobile);
    background-position: center center;
    background-size: cover;
  }

  .page-paint-protection .service-page-bg {
    background-image: var(--paint-hero-mobile);
  }

  .page-interior-care .service-page-bg {
    background-image: var(--interior-hero-mobile);
  }

  .page-exterior-care .service-page-bg {
    background-image: var(--exterior-hero-mobile);
  }

  .page-restoration-care .service-page-bg {
    background-image: var(--restoration-hero-mobile);
  }

  .service-page-bg {
    background-position: center center;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .page-home .hero-section,
  .page-home .hero-shell {
    min-height: auto;
  }

  .page-home .hero-shell {
    padding-top: 116px;
    padding-bottom: 72px;
  }

  .page-home .metrics-section {
    height: auto;
    padding: 0 0 56px;
    background: #050505;
    pointer-events: auto;
  }

  .page-home .metrics-shell {
    transform: none;
  }
}

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