﻿:root {
  --gold: #d7a83b;
  --gold-bright: #f0c85a;
  --white: #f7f5f0;
  --dark: #0d0e0e;
  --panel: #111212;
  --line: rgba(215, 168, 59, 0.38);
  --soft: rgba(247, 245, 240, 0.78);
}

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: #050505;
  font-family: Montserrat, Arial, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(240, 200, 90, 0.24);
}

:focus-visible {
  outline: 2px solid rgba(240, 200, 90, 0.9);
  outline-offset: 3px;
}

.top-component-bar {
  position: fixed;
  top: clamp(12px, 2vw, 22px);
  right: clamp(12px, 3vw, 42px);
  left: clamp(12px, 3vw, 42px);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(240, 200, 90, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(9, 10, 10, 0.74), rgba(9, 10, 10, 0.44));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.top-component-bar.is-menu-open {
  border-color: rgba(240, 200, 90, 0.54);
  background: linear-gradient(135deg, rgba(9, 10, 10, 0.9), rgba(9, 10, 10, 0.76));
}

.top-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding-right: 8px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
}

.mobile-menu-toggle {
  display: none;
  appearance: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(240, 200, 90, 0.46);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.mobile-menu-toggle span {
  grid-area: 1 / 1;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 140ms ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.top-component-bar.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.top-component-bar.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.top-component-bar.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  border-color: rgba(240, 200, 90, 0.82);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.top-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.top-nav-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(247, 245, 240, 0.88);
  font-size: clamp(0.68rem, 0.82vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.top-nav-links a:hover,
.top-nav-links a:focus-visible {
  border-color: rgba(240, 200, 90, 0.4);
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.top-nav-links .nav-quote {
  border-color: rgba(240, 200, 90, 0.78);
  color: #12100b;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.top-nav-links .nav-quote:hover,
.top-nav-links .nav-quote:focus-visible {
  color: #12100b;
  background: linear-gradient(135deg, #ffe28c, var(--gold));
}

.landing {
  min-height: 100svh;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.05), transparent 20%),
    #050505;
}

.poster {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}

.background {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.poster::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 74%);
  content: "";
}

.copy-panel {
  width: min(51.5vw, 790px);
  min-height: calc(100svh - 54px);
  padding: clamp(38px, 7.3vh, 74px) 0 86px clamp(42px, 5.55vw, 86px);
}

.logo {
  display: block;
  width: clamp(164px, 20vw, 315px);
  aspect-ratio: 1;
  margin-left: clamp(20px, 2.35vw, 37px);
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.headline {
  margin-top: clamp(24px, 3.2vh, 40px);
}

h1 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 span,
h1 strong {
  display: block;
  font-weight: 900;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.45);
}

h1 span {
  color: var(--white);
  font-size: clamp(3.1rem, 5.55vw, 5.25rem);
}

h1 strong {
  margin-top: 10px;
  color: var(--gold);
  font-size: clamp(3.3rem, 5.9vw, 5.65rem);
}

.gold-rule {
  display: block;
  width: clamp(72px, 6.2vw, 106px);
  height: 5px;
  margin: clamp(24px, 3.2vh, 34px) 0 21px;
  background: var(--gold);
}

.headline p {
  margin: 0;
  max-width: 560px;
  color: var(--white);
  font-size: clamp(1.32rem, 2.18vw, 2.08rem);
  font-weight: 500;
  line-height: 1.28;
  text-shadow: 0 3px 9px rgba(0, 0, 0, 0.55);
}

.services {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1.18fr;
  align-items: end;
  width: min(460px, 86%);
  margin-top: clamp(24px, 4vh, 38px);
  color: var(--gold);
}

.service {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  width: 100%;
  min-width: 0;
  appearance: none;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 10px 8px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  overflow: hidden;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(240, 200, 90, 0.16), rgba(255, 255, 255, 0.04));
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.service:hover,
.service:focus-visible {
  border-color: rgba(240, 200, 90, 0.48);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  backdrop-filter: blur(12px);
}

.service:hover::before,
.service:focus-visible::before {
  opacity: 1;
}

.service svg {
  position: relative;
  width: clamp(48px, 5.2vw, 74px);
  height: clamp(48px, 5.2vw, 74px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2.4;
  transition: transform 180ms ease, filter 180ms ease;
}

.service:hover svg,
.service:focus-visible svg {
  filter: drop-shadow(0 0 10px rgba(240, 200, 90, 0.36));
  transform: scale(1.08);
}

.service span {
  position: relative;
  color: var(--white);
  font-size: clamp(0.75rem, 1.15vw, 1.1rem);
  font-weight: 500;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.service:hover span,
.service:focus-visible span {
  color: var(--gold-bright);
}

.divider {
  width: 1px;
  height: clamp(58px, 6vw, 88px);
  background: rgba(215, 168, 59, 0.95);
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: min(330px, 86%);
  margin-top: clamp(26px, 4.8vh, 46px);
  padding: 12px 24px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(0, 0, 0, 0.14);
  font-size: clamp(1.15rem, 1.9vw, 1.72rem);
  font-weight: 500;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.phone-pill svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: currentColor;
}

.consult-button,
.consult-submit,
.direct-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(240, 200, 90, 0.78);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.consult-button,
.consult-submit {
  color: #12100b;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3), 0 0 24px rgba(215, 168, 59, 0.18);
}

.hero-consult-button {
  width: min(330px, 86%);
  margin-top: 14px;
  padding: 13px 24px;
}

.consult-button:hover,
.consult-button:focus-visible,
.consult-submit:hover,
.consult-submit:focus-visible,
.direct-whatsapp:hover,
.direct-whatsapp:focus-visible {
  border-color: rgba(255, 230, 142, 0.95);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36), 0 0 36px rgba(215, 168, 59, 0.24);
  transform: translateY(-3px);
}

.tagline {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-top: 1px solid var(--gold);
  color: var(--gold-bright);
  background: rgba(4, 4, 4, 0.42);
  font-size: clamp(0.82rem, 1.45vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
}

.second-scroll {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: clamp(34px, 4.3vw, 58px) clamp(18px, 7.6vw, 110px) 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.05), transparent 20%),
    radial-gradient(circle at 14% 68%, rgba(215, 168, 59, 0.08), transparent 24%),
    #0b0c0c;
}

.second-scroll::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.24;
}

.section-title {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto clamp(28px, 3.4vw, 42px);
  text-align: center;
  text-transform: uppercase;
}

.section-title span,
.about-copy > span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title h2,
.about-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.72rem);
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.18;
}

