:root {
  --bg: #080808;
  --bg-soft: #0d0d0d;
  --surface: #111111;
  --surface-raised: #171717;
  --surface-light: #f3f2ed;
  --gold: #f4b400;
  --gold-bright: #ffc928;
  --gold-soft: #ffd86b;
  --text: #f7f7f3;
  --text-dark: #111111;
  --muted: #b9b9b1;
  --muted-dark: #5f5f59;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(0, 0, 0, 0.12);
  --success: #71c58b;
  --header-height: 92px;
  --container: 1220px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --shadow-gold: 0 18px 48px rgba(244, 180, 0, 0.18);
  --heading: "Arial Narrow", "Franklin Gothic Condensed", "Roboto Condensed", Impact, sans-serif;
  --body: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

button {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote,
figure {
  margin-top: 0;
}

::selection {
  background: var(--gold);
  color: #000;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold);
  content: "";
}

.eyebrow span {
  color: rgba(255, 255, 255, 0.42);
}

h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 900;
  line-height: 0.99;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 8vw, 7.3rem);
  letter-spacing: -0.045em;
}

h1 em {
  display: block;
  color: var(--gold-bright);
  font-style: normal;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--text-dark);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.55rem;
  letter-spacing: -0.015em;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  box-shadow: var(--shadow-gold);
  color: #070707;
}

.button-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 20px 55px rgba(244, 180, 0, 0.28);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold-soft);
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 7px;
  font-size: 0.72rem;
}

.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 14px rgba(244, 180, 0, 0.75);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.77), rgba(0, 0, 0, 0.22));
  transition: height 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(15px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.32));
  transition: width 220ms ease, height 220ms ease, flex-basis 220ms ease;
}

.is-scrolled .brand-mark {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.brand-copy {
  display: grid;
  align-items: start;
  line-height: 1;
}

.brand-copy strong,
.brand-copy > span {
  font-family: var(--heading);
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0.025em;
}

.brand-copy > span {
  margin-top: 3px;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.19em;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.6vw, 27px);
}

.nav-link {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 50%;
  bottom: 4px;
  left: 50%;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: right 180ms ease, left 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
  left: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.language-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.language-button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #000;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  line-height: 1.1;
}

.header-phone svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.header-phone span {
  display: grid;
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
}

.header-phone small {
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(910px, 100svh);
  isolation: isolate;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -4;
}

.hero-media img {
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.005);
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.8) 36%, rgba(0, 0, 0, 0.35) 64%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, transparent 38%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-grid {
  z-index: -2;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -250px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(244, 180, 0, 0.23);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(244, 180, 0, 0.05);
  content: "";
}

.hero-content {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(var(--header-height) + 74px);
  padding-bottom: 120px;
}

.hero .eyebrow {
  margin-bottom: 25px;
  color: var(--gold-soft);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 33px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-quote {
  display: flex;
  max-width: 570px;
  align-items: flex-start;
  gap: 14px;
  margin: 42px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.72);
}

.hero-quote > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 3.4rem;
  line-height: 0.8;
}

.hero-quote p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 34px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

.trust-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 134px;
  align-items: center;
  gap: 17px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item svg {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.trust-item div {
  display: grid;
  gap: 4px;
}

.trust-item strong {
  font-family: var(--heading);
  font-size: 1.13rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.services,
.about,
.process,
.contact {
  background-color: var(--surface-light);
  color: var(--text-dark);
}

.services::before,
.process::before,
.contact::before {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(30deg, rgba(0, 0, 0, 0.025) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.025) 87.5%),
    linear-gradient(150deg, rgba(0, 0, 0, 0.025) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.025) 87.5%);
  background-position: 0 0, 26px 45px;
  background-size: 52px 90px;
  content: "";
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 57px;
}

.section-heading > p {
  max-width: 530px;
  margin: 0 0 7px;
  color: var(--muted-dark);
  font-size: 1rem;
}

.section-heading-light h2 {
  color: #fff;
}

.section-heading-light > p {
  color: var(--muted);
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.service-card {
  position: relative;
  min-height: 385px;
  padding: 35px 34px 32px;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.48);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(244, 180, 0, 0.2);
  border-radius: 50%;
  content: "";
  transition: transform 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  z-index: 2;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  border-color: rgba(244, 180, 0, 0.48);
  transform: scale(1.16);
}

