@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #0a0a0a;
  --bg-soft: #101010;
  --bg-card: #141414;
  --bg-card-2: #191919;
  --text: #f5f5f0;
  --muted: #a8a8a8;
  --muted-2: #6e6e6e;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #00b36b;
  --accent-dark: #035c3a;
  --shadow: rgba(0, 0, 0, 0.55);
  --max: 1440px;
  --nav-height: 86px;
  --radius: 8px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 179, 107, 0.13), transparent 28rem),
    linear-gradient(180deg, #050505 0%, var(--bg) 45%, #050505 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  opacity: 1;
  transition: opacity 0.45s ease;
}

body.page-loaded {
  opacity: 1;
}

body.page-exiting {
  opacity: 0;
}

body.menu-open {
  overflow: hidden;
}

body.loader-active {
  overflow: hidden;
}

body.loader-complete .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.58s ease, transform 0.58s ease, visibility 0.58s ease;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
  color: var(--text);
  background:
    radial-gradient(circle at 50% 58%, rgba(0, 179, 107, 0.18), transparent 24rem),
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.08), transparent 18rem),
    linear-gradient(180deg, #090909, #050505);
  isolation: isolate;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.site-loader::after {
  content: "";
  position: absolute;
  inset: auto 8vw 16vh;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 179, 107, 0.95), transparent);
  opacity: 0.7;
  transform: scaleX(0.35);
}

.site-loader-shell {
  position: relative;
  width: min(860px, 100%);
  text-align: center;
}