.section-title strong,
.about-copy strong {
  color: var(--gold);
}

.section-title i,
.service-card-body > i {
  display: block;
  width: 56px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--gold);
}

.service-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.7vw, 32px);
  max-width: 970px;
  margin: 0 auto clamp(40px, 5.2vw, 58px);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 385px;
  border: 1px solid rgba(247, 245, 240, 0.22);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  outline: 0;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
  backdrop-filter: blur(18px);
}

.service-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(240, 200, 90, 0.2), transparent 34%, rgba(255, 255, 255, 0.08) 72%, transparent);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(240, 200, 90, 0.72);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38), 0 0 34px rgba(215, 168, 59, 0.12);
  transform: translateY(-10px);
}

.service-card:hover::before,
.service-card:focus-visible::before {
  opacity: 1;
}

.service-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05) brightness(0.85);
  transition: transform 420ms ease, filter 220ms ease;
}

.service-card:hover > img,
.service-card:focus-visible > img {
  filter: saturate(1.04) contrast(1.08) brightness(0.98);
  transform: scale(1.055);
}

.service-card:nth-child(1) img {
  object-position: center 46%;
}

.service-card:nth-child(2) img {
  object-position: center 42%;
}

.service-card:nth-child(3) img {
  object-position: center 46%;
}

.service-card-body {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 228px;
  padding: 50px 26px 24px;
  border-top: 1px solid rgba(215, 168, 59, 0.18);
  background: rgba(8, 9, 9, 0.58);
  text-align: center;
}

.card-icon {
  position: absolute;
  top: -32px;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: #121313;
  transform: translateX(-50%);
}

