:root {
  --ink: #1F1F1F;
  --ink-2: #1F1F1F;
  --paper: #ffffff;
  --paper-2: #FDECB8;
  --soft-white: #fffaf0;
  --line: rgba(31, 31, 31, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --gold: #FBB03B;
  --gold-2: #FDECB8;
  --muted: #5f5b52;
  --muted-dark: #ddd2bc;
  --danger: #9f2d20;
  --success: #1f6b46;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --max: 1220px;
  --header: 82px;
  font-family: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

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

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

.skip-link {
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.container {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 24px;
}

.site-header {
  background: rgba(31, 31, 31, 0.96);
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper);
  min-height: var(--header);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto auto;
  min-height: var(--header);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  min-width: 210px;
  text-decoration: none;
}

.brand img {
  display: block;
  height: 38px;
  object-fit: contain;
  width: 38px;
}

.brand span,
.footer-wordmark span {
  display: grid;
  line-height: 1;
}

.brand strong,
.footer-wordmark strong {
  color: var(--gold-2);
  font-family: Oswald, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.brand small,
.footer-wordmark small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 800;
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
}

.nav a,
.mobile-nav a,
.footer a {
  text-decoration: none;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--gold-2);
}

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

.header-whatsapp {
  min-height: 44px;
}

.language-toggle {
  align-items: center;
  border: 1px solid var(--line-dark);
  display: inline-flex;
  overflow: hidden;
}

.language-toggle button {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  min-height: 38px;
  padding: 0 9px;
}

.language-toggle button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--ink);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--paper);
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 20px;
}

.menu-toggle {
  position: relative;
}

.menu-toggle::before {
  transform: translateY(-7px);
}

.menu-toggle::after {
  transform: translateY(7px);
}

.mobile-nav {
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  display: none;
  padding: 18px 24px 26px;
}

.mobile-nav a {
  color: var(--paper);
  display: block;
  font-weight: 800;
  padding: 13px 0;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 850;
  justify-content: center;
  line-height: 1.1;
  min-height: 46px;
  padding: 0 16px;
  text-decoration: none;
  transition: transform 160ms ease-out, background-color 160ms ease-out, border-color 160ms ease-out;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-2);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--paper);
}

.btn-ghost-dark {
  border-color: var(--line);
  color: var(--ink);
}

.btn-block {
  width: 100%;
}

.hero {
  background: #050505;
  color: var(--paper);
  min-height: calc(88dvh - var(--header));
  overflow: hidden;
  position: relative;
}