.site-loader-mark {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 26px;
  place-items: center;
  border: 1px solid rgba(0, 179, 107, 0.42);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(0, 179, 107, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 70px rgba(0, 179, 107, 0.18);
}

.site-loader-mark span {
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  line-height: 1;
}

.site-loader-eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.site-loader-title {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 26px);
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.5rem, 15vw, 13rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-loader-word {
  display: inline-flex;
  text-shadow: 0 34px 70px rgba(0, 0, 0, 0.72);
}

.site-loader-subline {
  display: flex;
  width: min(620px, 90vw);
  margin: 26px auto 0;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(245, 245, 239, 0.58);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.site-loader-subline::before,
.site-loader-subline::after {
  content: "";
  width: clamp(42px, 10vw, 112px);
  height: 1px;
  background: var(--accent);
}

.site-loader-status {
  width: min(540px, 86vw);
  margin: 54px auto 14px;
  color: rgba(245, 245, 239, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.site-loader-track {
  width: min(540px, 86vw);
  height: 8px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.site-loader-bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--accent-dark), var(--accent), #9df8d2),
    var(--accent);
  box-shadow: 0 0 26px rgba(0, 179, 107, 0.62);
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

img {
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #fff;
  background: var(--accent);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 179, 107, 0.7);
  border-radius: 999px;
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

.cursor-ring.is-hovering {
  width: 54px;
  height: 54px;
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  height: var(--nav-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent);
  transition: height 0.3s ease, background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 76px;
  border-color: var(--line);
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: clamp(150px, 14vw, 210px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.footer-copy .brand-logo {
  width: clamp(180px, 18vw, 260px);
  height: 78px;
  object-position: left center;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #023f2c);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  box-shadow: 0 18px 38px rgba(0, 179, 107, 0.23);
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  letter-spacing: 0;
  line-height: 0.9;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.btn svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 18px 38px rgba(0, 179, 107, 0.22);
}

.btn-primary:hover {
  background: #10d686;
  box-shadow: 0 22px 48px rgba(0, 179, 107, 0.34);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(0, 179, 107, 0.1);
}

.btn-ghost {
  color: #fff;
  border-color: var(--line);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0;
}

.section-tight {
  padding: clamp(56px, 7vw, 92px) 0;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.container-narrow {
  width: min(100% - 32px, 1040px);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  max-width: 1000px;
  font-size: clamp(5.6rem, 16vw, 15rem);
}

h2 {
  font-size: clamp(3.8rem, 9vw, 9rem);
}

h3 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

h4 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(34px, 5vw, 60px);
}

.section-head.center {
  display: block;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::after {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--nav-height) + 54px) 0 48px;
  background: #050505;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  filter: saturate(0.95) contrast(1.1);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(10, 10, 10, 0.18) 52%, rgba(0, 0, 0, 0.5) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: 8vh;
  z-index: -1;
  width: 48vw;
  min-width: 420px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 179, 107, 0.72), transparent);
  box-shadow: 0 0 34px rgba(0, 179, 107, 0.68);
  content: "";
  transform: rotate(-18deg);
}

.hero-content {
  display: grid;
  align-content: end;
  min-height: calc(100svh - var(--nav-height) - 102px);
}

.hero .eyebrow {
  justify-self: center;
  gap: 14px;
  margin-bottom: clamp(24px, 3vw, 38px);
  letter-spacing: 0.28em;
  text-align: center;
}

.hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
}

.hero .lead {
  max-width: 690px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 900px);
  margin-top: clamp(38px, 8vh, 86px);
  border: 1px solid var(--line);
  background: var(--line);
}

.metric {
  min-height: 104px;
  padding: 22px;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(12px);
}

.metric strong {
  display: block;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  font-weight: 400;
  line-height: 0.9;
  white-space: nowrap;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-refined {
  align-items: center;
  background:
    radial-gradient(circle at 16% 74%, rgba(0, 179, 107, 0.15), transparent 26rem),
    radial-gradient(circle at 70% 34%, rgba(0, 179, 107, 0.08), transparent 35rem),
    linear-gradient(180deg, #050505 0%, #090909 54%, #0d0808 100%);
}

.hero-refined .hero-media {
  display: block;
  opacity: 1;
}

.hero-refined .hero-media img {
  filter: saturate(1.08) contrast(1.16) brightness(1.08);
  object-position: center 46%;
}

.hero-refined::before {
  background:
    radial-gradient(ellipse at 50% 47%, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.3) 34%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.12) 36%, rgba(5, 5, 5, 0.8) 100%);
}

.hero-refined .hero-content {
  position: relative;
  align-content: center;
  justify-items: center;
  padding-top: clamp(40px, 6vh, 78px);
  text-align: center;
}

.hero-refined .eyebrow {
  position: relative;
  gap: clamp(22px, 4vw, 52px);
  margin-bottom: clamp(28px, 4vh, 46px);
  font-size: clamp(0.72rem, 1vw, 1rem);
  letter-spacing: clamp(0.28em, 0.65vw, 0.58em);
}

.hero-refined .eyebrow::before,
.hero-refined .eyebrow::after {
  display: inline-block;
  width: clamp(70px, 8vw, 132px);
  height: 2px;
  background: currentColor;
  content: "";
}

.hero-refined .hero-title {
  display: grid;
  max-width: min(92vw, 820px);
  margin: 0 auto clamp(34px, 5vh, 58px);
  /* font-size: clamp(5rem, 9vw, 9.8rem); */
  font-size: clamp(5rem, 9vw, 9.8rem);
  font-style: italic;
  line-height: 0.72;
  text-align: center;
  transform: skewX(-8deg);
}

.hero-refined .hero-title span {
  display: block;
}

.hero-refined .hero-title-solid {
  margin-bottom: 20px;
  font-size: clamp(3rem, 5vw, 3.8rem);
  color: #fff;
  text-shadow:
    0 5px 0 rgba(255, 255, 255, 0.05),
    0 26px 58px rgba(0, 0, 0, 0.62);
}

.hero-refined .hero-title-outline {
  color: transparent;
  -webkit-text-stroke: clamp(2px, 0.28vw, 5px) #fff;
  text-shadow: 0 20px 52px rgba(0, 0, 0, 0.58);
}

.hero-refined .hero-title-logo {
  max-width: min(92vw, 780px);
  gap: clamp(10px, 2vh, 18px);
  transform: none;
}

.hero-refined .hero-title-logo .hero-title-solid {
  margin-bottom: 0;
  transform: skewX(-8deg);
}

.hero-logo-title {
  width: 100%;
  max-height: clamp(118px, 20vw, 260px);
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.16));
}

.hero-logo-title-mobile {
  display: none;
}

.hero-logo-mask {
  display: block;
  width: min(82vw, 720px);
  height: auto;
  margin: 0 auto;
  overflow: visible;
  line-height: 0;
}

.hero-service-line {
  display: none;
  margin: clamp(124px, 26vh, 210px) auto clamp(22px, 3.5vh, 38px);
  color: rgba(245, 245, 239, 0.92);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 5.6rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.88;
  text-align: center;
  text-shadow: 0 24px 44px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  transform: skewX(-8deg);
}

.hero-service-line span {
  display: inline-block;
  margin: 0 0.2em;
  color: rgba(0, 179, 107, 0.92);
  transform: skewX(8deg);
}

.hero-light {
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 179, 107, 0.14), transparent 26rem),
    linear-gradient(180deg, #f7f7f3 0%, #ecece8 56%, #050505 100%);
}