.card-icon svg,
.step-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.service-card h3,
.process-step h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.service-card p,
.about-copy p,
.process-step p {
  margin: 12px 0 0;
  color: var(--soft);
  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  font-weight: 500;
  line-height: 1.55;
}

.project-peek {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 17px;
}

.project-peek img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(240, 200, 90, 0.45);
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.9);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover .project-peek img,
.service-card:focus-visible .project-peek img {
  border-color: rgba(240, 200, 90, 0.95);
  transform: translateY(-3px);
}

.view-projects {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 15px;
  padding: 7px 16px;
  border: 1px solid rgba(240, 200, 90, 0.58);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.service-card-body > i {
  width: 52px;
  height: 2px;
  margin-top: 15px;
}

.motion-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(28px, 4vw, 58px);
  width: calc(100% + clamp(36px, 15.2vw, 220px));
  margin: 0 0 clamp(42px, 5vw, 68px) calc(clamp(18px, 7.6vw, 110px) * -1);
  padding: clamp(46px, 5.8vw, 82px) clamp(18px, 7.6vw, 110px);
  border-top: 1px solid rgba(240, 200, 90, 0.28);
  border-bottom: 1px solid rgba(240, 200, 90, 0.28);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(240, 200, 90, 0.18), transparent 24%),
    linear-gradient(120deg, rgba(11, 12, 12, 0.98) 0%, rgba(16, 17, 17, 0.94) 42%, rgba(11, 30, 28, 0.68) 100%);
  isolation: isolate;
}

.motion-showcase::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(255, 255, 255, 0.045) 10.08%, transparent 10.14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%, rgba(240, 200, 90, 0.1));
  content: "";
  opacity: 0.55;
}

.motion-showcase::after {
  position: absolute;
  top: 12%;
  right: -6%;
  z-index: -1;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 200, 90, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 200, 90, 0.1), transparent 62%);
  content: "";
}

.motion-copy {
  position: sticky;
  top: 124px;
  align-self: start;
  max-width: 390px;
  padding-top: 10px;
}

.motion-copy > span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: 2.45rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.06;
  text-transform: uppercase;
}

.motion-copy h2 strong {
  display: block;
  color: var(--gold);
}

.motion-copy p {
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.motion-quote {
  margin-top: 24px;
  padding: 13px 20px;
}

.motion-visual {
  min-width: 0;
}

.motion-video-frame {
  position: relative;
  overflow: hidden;
  min-height: clamp(450px, 55vw, 680px);
  border: 1px solid rgba(247, 245, 240, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 36px 92px rgba(0, 0, 0, 0.48), 0 0 42px rgba(57, 140, 127, 0.14);
  transform: translateY(var(--motion-lift, 0px));
  transition:
    transform 520ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  backdrop-filter: blur(16px);
}

.motion-video-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(240, 200, 90, 0.22), transparent 30%, rgba(57, 140, 127, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 38%, rgba(0, 0, 0, 0.82));
  content: "";
  opacity: 0.86;
}

.motion-video-frame::after {
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  content: "";
}

.motion-video-frame:hover,
.motion-video-frame:focus-within {
  border-color: rgba(240, 200, 90, 0.68);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.48), 0 0 34px rgba(57, 140, 127, 0.18);
}

.motion-video-frame:hover,
.motion-video-frame:focus-within {
  transform: translateY(calc(var(--motion-lift, 0px) - 6px));
}

.motion-video-frame video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.12) brightness(0.8);
  transform: translateY(var(--motion-shift, 0px)) scale(var(--motion-scale, 1.045));
  transition: filter 240ms ease, transform 600ms ease;
}

.motion-video-frame:hover video,
.motion-video-frame:focus-within video {
  filter: saturate(1.14) contrast(1.16) brightness(0.94);
}