.hero::before {
  background-image:
    linear-gradient(rgba(251, 176, 59, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 176, 59, 0.08) 1px, transparent 1px);
  background-size: 86px 86px;
  content: "";
  inset: 0;
  opacity: 0.36;
  position: absolute;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(31, 31, 31, 0.98) 0%, rgba(31, 31, 31, 0.82) 41%, rgba(31, 31, 31, 0.28) 74%, rgba(31, 31, 31, 0.08) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-inner {
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  min-height: calc(88dvh - var(--header));
  padding-bottom: 38px;
  padding-top: 38px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
}

h1,
h2,
h3,
.display {
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}

.editorial-title,
.home-hero-title {
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-weight: 600;
  line-height: 1.08;
  text-transform: none;
}

h1 {
  font-size: clamp(2.9rem, 5.8vw, 5rem);
  font-weight: 700;
  max-width: 880px;
  text-transform: uppercase;
}

.hero-sub {
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.62;
  margin: 24px 0 0;
  max-width: 680px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.legal-note {
  border-left: 3px solid var(--gold);
  color: var(--muted-dark);
  font-size: 0.84rem;
  line-height: 1.5;
  margin-top: 16px;
  max-width: 650px;
  padding-left: 16px;
}

.hero-panel {
  align-self: end;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
  padding: 20px;
}

.blueprint-frame {
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(251, 176, 59, 0.58);
  display: grid;
  overflow: hidden;
  padding: 22px;
  place-items: center;
  position: relative;
}

.blueprint-frame::before,
.blueprint-frame::after {
  border: 1px solid rgba(255, 255, 255, 0.13);
  content: "";
  inset: 44px;
  position: absolute;
}

.blueprint-frame::after {
  inset: 72px 34px 112px 86px;
}

.iso-mark {
  max-width: 170px;
  opacity: 0.92;
  position: relative;
  z-index: 1;
}

.panel-list {
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 0;
  margin-top: 22px;
}

.panel-list span {
  border-bottom: 1px solid var(--line-dark);
  color: var(--muted-dark);
  display: flex;
  font-size: 0.84rem;
  justify-content: space-between;
  padding: 12px 0;
}

.panel-list strong {
  color: var(--paper);
}

.center {
  text-align: center;
}

.hero-mockup {
  min-height: auto;
}

.hero-mockup::before {
  background-image:
    linear-gradient(rgba(251, 176, 59, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 176, 59, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.42;
}

.hero-mockup::after {
  background:
    linear-gradient(90deg, rgba(31, 31, 31, 0.99) 0%, rgba(31, 31, 31, 0.88) 39%, rgba(31, 31, 31, 0.36) 67%, rgba(31, 31, 31, 0.02) 100%);
}

.home-hero-inner {
  gap: clamp(30px, 4.6vw, 58px);
  grid-template-columns: minmax(400px, 0.58fr) minmax(520px, 1fr);
  min-height: 430px;
  padding-bottom: clamp(38px, 4.8vw, 64px);
  padding-top: clamp(38px, 4.8vw, 64px);
}

.home-hero-title {
  font-size: clamp(2.4rem, 3.15vw, 3.7rem);
  font-weight: 500;
  line-height: 1.12;
  max-width: 610px;
}

.home-hero-title .accent {
  color: var(--gold-2);
}

.home-hero-title .nowrap {
  color: inherit;
  white-space: nowrap;
}

.home-hero-title::after,
.editorial-title::after {
  background: var(--gold);
  content: "";
  display: block;
  height: 2px;
  margin-top: 22px;
  width: 58px;
}

.center.editorial-title::after {
  margin-left: auto;
  margin-right: auto;
}

.home-hero-inner .hero-sub {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1rem, 1.24vw, 1.18rem);
  line-height: 1.55;
  max-width: 500px;
}

.btn-arrow::after {
  content: "->";
  margin-left: 14px;
}

.architecture-visual {
  align-self: center;
  min-height: 330px;
  opacity: 1;
  position: relative;
  z-index: -1;
}

.architecture-visual img {
  display: block;
  filter: none;
  height: auto;
  margin-left: auto;
  width: 100%;
}

.home-services-overview,
.projects-preview,
.contact-preview {
  background: var(--soft-white);
  color: var(--ink);
  padding: clamp(50px, 7vw, 86px) 0;
}

.home-services-overview {
  background:
    linear-gradient(rgba(31, 31, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 31, 31, 0.03) 1px, transparent 1px),
    var(--soft-white);
  background-size: 48px 48px;
}

.editorial-title {
  font-size: clamp(2rem, 3.3vw, 3.3rem);
  margin: 0;
}

.service-icon-row {
  border-bottom: 1px solid rgba(31, 31, 31, 0.12);
  border-top: 1px solid rgba(31, 31, 31, 0.12);
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin-top: 36px;
}

.service-icon-card {
  border-right: 1px solid rgba(31, 31, 31, 0.12);
  min-height: 178px;
  padding: 22px 12px;
  text-align: center;
}

.service-icon-card:last-child {
  border-right: 0;
}

.service-symbol {
  align-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  font-family: Oswald, sans-serif;
  font-size: 1.35rem;
  height: 52px;
  justify-content: center;
  margin-bottom: 14px;
  width: 52px;
}

.service-icon-card h3 {
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  line-height: 1.2;
  margin: 0 0 8px;
}

.service-icon-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.service-overview-action {
  margin-top: 30px;
}

.service-spotlight,
.home-team-band {
  background:
    linear-gradient(rgba(251, 176, 59, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 176, 59, 0.06) 1px, transparent 1px),
    var(--ink);
  background-size: 66px 66px;
  color: var(--paper);
  padding: clamp(58px, 8vw, 98px) 0;
}

.spotlight-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 7vw, 96px);
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1fr);
}

.check-list {
  color: var(--muted-dark);
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
}

.check-list li::before {
  color: var(--gold-2);
  content: "✓";
  font-weight: 900;
  margin-right: 10px;
}

.document-visual {
  align-items: center;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--gold);
  color: rgba(255, 255, 255, 0.32);
  display: flex;
  justify-content: center;
}

.document-visual svg {
  height: 82%;
  width: 82%;
}

.document-visual path,
.document-visual circle {
  stroke-width: 2;
}

