:root {
  --gold: #d9a94d;
  --gold-light: #fbef8f;
  --gold-mid: #d99f48;
  --gold-deep: #cb8d3c;
  --gold-gradient: linear-gradient(90deg, #cb8d3c 0%, #fbef8f 50%, #d99f48 100%);
  --black: #050505;
  --black-soft: #11100d;
  --white: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.78);
  --border-gold: rgba(217, 169, 77, 0.55);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.42);
  --container: 1280px;
}

@property --progress {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.055), transparent 28%),
    linear-gradient(180deg, #080807 0%, #10100e 38%, #050505 100%);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:active,
button:active {
  background-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 56px, 1280px);
  margin: 22px auto 0;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, margin 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  width: min(100% - 32px, 1280px);
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(217, 169, 77, 0.22);
  background: rgba(6, 6, 6, 0.82);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  display: block;
  width: 54px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(217, 159, 72, 0.28));
}

.brand-copy {
  display: grid;
  gap: 1px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.1px;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-copy small {
  color: rgba(251, 239, 143, 0.76);
  font-size: 7px;
  letter-spacing: 1.3px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.main-nav a,
.nav-dropdown-toggle {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--gold-light);
}

.main-nav a.active::after,
.nav-dropdown-toggle.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(217, 169, 77, 0.7);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  cursor: default;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  min-width: 150px;
  padding: 10px;
  border: 1px solid rgba(217, 169, 77, 0.25);
  background: rgba(7, 7, 7, 0.92);
  box-shadow: var(--shadow-dark);
  opacity: 0;
  pointer-events: none;
  transform: translate(-30%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-30%, 0);
}

.dropdown-menu a {
  padding: 8px 0px;
}

.header-cta,
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.hero-button:hover {
  border-color: var(--gold-light);
  background: var(--gold-gradient);
  color: #15100a;
  transform: translateY(-1px);
}

.hero-button {
  width: fit-content;
  min-height: 58px;
  margin-top: 24px;
  background: var(--gold-gradient);
  color: #1b1307;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.34);
}

.hero-section {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(115deg, #050505 0%, #11100d 48%, #1b1915 100%);
}

.about-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 850px;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, transparent 0 34%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.72) 100%),
    url("../assets/images/about-hero.webp") right center / 55% 100% no-repeat;
  transform: none;
  clip-path: none;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 0 0%, rgba(0, 0, 0, 1) 46%, transparent 60%);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 55%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 66%, transparent 100%),
    url("../assets/images/bg.webp") center / cover no-repeat;
  opacity: 0.6;
  clip-path: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.82) 72%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.82) 72%, transparent 100%);
}

.about-hero-content {
  width: min(100% - 56px, var(--container));
  margin: 0 auto;
  padding-top: 106px;
}

.about-hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.72);
}

.about-hero h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-rule {
  width: 78px;
  height: 2px;
  margin: 24px 0 26px;
  background: var(--gold-gradient);
}

.about-hero-copy {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.72;
}

.about-strengths {
  width: 550px;
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  margin: 30px 0 0;
}

.strength-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.strength-icon {
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 159, 72, 0.62);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 18px;
}

.strength-icon img,
.service-quick-icon img,
.contact-info-icon img,
.service-listing-icon img,
.mv-icon img,
.process-icon img,
.service-icon img,
.footer-icon img {
  display: block;
  width: 62%;
  height: 62%;
  object-fit: contain;
}

.service-listing-icon img,
.mv-icon img,
.service-icon img {
  width: 100%;
  height: 100%;
}

.footer-icon img {
  width: 15px;
  height: 15px;
  filter: brightness(0) saturate(100%) invert(5%) sepia(24%) saturate(1647%) hue-rotate(1deg) brightness(97%) contrast(95%);
}

.about-hero-button {
  margin-top: 38px;
}

.about-hero-experience {
  position: absolute;
  right: clamp(44px, 8vw, 142px);
  bottom: 80px;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  width: 210px;
  min-height: 250px;
  border: 1px solid rgba(217, 159, 72, 0.58);
  background: rgba(5, 5, 5, 0.74);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
  text-align: center;
  backdrop-filter: blur(6px);
}

.about-hero-experience strong {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Cinzel", Georgia, serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 0.9;
}

.about-hero-experience span {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-hero-experience small {
  margin-top: 18px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.service-hero-bg {
  background:
    linear-gradient(90deg, transparent 0 34%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.72) 100%),
    url("../assets/images/service-hero.webp") right center / 55% 100% no-repeat;
}

.contact-hero-bg {
  background:
    linear-gradient(90deg, transparent 0 34%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.72) 100%),
    url("../assets/images/contact-hero.webp") right center / 55% 100% no-repeat;
}

.contact-hero > .hero-button {
  display: none;
}

.service-hero .about-hero-experience strong {
  font-size: 70px;
}

@media (min-width: 981px) {
  .about-hero:not(.service-hero):not(.commercial-hero) {
    min-height: 850px;
    padding: 0;
    align-items: center;
  }

  .about-hero:not(.service-hero):not(.commercial-hero) .about-hero-content {
    width: min(100% - 56px, var(--container));
    margin: 0 auto;
    padding-top: 106px;
  }

  .about-hero:not(.service-hero):not(.commercial-hero) h1 {
    max-width: 700px;
  }

  .about-hero:not(.service-hero):not(.commercial-hero) .about-hero-experience {
    position: absolute;
    right: clamp(44px, 8vw, 142px);
    bottom: 80px;
    width: 210px;
    min-height: 250px;
    margin: 0;
  }
}

.commercial-hero-bg {
  background:
    linear-gradient(90deg, transparent 0 34%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.72) 100%),
    url("../assets/images/commercial-hero.webp") right center / 55% 100% no-repeat;
}

.project-detail-hero-bg {
  background:
    linear-gradient(90deg, transparent 0 34%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.72) 100%),
    var(--project-detail-image, url("../assets/images/service-hero.webp")) right center / 55% 100% no-repeat;
}

.residential-hero-bg {
  background:
    linear-gradient(90deg, transparent 0 34%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.72) 100%),
    url("../assets/images/residential-hero.webp") right center / 55% 100% no-repeat;
}

.commercial-hero-content .about-hero-copy {
  max-width: 560px;
}

.portfolio-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.portfolio-breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.commercial-hero-stats {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-top: 42px;
}

.commercial-hero-stats > div {
  position: relative;
  display: grid;
  gap: 4px;
}

.commercial-hero-stats > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  right: -24px;
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

.commercial-hero-stats strong {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Cinzel", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.commercial-hero-stats span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 600;
}