.motion-label {
  position: absolute;
  right: clamp(16px, 2vw, 26px);
  bottom: clamp(16px, 2vw, 26px);
  left: clamp(16px, 2vw, 26px);
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(6, 7, 7, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.motion-label span {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-label strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.motion-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.motion-points article {
  display: grid;
  gap: 8px;
  min-height: 104px;
  align-content: center;
  border: 1px solid rgba(240, 200, 90, 0.24);
  border-radius: 10px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.motion-points span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
}

.motion-points strong {
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .motion-video-frame,
  .motion-video-frame video {
    transition: none;
  }
}

.about-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.95fr);
  width: calc(100% + clamp(36px, 15.2vw, 220px));
  margin-left: calc(clamp(18px, 7.6vw, 110px) * -1);
  border-top: 1px solid rgba(215, 168, 59, 0.28);
  border-bottom: 1px solid rgba(215, 168, 59, 0.28);
  background: #101111;
}

.about-photo {
  min-height: 398px;
  border-right: 1px solid rgba(215, 168, 59, 0.42);
  background-image: url("assets/landing-page-second-scroll-inspiration.jpeg");
  background-size: 188%;
  background-position: left 65%;
  filter: saturate(1.02) contrast(1.05);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5.2vw, 58px) clamp(32px, 6vw, 72px);
}

.about-copy h2 {
  max-width: 520px;
  font-size: clamp(1.85rem, 3.2vw, 2.98rem);
}

.about-copy h2 strong {
  display: block;
}

.about-copy p {
  max-width: 535px;
  margin-top: 20px;
}

.about-copy ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--white);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 500;
  list-style: none;
}

.about-copy li {
  position: relative;
  padding-left: 34px;
}

.about-copy li::before {
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--gold);
  content: "\2713";
  font-size: 0.8rem;
  font-weight: 900;
}

.process-block {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 3.4vw, 38px) 0 clamp(38px, 4.7vw, 58px);
}

.process-title {
  margin-bottom: clamp(26px, 3.4vw, 42px);
}

.process-title h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.42rem);
}

.process-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.consult-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1040px;
  margin: clamp(36px, 4vw, 54px) auto 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(240, 200, 90, 0.35);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.consult-strip span,
.consult-copy > span,
.form-heading span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consult-strip h2 {
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.consult-strip p {
  max-width: 650px;
  margin: 10px 0 0;
  color: var(--soft);
  line-height: 1.6;
}

.consult-strip .consult-button {
  min-width: 220px;
  padding: 13px 22px;
}

.testimonials-block {
  position: relative;
  z-index: 1;
  padding: clamp(44px, 5vw, 68px) 0 clamp(26px, 3vw, 38px);
}

.testimonials-title {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
  max-width: 1040px;
  margin: 0 auto;
}

.testimonial-grid article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(240, 200, 90, 0.28);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.testimonial-grid article::before {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  content: "\201C";
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.7;
}

.testimonial-grid p {
  margin: 0;
  color: var(--soft);
  line-height: 1.7;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid strong {
  margin-top: 22px;
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.testimonial-grid span {
  margin-top: 6px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step {
  min-width: 0;
  text-align: center;
}

.step-visual {
  position: relative;
  display: inline-grid;
  place-items: center;
  margin-bottom: 17px;
}

.step-number {
  position: absolute;
  top: 36px;
  left: -43px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1.4px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  background: #101111;
  font-size: 0.78rem;
  font-weight: 800;
}

.step-icon {
  display: grid;
  width: clamp(70px, 7.2vw, 92px);
  height: clamp(70px, 7.2vw, 92px);
  place-items: center;
  border: 1.4px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(215, 168, 59, 0.05);
}

.step-icon svg {
  width: 42px;
  height: 42px;
  fill: rgba(215, 168, 59, 0.22);
}

.process-step h3 {
  color: var(--gold);
  font-size: clamp(0.92rem, 1.1vw, 1.04rem);
}

.process-step p {
  max-width: 180px;
  margin-inline: auto;
  font-size: clamp(0.86rem, 1vw, 0.96rem);
}

.arrow {
  margin-top: 62px;
  color: var(--gold);
  font-size: clamp(2.2rem, 3.2vw, 3.25rem);
  font-weight: 300;
  line-height: 1;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3.2vw, 42px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(215, 168, 59, 0.16), transparent 28%),
    rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(18px);
}

.gallery-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.58fr);
  width: min(1120px, 100%);
  max-height: min(760px, calc(100svh - 42px));
  overflow: hidden;
  border: 1px solid rgba(240, 200, 90, 0.44);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18, 19, 19, 0.9), rgba(18, 19, 19, 0.62));
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.gallery-modal.is-open .gallery-shell {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(240, 200, 90, 0.56);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(0, 0, 0, 0.32);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.gallery-stage {
  position: relative;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  background: #070707;
}

.gallery-stage::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent);
  content: "";
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  object-position: center;
  background: rgba(0, 0, 0, 0.45);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(240, 200, 90, 0.6);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(0, 0, 0, 0.34);
  cursor: pointer;
  font-size: 2.5rem;
  line-height: 0.8;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
}