.hero-light .hero-media img {
  filter: saturate(0.92) contrast(1.12) brightness(1.03);
  object-position: center 70%;
}

.hero-refined.hero-light::before {
  background:
    linear-gradient(180deg, rgba(245, 245, 240, 0.08) 0%, rgba(245, 245, 240, 0.16) 34%, rgba(6, 6, 6, 0.3) 72%, rgba(5, 5, 5, 0.86) 100%),
    radial-gradient(ellipse at 50% 38%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.24) 42%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-light .hero-title-solid,
.hero-light .lead {
  color: rgba(4, 6, 5, 0.72);
  text-shadow: none;
}

.hero-light .hero-title-solid {
  color: #050505;
}

.hero-light .eyebrow {
  color: #034b32;
}

.hero-refined .lead {
  max-width: min(92vw, 820px);
  margin: 0 auto;
  padding: clamp(10px, 1.2vw, 16px) clamp(18px, 2.4vw, 34px);
  color: rgba(255, 255, 255, 0.95);
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.18) 58%, transparent 78%),
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.34), transparent);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.92);
  font-size: clamp(1.14rem, 1.7vw, 1.9rem);
  line-height: 1.35;
}

.hero-refined .hero-actions {
  display: none;
}

.hero-refined .hero-metrics {
  width: 100%;
  max-width: none;
  margin-top: clamp(90px, 25vh, 158px);
  margin-bottom: 30px;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(0, 179, 107, 0.24), rgba(255, 255, 255, 0.1), rgba(0, 179, 107, 0.18)),
    var(--line);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 981px) {
  .hero-refined .hero-metrics {
    margin-top: clamp(210px, 38vh, 250px);
  }
}

.hero-refined .metric {
  min-height: 120px;
  background:
    linear-gradient(135deg, rgba(0, 179, 107, 0.1), transparent 45%),
    rgba(8, 8, 8, 0.78);
}

.hero-refined .metric strong {
  color: #fff;
}

.hero-refined .metric span {
  color: rgba(255, 255, 255, 0.62);
}

.hero-est,
.hero-certified {
  display: none;
}

.hero-refined .hero-est {
  position: absolute;
  bottom: calc(clamp(140px, 12vh, 150px) + 96px);
  left: clamp(12px, 2.5vw, 44px);
  display: grid;
  height: 116px;
  align-items: end;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-refined .hero-est span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  white-space: nowrap;
}

.hero-refined .hero-certified {
  position: absolute;
  right: clamp(12px, 2.5vw, 44px);
  bottom: calc(clamp(140px, 12vh, 150px) + 88px);
  display: grid;
  grid-template-columns: repeat(3, minmax(78px, 1fr));
  gap: 14px;
  justify-content: end;
}

.hero-refined .hero-certified strong {
  grid-column: 1 / -1;
  color: var(--accent);
  font-size: 0.74rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: right;
  text-transform: uppercase;
}

.hero-refined .hero-certified span {
  display: grid;
  min-width: 78px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(0, 179, 107, 0.26);
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(0, 179, 107, 0.08);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #070707;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  height: 64px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0;
  white-space: nowrap;
}

.ticker span::after {
  width: 8px;
  height: 8px;
  margin: 0 26px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: grid;
  isolation: isolate;
  min-height: 330px;
  align-content: space-between;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    var(--bg-card);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.9) contrast(1.08) brightness(0.58);
  transform: scale(1.04);
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.service-card::before {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 4px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.5) 0%, rgba(7, 7, 7, 0.84) 100%),
    linear-gradient(135deg, rgba(0, 179, 107, 0.22), transparent 46%);
  content: "";
  opacity: 0.84;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: rgba(0, 179, 107, 0.55);
  background: var(--bg-card-2);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
  transform: translateY(-7px);
}

.service-card:hover .service-card-bg {
  opacity: 0.44;
  filter: saturate(1.12) contrast(1.16) brightness(0.82);
  transform: scale(1.09);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 0.66;
}

.service-card > *:not(.service-card-bg) {
  position: relative;
  z-index: 1;
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(0, 179, 107, 0.34);
  border-radius: 6px;
  color: var(--accent);
  background: rgba(0, 179, 107, 0.08);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  max-width: 290px;
  margin-top: 34px;
  margin-bottom: 16px;
}