.preview-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.project-preview-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-preview-card {
  background: transparent;
}

.project-media {
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(251, 176, 59, 0.48);
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
}

.project-media::after {
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
}

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

.project-preview-card h3,
.team-strip h3 {
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  margin: 0;
}

.project-preview-card p,
.team-strip p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 2px 0 0;
}

.team-band-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 280px;
}

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

.team-strip article {
  color: var(--paper);
}

.team-strip .portrait-frame {
  border-color: var(--gold);
  margin-bottom: 10px;
}

.team-strip p {
  color: var(--gold-2);
}

.team-side-copy {
  color: var(--muted-dark);
}

.team-side-copy p {
  margin: 0 0 26px;
}

.contact-preview-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(260px, 0.65fr) minmax(420px, 1fr);
}

.contact-preview .form-shell {
  box-shadow: none;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-soft {
  background: var(--paper-2);
}

.section-head {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  margin-bottom: 46px;
}

.section-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.45rem, 5.2vw, 5.6rem);
  text-transform: uppercase;
}

.section-copy {
  color: var(--muted);
  margin: 0;
  max-width: 560px;
  text-wrap: pretty;
}

.section-dark .section-copy,
.section-dark .muted {
  color: var(--muted-dark);
}

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

.service-card,
.project-card,
.team-card,
.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  min-height: 100%;
  padding: 28px;
}

.section-dark .service-card,
.section-dark .project-card,
.section-dark .team-card,
.section-dark .value-card {
  background: #111112;
  border-color: var(--line-dark);
}