.service-number {
  position: absolute;
  top: 29px;
  right: 28px;
  color: rgba(0, 0, 0, 0.18);
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 900;
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 37px;
  place-items: center;
  border: 1px solid rgba(244, 180, 0, 0.56);
  border-radius: 16px;
  background: rgba(244, 180, 0, 0.08);
  color: #a77500;
}

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

.service-card h3 {
  margin-bottom: 17px;
}

.service-card p {
  min-height: 105px;
  margin-bottom: 24px;
  color: var(--muted-dark);
  font-size: 0.92rem;
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #171717;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card > a span {
  color: var(--gold);
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.service-card > a:hover span {
  transform: translateX(4px);
}

.work-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(244, 180, 0, 0.1), transparent 27%),
    radial-gradient(circle at 5% 80%, rgba(255, 255, 255, 0.04), transparent 28%),
    var(--bg-soft);
}

.work-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 100%;
  opacity: 0.15;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000);
}

.gallery-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(330px, 0.64fr);
  gap: 16px;
}

.gallery-stack {
  display: grid;
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: #1a1a1a;
  color: #fff;
  cursor: zoom-in;
  text-align: left;
  box-shadow: var(--shadow);
}

.gallery-card-featured {
  min-height: 636px;
}

.gallery-card picture,
.gallery-card img {
  width: 100%;
  height: 100%;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.gallery-card-featured img {
  object-position: center;
}

.gallery-stack .gallery-card:first-child img {
  object-position: center 48%;
}

.gallery-stack .gallery-card:last-child img {
  object-position: center 54%;
}

.gallery-card:hover img {
  filter: contrast(1.05) brightness(0.86);
  transform: scale(1.045);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 37%, rgba(0, 0, 0, 0.88) 100%);
}

.gallery-label {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: grid;
  gap: 5px;
}

.gallery-label small {
  color: var(--gold-soft);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-label strong {
  max-width: 420px;
  font-family: var(--heading);
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  line-height: 1;
  text-transform: uppercase;
}

.gallery-open {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  color: var(--gold-soft);
  font-size: 1.15rem;
  backdrop-filter: blur(9px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.gallery-card:hover .gallery-open {
  background: var(--gold);
  color: #000;
  transform: rotate(45deg);
}

.gallery-note {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 21px;
  margin-top: 20px;
  padding: 22px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.gallery-note-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 12px;
  background: rgba(244, 180, 0, 0.13);
  color: var(--gold);
}

.gallery-note-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.gallery-note strong {
  font-size: 0.94rem;
}

.gallery-note p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about {
  overflow: hidden;
}

.about::before {
  position: absolute;
  top: -220px;
  left: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(244, 180, 0, 0.22);
  border-radius: 50%;
  content: "";
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.about-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.emblem-halo {
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 180, 0, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(244, 180, 0, 0.035), 0 0 0 58px rgba(244, 180, 0, 0.022);
}

.about-emblem {
  position: relative;
  z-index: 1;
  width: min(100%, 570px);
  filter: drop-shadow(0 32px 55px rgba(0, 0, 0, 0.25));
}

.about-stamp {
  position: absolute;
  z-index: 2;
  right: -10px;
  bottom: 72px;
  display: flex;
  width: 220px;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border-radius: 12px;
  background: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.about-stamp svg {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.about-stamp span {
  display: grid;
  font-size: 0.72rem;
  line-height: 1.25;
}

.about-stamp strong {
  color: var(--gold-soft);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.about-copy {
  position: relative;
  z-index: 1;
}

.about-copy h2 {
  margin-bottom: 26px;
}

.about-copy .lead {
  margin-bottom: 21px;
  color: #292925;
  font-size: 1.2rem;
  font-weight: 750;
  line-height: 1.55;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--muted-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  margin: 31px 0;
}

.values-grid span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #292925;
  font-size: 0.85rem;
  font-weight: 700;
}

.values-grid svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: #a77800;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.about-quote {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 34px 0 0;
  padding: 25px 27px;
  border-left: 4px solid var(--gold);
  background: #111;
  box-shadow: var(--shadow);
  color: #fff;
}

.about-quote > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.8;
}

.about-quote p {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.4rem, 2.8vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

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

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  top: 51px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: rgba(0, 0, 0, 0.16);
  content: "";
}

.process-card {
  position: relative;
  padding: 0 23px;
  text-align: center;
}

.process-card:first-child {
  padding-left: 0;
}

.process-card:last-child {
  padding-right: 0;
}

.process-index {
  position: absolute;
  top: 0;
  right: 20px;
  color: rgba(0, 0, 0, 0.13);
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 900;
}

.process-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 102px;
  height: 102px;
  margin: 0 auto 25px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 50%;
  background: var(--surface-light);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  color: #9a6d00;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, transform 200ms ease;
}

.process-card:hover .process-icon {
  border-color: var(--gold);
  background: var(--gold);
  color: #080808;
  transform: translateY(-5px);
}

.process-icon svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.process-card h3 {
  margin-bottom: 13px;
  font-size: 1.25rem;
}

.process-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.85rem;
}

.project-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0b0b0b;
}

.project-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.13;
  background-image: linear-gradient(30deg, rgba(255, 255, 255, 0.38) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.38) 87.5%), linear-gradient(150deg, rgba(255, 255, 255, 0.38) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.38) 87.5%);
  background-position: 0 0, 26px 45px;
  background-size: 52px 90px;
  content: "";
}