.service-card p {
  max-width: 410px;
  min-height: 78px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 28px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.text-link:hover {
  color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  min-height: 280px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  background: #151515;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 574px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  transition: transform 0.55s var(--ease), filter 0.3s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.78));
  content: "";
  opacity: 0.82;
}

.gallery-item:hover img {
  filter: saturate(1.15);
  transform: scale(1.07);
}

.gallery-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
}

.gallery-caption strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 0.9;
}

.gallery-caption span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.feature-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.feature-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.75)),
    linear-gradient(90deg, rgba(0, 179, 107, 0.25), transparent 52%);
  content: "";
}

.feature-copy {
  display: grid;
  gap: 28px;
}

.feature-copy .lead {
  max-width: 680px;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.proof-item:hover {
  border-color: rgba(0, 179, 107, 0.4);
  background: rgba(0, 179, 107, 0.06);
  transform: translateX(5px);
}

.proof-item .service-icon {
  width: 54px;
  height: 54px;
}

.proof-item h4 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
}

.reviews-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 179, 107, 0.11), transparent 38%, rgba(255, 255, 255, 0.04)),
    #080808;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: 22px;
  align-items: stretch;
}

.rating-panel {
  display: grid;
  align-content: center;
  min-height: 390px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.rating-number {
  margin-bottom: 10px;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: 0.85;
}

.stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
  color: var(--accent);
}

.stars svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 186px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.review-card p {
  color: rgba(255, 255, 255, 0.76);
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  gap: 12px;
}

.review-author strong {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-author span {
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.insta-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
}

.insta-tile img {
  width: 100%;
  height: 100%;
  transition: transform 0.45s var(--ease), filter 0.3s ease;
}

.insta-tile::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 179, 107, 0.78);
  content: attr(data-label);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.insta-tile:hover img {
  filter: saturate(1.2);
  transform: scale(1.08);
}

.insta-tile:hover::after {
  opacity: 1;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 62vh;
  min-height: 62svh;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--nav-height) + 80px) 0 70px;
  background: #050505;
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.48)),
    linear-gradient(0deg, var(--bg), rgba(0, 0, 0, 0.1)),
    var(--page-image, url("../assets/images/stock/luxury-black-car-studio.jpg")) center/cover;
  content: "";
}

.page-hero-services::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(0, 0, 0, 0.2) 44%, rgba(0, 0, 0, 0.48) 100%),
    var(--page-image) center/cover;
}

.page-hero h1 {
  max-width: 1120px;
  font-size: clamp(5rem, 14vw, 13rem);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 5vw, 62px) 0;
  border-top: 1px solid var(--line);
}

.service-detail:nth-child(even) {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.service-detail:nth-child(even) .service-detail-media {
  order: 2;
}

.service-detail-media {
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #121212;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  transition: transform 0.6s var(--ease);
}

.service-detail:hover .service-detail-media img {
  transform: scale(1.04);
}

#headliners-starlights .service-detail-media img {
  object-position: center 62%;
  filter: brightness(1.12) contrast(1.05) saturate(1.12);
}

.service-detail-copy {
  display: grid;
  gap: 18px;
}

.service-detail-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 10px;
  list-style: none;
}

.service-detail-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.service-detail-copy li::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  flex: 0 0 auto;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 38px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--accent);
  background: var(--accent);
}

.gallery-page-grid .gallery-item {
  min-height: 330px;
}

.gallery-page-grid .gallery-item.is-hidden {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 1180px);
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.lightbox-close:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.visualizer-tool {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.35fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.visualizer-preview {
  position: relative;
  display: grid;
  min-height: clamp(440px, 58vw, 720px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 74%, rgba(255, 255, 255, 0.13), transparent 16rem),
    linear-gradient(180deg, #151515, #080808);
}

.visualizer-preview[data-preview-bg="studio"] {
  background:
    radial-gradient(circle at 50% 76%, rgba(255, 255, 255, 0.18), transparent 18rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, #181818 0%, #080808 100%);
}

.visualizer-preview[data-preview-bg="street"] {
  background:
    linear-gradient(0deg, #111 0 32%, transparent 32%),
    linear-gradient(90deg, rgba(0, 179, 107, 0.18), transparent 26%, transparent 74%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, #2c2c2c 0%, #101010 100%);
}

.visualizer-preview[data-preview-bg="night"] {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 179, 107, 0.3), transparent 12rem),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.18), transparent 10rem),
    linear-gradient(180deg, #050505 0%, #121212 100%);
}

.visualizer-scene {
  position: relative;
  display: grid;
  min-height: inherit;
  place-items: center;
  padding: clamp(32px, 5vw, 70px);
}

.visualizer-scene::before {
  position: absolute;
  right: 8%;
  bottom: 24%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  content: "";
}

.car-render {
  --wrap-color: #00b36b;
  position: relative;
  width: min(94%, 940px);
  aspect-ratio: 16 / 7;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.58));
}