.commercial-projects-section {
  padding: clamp(76px, 8vw, 112px) 24px;
  border-top: 1px solid rgba(217, 159, 72, 0.4);
  background:
    radial-gradient(circle at 82% 2%, rgba(217, 159, 72, 0.08), transparent 30%),
    linear-gradient(180deg, #050505 0%, #020202 100%);
  color: var(--white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.commercial-project-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.commercial-project-card {
  position: relative;
  min-height: 368px;
  overflow: hidden;
  border: 1px solid rgba(217, 159, 72, 0.28);
  border-radius: 8px;
  background: #090807;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.commercial-project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.01) 42%, rgba(0, 0, 0, 0.32) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04), transparent 58%);
}

.commercial-project-card:hover {
  border-color: rgba(251, 239, 143, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  transform: translateY(-3px);
}

.commercial-project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.78);
  transition: transform 320ms ease, filter 180ms ease;
}

.commercial-project-card:hover img {
  filter: saturate(0.98) brightness(0.9);
  transform: scale(1.04);
}

.project-index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Cinzel", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.commercial-project-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.commercial-project-info h3 {
  margin: 0;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.08;
}

.commercial-project-info p {
  min-height: 38px;
  margin: 9px 0 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.commercial-project-info small {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid rgba(217, 159, 72, 0.52);
  border-radius: 3px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
}

.project-card-arrow {
  position: absolute;
  right: 14px;
  bottom: 15px;
  z-index: 2;
  width: 18px;
  height: 18px;
  color: var(--gold-mid);
  font-size: 0;
  line-height: 1;
}

.project-card-arrow::before,
.project-card-arrow::after {
  content: "";
  position: absolute;
}

.project-card-arrow::before {
  display: none;
}

.project-card-arrow::after {
  display: none;
}

.project-card-arrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
  color: var(--white);
}

.project-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 34%, rgba(0, 0, 0, 0.24) 62%, rgba(0, 0, 0, 0.08) 100%),
    var(--project-hero-image, url("../assets/images/service-hero.webp")) right center / 62% 100% no-repeat;
  filter: saturate(0.92) brightness(0.88);
}

.project-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.54) 44%, transparent 72%),
    radial-gradient(circle at 12% 64%, rgba(217, 159, 72, 0.1), transparent 32%);
}

.project-hero-content {
  width: min(100% - 56px, var(--container));
  margin: 0 auto;
  padding-top: 92px;
}

.project-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.project-breadcrumb span {
  color: rgba(251, 239, 143, 0.72);
}

.project-hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-hero h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.project-hero-copy {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
}

.project-hero-button {
  margin-top: 36px;
}

.project-gallery-section {
  padding: clamp(64px, 7vw, 94px) 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 159, 72, 0.06), transparent 30%),
    linear-gradient(180deg, #050505 0%, #030303 100%);
  color: var(--white);
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.project-gallery-section h2 {
  margin: 0 auto 26px;
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.project-gallery-subtitle {
  width: min(100%, 1080px);
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-gallery-grid {
  display: grid;
  gap: 14px;
  width: min(100%, 1080px);
  margin: 0 auto clamp(64px, 7vw, 92px);
}

.project-gallery-grid:last-child {
  margin-bottom: 0;
}

.project-gallery-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-gallery-item {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: #111;
  cursor: zoom-in;
  padding: 0;
}

.project-gallery-item img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.88);
  transition: transform 220ms ease, filter 180ms ease;
}

.project-gallery-item:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 86vh;
  border: 1px solid rgba(217, 159, 72, 0.32);
  border-radius: 5px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.62);
}

.lightbox-close,
.lightbox-arrow {
  position: fixed;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(217, 159, 72, 0.52);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.82);
  color: var(--gold-light);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

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

.lightbox-arrow {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 42px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.service-quick-strengths {
  position: relative;
  padding: 40px 40px;
  overflow: hidden;
  border-top: 1px solid rgba(217, 159, 72, 0.58);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.8)),
    url("../assets/images/bg.webp") center / cover no-repeat;
  color: var(--white);
}

.service-quick-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, var(--container));
  margin: 0 auto;
}

.service-quick-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 72px;
  padding: 0 clamp(18px, 2.5vw, 38px);
}

.service-quick-item:first-child {
  padding-left: 0;
}

.service-quick-item:last-child {
  padding-right: 0;
}

.service-quick-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 58px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.38), transparent);
}

.service-quick-icon {
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(#050505, #050505) padding-box,
    var(--gold-gradient) border-box;
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.service-quick-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-quick-icon b {
  position: relative;
  z-index: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-quick-item h2 {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.14;
}

.service-quick-item p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.contact-info-section {
  position: relative;
  padding: clamp(52px, 6vw, 76px) 24px 38px;
  color: var(--white);
  border-top: 1px solid rgba(217, 159, 72, 0.58);
}

.contact-info-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
  height: 160px;
  pointer-events: none;
}

.contact-info-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--container));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(217, 159, 72, 0.22);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01)),
    rgba(7, 7, 7, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.contact-info-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 260px;
  padding: 38px 30px 80px;
  text-align: center;
}

.contact-info-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 0;
  width: 1px;
  height: calc(100% - 68px);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 48px;
  width: 52px;
  height: 1px;
  background: var(--gold-gradient);
  transform: translateX(-50%);
}

.contact-info-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(#070707, #070707) padding-box,
    var(--gold-gradient) border-box;
}

.contact-info-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--gold-mid);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.contact-info-card h2 {
  margin: 24px 0 14px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-info-card a,
.contact-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.55;
}

.contact-message-section {
  position: relative;
  margin-top: -1px;
  padding: 38px 24px clamp(60px, 7vw, 86px);
  color: var(--white);
}

.contact-message-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(42px, 5vw, 76px);
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(44px, 5vw, 64px) clamp(28px, 4vw, 54px);
  border: 1px solid rgba(217, 159, 72, 0.2);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
    rgba(7, 7, 7, 0.78);
}

.contact-map-column {
  position: relative;
  padding-left: clamp(38px, 5vw, 72px);
  border-left: 1px solid rgba(217, 159, 72, 0.58);
}

