:root {
  --ink: #0a0b0c;
  --ink-soft: #141619;
  --paper: #f3f1ec;
  --white: #ffffff;
  --muted: #a8aaad;
  --line: rgba(255,255,255,.15);
  --paper-line: #d7d4cd;
  --copper: #d99a52;
  --max: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }

.topbar {
  height: 34px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--copper);
  color: #111;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.topbar-service { margin-right: auto; font-weight: 600; }
.topbar a { border-bottom: 1px solid currentColor; }

.site-header {
  height: 82px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 38px;
  position: absolute;
  inset: 34px 0 auto;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.site-header.is-sticky {
  position: fixed;
  inset: 0 0 auto;
  background: rgba(10,11,12,.9);
  backdrop-filter: blur(18px);
  animation: headerIn .25s ease;
}
@keyframes headerIn { from { transform: translateY(-100%); } }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 180px; }
.brand-logo { width: 62px; height: 68px; object-fit: cover; object-position: top; flex: 0 0 auto; }
.brand-copy { display: grid; line-height: .9; }
.brand-copy strong { font-size: 1.55rem; letter-spacing: -.06em; }
.brand-copy small { margin-top: 7px; font-size: .6rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.site-header nav { margin-left: auto; display: flex; align-items: center; gap: 32px; }
.site-header nav a { color: #d4d5d6; font-size: .82rem; font-weight: 700; }
.site-header nav a:hover { color: var(--white); }
.nav-cta {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.5);
  font-size: .77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: .25s ease;
}
.nav-cta span { color: var(--copper); margin-left: 9px; }
.nav-cta:hover { background: var(--white); color: var(--ink); }
.menu { display: none; }

.hero { min-height: 940px; height: 100svh; position: relative; display: grid; align-items: center; overflow: hidden; }
.hero-media {
  position: absolute;
  inset: 0;
  background: url("images/hero-v2.webp") center/cover no-repeat;
  transform: scale(1.015);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,6,7,.94) 0%, rgba(5,6,7,.72) 42%, rgba(5,6,7,.1) 72%),
    linear-gradient(0deg, rgba(5,6,7,.9) 0%, transparent 32%);
}
.hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 80px auto 0;
  position: relative;
  z-index: 2;
}
.overline {
  margin: 0 0 22px;
  color: var(--copper);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.overline.dark { color: #8b6337; }
.hero h1, .section h2, .service-area h2 {
  margin: 0;
  font-size: clamp(4rem, 7.3vw, 7.6rem);
  line-height: .87;
  letter-spacing: -.07em;
  font-weight: 760;
}
.hero h1 span, .section h2 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.8); font-weight: 500; }
.hero-copy { max-width: 650px; margin: 30px 0 34px; color: #d1d2d3; font-size: 1.1rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--ink); }
.button-light span { color: #8a5724; }
.button-outline { border-color: rgba(255,255,255,.55); }
.hero-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
}
.hero-footer div { min-height: 114px; padding: 24px 28px 24px 58px; position: relative; display: grid; align-content: center; border-right: 1px solid var(--line); }
.hero-footer div:last-child { border: 0; }
.hero-footer div>span { position: absolute; left: 0; top: 27px; color: var(--copper); font-size: .7rem; }
.hero-footer strong { font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; }
.hero-footer small { margin-top: 4px; color: var(--muted); font-size: .78rem; }

.section { padding: 140px max(24px, calc((100vw - var(--max)) / 2)); }
.section-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
.section-intro h2 { color: var(--ink); font-size: clamp(3.6rem, 6vw, 6.2rem); }
.section-intro h2 span { -webkit-text-stroke-color: rgba(10,11,12,.55); }
.section-intro>p { max-width: 500px; margin: 0 0 7px; color: #66696c; font-size: 1.05rem; }
.services { background: var(--paper); color: var(--ink); }
.services-list {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1px;
  border: 1px solid #bcbab5;
  background: #bcbab5;
}
.services-list article {
  min-width: 0;
  background: var(--paper);
  overflow: hidden;
  transition: background .25s ease;
}
.services-list article:hover { background: var(--white); }
.service-visual { height: 360px; position: relative; overflow: hidden; background: #d7d4cd; }
.service-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.22), transparent 38%); pointer-events: none; }
.service-visual img { height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.02); transition: transform .65s ease, filter .4s ease; }
.services-list article:hover .service-visual img { transform: scale(1.025); filter: saturate(1) contrast(1); }
.service-number { position: absolute; z-index: 1; top: 20px; left: 20px; width: 40px; height: 40px; display: grid; place-items: center; background: rgba(10,11,12,.82); color: var(--white); font-size: .7rem; font-weight: 800; backdrop-filter: blur(8px); }
.service-body { min-height: 185px; padding: 28px 28px 30px; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: start; }
.services-list h3 { margin: 0 0 7px; font-size: clamp(1.55rem, 2.2vw, 2.25rem); letter-spacing: -.04em; }
.services-list p { max-width: 560px; margin: 0; color: #666864; }
.service-arrow { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid #aaa8a2; border-radius: 50%; }

.projects { background: var(--ink-soft); }
.project-intro h2 { color: var(--white); }
.project-intro>p { color: #a9abad; }
.project-grid { margin-top: 75px; display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 380px 380px; gap: 14px; }
.project-grid figure { margin: 0; position: relative; overflow: hidden; background: #222; }
.project-grid .project-main { grid-row: 1 / 3; }
.project-grid img { height: 100%; object-fit: cover; object-position: center 62%; filter: saturate(.75); transition: transform .65s ease, filter .4s ease; }
.project-grid figure:hover img { transform: scale(1.03); filter: saturate(1); }
.project-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 90px 26px 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
}
.project-grid figcaption div { display: grid; gap: 5px; }
.project-grid figcaption small { color: var(--copper); font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.project-grid figcaption strong { font-size: 1.12rem; }
.project-grid figcaption>span { color: #aaa; font-size: .72rem; }

.about { background: var(--white); color: var(--ink); }
.about-heading h2 { color: var(--ink); font-size: clamp(3.6rem, 6vw, 6.2rem); }
.about-heading h2 span { -webkit-text-stroke-color: rgba(10,11,12,.5); }
.about-layout { margin-top: 86px; display: grid; grid-template-columns: 1fr 1.15fr; gap: 10vw; align-items: start; }
.about-story { padding-top: 8px; }
.about-story .lead { margin: 0 0 24px; color: var(--ink); font-size: 1.35rem; line-height: 1.45; letter-spacing: -.02em; }
.about-story>p:not(.lead) { color: #65676a; }
.text-link { margin-top: 24px; display: inline-flex; gap: 16px; align-items: center; font-size: .82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; border-bottom: 1px solid var(--ink); padding-bottom: 5px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid var(--paper-line); border-top: 1px solid var(--paper-line); }
.stats div { min-height: 190px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); }
.stats strong { font-size: clamp(3.2rem, 5vw, 5.5rem); line-height: 1; letter-spacing: -.07em; }
.stats span { color: #6b6d70; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.service-area {
  min-height: 480px;
  padding: 90px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: .8fr 1.2fr auto;
  align-items: center;
  gap: 6vw;
  position: relative;
  overflow: hidden;
  background: #111315;
}
.area-map { min-height: 260px; position: relative; border: 1px solid #3a3d40; transform: skew(-7deg); }
.area-map::before,.area-map::after { content: ""; position: absolute; background: #3a3d40; }
.area-map::before { width: 1px; height: 100%; left: 52%; }
.area-map::after { height: 1px; width: 100%; top: 48%; }
.area-map span { position: absolute; color: var(--copper); font-weight: 900; transform: skew(7deg); }
.area-map span:nth-child(1) { top: 19%; right: 20%; }
.area-map span:nth-child(2) { top: 63%; right: 24%; }
.area-map span:nth-child(3) { bottom: 13%; left: 17%; }
.service-area h2 { font-size: clamp(3rem, 5vw, 5.5rem); }
.service-area>div:nth-child(2)>p:last-child { max-width: 600px; color: #a7a9ab; }

.contact { background: var(--paper); color: var(--ink); display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; }
.contact h2 { color: var(--ink); font-size: clamp(3.5rem, 5.7vw, 6rem); }
.contact h2 span { -webkit-text-stroke-color: rgba(10,11,12,.52); }
.contact-info>p:not(.overline) { max-width: 560px; color: #66686b; font-size: 1.03rem; }
.contact-links { margin-top: 48px; display: grid; gap: 1px; background: #cbc8c1; border: 1px solid #cbc8c1; }
.contact-links a { padding: 20px; display: grid; gap: 4px; background: var(--paper); overflow-wrap: anywhere; }
.contact-links small { color: #737578; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-links strong { font-size: 1.05rem; }
form { padding: 38px; display: grid; gap: 20px; background: var(--white); box-shadow: 0 24px 70px rgba(0,0,0,.11); }
.form-heading { padding-bottom: 22px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #ddd; }
.form-heading span { font-size: 1.25rem; font-weight: 800; letter-spacing: -.03em; }
.form-heading small { color: #777; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: grid; gap: 7px; color: #57595b; font-size: .69rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
input,select,textarea { width: 100%; padding: 14px; border: 1px solid #d8d8d5; outline: 0; background: #f8f8f6; color: var(--ink); font-size: .98rem; text-transform: none; resize: vertical; transition: border .2s, box-shadow .2s; }
input:focus,select:focus,textarea:focus { border-color: #8b6337; box-shadow: 0 0 0 3px rgba(217,154,82,.15); }
.form-submit { width: 100%; background: var(--ink); color: var(--white); }
.form-submit span { color: var(--copper); }
.form-note { margin: -7px 0 0; color: #777; font-size: .74rem; text-align: center; }

footer { padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 30px; background: var(--ink); }
.footer-main { min-height: 130px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 8vw; align-items: start; }
.footer-main>p { max-width: 440px; margin: 4px 0 0; color: #999b9e; }
.footer-contact { display: grid; justify-items: end; gap: 10px; font-weight: 800; }
.footer-contact a { padding-bottom: 3px; border-bottom: 1px solid #666; }
.footer-bottom { padding-top: 25px; display: flex; gap: 30px; justify-content: space-between; border-top: 1px solid #2d3033; color: #797b7e; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.floating-call { display: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header nav { gap: 18px; }
  .nav-cta { display: none; }
  .hero { min-height: 820px; }
  .section-intro,.about-layout,.contact { grid-template-columns: 1fr; gap: 48px; }
  .service-visual { height: 300px; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 520px 350px; }
  .project-grid .project-main { grid-column: 1/3; grid-row: auto; }
  .service-area { grid-template-columns: .7fr 1.3fr; }
  .service-area>.button { grid-column: 2; justify-self: start; }
}

@media (max-width: 720px) {
  .topbar { height: 30px; padding: 0 16px; }
  .topbar-service { display: none; }
  .topbar a { margin-left: auto; }
  .site-header { height: 68px; padding: 0 18px; inset: 30px 0 auto; }
  .site-header.is-sticky { inset: 0 0 auto; }
  .brand { min-width: 0; }
  .brand-logo { width: 49px; height: 54px; }
  .brand-copy strong { font-size: 1.25rem; }
  .brand-copy small { font-size: .5rem; }
  .menu { margin-left: auto; width: 44px; height: 44px; padding: 12px 8px; display: grid; align-content: center; gap: 7px; background: transparent; border: 0; }
  .menu span { display: block; height: 1px; background: #fff; transition: .25s; }
  .menu.open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-header nav { display: none; position: absolute; inset: 68px 0 auto; padding: 30px 24px; background: rgba(10,11,12,.98); flex-direction: column; align-items: stretch; gap: 0; }
  .site-header nav.open { display: flex; }
  .site-header nav a { padding: 16px 0; border-bottom: 1px solid #303236; font-size: 1rem; }
  .hero { min-height: 800px; height: 100svh; align-items: start; }
  .hero-media { background-position: 66% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,6,7,.93), rgba(5,6,7,.36)), linear-gradient(0deg, rgba(5,6,7,.96), transparent 55%); }
  .hero-inner { width: calc(100% - 36px); margin-top: 180px; }
  .hero h1 { font-size: clamp(3.3rem, 16vw, 5rem); line-height: .91; }
  .hero-copy { margin: 24px 0 27px; font-size: .98rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-footer { width: calc(100% - 36px); grid-template-columns: 1fr; bottom: 18px; }
  .hero-footer div { display: none; }
  .hero-footer div:first-child { min-height: 72px; padding: 17px 16px 17px 45px; display: grid; border: 1px solid var(--line); background: rgba(10,11,12,.55); backdrop-filter: blur(8px); }
  .hero-footer div>span { left: 14px; top: 19px; }
  .section { padding: 92px 20px; }
  .section-intro { gap: 30px; }
  .section-intro h2,.about-heading h2,.contact h2 { font-size: clamp(3.1rem, 14vw, 4.8rem); }
  .services-list { margin-top: 50px; }
  .services-list { grid-template-columns: 1fr; }
  .service-visual { height: 260px; }
  .service-body { min-height: 0; padding: 23px 20px 25px; }
  .service-arrow { display: none; }
  .services-list h3 { font-size: 1.4rem; }
  .services-list p { font-size: .92rem; }
  .project-grid { margin-top: 52px; grid-template-columns: 1fr; grid-template-rows: 500px 360px 360px; }
  .project-grid .project-main { grid-column: auto; }
  .project-grid figcaption { padding: 70px 18px 18px; }
  .about-layout { margin-top: 55px; }
  .stats div { min-height: 145px; padding: 18px; }
  .stats strong { font-size: 3rem; }
  .stats span { font-size: .65rem; }
  .service-area { padding: 80px 20px; grid-template-columns: 1fr; gap: 35px; }
  .area-map { min-height: 190px; }
  .service-area>.button { grid-column: auto; width: 100%; }
  .service-area h2 { font-size: 3.3rem; line-height: .92; }
  .contact-links { margin-top: 35px; }
  form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .form-heading { align-items: start; flex-direction: column; gap: 5px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-contact { justify-items: start; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  footer { padding-bottom: 105px; }
  .floating-call { position: fixed; z-index: 40; left: 14px; right: 14px; bottom: 13px; min-height: 52px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; background: var(--copper); color: #111; font-size: .75rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; box-shadow: 0 14px 40px rgba(0,0,0,.45); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