.car-shadow {
  position: absolute;
  right: 9%;
  bottom: 2%;
  left: 9%;
  height: 13%;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.72), transparent 68%);
}

.car-body {
  position: absolute;
  right: 1%;
  bottom: 18%;
  left: 1%;
  height: 48%;
  border-radius: 16% 24% 10% 12% / 58% 78% 32% 30%;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.34), transparent 16%),
    linear-gradient(8deg, rgba(0, 0, 0, 0.48), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--wrap-color), white 24%) 0%, var(--wrap-color) 42%, color-mix(in srgb, var(--wrap-color), black 48%) 100%);
  box-shadow:
    inset 0 16px 26px rgba(255, 255, 255, 0.16),
    inset 0 -28px 42px rgba(0, 0, 0, 0.48),
    0 2px 0 rgba(255, 255, 255, 0.12);
}

.car-body::before {
  position: absolute;
  right: 8%;
  bottom: 13%;
  left: 8%;
  height: 3px;
  background: rgba(255, 255, 255, 0.26);
  content: "";
  opacity: 0.55;
}

.car-body::after {
  position: absolute;
  right: 4%;
  bottom: 2%;
  left: 5%;
  height: 18%;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  content: "";
}

.car-gloss {
  position: absolute;
  top: 9%;
  right: 18%;
  left: 11%;
  height: 28%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  opacity: 0.8;
}

.car-cabin {
  position: absolute;
  left: 28%;
  bottom: 62%;
  width: 36%;
  height: 72%;
  border-radius: 62% 36% 6% 8% / 90% 70% 8% 8%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.06) 28%, transparent 32%),
    linear-gradient(180deg, #111, #050505);
  box-shadow: inset 0 0 0 5px color-mix(in srgb, var(--wrap-color), black 36%);
}

.car-window {
  position: absolute;
  bottom: 76%;
  height: 42%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.1) 26%, rgba(0, 0, 0, 0.76) 28%),
    #111;
  border: 2px solid rgba(255, 255, 255, 0.14);
}

.car-window-front {
  left: 42%;
  width: 18%;
  border-radius: 8% 50% 8% 4% / 8% 76% 12% 10%;
  transform: skewX(16deg);
}

.car-window-rear {
  left: 30%;
  width: 14%;
  border-radius: 56% 4% 4% 10% / 70% 8% 10% 12%;
  transform: skewX(-18deg);
}

.car-light {
  position: absolute;
  bottom: 38%;
  z-index: 2;
  height: 8%;
  border-radius: 999px;
}