.contact-form-column h2,
.contact-map-column h2 {
  max-width: 640px;
  margin: 0;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-form-column h2 span,
.contact-map-column h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-form-column .hero-rule,
.contact-map-column .hero-rule {
  margin: 18px 0 24px;
}

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

.contact-form input[name="company_website"] {
  position: absolute;
  left: -9999px;
}

.contact-form label {
  display: grid;
  gap: 5px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  outline: 0;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form input {
  min-height: 58px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(251, 239, 143, 0.5);
  background: rgba(255, 255, 255, 0.075);
}

.contact-message-field {
  grid-column: 1 / -1;
}

.contact-submit-button {
  min-height: 50px;
  margin-top: 0;
  border: 0;
  cursor: pointer;
}

.contact-map-column > p:not(.section-label) {
  max-width: 560px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
}

.contact-map-placeholder {
  position: relative;
  min-height: 325px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: #111;
}

.contact-map-placeholder iframe {
  display: block;
  width: 100%;
  height: 325px;
  min-height: inherit;
  border: 0;
}

.map-marker {
  position: absolute;
  left: 50%;
  top: 43%;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50% 50% 50% 0;
  background: #050505;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-marker img {
  width: 46px;
  transform: rotate(45deg);
}

.map-control {
  position: absolute;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.86);
  color: #1c1c1c;
  font-size: 24px;
  font-weight: 600;
}

.map-fullscreen {
  top: 14px;
  font-size: 18px;
}

.map-plus {
  bottom: 54px;
}

.map-minus {
  bottom: 14px;
}

.service-listing-section {
  position: relative;
  padding: clamp(70px, 8vw, 96px) 24px clamp(78px, 8vw, 108px);
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0%, rgba(217, 159, 72, 0.12), transparent 28%),
    radial-gradient(circle at 6% 94%, rgba(217, 159, 72, 0.08), transparent 28%),
    linear-gradient(180deg, #050505 0%, #080807 100%);
  color: var(--white);
  border-top: 1px solid rgba(217, 159, 72, 0.58);
  border-bottom: 1px solid rgba(217, 159, 72, 0.58);
}

.service-listing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg.webp") center / cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.service-listing-head {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto 34px;
  text-align: center;
}

.service-listing-head .section-label {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 10px;
}

.service-listing-head .section-label::before,
.service-listing-head .section-label::after {
  content: "";
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.service-listing-head h2 {
  margin: 0;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.service-listing-head h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-listing-head p:not(.section-label) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.service-listing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.service-listing-card {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  align-content: center;
  min-height: 205px;
  padding: 34px 36px 28px 28px;
  overflow: hidden;
  scroll-margin-top: 120px;
  border: 1px solid rgba(217, 159, 72, 0.28);
  border-radius: 7px;
  background: #0a0908;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-listing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 44%, rgba(0, 0, 0, 0.3) 100%),
    var(--service-bg, url("../assets/images/service-hero.webp")) center / cover no-repeat;
  filter: saturate(0.85) brightness(0.82);
  transition: transform 320ms ease, filter 180ms ease;
}

.service-listing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(217, 159, 72, 0.16), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(251, 239, 143, 0.12), transparent 34%);
  opacity: 0.62;
}

.service-listing-card:hover {
  border-color: rgba(251, 239, 143, 0.54);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.service-listing-card:hover::before {
  filter: saturate(0.95) brightness(0.95);
  transform: scale(1.04);
}

.service-listing-icon,
.service-number,
.service-listing-card h3,
.service-listing-card p,
.service-listing-card a {
  position: relative;
  z-index: 1;
}

.service-listing-icon {
  grid-row: span 3;
  width: 44px;
  height: 44px;
  color: var(--gold-mid);
}

.service-listing-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.service-number {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1;
}

.service-listing-card h3 {
  margin: 12px 0 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.08;
}

.service-listing-card p {
  max-width: 255px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.35;
}

.service-listing-card a {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--gold-light);
  font-size: 26px;
  line-height: 1;
}

.service-bg-living {
  --service-bg: url("../assets/images/interior-design.webp");
}

.service-bg-hallway {
  --service-bg: url("../assets/images/extension-construction.webp");
}

.service-bg-ceiling {
  --service-bg: url("../assets/images/plaster-ceiling.webp");
}

.service-bg-floor {
  --service-bg: url("../assets/images/flooring-works.webp");
}

.service-bg-paint {
  --service-bg: url("../assets/images/painting-services.webp");
}

.service-bg-cabinet {
  --service-bg: url("../assets/images/custom-made-cabinet-wardrobe.webp");
}

.service-bg-glass {
  --service-bg: url("../assets/images/aluminium-glass-works.webp");
}

.service-bg-plumbing {
  --service-bg: url("../assets/images/electrician-plumber-works.webp");
}

.service-bg-security {
  --service-bg: url("../assets/images/security-system.webp");
}

.mission-vision {
  border-top: 1px solid rgba(217, 159, 72, 0.58);
  border-bottom: 1px solid rgba(217, 159, 72, 0.58);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.7));
  color: var(--white);
}

.mission-vision-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin: 0;
}

.mission-vision-card {
  position: relative;
  min-height: 520px;
  padding-top: clamp(70px, 8vw, 104px);
  padding-bottom: clamp(70px, 8vw, 104px);
  overflow: hidden;
  isolation: isolate;
}

.mission-card {
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 10px));
  padding-right: clamp(42px, 6vw, 96px);
}

.vision-card {
  padding-left: clamp(42px, 6vw, 250px);
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 120px));
}

.mission-vision-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.5)),
    url("../assets/images/mission.webp") center / cover no-repeat;
  filter: saturate(0.72) brightness(0.48) sepia(0.08);
}

.mission-vision-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 40%, rgba(217, 159, 72, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
}

.vision-card {
  border-left: 1px solid rgba(217, 159, 72, 0.38);
}

.vision-card::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.42)),
    url("../assets/images/vision.webp") center / cover no-repeat;
}

.mv-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 30px;
  color: var(--gold-mid);
}

.mv-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.mission-vision h2 {
  margin: 0 0 28px;
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.mission-vision p {
  max-width: 420px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.82;
}

.about-philosophy {
  display: grid;
  padding: clamp(58px, 7vw, 86px) 24px;
  border-bottom: 1px solid rgba(217, 159, 72, 0.5);
  color: var(--white);
}

.about-philosophy-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.38fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

.philosophy-copy {
  width: 100%;
}

.philosophy-eyebrow {
  margin-bottom: 8px;
}

.philosophy-copy h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.philosophy-copy h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.philosophy-copy p:not(.eyebrow):not(.signature) {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.76;
}

.stats-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: clamp(34px, 5vw, 54px) clamp(26px, 5vw, 70px) 34px;
}

.stat-item {
  display: grid;
  justify-items: center;
  text-align: center;
}

.stat-ring {
  --progress: 0%;
  display: grid;
  place-items: center;
  width: clamp(108px, 10vw, 140px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #11100e 0 58%, transparent 59%),
    conic-gradient(from -20deg, #cb8d3c 0%, #fbef8f var(--progress), rgba(255, 255, 255, 0.12) var(--progress) 100%);
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.35);
  transition: --progress 1200ms ease-out;
}

.stat-ring span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.stat-ring small {
  font-size: 0.48em;
}

.stat-ring b {
  font-weight: inherit;
}

.stat-item p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.stats-marble {
  min-height: 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.1)),
    url("../assets/images/bg.webp") center / cover no-repeat;
  opacity: 0.82;
}

