:root {
  --ink: #13171b;
  --ink-soft: #1b2126;
  --graphite: #2c3237;
  --steel: #aeb3b7;
  --concrete: #d8d7d1;
  --paper: #f4f2eb;
  --white: #ffffff;
  --gold: #d98d12;
  --gold-bright: #f0a522;
  --line: rgba(19, 23, 27, 0.16);
  --display: "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", sans-serif;
  --body: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --shell: min(1240px, calc(100% - 64px));
  --header-height: 112px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
.shell { width: var(--shell); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background .25s ease, height .25s ease, box-shadow .25s ease;
}
.site-header--solid { background: rgba(16,20,24,.96); }
.topbar { height: 30px; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.12); transition: height .25s ease, opacity .2s ease; }
.topbar-inner { height: 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.56); font-size: 10px; letter-spacing: .035em; }
.topbar-inner > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar-inner > div { flex: none; display: flex; gap: 22px; font-family: var(--display); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.topbar a:hover { color: var(--gold-bright); }
.site-header.is-scrolled {
  height: 76px;
  background: rgba(16,20,24,.94);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled .topbar { height: 0; opacity: 0; }
.header-grid {
  height: calc(100% - 30px);
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 32px;
}
.site-header.is-scrolled .header-grid { height: 76px; }
.brand { width: 230px; overflow: hidden; }
.brand img {
  width: 230px;
  height: auto;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,.5));
}
.site-nav { position: static; display: flex; align-items: center; justify-content: flex-end; gap: clamp(16px, 2vw, 31px); }
.site-nav > a,
.nav-item > a {
  position: relative;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.nav-item > a { display: flex; align-items: center; gap: 7px; }
.nav-item > a small { color: var(--gold); font-size: 11px; }
.site-nav > a:not(.nav-cta)::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  inset: auto 0 -10px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.site-nav > a:hover::after,
.nav-item > a:hover::after,
.site-nav > .is-active:not(.nav-cta)::after,
.nav-item.is-active > a::after { transform: scaleX(1); transform-origin: left; }
.nav-item { position: relative; }
.has-mega { position: static; }
@media (min-width: 781px) {
  .nav-item > a { margin-block: -25px; padding-block: 25px; }
}
.mega-menu,
.nav-dropdown {
  position: absolute;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.mega-menu::before,
.nav-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 22px;
}
.mega-menu {
  left: 50%;
  width: min(1120px, calc(100vw - 64px));
  display: grid;
  grid-template-columns: 330px 1fr;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0,0,0,.26);
  transform: translate(-50%, 12px);
}
.has-mega:hover .mega-menu,
.has-mega.menu-hovered .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.menu-pinned .mega-menu { visibility: visible; opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.mega-intro { padding: 34px; color: var(--white); background: var(--ink-soft); }
.mega-intro p { margin: 0 0 12px; color: var(--gold); font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.mega-intro h2 { margin: 0; font-family: var(--display); font-size: 29px; line-height: 1.05; text-transform: uppercase; }
.mega-intro a { display: inline-block; margin-top: 27px; color: var(--gold-bright); font-size: 12px; font-weight: 700; }
.mega-links { display: grid; grid-template-columns: repeat(3, 1fr); }
.mega-links > a { padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mega-links span { display: block; color: var(--muted, #6b7073); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.mega-links small { display: block; margin-top: 5px; font-family: var(--display); font-size: 16px; font-weight: 800; text-transform: uppercase; }
.mega-links > a:hover small { color: var(--gold); }
.service-mega-links { display: grid; grid-template-columns: 1fr 1fr; }
.service-mega-links > a { padding: 22px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-mega-links strong { display: block; font-family: var(--display); font-size: 15px; text-transform: uppercase; }
.service-mega-links span { display: block; margin-top: 5px; color: #72777a; font-size: 11px; line-height: 1.45; }
.service-mega-links > a:hover { background: #f7f5ef; }
.project-mega-links { display: grid; grid-template-columns: 1fr 1fr; }
.project-mega-links > a { min-height: 132px; display: flex; flex-direction: column; align-items: flex-start; padding: 23px 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .2s ease, background .2s ease; }
.project-mega-links span { color: #7b8083; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.project-mega-links strong { margin-top: 6px; font-family: var(--display); font-size: 17px; line-height: 1.15; text-transform: uppercase; }
.project-mega-links b { margin-top: auto; color: var(--gold); font-size: 10px; }
.project-mega-links > a:hover { color: var(--white); background: var(--graphite); }
.project-mega-links > a:hover span { color: rgba(255,255,255,.54); }
.project-mega-all { background: #f5f3ed; }
.nav-dropdown { right: -18px; width: 210px; display: grid; padding: 10px; color: var(--ink); background: var(--white); box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.nav-dropdown a { padding: 11px 12px; font-size: 12px; border-bottom: 1px solid var(--line); }
.nav-dropdown a:last-child { border: 0; }
.nav-dropdown a:hover { color: var(--gold); background: #f7f5ef; }
.has-dropdown:hover .nav-dropdown,
.has-dropdown.menu-hovered .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.menu-pinned .nav-dropdown { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
  color: var(--white);
  border: 1px solid var(--gold-bright);
  background: var(--gold);
  box-shadow: 0 9px 24px rgba(217,141,18,.24);
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.nav-cta span { color: var(--white); font-size: 18px; transition: transform .2s ease; }
.nav-cta:hover, .nav-cta.is-active { color: var(--white); border-color: #ffb530; background: var(--gold-bright); box-shadow: 0 12px 30px rgba(217,141,18,.38); transform: translateY(-2px); }
.nav-cta:hover span { transform: translate(2px,-2px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  height: min(900px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-image,
.hero-shade,
.blueprint-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 54% center; animation: heroScale 1.4s cubic-bezier(.2,.7,.2,1) both; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(12,15,18,.93) 0%, rgba(12,15,18,.7) 43%, rgba(12,15,18,.08) 77%),
    linear-gradient(0deg, rgba(12,15,18,.62), transparent 45%);
}
.blueprint-lines {
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 67%);
}
.hero-content { position: relative; z-index: 2; padding-top: 74px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero-eyebrow { display: flex; align-items: center; gap: 18px; color: var(--gold-bright); }
.hero-eyebrow::before { content: ""; width: 56px; height: 2px; background: currentColor; }
.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 7.7vw, 118px);
  font-weight: 800;
  line-height: .91;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-wrap: balance;
  animation: riseIn .8s .12s cubic-bezier(.2,.7,.2,1) both;
}
.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.8);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  animation: riseIn .8s .24s cubic-bezier(.2,.7,.2,1) both;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; animation: riseIn .8s .36s cubic-bezier(.2,.7,.2,1) both; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 13px 22px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .6; cursor: wait; transform: none; }
.button--gold { color: var(--ink); background: var(--gold-bright); }
.button--gold:hover { background: var(--white); }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { background: var(--gold); color: var(--ink); }
.text-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.5);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.text-link span { margin-left: 12px; color: var(--gold); }
.hero-foot {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 44px;
  color: rgba(255,255,255,.56);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-foot span { display: flex; align-items: center; gap: 12px; }
.hero-foot span::before { content: ""; width: 4px; height: 4px; background: var(--gold); }
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 28px;
  width: 26px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 3px;
  height: 8px;
  border-radius: 5px;
  background: var(--gold-bright);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.section { padding: clamp(88px, 9vw, 142px) 0; }
.about { position: relative; background: var(--paper); overflow: hidden; }
.about::before {
  content: "ZI";
  position: absolute;
  right: -2vw;
  bottom: -9vw;
  color: rgba(19,23,27,.035);
  font-family: var(--display);
  font-size: 38vw;
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.1em;
  pointer-events: none;
}
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(360px, .82fr) minmax(420px, 1fr); gap: clamp(58px, 8vw, 120px); align-items: center; }
.about-visual { position: relative; padding: 22px 0 0 22px; }
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0 54px 54px 0;
  border: 1px solid var(--gold);
}
.mark-frame { position: relative; overflow: hidden; background: var(--ink); box-shadow: 26px 32px 0 rgba(19,23,27,.08); }
.mark-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.mark-frame:hover img { transform: scale(1.025); }
.visual-note {
  position: absolute;
  right: auto;
  bottom: -36px;
  left: 44px;
  margin: 0;
  padding: 11px 16px 11px 30px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 12px 12px 0 rgba(217,141,18,.2);
  transform: none;
}
.visual-note::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: translateY(-50%);
}
.about h2,
.section-heading h2,
.process h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  text-transform: uppercase;
  text-wrap: balance;
}
.about-lead { margin: 30px 0 0; color: #4f5559; font-size: 18px; line-height: 1.8; }
.principles { margin-top: 42px; border-top: 1px solid var(--line); }
.principles > div { display: grid; grid-template-columns: 150px 1fr; gap: 26px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.principles strong { font-family: var(--display); font-size: 15px; letter-spacing: .03em; text-transform: uppercase; }
.principles span { color: #64696d; font-size: 14px; }

.services { background: var(--white); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 70px; align-items: end; margin-bottom: 58px; }
.section-heading > p,
.section-side > p { margin: 0 0 6px; color: #666c70; font-size: 17px; }
.section-side > a,
.section-more { display: inline-block; margin-top: 17px; color: var(--gold); font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.section-more { margin-top: 28px; }
.section-heading--light .section-side > p { color: rgba(255,255,255,.58); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  position: relative;
  min-height: 410px;
  padding: 34px 28px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: color .3s ease, background .3s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { color: var(--white); background: var(--ink); }
.service-card:hover::after { transform: scaleX(1); }
.service-index { margin: 0; color: var(--gold); font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin: 122px 0 18px; font-family: var(--display); font-size: 25px; line-height: 1.1; text-transform: uppercase; }
.service-card > p:nth-of-type(2) { margin: 0; color: #6d7275; font-size: 14px; line-height: 1.75; }
.service-card:hover > p:nth-of-type(2) { color: rgba(255,255,255,.64); }
.card-link { position: absolute; left: 28px; bottom: 24px; color: var(--gold); font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: opacity .2s ease, transform .2s ease; }
.service-card:hover .card-link { opacity: 1; transform: none; }
.service-icon { position: absolute; right: 25px; top: 24px; width: 78px; height: 78px; overflow: visible; color: #8b9296; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: square; stroke-linejoin: miter; opacity: .58; transition: color .25s ease, opacity .25s ease, transform .3s ease; }
.service-icon .icon-accent { color: var(--gold); stroke: currentColor; }
.service-card:hover .service-icon { color: rgba(255,255,255,.68); opacity: 1; transform: translateY(-3px); }
.service-card:hover .service-icon .icon-accent { color: var(--gold); }

.projects { color: var(--white); background: var(--ink); }
.section-heading--light > p { color: rgba(255,255,255,.58); }
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.project-card { grid-column: span 4; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: var(--ink-soft); }
.project-card:nth-child(1) { grid-column: span 7; }
.project-card:nth-child(2) { grid-column: span 5; }
.project-card:nth-child(n+3) { grid-column: span 4; }
.project-media { aspect-ratio: 1.45; overflow: hidden; background: #242a2e; }
.project-card:nth-child(1) .project-media,
.project-card:nth-child(2) .project-media { aspect-ratio: 1.75; }
.project-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.05); transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.project-card:hover .project-media img { transform: scale(1.035); filter: saturate(1) contrast(1); }
.project-copy { position: relative; min-height: 126px; padding: 25px 64px 23px 24px; }
.project-copy p { margin: 0 0 7px; color: var(--gold-bright); font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.project-copy h3 { margin: 0; font-family: var(--display); font-size: clamp(20px, 2vw, 29px); line-height: 1.12; text-transform: uppercase; }
.project-copy > span { position: absolute; right: 22px; top: 50%; color: var(--gold); font-size: 28px; transform: translateY(-50%); }
.project-disclaimer { max-width: 740px; margin: 30px 0 0; color: rgba(255,255,255,.45); font-size: 12px; }

.blog-showcase { overflow: hidden; background: #e8e9e6; }
.blog-heading { grid-template-columns: minmax(0, 1fr) auto; }
.blog-heading h2 { max-width: 790px; }
.blog-controls { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.blog-controls > a { margin-right: 14px; color: var(--gold); font-family: var(--display); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.blog-controls button { width: 46px; height: 46px; border: 1px solid rgba(19,23,27,.25); color: var(--ink); background: transparent; font-size: 19px; cursor: pointer; }
.blog-controls button:hover { color: var(--white); background: var(--ink); }
.blog-slider { margin-right: calc((100vw - var(--shell)) / -2); overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; scroll-snap-type: x mandatory; scroll-behavior: smooth; }
.blog-slider::-webkit-scrollbar { display: none; }
.blog-track { width: max-content; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(380px, calc((var(--shell) - 24px) / 2)); gap: 24px; padding-right: max(28px, calc((100vw - var(--shell)) / 2)); }
.blog-slide { width: min(610px, calc(50vw - 44px)); min-width: 380px; display: grid; grid-template-columns: minmax(160px, .78fr) minmax(210px, 1.22fr); border: 1px solid rgba(19,23,27,.18); background: var(--white); scroll-snap-align: start; }
.blog-slide-media { min-height: 330px; overflow: hidden; background: var(--graphite); }
.blog-slide-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); transition: filter .35s ease, transform .5s ease; }
.blog-slide:hover .blog-slide-media img { filter: saturate(1); transform: scale(1.025); }
.blog-slide > div { min-width: 0; display: flex; flex-direction: column; padding: 28px 27px; }
.blog-slide > div > p { margin: 0; color: var(--gold); font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.blog-slide h3 { margin: 14px 0 14px; font-family: var(--display); font-size: clamp(22px, 2.2vw, 31px); line-height: 1.05; text-transform: uppercase; }
.blog-slide > div > span { color: #666c70; font-size: 13px; line-height: 1.6; }
.blog-slide .text-arrow { margin-top: auto; padding-top: 24px; color: var(--ink); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.blog-slide .text-arrow:hover { color: var(--gold); }

.testimonials { background: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.testimonial-card { position: relative; min-height: 320px; display: flex; flex-direction: column; margin: 0; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testimonial-card > span { color: var(--gold); font-family: Georgia, serif; font-size: 76px; line-height: .75; }
.testimonial-card > p { margin: 34px 0 26px; color: #41474b; font-size: 17px; line-height: 1.75; }
.testimonial-card footer { display: grid; gap: 3px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.testimonial-card footer strong { font-family: var(--display); font-size: 13px; text-transform: uppercase; }
.testimonial-card footer small { color: #85898b; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.testimonial-card > b { position: absolute; top: 28px; right: 28px; color: #a3a6a7; font-family: var(--display); font-size: 10px; }

.process { position: relative; overflow: hidden; background: var(--gold-bright); }
.process::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image: linear-gradient(rgba(19,23,27,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(19,23,27,.5) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(64px, 9vw, 130px); }
.process-intro > p:not(.eyebrow) { margin: 26px 0 34px; max-width: 500px; }
.process .eyebrow { color: var(--ink); opacity: .62; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(19,23,27,.28); }
.process-list li { display: grid; grid-template-columns: 72px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid rgba(19,23,27,.28); }
.process-list > li > span { font-family: var(--display); font-size: 13px; font-weight: 800; }
.process-list h3 { margin: 0 0 6px; font-family: var(--display); font-size: 26px; text-transform: uppercase; }
.process-list p { margin: 0; color: rgba(19,23,27,.7); }

.contact { position: relative; overflow: hidden; color: var(--white); background: var(--ink-soft); }
.contact-band { position: absolute; top: 40px; left: -3%; display: flex; gap: 44px; color: rgba(255,255,255,.025); font-family: var(--display); font-size: clamp(100px, 14vw, 220px); font-weight: 900; line-height: 1; white-space: nowrap; pointer-events: none; }
.contact-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 9vw, 128px); }
.contact-copy > p:not(.eyebrow) { margin: 27px 0 38px; color: rgba(255,255,255,.62); font-size: 17px; }
.contact address { padding: 25px 0; border-block: 1px solid rgba(255,255,255,.14); font-style: normal; }
.contact address span { display: block; margin-bottom: 8px; color: var(--gold); font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact address strong { max-width: 440px; display: block; font-weight: 500; line-height: 1.5; }
.contact-promise { max-width: 480px; padding: 25px 0; border-block: 1px solid rgba(255,255,255,.14); }
.contact-promise span { display: block; margin-bottom: 8px; color: var(--gold); font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-promise strong { display: block; font-size: 16px; font-weight: 500; line-height: 1.6; }
.company-data { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 24px 0 0; }
.company-data div { display: grid; gap: 4px; }
.company-data dt { color: rgba(255,255,255,.42); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.company-data dd { margin: 0; font-family: var(--display); font-weight: 700; }
.contact-form { padding: 38px; background: var(--paper); color: var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 21px; font-family: var(--display); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b8b8b1;
  border-radius: 0;
  padding: 11px 2px;
  color: var(--ink);
  background: transparent;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  outline: 0;
}
.contact-form textarea { resize: vertical; min-height: 118px; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 2px 0 var(--gold); }
.contact-form input::placeholder { color: #9d9d96; }
.honeypot { position: absolute; left: -9999px; }
.form-footer { display: flex; align-items: center; gap: 20px; }
.form-status { margin: 0; font-size: 13px; line-height: 1.45; }
.form-status.is-success { color: #187548; }
.form-status.is-error { color: #a82e2e; }

.site-contact-strip { position: relative; isolation: isolate; overflow: hidden; color: var(--white); border-top: 1px solid rgba(255,255,255,.08); background: #171d21; }
.site-contact-strip::before { position: absolute; z-index: -1; top: -118px; right: 8%; width: 245px; height: 245px; border: 1px solid rgba(242,140,24,.28); content: ''; transform: rotate(45deg); }
.site-contact-strip::after { position: absolute; z-index: -1; inset: 0 auto 0 0; width: 7px; background: var(--gold); content: ''; }
.site-contact-strip__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: clamp(36px, 7vw, 110px); padding-top: clamp(48px, 6vw, 76px); padding-bottom: clamp(48px, 6vw, 76px); }
.site-contact-strip__copy p { margin: 0 0 9px; color: var(--gold-bright); font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.site-contact-strip__copy h2 { max-width: 760px; margin: 0; font-family: var(--display); font-size: clamp(36px, 4.5vw, 64px); line-height: .96; text-transform: uppercase; }
.site-contact-strip__copy > span { display: block; max-width: 650px; margin-top: 17px; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.65; }
.site-contact-strip__actions { display: grid; min-width: 254px; gap: 10px; }
.contact-strip-button { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 21px; font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: color .25s ease, background .25s ease, transform .25s ease; }
.contact-strip-button:hover { transform: translateY(-2px); }
.contact-strip-button b { font-size: 20px; font-weight: 500; }
.contact-strip-button--offer { color: var(--ink); background: var(--gold-bright); }
.contact-strip-button--offer:hover { background: var(--white); }
.contact-strip-button--whatsapp { color: var(--white); background: #168b55; }
.contact-strip-button--whatsapp:hover { background: #20a867; }
.contact-strip-button--whatsapp svg { width: 24px; height: 24px; flex: 0 0 24px; fill: currentColor; }
.contact-strip-button--whatsapp span { margin-right: auto; }
.site-footer { padding: 72px 0 24px; color: rgba(255,255,255,.64); background: #0b0e10; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: clamp(34px, 5vw, 78px); padding-bottom: 52px; }
.footer-brand { width: 230px; }
.footer-brand img { width: 100%; height: auto; }
.footer-about p { max-width: 360px; margin: 15px 0 0; font-size: 12px; line-height: 1.55; }
.footer-column { display: grid; align-content: start; gap: 9px; }
.footer-column h3 { margin: 0 0 12px; color: var(--white); font-family: var(--display); font-size: 13px; letter-spacing: .09em; text-transform: uppercase; }
.footer-column a, .footer-column span { font-size: 12px; }
.footer-column a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.footer-bottom a:hover { color: var(--gold); }

/* Internal website pages */
.page-hero { position: relative; min-height: 540px; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--ink); }
.page-hero > img, .page-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero > img { object-fit: cover; object-position: center; }
.page-hero-shade { background: linear-gradient(90deg, rgba(12,15,18,.93), rgba(12,15,18,.55) 52%, rgba(12,15,18,.2)), linear-gradient(0deg, rgba(12,15,18,.86), transparent 58%); }
.page-hero-content { position: relative; z-index: 1; padding: 190px 0 100px; }
.page-hero-content > p { margin: 0 0 13px; color: var(--gold-bright); font-family: var(--display); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.page-hero h1 { max-width: 950px; margin: 0; font-family: var(--display); font-size: clamp(54px, 7vw, 96px); font-weight: 800; line-height: .94; letter-spacing: -.045em; text-transform: uppercase; text-wrap: balance; }
.page-hero-content > span { max-width: 660px; display: block; margin-top: 22px; color: rgba(255,255,255,.7); font-size: 17px; }
.breadcrumb { position: absolute; z-index: 2; left: 50%; bottom: 24px; display: flex; gap: 10px; color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; transform: translateX(-50%); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-style: normal; }
.page-section { padding: clamp(80px, 8vw, 128px) 0; background: var(--paper); }
.page-section--dark { color: var(--white); background: var(--ink); }
.content-split { display: grid; grid-template-columns: minmax(340px, .78fr) minmax(420px, 1.22fr); gap: clamp(54px, 9vw, 130px); align-items: center; }
.content-media { padding: 20px; border: 1px solid var(--gold); background: var(--ink); box-shadow: 28px 28px 0 rgba(19,23,27,.08); }
.content-media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.prose h2, .page-intro h2, .official-card h2, .contact-page-info h2, .empty-feature h2, .document-empty h2, .faq-layout h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.prose p { color: #5b6063; line-height: 1.85; }
.prose .lead { margin-top: 27px; color: var(--ink); font-size: 19px; }
.prose blockquote { margin: 32px 0 0; padding: 22px 0 22px 26px; border-left: 4px solid var(--gold); color: var(--ink); font-family: var(--display); font-size: 22px; font-weight: 700; line-height: 1.35; text-transform: uppercase; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 54px; border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.value-grid article { min-height: 270px; padding: 28px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.value-grid span { color: var(--gold); font-family: var(--display); font-size: 12px; font-weight: 800; }
.value-grid h3 { margin: 90px 0 12px; font-family: var(--display); font-size: 25px; text-transform: uppercase; }
.value-grid p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }
.official-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; padding: 46px; border: 1px solid var(--line); background: var(--white); }
.official-card h2 { font-size: clamp(30px, 4vw, 52px); }
.official-card dl { margin: 0; border-top: 1px solid var(--line); }
.official-card dl > div { display: grid; grid-template-columns: 140px 1fr; gap: 24px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.official-card dt { color: #777c7f; font-size: 11px; text-transform: uppercase; }
.official-card dd { margin: 0; font-weight: 600; }
.page-intro { max-width: 850px; margin-bottom: 60px; }
.page-intro > p:last-child { max-width: 680px; margin: 24px 0 0; color: #64696c; font-size: 17px; }
.listing-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.listing-card { min-height: 300px; display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); transition: background .25s ease, color .25s ease; }
.listing-card > span { color: var(--gold); font-family: var(--display); font-size: 12px; font-weight: 800; }
.listing-card h2 { margin: 90px 0 12px; font-family: var(--display); font-size: 30px; line-height: 1.05; text-transform: uppercase; }
.listing-card p { margin: 0; color: #656a6d; font-size: 14px; }
.listing-card b { display: block; margin-top: 24px; color: var(--gold); font-family: var(--display); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.listing-card:hover { color: var(--white); background: var(--ink); }
.listing-card:hover p { color: rgba(255,255,255,.6); }
.page-cta { padding: 55px 0; color: var(--white); background: var(--ink-soft); }
.page-cta .shell { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.page-cta p { margin: 0; font-family: var(--display); font-size: clamp(24px, 3vw, 38px); font-weight: 700; text-transform: uppercase; }
.detail-layout { display: grid; grid-template-columns: 270px 1fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.detail-sidebar { position: sticky; top: 110px; display: grid; border-top: 3px solid var(--gold); }
.detail-sidebar > p { margin: 0; padding: 17px; color: var(--white); background: var(--ink); font-family: var(--display); font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.detail-sidebar a { padding: 14px 17px; border: 1px solid var(--line); border-top: 0; color: #5c6265; font-size: 13px; }
.detail-sidebar a:hover, .detail-sidebar a.is-active { color: var(--ink); border-left: 3px solid var(--gold); background: var(--white); }
.detail-content h2 { font-size: clamp(44px, 6vw, 78px); }
.service-detail-visual { position: relative; margin: 0 0 clamp(42px, 6vw, 72px); overflow: hidden; color: var(--white); background: var(--ink); box-shadow: 24px 24px 0 rgba(19,23,27,.08); }
.service-detail-visual > div { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.service-detail-visual > div::after { position: absolute; inset: 0; content: ''; background: linear-gradient(0deg, rgba(12,15,18,.76), transparent 54%); pointer-events: none; }
.service-detail-visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: service-image-enter 1.25s cubic-bezier(.2,.75,.25,1) forwards; transition: transform .9s cubic-bezier(.2,.75,.25,1), filter .9s ease; }
.service-detail-visual:hover img { filter: saturate(1.08) contrast(1.03); transform: scale(1.025); }
.service-detail-visual figcaption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: clamp(20px, 4vw, 38px); pointer-events: none; }
.service-detail-visual figcaption span { color: var(--gold-bright); font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.service-detail-visual figcaption strong { max-width: 60%; font-family: var(--display); font-size: clamp(22px, 3vw, 38px); line-height: 1; text-align: right; text-transform: uppercase; }
.service-detail-copy { max-width: 850px; }
@keyframes service-image-enter { from { opacity: .55; transform: scale(1.14); } to { opacity: 1; transform: scale(1.06); } }
.detail-steps { margin: 40px 0; border-top: 1px solid var(--line); }
.detail-steps > div { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.detail-steps span { color: var(--gold); font-family: var(--display); font-weight: 800; }
.detail-steps p { margin: 0; color: var(--ink); }
.detail-action { margin-top: 48px; padding: 30px; background: #e7e4da; }
.detail-action h3 { margin: 0 0 20px; font-family: var(--display); font-size: 24px; text-transform: uppercase; }
.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 38px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.filter-bar > span { font-family: var(--display); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.filter-bar > div { display: flex; gap: 8px; }
.filter-bar button { padding: 8px 13px; border: 1px solid var(--line); background: transparent; font-size: 11px; text-transform: uppercase; }
.filter-bar button.is-active { color: var(--white); background: var(--ink); }
.project-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.project-list-card { border: 1px solid var(--line); background: var(--white); }
.project-list-media { aspect-ratio: 1.55; overflow: hidden; }
.project-list-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-list-card:hover img { transform: scale(1.035); }
.project-list-card > div:last-child { position: relative; padding: 25px 70px 26px 25px; }
.project-list-card p { margin: 0 0 7px; color: var(--gold); font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.project-list-card h2 { margin: 0; font-family: var(--display); font-size: 28px; line-height: 1.05; text-transform: uppercase; }
.project-list-card span { position: absolute; right: 24px; top: 50%; color: var(--gold); font-size: 0; transform: translateY(-50%); }
.project-list-card span::after { content: '↗'; font-size: 27px; }
.project-disclaimer--page { color: #6f7477; }
.project-detail-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 40px; }
.project-detail-head h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 6vw, 76px); line-height: .95; text-transform: uppercase; }
.project-detail-image { overflow: hidden; background: var(--ink); }
.project-detail-image img { width: 100%; max-height: 720px; object-fit: cover; }
.project-detail-copy { display: grid; grid-template-columns: .6fr 1.4fr; gap: 70px; padding: 48px 0; border-bottom: 1px solid var(--line); }
.project-detail-copy h3 { margin: 0; font-family: var(--display); font-size: 28px; text-transform: uppercase; }
.project-detail-copy p { margin: 0 0 18px; color: #606568; }
.news-list { display: grid; gap: 24px; }
.news-list-card { display: grid; grid-template-columns: minmax(280px, .75fr) 1.25fr; border: 1px solid var(--line); background: var(--white); }
.news-list-card img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; }
.news-list-card > div { padding: 36px; }
.news-list-card p, .article-category { margin: 0 0 13px; color: var(--gold); font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.news-list-card h2 { margin: 0; font-family: var(--display); font-size: clamp(27px, 3.5vw, 45px); line-height: 1.05; text-transform: uppercase; }
.news-list-card span { display: block; margin: 22px 0; color: #666b6e; }
.news-list-card b { color: var(--gold); font-family: var(--display); font-size: 11px; text-transform: uppercase; }
.article-shell { max-width: 1000px; }
.article-shell > h2 { max-width: 880px; margin: 0; font-family: var(--display); font-size: clamp(44px, 6vw, 76px); line-height: .98; text-transform: uppercase; }
.article-lead { max-width: 750px; margin: 25px 0 45px; color: #5d6265; font-size: 20px; }
.article-shell > img { width: 100%; max-height: 590px; object-fit: cover; }
.home-layout { display: flex; flex-direction: column; }
.article-body, .managed-rich-content { max-width: 820px; margin: 50px auto; font-size: 18px; line-height: 1.85; }
.article-body h2, .article-body h3, .article-body h4, .managed-rich-content h2, .managed-rich-content h3, .managed-rich-content h4 { margin: 42px 0 14px; font-family: var(--display); line-height: 1.12; text-transform: uppercase; }
.article-body h2, .managed-rich-content h2 { font-size: clamp(32px, 4vw, 48px); }
.article-body h3, .managed-rich-content h3 { font-size: 30px; }
.article-body img, .managed-rich-content img { width: 100%; height: auto; margin: 24px 0; }
.article-body figure, .managed-rich-content figure { margin: 28px 0; }
.article-body figcaption, .managed-rich-content figcaption { margin-top: -14px; color: var(--muted); font-size: 12px; }
.article-body blockquote, .managed-rich-content blockquote { margin: 30px 0; padding: 6px 0 6px 24px; border-left: 5px solid var(--gold); font-family: var(--display); font-size: 24px; line-height: 1.35; }
.article-body table, .managed-rich-content table { width: 100%; border-collapse: collapse; }
.article-body th, .article-body td, .managed-rich-content th, .managed-rich-content td { padding: 10px; border: 1px solid var(--line); text-align: left; }
.dynamic-module { position: relative; }
.dynamic-banner { min-height: clamp(420px, 58vw, 720px); display: flex; align-items: center; overflow: hidden; color: var(--white); }
.dynamic-banner > img, .dynamic-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.dynamic-banner > img { object-fit: cover; }
.dynamic-shade { background: linear-gradient(90deg, rgba(12,17,21,.88), rgba(12,17,21,.25) 70%, rgba(12,17,21,.05)); }
.dynamic-banner .shell { position: relative; z-index: 1; }
.dynamic-banner h2 { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(48px, 7vw, 104px); line-height: .94; text-transform: uppercase; }
.dynamic-banner .shell > p:not(.eyebrow) { max-width: 640px; margin: 24px 0; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.7; }
.dynamic-image-text > .shell { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(35px,7vw,100px); }
.dynamic-image-text img { width: 100%; aspect-ratio: 1.25; object-fit: cover; }
.dynamic-image-text h2, .dynamic-rich h2, .dynamic-cta h2, .dynamic-gallery h2 { margin: 0; font-family: var(--display); font-size: clamp(38px,5vw,72px); line-height: 1; text-transform: uppercase; }
.dynamic-image-text div > p:not(.eyebrow), .dynamic-cta div > p:not(.eyebrow) { margin: 22px 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.dynamic-rich { background: #f3f1ea; }
.dynamic-rich .managed-rich-content { max-width: 900px; margin: 30px 0 0; }
.dynamic-cta { color: var(--white); background: var(--ink); }
.dynamic-cta > .shell { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.dynamic-cta div > p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.6); }
.dynamic-gallery > .shell > div:last-child { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.dynamic-gallery figure { margin: 0; overflow: hidden; }
.dynamic-gallery img { width: 100%; aspect-ratio: 1.2; object-fit: cover; transition: transform .6s ease; }
.dynamic-gallery figure:hover img { transform: scale(1.04); }
.dynamic-spacer { width: 100%; }

@media (max-width: 760px) {
  .dynamic-image-text > .shell { grid-template-columns: 1fr; }
  .dynamic-cta > .shell { align-items: flex-start; flex-direction: column; }
  .dynamic-gallery > .shell > div:last-child { grid-template-columns: 1fr; }
}
.text-arrow { color: var(--gold); font-family: var(--display); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.contact-page-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 8vw, 110px); align-items: start; }
.contact-page-info > p:not(.eyebrow) { color: #62676a; font-size: 17px; }
.contact-page-info address { margin: 34px 0 0; padding: 24px 0; border-block: 1px solid var(--line); font-style: normal; }
.contact-page-info dl { margin: 23px 0 0; }
.contact-page-info dl > div { display: grid; grid-template-columns: 130px 1fr; padding: 9px 0; }
.contact-page-info dt { color: #74797c; font-size: 11px; text-transform: uppercase; }
.contact-page-info dd { margin: 0; font-weight: 600; }
.contact-page-grid .contact-form { box-shadow: 0 24px 70px rgba(19,23,27,.1); }
.contact-map-section { padding: 0 0 clamp(82px, 9vw, 132px); background: var(--paper); }
.map-panel { min-height: 520px; display: grid; grid-template-columns: minmax(300px,.7fr) minmax(520px,1.3fr); color: var(--white); background: var(--ink); box-shadow: 0 26px 70px rgba(19,23,27,.14); }
.map-copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(34px,5vw,70px); overflow: hidden; }
.map-copy::after { position: absolute; z-index: -1; right: -75px; bottom: -95px; width: 240px; height: 240px; content: ''; border: 1px solid rgba(240,165,34,.28); transform: rotate(45deg); }
.map-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(38px,4.7vw,67px); line-height: .96; text-transform: uppercase; }
.map-copy address { margin: 28px 0 34px; color: rgba(255,255,255,.72); font-style: normal; font-size: 15px; line-height: 1.75; }
.map-open { gap: 18px; }
.map-frame { position: relative; min-height: 520px; border: 12px solid var(--ink); border-left: 0; background: #d8d7d1; }
.map-frame::before { position: absolute; z-index: 1; inset: 0; content: ''; border: 1px solid rgba(217,141,18,.42); pointer-events: none; }
.map-frame iframe { width: 100%; height: 100%; min-height: 496px; display: block; border: 0; filter: saturate(.82) contrast(1.04); }
.reference-fields { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 50px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.reference-fields span { min-height: 180px; display: flex; align-items: flex-end; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 18px; font-weight: 800; text-transform: uppercase; }
.empty-feature { display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: center; }
.team-logo-frame { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--ink); box-shadow: 24px 24px 0 rgba(19,23,27,.08); }
.team-logo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.empty-feature p:not(.eyebrow), .document-empty p:not(.eyebrow) { color: #656a6d; font-size: 17px; }
.document-empty { display: grid; grid-template-columns: 220px 1fr; gap: 65px; align-items: center; padding: 50px; border: 1px solid var(--line); background: var(--white); }
.document-empty > span { display: grid; place-content: center; width: 180px; height: 220px; color: var(--gold); border: 2px solid var(--ink); font-family: var(--display); font-size: 34px; font-weight: 900; }
.career-panel { padding: 38px; color: var(--white); background: var(--ink); }
.career-panel h3 { margin: 0 0 24px; font-family: var(--display); font-size: 27px; text-transform: uppercase; }
.career-panel ul { margin: 0; padding-left: 20px; color: rgba(255,255,255,.68); }
.career-panel li { padding: 9px 0; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-family: var(--display); font-size: 20px; font-weight: 800; text-transform: uppercase; }
.faq-list details p { margin: 15px 0 0; color: #62676a; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.gallery-grid figure { margin: 0; background: var(--white); }
.gallery-grid img { width: 100%; aspect-ratio: 1.45; object-fit: cover; }
.gallery-grid figcaption { padding: 14px 18px; font-family: var(--display); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.services-grid .reveal:nth-child(2), .projects-grid .reveal:nth-child(2), .process-list .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3), .projects-grid .reveal:nth-child(3), .process-list .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4), .process-list .reveal:nth-child(4) { transition-delay: .24s; }

@keyframes heroScale { from { transform: scale(1.04); opacity: .5; } to { transform: scale(1); opacity: 1; } }
@keyframes riseIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes scrollDot { 0%, 100% { transform: translate(-50%, 0); opacity: 1; } 60% { transform: translate(-50%, 18px); opacity: .1; } }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 44px, 940px); }
  .header-grid { grid-template-columns: 220px 1fr; gap: 20px; }
  .brand { width: 205px; }
  .brand img { width: 205px; }
  .site-nav { gap: 18px; }
  .site-nav > a, .nav-item > a { font-size: 11px; }
  .nav-home { display: none; }
  .mega-menu { width: calc(100vw - 44px); grid-template-columns: 280px 1fr; }
  .about-grid { gap: 58px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 330px; }
  .service-card h3 { margin-top: 80px; }
  .contact-grid { gap: 60px; }
  .footer-main { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 32px; }
  .content-split, .contact-page-grid { gap: 58px; }
  .detail-layout { gap: 55px; }
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

@media (max-width: 780px) {
  :root { --shell: calc(100% - 32px); --header-height: 72px; }
  .site-header { 
    height: 72px !important; 
    background: #0f1316 !important; 
    border-bottom: 1px solid rgba(255,255,255,.14) !important;
    backdrop-filter: blur(14px); 
    z-index: 99999 !important;
  }
  .site-header.is-scrolled { height: 72px !important; }
  .topbar { display: none !important; }
  .header-grid, .site-header.is-scrolled .header-grid { 
    height: 72px !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .brand, .brand img { width: 175px !important; max-width: 175px !important; }
  
  .menu-toggle { 
    display: flex !important; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    gap: 5px; 
    width: 44px; 
    height: 44px; 
    padding: 0;
    margin: 0;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    color: #ffffff; 
    background: rgba(255,255,255,0.08); 
    cursor: pointer; 
    z-index: 100002 !important;
    position: relative;
    transition: all 0.2s ease;
  }
  .menu-toggle:active {
    background: rgba(217, 141, 18, 0.25);
    border-color: var(--gold);
  }
  .menu-toggle > span:not(.sr-only) { 
    width: 22px; 
    height: 2px; 
    background: #ffffff; 
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease; 
  }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  
  .site-nav {
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 72px) !important;
    height: calc(100dvh - 72px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 20px 20px 60px !important;
    background: #0f1316 !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 100001 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: opacity .25s ease, transform .25s ease, visibility .25s !important;
  }
  .site-nav.is-open { 
    visibility: visible !important; 
    opacity: 1 !important; 
    pointer-events: auto !important;
    transform: none !important; 
  }
  .nav-home { display: block !important; }
  .site-nav > a, .nav-item > a { 
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 8px !important; 
    border-bottom: 1px solid rgba(255,255,255,.09) !important; 
    font-size: 15px !important; 
    font-weight: 700 !important;
    color: #f5f6f8 !important;
    text-decoration: none !important;
    letter-spacing: .06em !important;
  }
  .site-nav > a:hover, .nav-item > a:hover, .site-nav > a.is-active, .nav-item.is-active > a {
    color: var(--gold-bright) !important;
  }
  .site-nav > a::after, .nav-item > a::after { display: none !important; }
  .nav-item { width: 100% !important; }
  .mega-menu, .nav-dropdown { display: none !important; }
  .nav-cta { 
    margin-top: 20px !important; 
    justify-content: center !important; 
    padding: 15px 20px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    border: 1px solid var(--gold-bright) !important; 
    border-radius: 6px !important;
    background: var(--gold) !important;
    color: #ffffff !important;
  }
  .mobile-nav-contact {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: grid;
    gap: 10px;
  }
  .mobile-call-btn {
    display: block !important;
    padding: 12px 14px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    color: #ffffff !important;
  }
  .mobile-call-btn span {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--gold-bright);
  }
  .mobile-call-btn small {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
  }
  .hero { min-height: 690px; height: 100svh; }
  .hero-image { object-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(12,15,18,.94), rgba(12,15,18,.52)), linear-gradient(0deg, rgba(12,15,18,.68), transparent 50%); }
  .blueprint-lines { background-size: 52px 52px; opacity: .12; }
  .hero-content { padding-top: 30px; }
  .hero h1 { font-size: clamp(50px, 15vw, 78px); }
  .hero-lead { margin-top: 22px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 10px; margin-top: 30px; }
  .hero-foot { display: none; }
  .scroll-cue { right: 20px; bottom: 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 38px; }
  .blog-heading { grid-template-columns: 1fr; }
  .blog-controls { justify-content: flex-start; }
  .blog-track { grid-auto-columns: minmax(360px, 75vw); }
  .blog-slide { width: 75vw; }
  .about-grid, .process-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 560px; margin-inline: auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .project-card, .project-card:nth-child(1), .project-card:nth-child(2), .project-card:nth-child(n+3) { grid-column: span 6; }
  .project-card:nth-child(3) { grid-column: 1 / -1; }
  .process-grid { gap: 56px; }
  .contact-form { padding: 28px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .site-contact-strip__inner { grid-template-columns: 1fr; }
  .site-contact-strip__actions { width: min(100%, 520px); }
  .page-hero { min-height: 470px; }
  .page-hero-content { padding: 150px 0 86px; }
  .content-split, .official-card, .detail-layout, .contact-page-grid, .empty-feature, .faq-layout, .map-panel { grid-template-columns: 1fr; }
  .content-media { max-width: 520px; }
  .official-card, .detail-layout, .empty-feature, .faq-layout { gap: 45px; }
  .detail-sidebar { position: static; }
  .service-detail-visual { box-shadow: 12px 12px 0 rgba(19,23,27,.08); }
  .service-detail-visual figcaption { align-items: flex-start; flex-direction: column; }
  .service-detail-visual figcaption strong { max-width: 100%; text-align: left; }
  .listing-grid, .project-list-grid { grid-template-columns: 1fr; }
  .project-detail-head { align-items: flex-start; flex-direction: column; }
  .project-detail-copy { grid-template-columns: 1fr; gap: 20px; }
  .news-list-card { grid-template-columns: 1fr; }
  .news-list-card img { min-height: 260px; }
  .reference-fields { grid-template-columns: 1fr 1fr; }
  .document-empty { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .map-panel, .map-frame { min-height: 460px; }
  .map-frame { border: 0 12px 12px; }
  .map-frame iframe { min-height: 448px; }
}

@media (prefers-reduced-motion: reduce) {
  .service-detail-visual img { animation: none; transition: none; transform: none; }
  .service-detail-visual:hover img { transform: none; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  .hero-eyebrow::before { width: 30px; }
  .hero h1 { font-size: 14vw; }
  .about h2, .section-heading h2, .process h2, .contact h2 { font-size: 40px; }
  .about-grid { gap: 52px; }
  .about-visual { padding: 12px 0 0 12px; }
  .visual-note { bottom: -34px; left: 24px; max-width: calc(100% - 38px); font-size: 9px; letter-spacing: .12em; }
  .principles > div { grid-template-columns: 1fr; gap: 5px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .project-card, .project-card:nth-child(1), .project-card:nth-child(2), .project-card:nth-child(n+3) { grid-column: 1 / -1; }
  .project-card .project-media, .project-card:nth-child(1) .project-media, .project-card:nth-child(2) .project-media { aspect-ratio: 1.35; }
  .blog-controls > a { margin-right: auto; }
  .blog-track { grid-auto-columns: calc(100vw - 42px); gap: 14px; }
  .blog-slide { width: calc(100vw - 42px); min-width: 0; grid-template-columns: 1fr; }
  .blog-slide-media { min-height: 230px; aspect-ratio: 1.55; }
  .blog-slide > div { min-height: 300px; padding: 24px 20px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 280px; }
  .process-list li { grid-template-columns: 48px 1fr; }
  .company-data, .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 19px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-about { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .site-contact-strip::before { right: -120px; }
  .site-contact-strip__inner { padding-top: 44px; padding-bottom: 44px; }
  .site-contact-strip__copy h2 { font-size: 38px; }
  .contact-strip-button { width: 100%; min-height: 58px; }
  .page-hero { min-height: 430px; }
  .page-hero h1 { font-size: 48px; }
  .page-hero-content > span { font-size: 15px; }
  .breadcrumb { bottom: 18px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 220px; }
  .value-grid h3 { margin-top: 55px; }
  .official-card { padding: 26px 20px; }
  .official-card dl > div { grid-template-columns: 1fr; gap: 4px; }
  .listing-card { min-height: 260px; grid-template-columns: 40px 1fr; padding: 24px 18px; }
  .listing-card h2 { margin-top: 55px; }
  .page-cta .shell { align-items: flex-start; flex-direction: column; }
  .filter-bar { align-items: flex-start; flex-direction: column; }
  .filter-bar > div { max-width: 100%; overflow-x: auto; }
  .project-list-card h2 { font-size: 24px; }
  .news-list-card > div { padding: 24px 20px; }
  .reference-fields { grid-template-columns: 1fr; }
  .team-logo-frame { max-width: 360px; }
  .document-empty { padding: 28px 20px; }
  .contact-page-info dl > div { grid-template-columns: 1fr; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Floating WhatsApp Quick Contact Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff !important;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-whatsapp-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.floating-whatsapp-btn:hover {
  background: #20ba5a;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 640px) {
  .floating-whatsapp-btn {
    bottom: 18px;
    right: 18px;
    padding: 13px;
    border-radius: 50%;
  }
  .floating-whatsapp-text {
    display: none;
  }
}

.footer-webyaz {
  margin: 0;
  text-transform: none;
  font-size: 12px;
  letter-spacing: normal;
  opacity: 0.9;
}
.footer-webyaz a {
  color: inherit;
  text-decoration: none;
}
.footer-webyaz a:hover {
  text-decoration: underline;
}

/* Desktop hide for mobile-only nav elements */
@media (min-width: 781px) {
  .mobile-nav-contact {
    display: none !important;
  }
}
