:root {
  --bg: #10100f;
  --bg-2: #171615;
  --panel: #211f1d;
  --panel-2: #2a2724;
  --ink: #f7f1e8;
  --muted: #b9afa2;
  --muted-2: #867d72;
  --line: rgba(247, 241, 232, 0.14);
  --line-strong: rgba(247, 241, 232, 0.26);
  --accent: #ffc431;
  --red: #be2f28;
  --green: #566b5e;
  --wood: #9a6a3c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --nav-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::selection,
::selection {
  background: var(--accent);
  color: #15120e;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--nav-h);
  padding: 0 6vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 16, 15, 0.46);
  color: var(--ink);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-nav.is-scrolled {
  background: rgba(16, 16, 15, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
}

.site-nav-inner {
  width: min(1220px, 100%);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 208px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: rgba(247, 241, 232, 0.82);
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent) !important;
}

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

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background:
    linear-gradient(currentColor 0 0) center / 18px 1px no-repeat,
    transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle::before {
  top: 15px;
}

.menu-toggle::after {
  bottom: 15px;
}

.menu-toggle.is-open {
  background-size: 0 1px, auto;
}

.menu-toggle.is-open::before {
  transform: translateX(-50%) translateY(6px) rotate(45deg);
}

.menu-toggle.is-open::after {
  transform: translateX(-50%) translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: 116px 6vw 38px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.92) 0%, rgba(16, 16, 15, 0.74) 48%, rgba(16, 16, 15, 0.35) 100%),
    linear-gradient(0deg, rgba(16, 16, 15, 0.88) 0%, rgba(16, 16, 15, 0.08) 56%);
}

.hero-media,
.project-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #0a0a09;
  overflow: hidden;
}

.hero-media img,
.project-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(1.08) brightness(0.82);
  transform: scale(1.04);
}

.hero-inner,
.section-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  justify-items: start;
  min-width: 0;
}

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1,
.project-hero h1 {
  width: 100%;
  max-width: 900px;
  margin: 0;
  font-size: clamp(43px, 7.6vw, 88px);
  line-height: 0.98;
  font-weight: 900;
  overflow-wrap: break-word;
}

.hero-copy,
.page-hero .lead,
.project-hero .lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(247, 241, 232, 0.78);
  font-size: 19px;
  line-height: 1.68;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #16130e;
}

.btn-primary:hover {
  background: #ffdc73;
}

.btn-ghost,
.btn-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(247, 241, 232, 0.04);
}

.btn svg {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-ghost:hover,
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(760px, 100%);
  margin-top: 30px;
  border: 1px solid var(--line);
  background: rgba(247, 241, 232, 0.06);
}

.proof-item {
  min-height: 92px;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 31px;
  line-height: 1;
}

.proof-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.section {
  padding: 60px 6vw;
  background: var(--bg);
}

.section:nth-of-type(even) {
  background: var(--bg-2);
}

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

.section h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.04;
  font-weight: 900;
  overflow-wrap: break-word;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card,
.process-step {
  min-height: 210px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 241, 232, 0.035);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.process-step:hover {
  position: relative;
  z-index: 1;
  background: rgba(247, 241, 232, 0.07);
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.service-card span,
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 4px;
  background: rgba(255, 196, 49, 0.12);
  color: var(--accent);
  font-weight: 900;
}

.service-card h3,
.process-step h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.22;
}

.service-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.section-projects {
  background: #121211;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-grid--all {
  grid-template-columns: repeat(6, 1fr);
}

.project-grid--all .project-card {
  grid-column: span 2;
}

.project-grid--all .project-card:nth-last-child(2):nth-child(3n + 1),
.project-grid--all .project-card:last-child:nth-child(3n + 2) {
  grid-column: span 3;
}

.project-grid--all .project-card:last-child:nth-child(3n + 1) {
  grid-column: span 6;
}

.project-card {
  min-height: 370px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.22);
}

.project-card--wide {
  grid-column: span 2;
}

.project-card a {
  position: relative;
  display: grid;
  align-content: end;
  min-height: inherit;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
}

.project-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(13, 13, 12, 0.88), rgba(13, 13, 12, 0.12) 62%);
}

.project-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.82);
  transition: transform 520ms ease, filter 520ms ease;
}

.project-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.06) brightness(0.92);
}

.project-meta {
  margin-bottom: 10px;
  color: rgba(247, 241, 232, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3 {
  max-width: 620px;
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.08;
}

.project-card p {
  max-width: 600px;
  margin: 0;
  color: rgba(247, 241, 232, 0.74);
  font-size: 15px;
}

.split-layout,
.materials-layout,
.contact-layout,
.project-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
}

.split-image {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.86);
}

.image-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 152px;
  padding: 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #15120e;
}

.image-badge strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.image-badge span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-thumbs {
  position: absolute;
  left: 22px;
  right: 190px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-thumbs img {
  width: 100%;
  height: 104px;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.8);
}

.split-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

blockquote {
  margin: 24px 0 0;
  padding: 18px 0 18px 22px;
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.38;
}

.about-partner {
  display: grid;
  grid-template-columns: minmax(130px, 0.4fr) minmax(220px, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 232, 0.04);
}

.about-partner span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-partner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.about-partner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--ink);
  font-weight: 900;
}

.about-partner a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.about-partner svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.section-materials {
  background: #151412;
}

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

.material-card {
  min-height: 140px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 196, 49, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(247, 241, 232, 0.04);
  transition: transform 180ms ease, border-color 180ms ease;
}