.approach-section {
  padding: clamp(58px, 7vw, 86px) 24px clamp(70px, 8vw, 104px);
  background:
    radial-gradient(circle at 50% 10%, rgba(217, 159, 72, 0.1), transparent 28%),
    linear-gradient(180deg, #060605 0%, #050505 100%);
  color: var(--white);
}

.approach-head {
  width: min(100%, 720px);
  margin: 0 auto 58px;
  text-align: center;
}

.approach-head h2 {
  margin: 0;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.approach-head h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.approach-head p:not(.section-label) {
  max-width: 560px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 159, 72, 0.55), transparent);
}

.process-step {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
}

.process-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(82px, 8vw, 108px);
  aspect-ratio: 1;
  margin: 0 auto clamp(16px, 2vw, 24px);
  border: 1px solid rgba(217, 159, 72, 0.58);
  border-radius: 50%;
  background: #070706;
  color: var(--gold-mid);
  box-shadow: 0 0 0 12px #060605;
}

.process-icon svg {
  width: clamp(42px, 4.4vw, 58px);
  height: clamp(42px, 4.4vw, 58px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.process-icon img {
  width: clamp(42px, 4.4vw, 58px);
  height: clamp(42px, 4.4vw, 58px);
  object-fit: contain;
}

.process-step span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.process-step h3 {
  margin: 4px 0 10px;
  color: var(--white);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.process-step p {
  margin: 0;
  max-width: min(100%, 150px);
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(12px, 1.05vw, 14px);
  line-height: 1.55;
  text-align: center;
}

.about-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.80fr) minmax(0, 1.25fr);
  min-height: 380px;
  border-top: 1px solid rgba(217, 159, 72, 0.48);
  border-bottom: 1px solid rgba(217, 159, 72, 0.48);
  background: #050505;
  color: var(--white);
}

.faq-image {
  min-height: 380px;
  overflow: hidden;
  background: #080807;
  contain: paint;
}

.faq-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.48) sepia(0.12);
  backface-visibility: hidden;
  transform: translateZ(0);
}

.faq-content {
  padding: clamp(58px, 7vw, 78px) clamp(28px, 7vw, 74px);
  background:
    radial-gradient(circle at 92% 4%, rgba(217, 159, 72, 0.08), transparent 30%),
    linear-gradient(180deg, #080807, #050505);
}

.faq-eyebrow {
  margin-bottom: 8px;
}

.faq-content h2 {
  margin: 0 0 34px;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 680px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.025);
}

.faq-question {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  text-align: left;
}

.faq-question span:first-child {
  color: var(--gold-mid);
  font-size: 13px;
  font-weight: 800;
}

.faq-question::after {
  content: "+";
  justify-self: end;
  color: var(--gold-light);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transition: transform 220ms ease;
}

.faq-item.is-open .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 360ms ease, opacity 260ms ease;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 58px 20px 78px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.7;
}

.about-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
  min-height: 330px;
  overflow: hidden;
  border-bottom: 1px solid rgba(217, 159, 72, 0.46);
  background: #050505;
  color: var(--white);
  isolation: isolate;
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18)),
    url("../assets/images/bg.webp") left center / 68% 100% no-repeat;
}

.about-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(104deg, transparent 0 62%, rgba(251, 239, 143, 0.64) 62.1%, rgba(203, 141, 60, 0.36) 62.28%, transparent 62.5%);
  pointer-events: none;
}

.about-cta-copy {
  align-self: center;
  padding: clamp(52px, 6vw, 74px) 0;
}

.about-cta-inner {
  width: min(calc(100vw - 48px), 1280px);
  margin-left: max(24px, calc((100vw - 1280px) / 2));
}

.about-cta-inner h2 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-cta-inner h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-cta-inner p {
  max-width: 420px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.7;
}

.about-cta-button {
  margin-top: 28px;
}

.about-cta-image {
  min-height: 330px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42)),
    url("../assets/images/about-cta.webp") center / cover no-repeat;
}

.service-cta-image {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42)),
    url("../assets/images/service-cta.webp") center / cover no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.76) 24%, rgba(0, 0, 0, 0.32) 58%, rgba(0, 0, 0, 0.2) 100%),
    url("../assets/images/home-hero.webp") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 48%, rgba(217, 169, 77, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.55));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 45%);
  opacity: 0.25;
}

.hero-content {
  width: min(100% - 56px, var(--container));
  margin: 0 auto;
  padding-top: 100px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 16px;
  height: 3px;
  background: var(--gold-light);
}

.hero-content h1 {
  max-width: 600px;
  margin: 0;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.72);
}

.hero-content h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.hero-side-text {
  position: absolute;
  right: 28px;
  top: 50%;
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.hero-side-text span + span::before {
  content: "•";
  margin-bottom: 10px;
  color: var(--gold-light);
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
  min-height: 560px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.055), transparent 30%),
    radial-gradient(circle at 100% 92%, rgba(217, 159, 72, 0.10), transparent 28%),
    linear-gradient(90deg, #070706 0%, #11100d 48%, #1a1814 100%);
  color: var(--white);
  overflow: hidden;
  border-bottom: 1px solid rgba(217, 159, 72, 0.5);
}

.about-image {
  min-height: 560px;
  background: #16120d;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.74) sepia(0.12);
}

.about-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
  padding: clamp(64px, 7vw, 88px) clamp(32px, 6vw, 84px) 54px;
  background:
    radial-gradient(circle at 100% 88%, rgba(217, 159, 72, 0.12), transparent 28%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.045), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(9, 9, 8, 0.98));
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.26;
  pointer-events: none;
}

.about-copy {
  position: relative;
  z-index: 1;
  max-width: 470px;
}