.project-cta::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(244, 180, 0, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(244, 180, 0, 0.035), 0 0 0 78px rgba(244, 180, 0, 0.02);
  content: "";
  transform: translateY(-50%);
}

.project-cta-inner {
  display: flex;
  min-height: 350px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 65px;
  padding-bottom: 65px;
}

.project-cta h2 {
  max-width: 800px;
  color: #fff;
}

.project-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
}

.project-cta-actions {
  display: flex;
  min-width: max-content;
  flex-direction: column;
  gap: 12px;
}

.contact {
  overflow: hidden;
}

.contact::after {
  position: absolute;
  right: -260px;
  bottom: -330px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(244, 180, 0, 0.22);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(55px, 8vw, 105px);
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 25px;
}

.contact-lead {
  max-width: 570px;
  margin-bottom: 35px;
  color: var(--muted-dark);
  font-size: 1.05rem;
}

.contact-list {
  display: grid;
  gap: 13px;
}

.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 12px;
  background: #111;
  color: var(--gold);
}

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

.contact-list > a span:last-child,
.contact-list > div span:last-child {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-list small {
  color: var(--muted-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-list strong {
  overflow-wrap: anywhere;
  color: #20201d;
  font-size: 0.92rem;
}

.contact-list a:hover strong {
  color: #8e6600;
}

.contact-assurance {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 27px;
  padding: 17px;
  border-radius: 11px;
  background: rgba(244, 180, 0, 0.1);
}

.contact-assurance svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: #8c6500;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-assurance p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.79rem;
}

.contact-assurance strong {
  color: #282823;
}

.quote-form {
  padding: clamp(27px, 4vw, 44px);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.23);
  color: #fff;
}

.form-heading {
  display: grid;
  margin-bottom: 30px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.form-heading span {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-heading strong {
  font-family: var(--heading);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

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

.quote-form label:not(.consent-label) {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.quote-form label > span:first-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.quote-form label b {
  color: var(--gold);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  outline: none;
  background: #1b1b1b;
  color: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-form input,
.quote-form select {
  height: 52px;
  padding: 0 15px;
}

.quote-form textarea {
  min-height: 135px;
  padding: 14px 15px;
  resize: vertical;
}

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

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  background: #202020;
  box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.12);
}

.quote-form select {
  color-scheme: dark;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 3px 0 22px;
  cursor: pointer;
}

.consent-label input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.consent-label span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.5;
  text-transform: none !important;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #080808;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.65fr));
  gap: 45px;
  padding-top: 67px;
  padding-bottom: 53px;
}

.footer-brand p {
  max-width: 340px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column > a:not(.button) {
  color: var(--muted);
  font-size: 0.78rem;
  transition: color 180ms ease;
}

.footer-column > a:not(.button):hover {
  color: #fff;
}

.footer-contact .button {
  width: max-content;
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.footer-bottom button:hover {
  color: #fff;
}

.mobile-cta {
  display: none;
}

.lightbox {
  width: min(1120px, calc(100% - 30px));
  max-width: none;
  max-height: calc(100svh - 30px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: var(--radius-sm);
  background: #0b0b0b;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.65);
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(7px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: calc(100svh - 120px);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  object-fit: contain;
  background: #080808;
}

.lightbox figcaption {
  padding: 17px 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -15px;
  right: -15px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.toast {
  position: fixed;
  z-index: 2000;
  right: 22px;
  bottom: 22px;
  max-width: min(390px, calc(100% - 44px));
  padding: 15px 18px;
  border: 1px solid rgba(244, 180, 0, 0.38);
  border-radius: 10px;
  background: #151515;
  box-shadow: var(--shadow);
  color: #fff;
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.services-grid .reveal:nth-child(2),
.process-grid .reveal:nth-child(2),
.trust-grid .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.services-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3),
.trust-grid .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.services-grid .reveal:nth-child(4),
.process-grid .reveal:nth-child(4),
.trust-grid .reveal:nth-child(4) {
  transition-delay: 210ms;
}

.services-grid .reveal:nth-child(5) {
  transition-delay: 280ms;
}

.services-grid .reveal:nth-child(6) {
  transition-delay: 350ms;
}

@media (max-width: 1160px) {
  :root {
    --container: 1080px;
  }

  .primary-nav {
    gap: 14px;
  }

  .header-phone {
    display: none;
  }

  .section-heading {
    gap: 45px;
  }

  .service-card {
    padding-inline: 27px;
  }

  .gallery-card-featured {
    min-height: 590px;
  }

  .about-grid {
    grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
    gap: 65px;
  }

  .about-visual {
    min-height: 540px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(450px, 1.22fr);
    gap: 55px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 78px;
  }

  .site-header.is-scrolled {
    height: 68px;
  }

  .brand-mark,
  .is-scrolled .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-copy small {
    display: none;
  }

  .header-quote {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
    width: min(420px, 100%);
    height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px 35px 50px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(9, 9, 9, 0.98);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .primary-nav::before {
    position: absolute;
    inset: 0;
    opacity: 0.09;
    background-image: linear-gradient(30deg, rgba(255, 255, 255, 0.35) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.35) 87.5%), linear-gradient(150deg, rgba(255, 255, 255, 0.35) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.35) 87.5%);
    background-position: 0 0, 26px 45px;
    background-size: 52px 90px;
    content: "";
    pointer-events: none;
  }

  .nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-link {
    position: relative;
    z-index: 1;
    padding: 17px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--heading);
    font-size: 1.7rem;
    letter-spacing: 0.02em;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.is-active {
    color: var(--gold);
  }

  .hero {
    min-height: 840px;
  }

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

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 680px;
  }

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

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

  .gallery-card-featured {
    min-height: 540px;
  }

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

  .gallery-stack .gallery-card {
    min-height: 330px;
  }

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

  .about-visual {
    min-height: 550px;
    order: 2;
  }

  .about-copy {
    order: 1;
  }

  .about-stamp {
    right: max(10px, 7vw);
  }

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

  .process-grid::before {
    display: none;
  }

  .project-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }

  .project-cta-actions {
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .contact-copy {
    max-width: 720px;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
    --radius: 16px;
  }

  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: 66px;
  }

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

  .section {
    padding: 78px 0;
  }

  .eyebrow {
    gap: 8px;
    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }

  .eyebrow::before {
    width: 28px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 16vw, 4.7rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
    line-height: 0.98;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark,
  .is-scrolled .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy > span {
    font-size: 0.82rem;
  }

  .language-button {
    width: 36px;
    height: 36px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  .header-actions {
    gap: 7px;
  }

  .primary-nav {
    width: 100%;
    padding-inline: 27px;
  }

  .hero {
    min-height: max(760px, 100svh);
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.45) 28%, rgba(0, 0, 0, 0.82) 68%, rgba(0, 0, 0, 0.97) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.1));
  }

  .hero-grid {
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, #000, transparent 73%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 135px;
    padding-bottom: 78px;
  }

  .hero .eyebrow {
    margin-bottom: 17px;
  }

  .hero-lead {
    margin-bottom: 25px;
    font-size: 0.95rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-quote {
    margin-top: 28px;
    padding-top: 17px;
  }

  .hero-quote p {
    font-size: 0.77rem;
  }

  .scroll-cue {
    display: none;
  }

  .trust-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 0;
    padding: 22px 21px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0 !important;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .trust-item svg {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .section-heading {
    margin-bottom: 37px;
  }

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

  .service-card {
    min-height: 0;
    padding: 29px 25px 27px;
  }

  .service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 28px;
  }

  .service-card p {
    min-height: 0;
  }

  .gallery-card-featured,
  .gallery-stack .gallery-card {
    min-height: 390px;
  }

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

  .gallery-card-featured img {
    object-position: 57% center;
  }

  .gallery-label {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .gallery-label strong {
    font-size: 1.55rem;
  }

  .gallery-note {
    grid-template-columns: auto 1fr;
    padding: 18px;
  }

  .gallery-note .text-link {
    grid-column: 1 / -1;
    margin-top: 4px;
  }

  .about-grid {
    gap: 35px;
  }

  .about-copy .lead {
    font-size: 1.04rem;
  }

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

  .about-visual {
    min-height: 390px;
  }

  .about-emblem {
    width: min(100%, 430px);
  }

  .about-stamp {
    right: 0;
    bottom: 10px;
    width: 190px;
    padding: 12px 14px;
  }

  .about-quote {
    padding: 21px;
  }

  .about-quote p {
    font-size: 1.45rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .process-card,
  .process-card:first-child,
  .process-card:last-child {
    display: grid;
    grid-template-columns: 76px 1fr;
    padding: 0;
    text-align: left;
  }

  .process-icon {
    width: 66px;
    height: 66px;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .process-icon svg {
    width: 28px;
    height: 28px;
  }

  .process-card h3 {
    align-self: end;
    margin-bottom: 7px;
  }

  .process-card p {
    grid-column: 2;
  }

  .process-index {
    top: -5px;
    right: 0;
  }

  .project-cta-inner {
    min-height: 0;
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .project-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .project-cta-actions .button {
    width: 100%;
  }

  .contact-grid {
    gap: 42px;
  }

  .contact-list > a,
  .contact-list > div {
    gap: 12px;
  }

  .contact-list strong {
    font-size: 0.82rem;
  }

  .quote-form {
    padding: 25px 19px;
    border-radius: 13px;
  }

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

  .form-heading strong {
    font-size: 1.65rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 26px;
    padding-top: 50px;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 11px 18px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 950;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 66px;
    grid-template-columns: 0.9fr 1.1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(9, 9, 9, 0.96);
    box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(13px);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-cta a + a {
    background: var(--gold);
    color: #080808;
  }

  .mobile-cta svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .toast {
    right: 14px;
    bottom: 80px;
    max-width: calc(100% - 28px);
  }

  .lightbox {
    width: calc(100% - 18px);
  }

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

@media (max-width: 390px) {
  .brand-copy strong {
    font-size: 0.86rem;
  }

  .brand-copy > span {
    font-size: 0.72rem;
  }

  .language-button {
    display: none;
  }

  h1 {
    font-size: 2.9rem;
  }

  .hero-lead {
    font-size: 0.88rem;
  }
}

@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;
  }

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

/* Atualização 2: WhatsApp, experiência, portefólio automático e vídeos */
:root {
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4d;
}

.button-whatsapp {
  border-color: rgba(37, 211, 102, 0.55);
  background: rgba(18, 140, 77, 0.2);
  color: #fff;
}

.button-whatsapp:hover {
  border-color: var(--whatsapp);
  background: var(--whatsapp-dark);
  box-shadow: 0 18px 45px rgba(18, 140, 77, 0.22);
}

.button-whatsapp svg {
  fill: none;
  stroke: currentColor;
}

.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  line-height: 1.08;
  transition: color 180ms ease;
}

.header-whatsapp:hover {
  color: var(--whatsapp);
}

.header-whatsapp-icon {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp);
}

.header-whatsapp-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.header-whatsapp > span:last-child {
  display: grid;
  font-size: 0.82rem;
  white-space: nowrap;
}

.header-whatsapp small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-whatsapp strong {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.contact-icon-whatsapp {
  border-color: rgba(37, 211, 102, 0.38) !important;
  background: rgba(37, 211, 102, 0.1) !important;
  color: var(--whatsapp-dark) !important;
}

.scope-section {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 10% 15%, rgba(244, 180, 0, 0.13), transparent 28%),
    radial-gradient(circle at 90% 85%, rgba(255, 255, 255, 0.055), transparent 30%),
    #090909;
}

.scope-section::after {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
  pointer-events: none;
}

.scope-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.scope-card {
  position: relative;
  min-height: 475px;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.27);
}

.scope-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), transparent 80%);
  content: "";
}

.scope-card-major {
  background:
    linear-gradient(145deg, rgba(244, 180, 0, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.035);
}

.scope-card-home {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 48%),
    rgba(255, 255, 255, 0.025);
}

.scope-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}

.scope-icon {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  place-items: center;
  border: 1px solid rgba(244, 180, 0, 0.55);
  border-radius: 18px;
  background: rgba(244, 180, 0, 0.1);
  color: var(--gold-soft);
}

.scope-icon svg {
  width: 41px;
  height: 41px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.scope-badge {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.scope-card h3 {
  max-width: 510px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 0.98;
}

.scope-card > p {
  max-width: 600px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 0.94rem;
}

.scope-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.scope-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.82rem;
}

.scope-card li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.scope-signature {
  display: inline-flex;
  padding-top: 17px;
  border-top: 1px solid rgba(244, 180, 0, 0.35);
  color: var(--gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.scope-bridge {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.92rem;
  text-align: center;
}

.scope-bridge strong {
  color: var(--gold-soft);
}

.portfolio-toolbar,
.video-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.portfolio-toolbar-copy,
.video-toolbar-copy {
  display: flex;
  align-items: center;
  gap: 13px;
}

.portfolio-toolbar-copy > div,
.video-toolbar-copy > div {
  display: grid;
  gap: 2px;
}

.portfolio-toolbar-copy strong,
.video-toolbar-copy strong {
  color: #fff;
  font-size: 0.8rem;
}

.portfolio-toolbar-copy span:not(.portfolio-live-dot),
.video-toolbar-copy span:not(.video-live-mark) {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.69rem;
}

.portfolio-live-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(113, 197, 139, 0.45);
  animation: portfolio-pulse 2s infinite;
}

@keyframes portfolio-pulse {
  0% { box-shadow: 0 0 0 0 rgba(113, 197, 139, 0.45); }
  70% { box-shadow: 0 0 0 9px rgba(113, 197, 139, 0); }
  100% { box-shadow: 0 0 0 0 rgba(113, 197, 139, 0); }
}

.portfolio-shuffle,
.video-shuffle {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(244, 180, 0, 0.38);
  border-radius: 8px;
  background: rgba(244, 180, 0, 0.08);
  color: var(--gold-soft);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.portfolio-shuffle:hover,
.video-shuffle:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #090909;
  transform: translateY(-1px);
}

.portfolio-shuffle svg,
.video-shuffle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.portfolio-grid {
  position: relative;
  z-index: 1;
  column-count: 3;
  column-gap: 16px;
}

.portfolio-card {
  display: block;
  width: 100%;
  min-height: 0;
  margin: 0 0 16px;
  break-inside: avoid;
  aspect-ratio: 4 / 3;
  content-visibility: auto;
  contain-intrinsic-size: 360px 280px;
}

.portfolio-card-large,
.portfolio-card-wide {
  aspect-ratio: 16 / 10;
}

.portfolio-card-tall {
  aspect-ratio: 4 / 5;
}

.portfolio-card-square {
  aspect-ratio: 1;
}

.portfolio-card .gallery-label {
  right: 20px;
  bottom: 18px;
  left: 20px;
}

.portfolio-card .gallery-label strong {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.portfolio-card .gallery-open {
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
}

.portfolio-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 78px;
  padding-top: 8px;
}

.portfolio-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.portfolio-load-more {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.68rem;
}

.portfolio-noscript {
  margin: 18px 0 0;
  color: var(--gold-soft);
  font-size: 0.78rem;
  text-align: center;
}

.portfolio-empty {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
  border: 1px dashed rgba(244, 180, 0, 0.35);
  border-radius: var(--radius-sm);
  color: var(--muted);
  text-align: center;
}

.video-section {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 180, 0, 0.14), transparent 36%),
    linear-gradient(180deg, #080808, #111 52%, #090909);
}

.video-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(180deg, #000, transparent 80%);
  pointer-events: none;
}

.video-live-mark {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border: 1px solid rgba(244, 180, 0, 0.38);
  border-radius: 50%;
}

.video-live-mark::before,
.video-live-mark::after,
.video-live-mark span {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.video-live-mark::before {
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.video-live-mark::after {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(244, 180, 0, 0.42);
  animation: video-signal 1.8s infinite;
}

@keyframes video-signal {
  0% { opacity: 0.9; transform: scale(0.6); }
  75%, 100% { opacity: 0; transform: scale(1.4); }
}

.video-reels {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 990px;
  margin-inline: auto;
}

.video-reel {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: #151515;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.38);
  isolation: isolate;
  scroll-snap-align: center;
}

.video-reel::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.video-reel video {
  width: 100%;
  height: 100%;
  background: #111;
  object-fit: cover;
}

.video-reel-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 30%, transparent 58%, rgba(0, 0, 0, 0.83));
  pointer-events: none;
}

.video-reel-top {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.44);
  color: #fff;
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.video-reel-top::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  box-shadow: 0 0 10px rgba(244, 180, 0, 0.8);
}

.video-reel-copy {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 4px;
  color: #fff;
  pointer-events: none;
}

.video-reel-copy small {
  color: var(--gold-soft);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-reel-copy strong {
  font-family: var(--heading);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.video-sound-toggle,
.video-play-toggle {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.video-sound-toggle {
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
}

.video-play-toggle {
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.85);
}

.video-reel.is-manually-paused .video-play-toggle,
.video-reel.is-autoplay-blocked .video-play-toggle {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.video-sound-toggle:hover,
.video-play-toggle:hover {
  background: var(--gold);
  color: #090909;
  transform: scale(1.05);
}

.video-play-toggle:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.video-sound-toggle svg,
.video-play-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.video-reel.is-unmuted .video-sound-toggle {
  border-color: var(--gold);
  background: var(--gold);
  color: #090909;
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

.experience-stats > div {
  display: grid;
  align-content: center;
  min-height: 104px;
  padding: 19px 18px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.experience-stats > div:first-child {
  padding-left: 0;
}

.experience-stats > div:last-child {
  border-right: 0;
}

.experience-stats strong {
  color: #aa7900;
  font-family: var(--heading);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.experience-stats span {
  margin-top: 7px;
  color: var(--muted-dark);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.lightbox figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lightbox figcaption small {
  flex: 0 0 auto;
  color: var(--gold-soft);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.72);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.lightbox-nav:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #090909;
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

@media (max-width: 1320px) {
  .header-actions {
    gap: 9px;
  }

  .header-quote {
    display: none;
  }

  .primary-nav {
    gap: 12px;
  }

  .nav-link {
    font-size: 0.67rem;
  }
}

@media (max-width: 1160px) {
  .header-phone {
    display: flex;
  }

  .header-whatsapp {
    padding-left: 8px;
  }

  .header-whatsapp > span:last-child {
    display: none;
  }

  .header-whatsapp-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}

@media (max-width: 1040px) {
  .header-phone span {
    display: none;
  }

  .header-phone {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(244, 180, 0, 0.34);
    border-radius: 50%;
    background: rgba(244, 180, 0, 0.07);
  }

  .header-phone svg {
    width: 19px;
    height: 19px;
  }

  .header-whatsapp {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 960px) {
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .scope-card {
    min-height: 0;
  }

  .portfolio-grid {
    column-count: 2;
  }

  .video-reels {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .header-phone {
    display: none;
  }

  .header-whatsapp-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .scope-card-topline {
    align-items: flex-start;
  }

  .portfolio-toolbar,
  .video-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .portfolio-shuffle,
  .video-shuffle {
    width: 100%;
  }

  .video-reels {
    grid-auto-columns: minmax(240px, 78vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    max-width: none;
    margin-right: calc((100vw - 100%) / -2);
    margin-left: calc((100vw - 100%) / -2);
    padding: 0 max(14px, calc((100vw - min(calc(100% - 28px), var(--container))) / 2)) 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 14px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(244, 180, 0, 0.55) rgba(255, 255, 255, 0.06);
  }

  .video-reel {
    border-radius: 18px;
  }

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

  .experience-stats > div,
  .experience-stats > div:first-child {
    min-height: 82px;
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .experience-stats > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .header-whatsapp {
    display: flex;
  }

  .scope-card {
    padding: 28px 23px;
  }

  .scope-card-topline {
    gap: 12px;
    margin-bottom: 28px;
  }

  .scope-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 15px;
  }

  .scope-icon svg {
    width: 34px;
    height: 34px;
  }

  .scope-badge {
    max-width: 170px;
    font-size: 0.52rem;
    line-height: 1.35;
  }

  .scope-card h3 {
    font-size: 2.2rem;
  }

  .scope-bridge {
    text-align: left;
  }

  .portfolio-grid {
    column-count: 1;
  }

  .portfolio-card,
  .portfolio-card-large,
  .portfolio-card-wide {
    aspect-ratio: 4 / 3;
  }

  .portfolio-card-tall {
    aspect-ratio: 4 / 5;
  }

  .portfolio-actions {
    align-items: stretch;
    flex-direction: column;
    padding: 18px 0 12px;
    text-align: center;
  }

  .portfolio-load-more {
    width: 100%;
  }

  .portfolio-toolbar-copy,
  .video-toolbar-copy {
    align-items: flex-start;
  }

  .portfolio-toolbar-copy span:not(.portfolio-live-dot),
  .video-toolbar-copy span:not(.video-live-mark) {
    line-height: 1.45;
  }

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

  .mobile-cta a + a {
    background: transparent;
    color: #fff;
  }

  .mobile-cta .mobile-call {
    background: #101010;
    color: #fff;
  }

  .mobile-cta .mobile-whatsapp {
    background: var(--whatsapp-dark);
    color: #fff;
  }

  .mobile-cta .mobile-quote {
    background: var(--gold);
    color: #080808;
  }

  .mobile-cta a {
    gap: 5px;
    font-size: 0.61rem;
    letter-spacing: 0.035em;
  }

  .lightbox-nav {
    top: auto;
    bottom: 64px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox figcaption {
    min-height: 58px;
    padding-right: 66px;
    padding-left: 66px;
    font-size: 0.7rem;
    text-align: center;
  }

  .lightbox figcaption small {
    display: none;
  }
}

@media (max-width: 430px) {
  .header-whatsapp {
    display: none;
  }

  .video-reels {
    grid-auto-columns: minmax(230px, 84vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-live-dot,
  .video-live-mark::after {
    animation: none;
  }
}

[hidden] {
  display: none !important;
}

@media (max-width: 680px) {
  .hero .eyebrow {
    position: relative;
    display: block;
    max-width: 100%;
    padding-left: 38px;
    line-height: 1.55;
    white-space: normal;
  }

  .hero .eyebrow::before {
    position: absolute;
    top: 0.72em;
    left: 0;
  }

  .hero .eyebrow span {
    margin-inline: 4px;
  }
}

/* Atualização 3: francês por defeito, zona de intervenção e TikTok */
.language-button {
  opacity: 0.68;
  text-decoration: none;
}

.language-button:hover,
.language-button:focus-visible {
  opacity: 1;
}

.video-social {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid rgba(244, 180, 0, 0.2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(244, 180, 0, 0.09), rgba(255, 255, 255, 0.025));
}

.video-social-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(244, 180, 0, 0.28);
  border-radius: 50%;
  background: #111;
  color: var(--gold);
}

.video-social-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.video-social > div {
  min-width: 0;
}

.video-social strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.96rem;
}

.video-social p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.video-tiktok-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.video-tiktok-link:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-zone-link,
.footer-tiktok {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .video-social {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 18px;
  }

  .video-tiktok-link {
    grid-column: 1 / -1;
    width: max-content;
    margin-left: 66px;
  }
}

@media (max-width: 480px) {
  .video-social {
    grid-template-columns: 1fr;
  }

  .video-social-mark {
    width: 42px;
    height: 42px;
  }

  .video-tiktok-link {
    grid-column: auto;
    margin-left: 0;
    white-space: normal;
  }
}

@media (max-width: 390px) {
  .language-button {
    display: grid;
  }
}