.car-light-front {
  right: 3%;
  width: 9%;
  background: linear-gradient(90deg, #fff, #ffd7b0);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.35);
}

.car-light-rear {
  left: 3%;
  width: 7%;
  background: #ff1e15;
  box-shadow: 0 0 22px rgba(0, 179, 107, 0.42);
}

.car-wheel {
  position: absolute;
  bottom: -18%;
  z-index: 3;
  width: 16%;
  aspect-ratio: 1;
  border: clamp(10px, 1.15vw, 17px) solid #050505;
  border-radius: 999px;
  background:
    radial-gradient(circle, #aaa 0 8%, #171717 9% 20%, transparent 21%),
    repeating-conic-gradient(from 18deg, #272727 0deg 24deg, #909090 25deg 34deg);
  box-shadow: inset 0 0 0 6px #1c1c1c, 0 16px 22px rgba(0, 0, 0, 0.46);
}

.car-wheel-front {
  right: 12%;
}

.car-wheel-rear {
  left: 14%;
}

.car-render[data-preview-car="sedan"] .car-body {
  right: 3%;
  left: 3%;
  height: 44%;
  border-radius: 19% 20% 9% 10% / 55% 68% 28% 28%;
}

.car-render[data-preview-car="sedan"] .car-cabin {
  left: 31%;
  width: 34%;
  height: 62%;
  border-radius: 48% 42% 6% 6% / 76% 68% 8% 8%;
}

.car-render[data-preview-car="suv"] .car-body {
  right: 2%;
  left: 2%;
  height: 56%;
  border-radius: 12% 16% 8% 8% / 44% 52% 22% 22%;
}

.car-render[data-preview-car="suv"] .car-cabin {
  left: 30%;
  bottom: 58%;
  width: 39%;
  height: 64%;
  border-radius: 30% 22% 4% 4% / 66% 54% 6% 6%;
}

.car-render[data-preview-car="suv"] .car-wheel {
  width: 17%;
}

.car-render[data-preview-finish="satin"] .car-gloss {
  opacity: 0.38;
}

.car-render[data-preview-finish="satin"] .car-body {
  box-shadow:
    inset 0 10px 20px rgba(255, 255, 255, 0.1),
    inset 0 -24px 38px rgba(0, 0, 0, 0.5);
}

.car-render[data-preview-finish="matte"] .car-gloss {
  opacity: 0.08;
}

.car-render[data-preview-finish="matte"] .car-body {
  background:
    linear-gradient(8deg, rgba(0, 0, 0, 0.5), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--wrap-color), white 10%) 0%, var(--wrap-color) 44%, color-mix(in srgb, var(--wrap-color), black 56%) 100%);
  box-shadow:
    inset 0 8px 18px rgba(255, 255, 255, 0.04),
    inset 0 -22px 34px rgba(0, 0, 0, 0.58);
}

.visualizer-readout {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 34px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  pointer-events: none;
}

.visualizer-readout span,
.control-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visualizer-readout strong {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.9;
  text-align: right;
  text-transform: uppercase;
}

.visualizer-controls {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(8, 8, 8, 0.96);
}

.control-group {
  display: grid;
  gap: 10px;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.segmented-control button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.segmented-control button:hover,
.segmented-control button.is-active {
  border-color: var(--accent);
  background: rgba(0, 179, 107, 0.18);
  color: #fff;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.swatch {
  position: relative;
  aspect-ratio: 1;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.38), transparent 36%),
    var(--swatch);
  box-shadow: inset 0 -14px 18px rgba(0, 0, 0, 0.18);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.swatch:hover,
.swatch.is-active {
  border-color: #fff;
  box-shadow: inset 0 -14px 18px rgba(0, 0, 0, 0.18), 0 0 0 3px rgba(0, 179, 107, 0.32);
  transform: translateY(-2px);
}

.official-visualizer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 179, 107, 0.1), transparent 35%),
    rgba(255, 255, 255, 0.035);
}

.official-visualizer h3 {
  margin-bottom: 10px;
}

.official-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.official-actions .btn:disabled {
  cursor: default;
  opacity: 0.65;
  transform: none;
}

.visualizer-frame {
  display: block;
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
}

.visualizer-frame.is-loaded {
  display: block;
}

.visualizer-frame iframe {
  width: 100%;
  height: min(78vh, 850px);
  min-height: 560px;
  border: 0;
  background: #fff;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 20px;
}

.story-copy {
  position: relative;
  max-width: 900px;
  padding: clamp(4px, 1vw, 10px) 0 clamp(8px, 1.5vw, 18px) clamp(22px, 3vw, 42px);
}

.story-copy::before {
  position: absolute;
  top: 10px;
  bottom: 12px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(0, 179, 107, 0.08));
  content: "";
}

.story-copy .lead {
  max-width: 900px;
  color: #fff;
  font-size: clamp(1.45rem, 2.15vw, 2.25rem);
  font-weight: 600;
  line-height: 1.32;
}

.story-copy p:not(.lead) {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 1.35vw, 1.36rem);
  font-weight: 500;
  line-height: 1.65;
}

.team-grid,
.partner-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-card,
.partner-card,
.contact-card,
.form-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.team-card-copy {
  padding: 22px;
}

.team-card h3,
.contact-card h3 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.partner-card {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  letter-spacing: 0;
  text-align: center;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.partner-card:hover {
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-4px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.form-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 179, 107, 0.2), transparent 19rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02) 52%),
    rgba(10, 10, 10, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.form-shell::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent 72%);
  content: "";
}