.gallery-nav.prev {
  left: 18px;
}

.gallery-nav.next {
  right: 18px;
}

.gallery-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  padding: clamp(26px, 4vw, 46px);
  border-left: 1px solid rgba(240, 200, 90, 0.22);
}

.gallery-details > span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-details h2 {
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.gallery-details p {
  margin: 18px 0 0;
  color: var(--soft);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.gallery-count {
  margin-top: 18px;
  color: var(--gold-bright);
  font-weight: 800;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.gallery-thumb {
  overflow: hidden;
  height: 82px;
  border: 1px solid rgba(247, 245, 240, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 2px rgba(240, 200, 90, 0.2);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  transform: scale(1.08);
}

.consult-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(18px, 3vw, 34px);
  background: #050505;
  isolation: isolate;
}

.consult-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.62;
}

.consult-page::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 168, 59, 0.18), transparent 25%),
    linear-gradient(105deg, rgba(5, 5, 5, 0.96) 0%, rgba(6, 6, 6, 0.9) 52%, rgba(6, 6, 6, 0.58) 100%);
  content: "";
}

.consult-page::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.26;
}

.consult-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.consult-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.consult-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.consult-nav-link,
.direct-whatsapp {
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.consult-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(240, 200, 90, 0.48);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consult-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  width: min(1180px, 100%);
  min-height: calc(100svh - 112px);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 72px) 0;
}

.consult-copy h1 {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--white);
  font-size: clamp(2.65rem, 6vw, 5.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.consult-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.75;
}

.consult-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 34px;
}

.quote-promise {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 34px;
}

.consult-highlights div {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(240, 200, 90, 0.28);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(16px);
}

.quote-promise article {
  min-height: 148px;
  padding: 20px;
  border: 1px solid rgba(240, 200, 90, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(8, 9, 9, 0.34);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.consult-highlights strong,
.consult-highlights small,
.quote-promise strong,
.quote-promise span {
  display: block;
}

.consult-highlights strong,
.quote-promise strong {
  color: var(--gold-bright);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.consult-highlights small,
.quote-promise span {
  margin-top: 10px;
  color: var(--soft);
  line-height: 1.5;
}

.consult-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3.5vw, 38px);
  border: 1px solid rgba(240, 200, 90, 0.4);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(18, 19, 19, 0.86), rgba(18, 19, 19, 0.58));
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}

.quote-form {
  gap: 14px;
}

.quote-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.78fr);
}

.quote-copy h1 {
  font-size: clamp(2.55rem, 5.55vw, 5.25rem);
}