.section-label {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(30px, 3vw, 45px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-copy h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-copy p:not(.section-label) {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.78;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  margin-top: 6px;
  padding: 0 20px;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.outline-button:hover {
  border-color: var(--gold-light);
  background: var(--gold-gradient);
  color: #171007;
  transform: translateY(-1px);
}

.about-preview .outline-button{
  border-color: rgba(203, 141, 60, 0.58);
  color: #ffffff;
}

.outline-button:hover{
  color: #11100d;
}

.services-preview .outline-button,
.projects-preview .outline-button {
  border-color: rgba(203, 141, 60, 0.58);
  color: #11100d;
}

.experience-card {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 194px;
  margin-top: 2px;
  border: 1px solid rgba(217, 159, 72, 0.45);
  background: rgba(5, 5, 5, 0.2);
  text-align: center;
}

.experience-card strong {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(72px, 7vw, 96px);
  font-weight: 500;
  line-height: 0.9;
}

.experience-card span {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-corner-visual {
  position: absolute;
  right: 28px;
  bottom: 20px;
  width: 300px;
  opacity: 0.35;
  filter: grayscale(0.4) brightness(0.8);
}

.about-corner-visual img {
  display: block;
  width: 100%;
}

.services-preview {
  padding: clamp(58px, 7vw, 82px) 24px clamp(70px, 8vw, 100px);
  background:
    radial-gradient(circle at 8% 10%, rgba(217, 159, 72, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f1e9 100%);
  color: #11100d;
  border-bottom: 1px solid rgba(217, 159, 72, 0.5);
}

.services-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, var(--container));
  margin: 0 auto 24px;
}

.services-head .section-label,
.projects-head .section-label{
  color: #d99f48;
}

.services-head h2 {
  margin: 0;
  color: #11100d;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.services-head h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-preview .services-head h2 span,
.projects-preview .projects-head h2 span {
  background: linear-gradient(90deg, #cb8d3c 0%, #ffdd5f 48%, #d99f48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-head p:not(.section-label) {
  margin: 8px 0 0;
  color: rgba(17, 16, 13, 0.68);
  font-size: 15px;
}

.services-button {
  flex: 0 0 auto;
  margin-top: 12px;
  min-width: 198px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  width: min(100%, var(--container));
  margin: 0 auto;
  border-top: 1px solid rgba(17, 16, 13, 0.12);
  border-left: 1px solid rgba(17, 16, 13, 0.12);
}

.service-card {
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 30px 17px 26px;
  border-right: 1px solid rgba(17, 16, 13, 0.12);
  border-bottom: 1px solid rgba(17, 16, 13, 0.12);
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  background: #d99f4812;
  box-shadow: 0 14px 36px rgba(17, 16, 13, 0.10);
  transform: translateY(-2px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--gold-mid);
}

.service-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-card h3 {
  color: #11100d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 5px;
}

.service-card p {
  margin: 0;
  color: rgba(17, 16, 13, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.projects-preview {
  padding: clamp(58px, 7vw, 82px) 24px clamp(72px, 8vw, 104px);
  background:
    radial-gradient(circle at 90% 8%, rgba(217, 159, 72, 0.11), transparent 30%),
    linear-gradient(180deg, #f6f2ea 0%, #ffffff 100%);
  color: #11100d;
  overflow: hidden;
}

.projects-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, var(--container));
  margin: 0 auto 22px;
}

.projects-head h2 {
  margin: 0;
  color: #11100d;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.projects-head h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.projects-head p:not(.section-label) {
  max-width: 590px;
  margin: 8px 0 0;
  color: rgba(17, 16, 13, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.projects-button {
  flex: 0 0 auto;
  margin-top: 16px;
  min-width: 206px;
}

.projects-slider {
  position: relative;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.projects-track {
  display: grid;
  grid-auto-columns: calc((100% - 36px) / 4);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.projects-track::-webkit-scrollbar {
  display: none;
}

.projects-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.project-card {
  overflow: hidden;
  border: 1px solid rgba(17, 16, 13, 0.12);
  background: #ffffff;
  scroll-snap-align: start;
  -webkit-user-select: none;
  user-select: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.project-card:hover {
  border-color: rgba(251, 239, 143, 0.42);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(17, 16, 13, 0.13);
  transform: translateY(-2px);
}

.project-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.92) sepia(0.04);
  pointer-events: none;
}

.project-info {
  padding: 18px 20px 20px;
  background: #050505;
}

.project-info h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.project-info span {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(217, 159, 72, 0.46);
  color: rgba(251, 239, 143, 0.78);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  width: fit-content;
  margin: 18px 0 0 auto;
  border: 1px solid rgba(217, 159, 72, 0.42);
  background: #ffffff;
}

.slider-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-right: 1px solid rgba(217, 159, 72, 0.42);
  background: transparent;
  color: var(--gold-deep);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.slider-arrow:last-child {
  border-right: 0;
}

.slider-arrow:hover {
  background: var(--gold-gradient);
  color: #171007;
}

.belief-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.35fr);
  min-height: 330px;
  border-top: 1px solid rgba(217, 159, 72, 0.46);
  border-bottom: 1px solid rgba(217, 159, 72, 0.46);
  background:
    linear-gradient(90deg, #ffffff 0%, #f7f3ec 48%, #ffffff 100%);
  color: #11100d;
  overflow: hidden;
}

.belief-copy {
  position: relative;
  padding: clamp(42px, 5vw, 58px) clamp(32px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 12%, rgba(217, 159, 72, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(12, 11, 9, 0.98), rgba(3, 3, 3, 0.98));
  isolation: isolate;
}

.belief-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.18)),
    url("../assets/images/bg.webp") center / cover no-repeat;
  opacity: 0.6;
}

.belief-copy h2 {
  max-width: 500px;
  margin: 0 0 20px;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.belief-copy h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.belief-copy p:not(.section-label):not(.signature) {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

.signature {
  margin: 24px 0 0;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 34px;
  line-height: 1;
  transform: rotate(-4deg);
}

.belief-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border-left: 1px solid rgba(217, 159, 72, 0.44);
  background: #050505;
}

.belief-gallery figure {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
}

.belief-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.belief-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #cb8d3c 0, #fbef8f 50%, #d99f48 100%) left / 1px 100% no-repeat,
    linear-gradient(90deg, #cb8d3c 0, #fbef8f 50%, #d99f48 100%) right / 1px 100% no-repeat,
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.36));
  pointer-events: none;
}

.site-footer {
  position: relative;
  padding: 42px 24px 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(217, 159, 72, 0.11), transparent 28%),
    linear-gradient(180deg, #070706 0%, #050505 100%);
  color: var(--white);
  border-top: 1px solid rgba(217, 159, 72, 0.24);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1.12fr 0.7fr;
  gap: clamp(34px, 6vw, 74px);
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-bottom: 28px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo img {
  width: 64px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(217, 159, 72, 0.24));
}

.footer-logo span {
  display: grid;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-logo small {
  color: rgba(251, 239, 143, 0.72);
  font-size: 7px;
  letter-spacing: 1px;
}

.footer-brand p,
.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.55;
}

.footer-links h2,
.footer-contact h2,
.footer-social h2 {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  align-content: start;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  transition: color 160ms ease, transform 160ms ease;
}

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

.footer-contact {
  display: grid;
  align-content: start;
  gap: 15px;
}

.footer-contact a,
.footer-contact p {
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #161007;
  font-size: 11px;
  font-weight: 800;
}

.social-list {
  display: flex;
  gap: 12px;
}

.social-list a,
.floating-whatsapp,
.back-to-top {
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 159, 72, 0.56);
  border-radius: 50%;
  overflow: hidden;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.social-list a {
  width: 38px;
  height: 38px;
}

.social-list a:hover,
.floating-whatsapp:hover,
.back-to-top:hover {
  border-color: var(--gold-light);
  background: rgba(217, 159, 72, 0.1);
  transform: translateY(-2px);
}

.social-list img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.back-to-top img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, var(--container));
  margin: 0 auto;
  min-height: 42px;
  border-top: 1px solid rgba(217, 159, 72, 0.22);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-align: center;
}

.footer-bottom span {
  margin: 0 10px;
  color: rgba(217, 159, 72, 0.58);
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.floating-whatsapp,
.back-to-top {
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  background: rgba(5, 5, 5, 0.82);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.back-to-top {
  color: var(--gold-light);
  font-size: 22px;
  line-height: 1;
}

.floating-whatsapp img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(217, 169, 77, 0.45);
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-light);
  transition: transform 160ms ease, opacity 160ms ease;
}

.section-placeholder {
  padding: 76px 24px;
  background: #f7f4ee;
  color: #17140f;
}

.section-placeholder:nth-of-type(odd) {
  background: #ffffff;
}

.services-head h2,
.projects-head h2,
.belief-copy h2,
.service-listing-head h2,
.contact-form-column h2,
.contact-map-column h2,
.philosophy-copy h2,
.approach-head h2,
.faq-content h2,
.about-cta-inner h2,
.about-copy h2,
.placeholder-inner h2 {
  font-size: 46px;
}

.placeholder-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 30px;
  border: 1px dashed rgba(154, 112, 37, 0.45);
  background: rgba(255, 255, 255, 0.68);
}

.placeholder-kicker {
  margin: 0 0 8px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.placeholder-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
}

.placeholder-inner p {
  max-width: 760px;
  margin: 0;
  color: #5f574a;
}

@media (max-width: 1280px) {
  .commercial-project-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-hero:not(.service-hero):not(.commercial-hero) .about-hero-bg {
    background:
      linear-gradient(90deg, transparent 0 34%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.72) 100%),
      url("../assets/images/about-hero.webp") right center / 100% 100% no-repeat;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 100%);
  }

  .service-hero-bg {
    background:
      linear-gradient(90deg, transparent 0 34%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.72) 100%),
      url("../assets/images/service-hero.webp") right center / 100% 100% no-repeat;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 100%);
  }

  .contact-hero-bg {
    background:
      linear-gradient(90deg, transparent 0 34%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.72) 100%),
      url("../assets/images/contact-hero.webp") right center / 100% 100% no-repeat;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 100%);
  }

  .commercial-hero-bg {
    background:
      linear-gradient(90deg, transparent 0 34%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.72) 100%),
      url("../assets/images/commercial-hero.webp") right center / 100% 100% no-repeat;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 100%);
  }

  .residential-hero-bg {
    background:
      linear-gradient(90deg, transparent 0 34%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.72) 100%),
      url("../assets/images/residential-hero.webp") right center / 100% 100% no-repeat;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 100%);
  }
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .commercial-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 32px, 1140px);
    margin-top: 16px;
    padding: 8px 10px;
    border: 1px solid rgba(217, 169, 77, 0.22);
    background: rgba(6, 6, 6, 0.78);
    backdrop-filter: blur(16px);
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav.is-open {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    justify-items: start;
    justify-content: start;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(217, 169, 77, 0.25);
    background: rgba(6, 6, 6, 0.96);
    box-shadow: var(--shadow-dark);
  }

  .main-nav.is-open a {
    display: block;
    width: 100%;
    padding: 13px 8px;
    text-align: left;
    font-size: 14px;
  }

  .main-nav.is-open .nav-dropdown {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: left;
  }

  .main-nav.is-open .nav-dropdown-toggle {
    display: block;
    width: 100%;
    padding: 13px 8px;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
  }

  .nav-dropdown-toggle.active::after {
    display: none;
    content: none;
  }

  .main-nav.is-open a.active::after,
  .main-nav.is-open .nav-dropdown-toggle.active::after {
    display: none;
    content: none;
  }

  .dropdown-menu {
    position: static;
    display: none;
    justify-items: start;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav.is-open .nav-dropdown.is-open .dropdown-menu {
    display: grid;
    transform: translate(0, 0);
  }

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

  .hero-side-text {
    display: none;
  }

  .about-hero {
    min-height: auto;
    padding: 200px 0 150px;
  }

  .about-hero::before {
    background:
      linear-gradient(90deg, rgb(0 0 0 / 0%), rgba(0, 0, 0, 0.30)), 
      linear-gradient(180deg, rgba(0, 0, 0, 0.20), rgb(0 0 0 / 50%));
  }

  .about-hero::after {
    width: 50%;
    clip-path: none;
    opacity: 0.36;
  }

  .about-hero:not(.service-hero):not(.commercial-hero) .about-hero-bg {
    background: linear-gradient(90deg, #00000000 0 34%, rgb(0 0 0 / 0%) 44%, rgb(0 0 0 / 0%) 100%), url(../assets/images/about-hero.webp) center / cover no-repeat;
    clip-path: none;
  }

  .service-hero-bg {
    background:
      linear-gradient(90deg, #00000000 0 34%, rgb(0 0 0 / 0%) 44%, rgb(0 0 0 / 0%) 100%),
      url("../assets/images/service-hero.webp") center / cover no-repeat;
    clip-path: none;
  }

  .contact-hero-bg {
    background:
      linear-gradient(90deg, #00000000 0 34%, rgb(0 0 0 / 0%) 44%, rgb(0 0 0 / 0%) 100%),
      url("../assets/images/contact-hero.webp") center / cover no-repeat;
    clip-path: none;
  }

  .commercial-hero-bg {
    background:
      linear-gradient(90deg, #00000000 0 34%, rgb(0 0 0 / 0%) 44%, rgb(0 0 0 / 0%) 100%),
      url("../assets/images/commercial-hero.webp") center / cover no-repeat;
    clip-path: none;
  }

  .residential-hero-bg {
    background:
      linear-gradient(90deg, #00000000 0 34%, rgb(0 0 0 / 0%) 44%, rgb(0 0 0 / 0%) 100%),
      url("../assets/images/residential-hero.webp") center / cover no-repeat;
    clip-path: none;
  }

  .about-hero-content {
    width: min(100% - 34px, var(--container));
    padding-top: 0;
  }

  .about-hero-experience {
    position: relative;
    right: auto;
    bottom: auto;
    width: 190px;
    min-height: 210px;
    margin: 36px 0 0 17px;
  }

  .mission-vision-inner {
    grid-template-columns: 1fr;
  }

  .mission-vision-card {
    min-height: auto;
    padding: 58px 28px;
  }

  .vision-card {
    border-left: 0;
    border-top: 1px solid rgba(217, 159, 72, 0.38);
  }

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

  .philosophy-copy {
    justify-self: start;
    width: min(100%, 520px);
  }

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

  .faq-image,
  .faq-image img {
    min-height: 280px;
  }

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

  .about-cta::after {
    display: none;
  }

  .about-cta-copy {
    width: 100%;
  }

  .about-cta-image {
    min-height: 260px;
  }

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

  .about-image,
  .about-image img {
    min-height: 360px;
  }

  .about-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 28px;
  }

  .experience-card {
    width: min(100%, 220px);
    min-height: 160px;
  }

  .about-corner-visual {
    right: 10px;
    width: 160px;
  }

  .services-head {
    display: grid;
  }

  .services-button {
    width: fit-content;
    margin-top: 0;
  }

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

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

  .service-quick-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 0;
    justify-items: center;
  }

  .service-quick-item {
    display: grid;
    grid-template-rows: 54px minmax(38px, auto) auto;
    justify-items: center;
    align-content: start;
    gap: 10px;
    width: 100%;
    min-height: 136px;
    padding: 0 clamp(18px, 2.5vw, 38px);
    text-align: center;
  }

  .service-quick-item p {
    margin-top: 5px;
  }

  .service-quick-item:first-child {
    padding-left: clamp(18px, 2.5vw, 38px);
  }

  .service-quick-item:last-child {
    padding-right: clamp(18px, 2.5vw, 38px);
  }

  .service-quick-item:not(:last-child)::after {
    display: block;
  }

  .service-quick-item:nth-child(2n)::after {
    display: block;
  }

  .service-quick-item:nth-child(5)::after {
    display: block;
  }

  .service-quick-item:last-child::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 1px;
    height: 58px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    display: block;
  }

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

  .contact-info-card:nth-child(2n)::after {
    display: none;
  }

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

  .contact-map-column {
    padding: 38px 0 0;
    border-top: 1px solid rgba(217, 159, 72, 0.58);
    border-left: 0;
  }

  .projects-head {
    display: grid;
  }

  .projects-button {
    width: fit-content;
    margin-top: 0;
  }

  .projects-track {
    grid-auto-columns: calc((100% - 12px) / 2);
  }

  .belief-section {
    grid-template-columns: 1fr;
  }

  .belief-gallery {
    border-left: 0;
    border-top: 1px solid rgba(217, 159, 72, 0.44);
  }

  .belief-gallery figure,
  .belief-gallery img {
    min-height: 300px;
  }

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

}

@media (max-width: 640px) {
  .brand img {
    width: 48px;
  }

  .brand-copy {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .hero-section {
    min-height: 760px;
  }

  .about-hero {
    padding: 150px 0 80px;
    min-height: auto;
  }

  .about-hero::before {
        z-index: -1;
        background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 70%) 46%, rgb(0 0 0 / 0%) 100%);
  }

  .about-hero::after {
    inset: 0 0 auto;
    z-index: -2;
    width: 100%;
    height: 52%;
    opacity: 0.72;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.72) 100%),
      url("../assets/images/bg.webp") center right / cover no-repeat;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  }

  .about-hero-bg {
    inset: auto 0 0;
    z-index: -3;
    height: 56%;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.28) 34%, rgba(0, 0, 0, 0.72) 100%),
      url("../assets/images/about-hero.webp") center / cover no-repeat;
    background-size: cover, cover;
  }

  .service-hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.28) 34%, rgba(0, 0, 0, 0.72) 100%),
      url("../assets/images/service-hero.webp") center / cover no-repeat;
  }

  .contact-hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.28) 34%, rgba(0, 0, 0, 0.72) 100%),
      url("../assets/images/contact-hero.webp") center / cover no-repeat;
  }

  .commercial-hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.28) 34%, rgba(0, 0, 0, 0.72) 100%),
      url("../assets/images/commercial-hero.webp") center / cover no-repeat;
  }

  .residential-hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.28) 34%, rgba(0, 0, 0, 0.72) 100%),
      url("../assets/images/residential-hero.webp") center / cover no-repeat;
  }

  .project-detail-hero-bg {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.32)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.7)),
      var(--project-detail-image, url("../assets/images/service-hero.webp")) right center / 55% 100% no-repeat;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.8) 55%, rgba(0, 0, 0, 0.72) 100%),
      url("../assets/images/home-hero.webp") center / cover no-repeat;
  }

  .hero-content {
    padding-top: 92px;
  }

  .hero-content h1 {
    max-width: 330px;
    font-size: clamp(40px, 13vw, 56px);
  }

  .about-hero h1 {
    width: calc(100vw - 34px);
    max-width: calc(100vw - 34px);
    font-size: clamp(34px, 10vw, 44px);
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
  }

  .about-hero-copy {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .commercial-hero-stats {
    align-items: start;
    gap: 30px;
    margin-top: 34px;
  }

  .commercial-hero-stats strong {
    font-size: 28px;
  }

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

  .about-strengths {
    display: grid;
    gap: 16px;
  }

  .mv-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--gold-mid);
}