.material-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.material-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.material-card strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.2;
}

.material-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section-contact {
  background: var(--bg-2);
}

.contact-layout {
  align-items: start;
}

.team-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.team-person {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 232, 0.04);
}

.team-person img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(0.86);
}

.team-person strong,
.team-person span,
.team-person a {
  display: block;
}

.team-person strong {
  font-size: 17px;
}

.team-person span,
.team-person a {
  color: var(--muted);
  font-size: 14px;
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-channels a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(247, 241, 232, 0.04);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact-channels a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-channel svg,
.footer-contact svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-channel--whatsapp {
  color: #ccefd7;
}

.contact-channel--viber {
  color: #ded8ff;
}

.contact-channel--mail {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #141312;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  background: #0f0f0e;
}

.form-note {
  display: none;
  padding: 14px;
  border-radius: 4px;
  background: rgba(86, 107, 94, 0.24);
  color: #d8eadc;
  font-weight: 800;
}

.form-note.is-visible {
  display: block;
}

.form-note.is-error {
  background: rgba(190, 47, 40, 0.2);
  color: #ffd8d5;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 2px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

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

.consent-row a,
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  padding: 120px 6vw 48px;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.92), rgba(16, 16, 15, 0.72)),
    #171615;
}

.legal-content {
  display: grid;
  gap: 34px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content section {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-content p + p {
  margin-top: 12px;
}

.project-hero {
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: end;
  padding: 122px 6vw 50px;
  overflow: hidden;
  isolation: isolate;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.9), rgba(16, 16, 15, 0.58)),
    linear-gradient(0deg, rgba(16, 16, 15, 0.92), rgba(16, 16, 15, 0.14) 58%);
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-link:hover {
  color: var(--accent);
}

.project-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.project-facts span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(247, 241, 232, 0.06);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.project-detail-layout {
  align-items: start;
}

.project-text {
  max-width: 760px;
}

.project-text p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.project-side {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.project-side strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}

.project-side p {
  color: var(--muted);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-button {
  min-height: 270px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-button img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-button:hover img {
  transform: scale(1.035);
}

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

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #111;
  color: var(--ink);
  cursor: pointer;
}

.lightbox img {
  max-height: 88vh;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 44px 6vw 24px;
  border-top: 1px solid var(--line);
  background: #0b0b0a;
  color: var(--muted);
}

.footer-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(190px, 0.85fr) minmax(210px, 0.9fr) minmax(160px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.footer-logo img {
  width: 204px;
}

.footer-brand p {
  max-width: 430px;
  margin: 16px 0 12px;
  color: rgba(247, 241, 232, 0.72);
}

.footer-brand span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact,
.footer-col nav,
.footer-col ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact a,
.footer-col nav a,
.footer-col li {
  color: var(--muted);
  font-size: 14px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-contact a:hover,
.footer-col nav a:hover {
  color: var(--accent);
}

.footer-bottom {
  width: 100%;
  max-width: 1220px;
  margin: 28px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted-2);
  font-size: 13px;
}

.footer-bottom span {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 270ms;
}

.delay-4 {
  transition-delay: 360ms;
}

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

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

@media (max-width: 1120px) {
  .section-head,
  .split-layout,
  .materials-layout,
  .contact-layout,
  .project-detail-layout {
    grid-template-columns: 1fr;
  }

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

  .project-grid,
  .project-grid--all,
  .detail-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card--wide {
    grid-column: span 2;
  }

  .project-grid--all .project-card,
  .project-grid--all .project-card:nth-last-child(2):nth-child(3n + 1),
  .project-grid--all .project-card:last-child:nth-child(3n + 2),
  .project-grid--all .project-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

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

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 820px) {
  :root {
    --nav-h: 70px;
  }

  .site-nav {
    padding: 0 22px;
  }

  .brand img {
    width: 172px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(16, 16, 15, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 44px;
    padding: 0 10px;
  }

  .hero {
    min-height: auto;
    padding: 88px 22px 28px;
  }

  .section,
  .page-hero,
  .project-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .page-hero,
  .project-hero {
    padding-top: 96px;
    padding-bottom: 36px;
  }

  .hero-copy {
    margin-top: 18px;
    line-height: 1.58;
  }

  .hero-actions,
  .section-actions {
    margin-top: 20px;
  }

  .hero .proof {
    margin-top: 22px;
  }

  .proof,
  .services-grid,
  .process-grid,
  .project-grid,
  .project-grid--all,
  .materials-list,
  .detail-gallery,
  .form-row {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .project-card,
  .project-card--wide {
    grid-column: auto;
  }

  .project-card {
    min-height: 310px;
  }

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

  .about-thumbs {
    display: none;
  }

  .about-partner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-form {
    padding: 22px;
  }

  .detail-gallery .gallery-button,
  .gallery-button img {
    min-height: 220px;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 148px;
  }

  .hero h1,
  .page-hero h1,
  .project-hero h1 {
    font-size: 35px;
    line-height: 1.08;
    max-width: 330px;
  }

  .section h2 {
    font-size: 32px;
    line-height: 1.12;
    max-width: 100%;
  }

  .hero-copy,
  .lead,
  .project-text p {
    font-size: 16px;
  }

  .hero-copy {
    max-width: 330px;
  }

  .hero-actions,
  .section-actions {
    display: grid;
    width: 100%;
    max-width: 330px;
  }

  .hero .proof {
    max-width: 330px;
  }

  .btn {
    width: 100%;
  }

  .service-card,
  .process-step {
    min-height: auto;
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }
}