.service-card h3,
.project-card h3,
.team-card h3,
.value-card h3 {
  font-size: 1.55rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.service-card p,
.project-card p,
.team-card p,
.value-card p {
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}

.section-dark .service-card p,
.section-dark .project-card p,
.section-dark .team-card p,
.section-dark .value-card p {
  color: var(--muted-dark);
}

.card-index {
  color: var(--gold);
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 52px;
}

.split {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
}

.feature-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.feature-list li {
  border-bottom: 1px solid var(--line);
  padding: 0 0 14px;
}

.section-dark .feature-list li {
  border-color: var(--line-dark);
}

.project-conversion {
  background:
    linear-gradient(rgba(251, 176, 59, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 176, 59, 0.07) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  color: var(--paper);
}

.project-conversion-grid {
  align-items: start;
  display: grid;
  gap: clamp(42px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
}

.project-conversion .section-title {
  max-width: 760px;
}

.project-conversion-lead {
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  margin: 28px 0 0;
  max-width: 720px;
  text-wrap: pretty;
}

.project-conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.project-value-list {
  border-top: 1px solid var(--line-dark);
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.project-value-list li {
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 10px;
  padding: 28px 0;
}

.project-value-list strong {
  color: var(--paper);
  display: block;
  font-family: Oswald, sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1;
  text-transform: uppercase;
}

.project-value-list span,
.project-confidence-note {
  color: var(--muted-dark);
  text-wrap: pretty;
}

.project-confidence-note {
  border-left: 2px solid var(--gold);
  font-size: 0.92rem;
  margin: 28px 0 0;
  padding-left: 18px;
}

.service-bands {
  display: grid;
  gap: 14px;
}

.service-band {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 86px 1fr;
  padding: 22px;
}

.service-band strong {
  color: var(--gold);
  font-family: Oswald, sans-serif;
  font-size: 2rem;
}

.service-band h3 {
  font-size: 1.5rem;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.service-band p {
  color: var(--muted);
  margin: 0;
}

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

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

.project-showcase {
  padding: 0;
}

.project-showcase .project-media {
  border: 0;
  margin: 0;
}

.project-showcase h3,
.project-showcase p {
  margin-left: 26px;
  margin-right: 26px;
}

.project-showcase h3 {
  margin-top: 0;
}

.project-showcase > p:last-child {
  margin-bottom: 28px;
}

.project-type {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 8px;
  margin-top: 22px;
  text-transform: uppercase;
}

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

.portrait-frame {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 35%, rgba(253, 236, 184, 0.38), transparent 19%),
    linear-gradient(180deg, #252525, #101010);
  border: 1px solid var(--line-dark);
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}

.portrait-frame::after {
  border: 1px solid rgba(251, 176, 59, 0.35);
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
}

.portrait-frame img {
  display: block;
  filter: saturate(0.95) contrast(1.03);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.team-strip .portrait-frame {
  aspect-ratio: 1 / 1.06;
}

.team-person--hortencia img {
  object-position: 50% 31%;
}

.team-person--pedro img {
  object-position: 50% 18%;
}

.team-person--lisette img {
  object-position: 50% 22%;
}

.team-person--elizabeth img {
  object-position: 50% 24%;
}

.person-role {
  color: var(--gold);
  font-weight: 850;
}

.person-email {
  color: var(--muted);
  display: inline-block;
  font-size: 0.86rem;
  margin-top: 10px;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.person-email:hover {
  color: var(--ink);
  text-decoration: underline;
}

.coverage-strip {
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  color: var(--muted-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 20px 0;
}

.coverage-strip strong {
  color: var(--paper);
}

.form-shell {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 30px;
}

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

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

label {
  color: var(--ink);
  display: block;
  font-size: 0.84rem;
  font-weight: 850;
  margin-bottom: 7px;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid rgba(31, 31, 31, 0.22);
  color: var(--ink);
  min-height: 48px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.help-text,
.form-status {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 12px 0 0;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
}

.page-hero::after {
  background-image:
    linear-gradient(rgba(251, 176, 59, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 176, 59, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.26;
  position: absolute;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 980px;
}

.page-hero p {
  color: var(--muted-dark);
  font-size: 1.15rem;
  max-width: 760px;
}

.page-hero-compact {
  padding: clamp(42px, 5vw, 62px) 0;
}

.page-hero-compact h1 {
  font-size: clamp(3rem, 5vw, 4.9rem);
}

.representatives-section {
  padding-top: clamp(36px, 4.5vw, 54px);
}

.legal-copy {
  max-width: 900px;
}

.legal-copy h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin: 42px 0 14px;
  text-transform: uppercase;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
}

.footer-logo {
  display: block;
  height: auto;
  margin-bottom: 18px;
  max-width: 230px;
}

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

.footer-wordmark img {
  height: 42px;
  width: 42px;
}

.footer p,
.footer a {
  color: var(--muted-dark);
}

.footer h2,
.footer h3 {
  color: var(--paper);
  font-family: "Avenir Next", Avenir, Inter, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
}

.footer-disclaimer {
  border-left: 3px solid var(--gold);
  color: var(--muted-dark);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 18px;
  padding-left: 14px;
}

@media (hover: hover) and (pointer: fine) {
  .precision-cursor {
    background: radial-gradient(circle, rgba(251, 176, 59, 0.34) 0%, rgba(251, 176, 59, 0.2) 28%, rgba(251, 176, 59, 0.08) 54%, transparent 74%);
    filter: blur(7px);
    height: 62px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translate3d(-80px, -80px, 0);
    transition: opacity 120ms ease-out;
    width: 62px;
    z-index: 900;
  }

  .precision-cursor[data-visible="true"] {
    opacity: 1;
  }

  .precision-cursor[data-state="action"] {
    opacity: 0.95;
  }

  .precision-cursor[data-state="text"] {
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav[data-open="true"] {
    display: block;
  }

  .hero-inner,
  .home-hero-inner,
  .section-head,
  .split,
  .project-conversion-grid,
  .spotlight-grid,
  .team-band-grid,
  .contact-preview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-panel {
    align-self: start;
  }

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

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

  .architecture-visual {
    min-height: 220px;
    z-index: 1;
  }

  .team-side-copy {
    max-width: 420px;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }

  .header-inner {
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .brand {
    min-width: 0;
  }

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

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .language-toggle button {
    font-size: 0.7rem;
    min-height: 36px;
    padding: 0 8px;
  }

  .menu-toggle {
    height: 40px;
    width: 40px;
  }

  .hero-inner {
    gap: 38px;
    padding-bottom: 52px;
    padding-top: 52px;
  }

  h1,
  .home-hero-title {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .home-hero-inner {
    padding-bottom: 38px;
    padding-top: 38px;
  }

  .home-hero-inner .hero-sub {
    font-size: 1.02rem;
  }

  .architecture-visual {
    display: block;
    min-height: 0;
  }

  .hero-actions,
  .preview-heading,
  .footer-bottom {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .project-grid,
  .team-grid,
  .value-grid,
  .project-preview-grid,
  .team-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .service-icon-card:nth-child(even) {
    border-right: 0;
  }

  .service-icon-card {
    min-height: 160px;
  }

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

  .card-index {
    margin-bottom: 34px;
  }
}