.mission-vision h2 {
    margin: 0 0 20px;
}

  .service-listing-section {
    padding-inline: 17px;
  }

  .service-listing-head .section-label::before,
  .service-listing-head .section-label::after {
    width: 38px;
  }

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

  .service-listing-card {
    min-height: 195px;
    padding: 28px 34px 26px 24px;
  }

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

  .service-listing-card p {
    max-width: 280px;
    font-size: 13px;
  }

  .service-quick-strengths {
    padding: 30px 17px;
  }

  .commercial-projects-section {
    padding-inline: 17px;
  }

  .commercial-project-grid {
    grid-template-columns: 1fr;
  }

  .commercial-project-card {
    min-height: 300px;
  }

  .project-hero {
    min-height: 680px;
    padding: 118px 0 64px;
  }

  .project-hero-bg {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.76) 62%, rgba(0, 0, 0, 0.62) 100%),
      var(--project-hero-image, url("../assets/images/service-hero.webp")) center / cover no-repeat;
  }

  .project-hero-content {
    width: min(100% - 34px, var(--container));
    padding-top: 0;
  }

  .project-breadcrumb {
    margin-bottom: 28px;
    font-size: 12px;
  }

  .project-hero h1 {
    max-width: 390px;
    font-size: clamp(32px, 9vw, 44px);
  }

  .project-hero-copy {
    max-width: 340px;
    font-size: 15px;
  }

  .project-gallery-section {
    padding-inline: 17px;
  }

  .project-gallery-grid-3 {
    grid-template-columns: 1fr;
  }

  .project-gallery-item {
    height: 210px;
  }

  .service-quick-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .service-quick-item {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 10px;
    min-height: auto;
    padding: 0 12px 18px;
    text-align: center;
  }

  .service-quick-item:first-child {
    padding-left: 12px;
  }

  .service-quick-item:last-child {
    padding-right: 12px;
  }

  .service-quick-icon {
    flex-basis: auto;
    width: 48px;
    height: 48px;
  }

  .service-quick-item h2 {
    font-size: 15px;
  }

  .service-quick-item p {
    margin-top: 5px;
    font-size: 13px;
  }

  .service-quick-item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: translateX(-50%);
  }

  .service-quick-item:nth-child(2n)::after {
    display: none;
  }

  .service-quick-item:nth-child(2)::after,
  .service-quick-item:nth-child(4)::after {
    display: block;
  }

  .service-quick-item:nth-last-child(-n + 2)::after {
    display: none;
  }

  .service-quick-item:nth-child(2)::after,
  .service-quick-item:nth-child(4)::after {
    display: block;
  }

  .service-quick-item:last-child {
    padding-bottom: 0;
  }

  .contact-info-section {
    padding-inline: 17px;
    padding-bottom: 28px;
  }

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

  .contact-info-card {
    min-height: auto;
    padding: 34px 22px 52px;
  }

  .contact-info-card:not(:last-child)::after,
  .contact-info-card:nth-child(2n)::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    display: block;
    width: calc(100% - 52px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: translateX(-50%);
  }

  .contact-info-card::before {
    bottom: 28px;
  }

  .contact-message-section {
    padding: 28px 17px 58px;
  }

  .contact-message-panel {
    padding: 34px 20px;
  }

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

  .contact-form-column h2,
  .contact-map-column h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .contact-map-placeholder {
    min-height: 270px;
  }

  .contact-map-placeholder iframe {
    height: 270px;
  }

  .about-philosophy {
    padding-inline: 17px;
  }

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

  .faq-content {
    padding-inline: 17px;
  }

  .faq-question {
    grid-template-columns: 32px 1fr 20px;
    padding: 0 14px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 18px 18px 58px;
    font-size: 15px;
  }

  .process-line {
    --process-mobile-icon: 70px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .process-line::before {
    top: 0;
    bottom: 0;
    left: calc(var(--process-mobile-icon) / 2);
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(217, 159, 72, 0.55), transparent);
  }

  .process-step {
    grid-template-columns: var(--process-mobile-icon) 1fr;
    grid-template-rows: auto;
    column-gap: 18px;
    align-items: center;
    justify-items: start;
  }

  .process-icon {
    grid-row: span 3;
    width: var(--process-mobile-icon);
    margin: 0;
  }

  .process-icon img,
  .process-icon svg {
    width: 44px;
    height: 44px;
  }

  .process-step span,
  .process-step h3,
  .process-step p {
    text-align: left;
  }

  .process-step h3 {
    margin: 4px 0 8px;
    font-size: 16px;
  }

  .process-step p {
    max-width: none;
    font-size: 14px;
  }

  .hero-copy {
    max-width: 320px;
    font-size: 15px;
  }

  .hero-button {
    width: 100%;
    max-width: 230px;
  }

  .services-preview {
    padding-inline: 17px;
  }

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

  .service-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .projects-preview {
    padding-inline: 17px;
  }

  .projects-track {
    grid-auto-columns: 86%;
  }

  .slider-controls {
    margin: 18px 0 0 auto;
  }

  .belief-copy {
    padding: 42px 22px;
  }

  .belief-gallery {
    grid-template-columns: 1fr;
  }

  .belief-gallery figure,
  .belief-gallery img {
    min-height: 250px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    justify-content: flex-start;
  }

  .footer-bottom p {
    text-align: left;
    line-height: 1.7;
  }

  .footer-bottom span {
    margin: 0 5px;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .floating-whatsapp,
  .back-to-top {
    width: 50px;
    height: 50px;
  }

  .section-placeholder {
    padding: 48px 17px;
  }

  .placeholder-inner {
    padding: 22px;
  }

  .contact-info-icon{
    width: 50px;
    height: 50px;
  }
}

