* { box-sizing: border-box; }

:root {
  --black: #11110f;
  --off-white: #f4f1eb;
  --paper: #ebe7df;
  --muted: #77746e;
  --line: rgba(17,17,15,.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--off-white);
  font-family: var(--sans);
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  height: 84px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--off-white);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.brand img { width: 102px; display: block; }
.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #373631;
  transition: opacity .2s;
}
.nav a:hover { opacity: .55; }
.header-right { display: flex; align-items: center; gap: 20px; }
.lang-switch {
  border: 0;
  background: transparent;
  padding: 6px 0;
  display: flex;
  gap: 8px;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: .15em;
}
.lang-switch span { opacity: .35; }
.lang-switch .active { opacity: 1; }
.menu-button {
  border: 1px solid var(--black);
  padding: 11px 15px;
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: .25s;
}
.menu-button:hover { background: var(--black); color: var(--off-white); }

.hero {
  min-height: calc(100vh - 84px);
  position: relative;
  overflow: hidden;
  background: #1b1a18;
  color: white;
  display: flex;
  align-items: center;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.64), rgba(0,0,0,.25) 50%, rgba(0,0,0,.48));
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 74vw);
  margin-left: 11vw;
  padding: 100px 0;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: .26em;
  margin: 0 0 30px;
  opacity: .8;
}
.hero h1 {
  font: 500 clamp(52px, 7vw, 104px)/.94 var(--serif);
  letter-spacing: -.045em;
  margin: 0 0 30px;
}
.hero h1 em, h2 em { font-style: italic; font-weight: 500; }
.hero-text {
  max-width: 490px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 15px 19px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.button-light { background: white; color: var(--black); }
.button .arrow { font-size: 17px; line-height: 0; }
.hero-side {
  position: absolute;
  z-index: 2;
  font-size: 9px;
  letter-spacing: .28em;
  line-height: 2.2;
  opacity: .75;
}
.hero-side-left { left: 4.5vw; top: 70px; }
.hero-side-right { right: 4.5vw; bottom: 58px; text-align: right; }

.section { padding: 120px 8vw; }
.section-label {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .24em;
  margin-bottom: 70px;
}
.section-label span:first-child { color: var(--black); }
.intro { background: var(--off-white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 10vw;
}
h2 {
  font: 500 clamp(42px, 5.5vw, 78px)/1.02 var(--serif);
  letter-spacing: -.04em;
  margin: 0;
}
.intro-text { max-width: 470px; padding-top: 12px; }
.intro-text p, .services-head p, .projects-head p {
  color: #5d5b55;
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 22px;
}
.text-link {
  display: inline-flex;
  gap: 18px;
  margin-top: 15px;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--black);
  padding-bottom: 8px;
}
.text-link b { font-size: 14px; font-weight: 400; }

.services { background: var(--paper); }
.services-head {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 75px;
}
.services-head p { margin: 0; }
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 70px 1fr 50px;
  gap: 30px;
  align-items: center;
  min-height: 125px;
  border-bottom: 1px solid var(--line);
  transition: padding .3s, background .3s;
}
.service-row:hover { padding-left: 15px; background: rgba(255,255,255,.28); }
.service-number { font-size: 10px; color: var(--muted); letter-spacing: .12em; }
.service-row h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 8px;
}
.service-row p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}
.service-icon { font-size: 20px; text-align: right; }

.projects { background: var(--off-white); }
.projects-head {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 60px;
}
.projects-head p { margin: 0; }
.project-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
}
.project-card { min-width: 0; }
.project-featured { grid-row: span 2; }
.project-placeholder {
  min-height: 390px;
  padding: 35px;
  background: #1a1917;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.project-featured .project-placeholder { min-height: 630px; }
.project-placeholder::after {
  content: "";
  position: absolute;
  width: 180px; height: 180px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  top: 50px; right: 50px;
}
.project-placeholder.light { background: #d7d1c6; color: #171613; }
.project-placeholder.light::after { border-color: rgba(0,0,0,.2); }
.project-placeholder.warm { background: #b7a896; color: #171613; }
.project-placeholder.warm::after { border-color: rgba(0,0,0,.2); }
.project-placeholder span { font-size: 9px; letter-spacing: .22em; opacity: .65; margin-bottom: 12px; }
.project-placeholder strong { font: 500 32px/1.1 var(--serif); max-width: 340px; }
.project-placeholder small { font-size: 10px; margin-top: 12px; opacity: .6; }
.project-meta {
  display: flex;
  justify-content: space-between;
  padding: 14px 2px;
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--muted);
}

.cta {
  background: var(--black);
  color: var(--off-white);
  padding-top: 100px;
  padding-bottom: 110px;
}
.light-label { color: rgba(255,255,255,.45); }
.light-label span:first-child { color: white; }
.cta-inner { max-width: 1100px; }
.cta h2 { font-size: clamp(48px, 7vw, 96px); margin-bottom: 35px; }
.cta p { max-width: 520px; color: rgba(255,255,255,.6); line-height: 1.8; font-size: 14px; }
.contact-actions {
  display: flex;
  gap: 35px;
  margin-top: 55px;
  flex-wrap: wrap;
}
.contact-link {
  font-size: 12px;
  letter-spacing: .1em;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding-bottom: 9px;
}
.contact-link span { margin-left: 20px; font-size: 16px; }

.footer {
  padding: 40px 5vw;
  background: #0d0d0c;
  color: rgba(255,255,255,.5);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 30px;
  font-size: 9px;
  letter-spacing: .15em;
}
.footer-logo { width: 82px; filter: invert(1); opacity: .9; }
.footer p { margin: 10px 0 0; letter-spacing: .06em; text-transform: none; font-size: 10px; }
.footer-location { text-align: center; }
.footer-copy { text-align: right; }

@media (max-width: 850px) {
  .site-header { padding: 0 5vw; }
  .nav { display: none; }
  .header-right { margin-left: auto; }
  .menu-button { display: none; }
  .hero-copy { margin-left: 8vw; width: 80vw; }
  .hero-side { display: none; }
  .section { padding: 85px 7vw; }
  .intro-grid, .services-head, .projects-head { grid-template-columns: 1fr; gap: 35px; }
  .section-label { margin-bottom: 50px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-featured { grid-row: auto; }
  .project-featured .project-placeholder { min-height: 480px; }
  .project-placeholder { min-height: 360px; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer-location { text-align: left; }
  .footer-copy { text-align: right; }
}

@media (max-width: 520px) {
  .site-header { height: 72px; }
  .brand img { width: 82px; }
  .lang-switch { font-size: 9px; }
  .hero { min-height: 680px; }
  .hero-copy { margin-left: 7vw; padding: 80px 0; }
  .hero h1 { font-size: 54px; }
  .hero-text { font-size: 13px; }
  .section { padding: 70px 6vw; }
  .service-row { grid-template-columns: 35px 1fr 25px; gap: 15px; min-height: 135px; }
  .service-row h3 { font-size: 16px; }
  .service-row p { line-height: 1.6; }
  .project-featured .project-placeholder { min-height: 410px; }
  .project-placeholder { min-height: 300px; padding: 25px; }
  .footer { grid-template-columns: 1fr; }
  .footer-location, .footer-copy { text-align: left; }
}