.form-panel-head {
  display: grid;
  gap: 10px;
  padding-bottom: clamp(22px, 3vw, 34px);
  margin-bottom: clamp(22px, 3vw, 30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-panel-head h2 {
  max-width: 640px;
  font-size: clamp(3.7rem, 6.5vw, 6.8rem);
  line-height: 0.86;
}

.form-panel-head p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field-control {
  position: relative;
  display: block;
}

.field-control > svg {
  position: absolute;
  top: 50%;
  left: 17px;
  z-index: 1;
  width: 19px;
  height: 19px;
  color: rgba(0, 179, 107, 0.82);
  pointer-events: none;
  transform: translateY(-50%);
  transition: color 0.3s ease, transform 0.3s ease;
}

.field-control-textarea > svg {
  top: 19px;
  transform: none;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(7, 7, 7, 0.82);
  outline: none;
  padding: 0 18px 0 52px;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-field textarea {
  min-height: 178px;
  padding-top: 18px;
  line-height: 1.55;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.85) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  background-position: calc(100% - 22px) 27px, calc(100% - 16px) 27px, 0 0;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(12, 12, 12, 0.92);
  box-shadow: 0 0 0 4px rgba(0, 179, 107, 0.13), 0 18px 44px rgba(0, 0, 0, 0.26);
}

.field-control:focus-within > svg {
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.field-control-textarea:focus-within > svg {
  transform: scale(1.08);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}

.form-status {
  min-height: 0;
  margin: 0;
  font-size: 0;
  color: var(--accent);
  font-weight: 800;
}

.form-status.is-error {
  color: #ff6969;
}

.form-status.is-success {
  color: var(--accent);
}

.form-actions .btn {
  min-width: 220px;
}

.form-popup {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 2000;
  width: min(440px, calc(100vw - 32px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.form-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.form-popup-panel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 179, 107, 0.15), transparent 46%),
    rgba(8, 8, 8, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
}

.form-popup.is-error .form-popup-panel {
  background:
    linear-gradient(135deg, rgba(255, 72, 72, 0.17), transparent 46%),
    rgba(8, 8, 8, 0.96);
}

.form-popup-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(0, 179, 107, 0.55);
  border-radius: 8px;
  background: rgba(0, 179, 107, 0.12);
}

.form-popup-icon::before {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 900;
  content: "OK";
}

.form-popup.is-error .form-popup-icon {
  border-color: rgba(255, 105, 105, 0.6);
  background: rgba(255, 105, 105, 0.12);
}

.form-popup.is-error .form-popup-icon::before {
  color: #ff6969;
  content: "!";
}

.form-popup-copy {
  display: grid;
  gap: 6px;
}

.form-popup-copy strong {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.form-popup-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-popup-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-weight: 900;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.form-popup-close:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.form-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-note svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  overflow: hidden;
  align-items: center;
  min-height: 132px;
  padding: clamp(22px, 2.4vw, 30px);
  background:
    linear-gradient(135deg, rgba(0, 179, 107, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(10, 10, 10, 0.78);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card::after {
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(0, 179, 107, 0.48);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.contact-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.contact-card .service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 179, 107, 0.1);
}

.contact-card h3 {
  margin-bottom: 6px;
  font-size: clamp(2.45rem, 3.2vw, 3.5rem);
  line-height: 0.88;
}

.contact-card p,
.contact-card a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-card a:hover {
  color: var(--accent);
}

.map-placeholder {
  display: grid;
  min-height: 420px;
  margin-top: 24px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.82)),
    url("../assets/images/client/93C1724F-2DBB-4B88-B90F-9D8A32809791.jpeg") center/cover;
}

.map-placeholder span {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.9;
  text-align: center;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 179, 107, 0.16), transparent 26rem),
    radial-gradient(circle at 8% 76%, rgba(0, 179, 107, 0.09), transparent 24rem),
    #050505;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  opacity: 0.34;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px) 0;
  border-bottom: 1px solid var(--line);
}

.footer-cta h2 {
  max-width: 780px;
  margin-top: 10px;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: 0.86;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(180px, 0.62fr) minmax(220px, 0.8fr) minmax(280px, 0.92fr);
  gap: clamp(22px, 3vw, 42px);
  padding: clamp(54px, 7vw, 82px) 0;
}

.footer-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-copy .brand {
  margin-bottom: 6px;
}

.footer-copy p {
  max-width: 420px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(0, 179, 107, 0.24);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(0, 179, 107, 0.07);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-badges svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-column h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

.footer-column h3 svg {
  width: 19px;
  height: 19px;
  color: var(--accent);
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a,
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a svg {
  width: 15px;
  height: 15px;
  color: rgba(0, 179, 107, 0.72);
  transform: translateY(2px);
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links a:hover,
.footer-contact-line:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-links a:hover svg {
  color: var(--accent);
  transform: translate(3px, 2px);
}

.footer-contact {
  display: grid;
  font-style: normal;
  align-content: start;
  gap: 14px;
}

.footer-contact-line strong {
  display: block;
  margin-bottom: 1px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(0, 179, 107, 0.28);
  border-radius: 4px;
  color: var(--accent);
  background: rgba(0, 179, 107, 0.08);
  flex: 0 0 auto;
}

.footer-icon svg {
  width: 17px;
  height: 17px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-row a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-row a:hover {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-3px);
}

.social-row svg {
  width: 19px;
  height: 19px;
}

.social-row img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 18px;
  }

  .btn.nav-quote {
    padding: 0 16px;
  }

  .service-grid,
  .team-grid,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --nav-height: 76px;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 16px 26px;
    border-bottom: 1px solid var(--line);
    background: rgba(6, 6, 6, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
  }

  .nav-link::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-quote {
    display: none;
  }

  .section-head,
  .split-feature,
  .reviews-layout,
  .service-detail,
  .service-detail:nth-child(even),
  .story-layout,
  .contact-layout,
  .footer-top,
  .footer-cta,
  .cta-content,
  .visualizer-tool,
  .official-visualizer {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-detail-media {
    order: 0;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-media,
  .service-detail-media {
    min-height: 420px;
  }

  .story-copy {
    padding-left: 26px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-loader-title {
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-loader-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    white-space: nowrap;
  }

  .site-loader-subline {
    gap: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
  }

  .site-loader-status {
    margin-top: 40px;
  }

  .nav-shell,
  .container,
  .container-narrow {
    width: min(100% - 24px, var(--max));
  }

  .brand-tag {
    display: none;
  }

  .hero {
    padding-bottom: 28px;
  }

  .hero-content {
    min-height: calc(100svh - var(--nav-height) - 70px);
  }

  .hero-refined .hero-content {
    padding-top: 24px;
    text-align: center;
  }

  .hero-refined .eyebrow {
    max-width: 94vw;
    gap: 12px;
    margin-bottom: 28px;
    letter-spacing: 0.22em;
  }

  .hero-refined .eyebrow::before,
  .hero-refined .eyebrow::after {
    width: 34px;
  }

  .hero-refined .hero-title {
    max-width: 94vw;
    margin-bottom: 30px;
    font-size: clamp(4.1rem, 18vw, 7rem);
  }

  .hero-refined .lead {
    display: none;
  }

  .hero-logo-title-desktop {
    display: none;
  }

  .hero-logo-title-mobile {
    display: block;
    max-height: none;
  }

  .hero-logo-mask {
    width: min(82vw, 340px);
  }

  .hero-service-line {
    display: block;
    position: relative;
    z-index: 2;
    margin-top: clamp(180px, 28vh, 245px);
    padding-bottom: 10px;
    padding-top: 0;
    font-size: clamp(1rem, 5.1vw, 1.55rem);
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .hero-service-line span {
    margin: 0 0.08em;
  }

  .hero-light .hero-media {
    inset: -14px 0 -58px;
  }

  .hero-light .hero-media img {
    object-position: center 44%;
  }

  .hero-refined .hero-metrics {
    margin-top: 0;
  }

  .hero-refined .hero-est,
  .hero-refined .hero-certified {
    display: none;
  }

  .hero-actions,
  .footer-cta .btn,
  .cta-content .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .footer-cta .btn,
  .cta-content .btn {
    width: 100%;
  }

  .hero-metrics,
  .service-grid,
  .review-grid,
  .form-grid,
  .team-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 90px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-page-grid .gallery-item {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding-left: 18px;
  }

  .story-copy .lead {
    font-size: clamp(1.25rem, 6vw, 1.65rem);
  }

  .story-copy p:not(.lead) {
    font-size: 1rem;
    line-height: 1.6;
  }

  .feature-media,
  .service-detail-media {
    min-height: 340px;
  }

  .visualizer-frame iframe {
    min-height: 520px;
  }

  .visualizer-preview {
    min-height: 420px;
  }

  .form-shell {
    padding: 22px;
  }

  .form-panel-head h2 {
    font-size: clamp(3.3rem, 16vw, 4.8rem);
  }

  .form-actions {
    display: grid;
  }

  .form-actions .btn {
    width: 100%;
  }

  .visualizer-controls,
  .official-actions,
  .official-actions .btn,
  .visualizer-controls .btn {
    width: 100%;
  }

  .official-actions {
    display: grid;
  }

  .visualizer-readout {
    display: grid;
    align-items: start;
  }

  .visualizer-readout strong {
    text-align: left;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(4.6rem, 21vw, 5.7rem);
  }

  h2 {
    font-size: clamp(3.3rem, 16vw, 4.4rem);
  }

  .btn {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.72rem;
  }

  .service-card {
    min-height: 300px;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-page-grid .gallery-item {
    min-height: 310px;
  }
}