.services-head h2,
.projects-head h2,
.belief-copy h2,
.service-listing-head h2,
.contact-form-column h2,
.contact-map-column h2,
.philosophy-copy h2,
.approach-head h2,
.faq-content h2,
.about-cta-inner h2,
.about-copy h2,
.placeholder-inner h2 {
  font-size: 46px;
}

@media (max-width: 980px) {
  .services-head h2,
  .projects-head h2,
  .belief-copy h2,
  .service-listing-head h2,
  .contact-form-column h2,
  .contact-map-column h2,
  .philosophy-copy h2,
  .approach-head h2,
  .faq-content h2,
  .about-cta-inner h2,
  .about-copy h2,
  .placeholder-inner h2 {
    font-size: 40px;
  }

  .about-hero h1,
  .about-hero-copy,
  .commercial-hero-content .about-hero-copy {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
  }

  .services-head h2,
  .services-head p:not(.section-label),
  .projects-head h2,
  .projects-head p:not(.section-label),
  .belief-copy h2,
  .belief-copy p:not(.section-label):not(.signature),
  .service-listing-head h2,
  .service-listing-head p:not(.section-label),
  .contact-form-column h2,
  .contact-map-column h2,
  .contact-map-column > p:not(.section-label),
  .philosophy-copy h2,
  .philosophy-copy p,
  .approach-head h2,
  .approach-head p:not(.section-label),
  .faq-content h2,
  .about-cta-inner h2,
  .about-cta-inner p,
  .about-copy h2,
  .about-copy p,
  .mission-vision p,
  .placeholder-inner h2,
  .placeholder-inner p {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .services-head h2,
  .projects-head h2,
  .belief-copy h2,
  .service-listing-head h2,
  .contact-form-column h2,
  .contact-map-column h2,
  .philosophy-copy h2,
  .approach-head h2,
  .faq-content h2,
  .about-cta-inner h2,
  .about-copy h2,
  .placeholder-inner h2 {
    font-size: 30px;
  }

  .signature {
  font-size: 28px;
}
}

@media (max-width: 980px) {
  .about-hero:not(.service-hero):not(.commercial-hero) .about-hero-content {
    width: calc(100vw - 34px);
    max-width: calc(100vw - 34px);
  }

  .about-hero:not(.service-hero):not(.commercial-hero) .about-hero-copy {
    display: block;
    inline-size: calc(100vw - 34px);
    max-inline-size: calc(100vw - 34px);
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

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