.quote-mini-nav {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.form-heading h2 {
  margin: 8px 0 4px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.consult-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  border: 1px solid rgba(247, 245, 240, 0.18);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 0.98rem;
  letter-spacing: 0;
  outline: 0;
  padding: 13px 15px;
  text-transform: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.consult-form select option {
  color: #111;
}

.consult-form textarea {
  resize: vertical;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  border-color: rgba(240, 200, 90, 0.86);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 3px rgba(215, 168, 59, 0.16);
}

.smart-quote-panel {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(240, 200, 90, 0.28);
  border-radius: 18px;
  padding: clamp(16px, 2.4vw, 22px);
  background:
    linear-gradient(145deg, rgba(240, 200, 90, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.14);
}

.smart-panel-heading {
  display: grid;
  gap: 7px;
  padding-bottom: 4px;
}

.smart-panel-heading span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.smart-panel-heading strong {
  color: var(--white);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.45;
}

.file-drop {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  border: 1px dashed rgba(240, 200, 90, 0.55);
  border-radius: 18px;
  padding: 22px;
  background:
    radial-gradient(circle at 18% 12%, rgba(240, 200, 90, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.055);
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.file-drop:hover,
.file-drop:focus-within {
  border-color: rgba(255, 230, 142, 0.95);
  background:
    radial-gradient(circle at 18% 12%, rgba(240, 200, 90, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.file-drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-drop strong {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  color: #12100b;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.file-drop small {
  display: block;
  max-width: 440px;
  margin-top: 8px;
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.selected-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(247, 245, 240, 0.12);
  border-radius: 14px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-size: 0.82rem;
}

.file-chip {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  border: 1px solid rgba(240, 200, 90, 0.34);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--gold-bright);
  background: rgba(240, 200, 90, 0.08);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.quote-note {
  margin: -2px 0 0;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.quote-actions {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.quote-whatsapp-option {
  width: 100%;
  border-color: rgba(247, 245, 240, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.consult-submit {
  width: 100%;
  margin-top: 4px;
  padding: 14px 20px;
}

.direct-whatsapp {
  min-height: 44px;
  padding: 11px 16px;
}

@media (max-width: 1100px) {
  .copy-panel {
    width: 60vw;
  }

  .service-cards {
    max-width: 900px;
  }

  .motion-showcase {
    grid-template-columns: 1fr;
    width: calc(100% + 36px);
    margin-left: -18px;
  }

  .motion-copy {
    position: relative;
    top: auto;
    max-width: 720px;
  }

  .motion-video-frame {
    min-height: 560px;
  }

  .about-band {
    width: calc(100% + 36px);
    margin-left: -18px;
  }

  .top-component-bar {
    align-items: center;
    border-radius: 24px;
  }

  .top-nav-links {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .top-nav-links::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 104px;
  }

  .top-component-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 12px;
    padding: 8px;
    border-radius: 22px;
  }

  .top-brand {
    min-width: 0;
    padding-right: 0;
  }

  .top-brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .top-nav-links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    overscroll-behavior: contain;
    padding: 0 2px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: rgba(6, 7, 7, 0);
    opacity: 0;
    pointer-events: none;
    scrollbar-width: thin;
    transform: translateY(-6px);
    transition:
      max-height 260ms ease,
      opacity 180ms ease,
      padding 220ms ease,
      border-color 180ms ease,
      background 180ms ease,
      transform 220ms ease;
  }

  .top-component-bar.is-menu-open .top-nav-links {
    max-height: min(70svh, 430px);
    margin-top: 2px;
    overflow-y: auto;
    padding: 8px;
    border-color: rgba(240, 200, 90, 0.28);
    background: rgba(8, 9, 9, 0.72);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .top-nav-links a {
    min-height: 44px;
    padding: 10px 12px;
    border-color: rgba(247, 245, 240, 0.1);
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.72rem;
    line-height: 1.2;
    white-space: normal;
  }

  .top-nav-links .nav-quote {
    border-color: rgba(240, 200, 90, 0.82);
  }

  .copy-panel {
    width: min(720px, 100%);
    padding-top: clamp(96px, 16svh, 128px);
  }

  .consult-layout,
  .quote-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(38px, 5vw, 58px) 0;
  }

  .consult-copy {
    padding-bottom: 0;
  }

  .consult-copy h1,
  .quote-copy h1 {
    max-width: 760px;
    font-size: clamp(2.35rem, 8.6vw, 4.8rem);
    line-height: 1;
  }

  .consult-form {
    width: min(720px, 100%);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 118px;
  }

  .top-component-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 9px;
    border-radius: 22px;
  }

  .top-brand {
    padding-left: 4px;
  }

  .top-brand img {
    width: 34px;
    height: 34px;
  }

  .top-nav-links a {
    min-height: 45px;
    padding: 10px 12px;
    font-size: 0.71rem;
  }

  .poster {
    min-height: 100svh;
  }

  .background {
    object-position: 61% center;
    opacity: 0.58;
  }

  .poster::before {
    inset: 0;
    background:
      linear-gradient(104deg, rgba(8, 9, 9, 0.98) 0%, rgba(9, 10, 10, 0.92) 68%, rgba(9, 10, 10, 0.58) 100%);
  }

  .copy-panel {
    width: 100%;
    min-height: calc(100svh - 74px);
    padding: clamp(108px, 18svh, 132px) 20px 104px;
  }

  .logo {
    width: clamp(142px, 46vw, 208px);
    margin-left: clamp(12px, 7vw, 34px);
  }

  h1 span {
    font-size: clamp(2.55rem, 13vw, 4.9rem);
  }

  h1 strong {
    font-size: clamp(2.8rem, 14vw, 5.2rem);
  }

  .headline p {
    font-size: clamp(1.18rem, 5.6vw, 1.9rem);
  }

  .services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 430px;
  }

  .service {
    min-height: 88px;
    padding: 10px 6px;
  }

  .service svg {
    width: clamp(42px, 12vw, 56px);
    height: clamp(42px, 12vw, 56px);
  }

  .service span {
    font-size: clamp(0.68rem, 2.9vw, 0.82rem);
  }

  .divider {
    display: none;
  }

  .phone-pill {
    width: min(100%, 360px);
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 11px 18px;
    font-size: clamp(1rem, 4.7vw, 1.24rem);
  }

  .hero-consult-button {
    width: min(100%, 360px);
    min-height: 50px;
    padding: 13px 18px;
  }

  .tagline {
    min-height: 74px;
    padding-inline: 16px;
    letter-spacing: 0.14em;
    line-height: 1.6;
  }

  .second-scroll {
    padding: 38px 18px 0;
  }

  .section-title {
    margin-bottom: 26px;
  }

  .section-title h2,
  .about-copy h2 {
    letter-spacing: 0.015em;
  }

  .service-cards,
  .about-band,
  .process-track,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card img {
    height: 190px;
  }

  .motion-showcase {
    gap: 24px;
    padding: 42px 18px;
  }

  .motion-copy h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .motion-copy p {
    font-size: 0.95rem;
  }

  .motion-video-frame {
    min-height: clamp(320px, 74svh, 420px);
  }

  .motion-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .motion-points article {
    min-height: 86px;
  }

  .motion-label {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 12px 13px;
  }

  .about-band {
    width: calc(100% + 36px);
    margin-left: -18px;
  }

  .about-photo {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid rgba(215, 168, 59, 0.42);
  }

  .about-copy {
    padding: 34px 24px 42px;
  }

  .process-block {
    padding-top: 34px;
  }

  .process-track {
    gap: 28px;
  }

  .arrow {
    display: none;
  }

  .step-number {
    left: -35px;
  }

  .gallery-modal {
    padding: 12px;
  }

  .gallery-shell {
    grid-template-columns: minmax(0, 1fr);
    max-height: calc(100svh - 24px);
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 14px;
  }

  .gallery-stage {
    height: clamp(270px, 56svh, 380px);
    min-height: 0;
  }

  .gallery-stage img {
    min-height: 0;
  }

  .gallery-details {
    border-left: 0;
    border-top: 1px solid rgba(240, 200, 90, 0.22);
    padding: 22px;
  }

  .gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .gallery-thumb {
    flex: 0 0 72px;
    height: 64px;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
  }

  .consult-strip,
  .consult-layout,
  .consult-highlights,
  .quote-promise,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .consult-strip .consult-button {
    width: 100%;
  }

  .consult-page {
    padding: 16px;
  }

  .consult-form {
    gap: 14px;
    padding: 20px;
    border-radius: 16px;
  }

  .consult-form input,
  .consult-form select,
  .consult-form textarea {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 16px;
  }

  .consult-form textarea {
    min-height: 132px;
  }

  .consult-submit,
  .direct-whatsapp,
  .consult-nav-link {
    min-height: 48px;
  }

  .consult-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .consult-brand img {
    width: 48px;
    height: 48px;
  }

  .consult-brand span {
    max-width: 120px;
    line-height: 1.1;
  }

  .consult-layout {
    min-height: auto;
    padding-top: 36px;
  }

  .consult-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .quote-mini-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .consult-highlights div,
  .quote-promise article {
    min-height: auto;
  }

  .file-drop {
    min-height: 150px;
  }
}

@media (max-width: 560px) {
  .top-component-bar {
    right: 10px;
    left: 10px;
  }

  .copy-panel {
    padding-inline: 18px;
  }

  .logo {
    width: clamp(118px, 39vw, 162px);
    margin-left: 0;
  }

  .headline {
    margin-top: 20px;
  }

  h1 span {
    font-size: clamp(2.25rem, 11.7vw, 3.45rem);
  }

  h1 strong {
    margin-top: 6px;
    font-size: clamp(2.45rem, 12.8vw, 3.75rem);
  }

  .gold-rule {
    height: 4px;
    margin: 20px 0 17px;
  }

  .headline p {
    font-size: clamp(1.04rem, 5.2vw, 1.42rem);
    line-height: 1.34;
  }

  .tagline {
    min-height: 66px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .second-scroll {
    padding-inline: 16px;
  }

  .section-title h2,
  .about-copy h2 {
    font-size: clamp(1.48rem, 7.4vw, 2.15rem);
    line-height: 1.2;
  }

  .service-card {
    min-height: auto;
  }

  .service-card img {
    height: clamp(170px, 49vw, 210px);
  }

  .service-card-body {
    min-height: 0;
    padding: 46px 20px 22px;
  }

  .motion-showcase {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 36px 16px;
  }

  .motion-video-frame {
    min-height: clamp(280px, 64svh, 360px);
  }

  .motion-label {
    gap: 5px;
  }

  .motion-points article {
    min-height: 78px;
    padding: 14px;
  }

  .about-band {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .about-copy {
    padding: 30px 20px 36px;
  }

  .consult-strip {
    gap: 18px;
    padding: 20px;
    border-radius: 12px;
  }

  .consult-strip .consult-button {
    min-width: 0;
  }

  .testimonial-grid article {
    min-height: auto;
    padding: 22px;
    border-radius: 12px;
  }

  .process-step p {
    max-width: 260px;
  }

  .gallery-modal {
    padding: 8px;
  }

  .gallery-shell {
    max-height: calc(100svh - 16px);
    border-radius: 12px;
  }

  .gallery-stage {
    height: clamp(240px, 52svh, 330px);
  }

  .gallery-details {
    padding: 20px 16px 18px;
  }

  .gallery-details h2 {
    font-size: clamp(1.45rem, 9vw, 2.15rem);
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
  }

  .gallery-nav {
    width: 44px;
    height: 44px;
  }

  .gallery-nav.prev {
    left: 10px;
  }

  .gallery-nav.next {
    right: 10px;
  }

  .consult-header {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-mini-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .consult-nav-link {
    justify-content: center;
    padding: 10px 12px;
    text-align: center;
  }

  .consult-copy h1,
  .quote-copy h1 {
    font-size: clamp(2rem, 11.2vw, 3.2rem);
  }

  .consult-copy p {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .consult-highlights,
  .quote-promise {
    margin-top: 24px;
  }

  .consult-form {
    padding: 18px;
  }
}

@media (max-width: 380px) {
  .top-brand {
    font-size: 0.76rem;
  }

  .top-brand img {
    width: 32px;
    height: 32px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .top-nav-links a {
    min-height: 43px;
    padding-inline: 8px;
    font-size: 0.66rem;
  }

  .copy-panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  .service {
    min-height: 82px;
  }

  .phone-pill,
  .hero-consult-button {
    width: 100%;
  }

  .consult-form {
    padding: 16px;
  }

  .quote-mini-nav {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .top-nav-links a:hover,
  .mobile-menu-toggle:hover,
  .service:hover,
  .service:hover svg,
  .consult-button:hover,
  .consult-submit:hover,
  .direct-whatsapp:hover,
  .service-card:hover,
  .service-card:hover > img,
  .service-card:hover .project-peek img,
  .motion-video-frame:hover,
  .motion-video-frame:hover video,
  .file-drop:hover,
  .gallery-thumb:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

