:root {
  --black: #080808;
  --black-soft: #10100f;
  --charcoal: #181817;
  --gold: #d4af37;
  --gold-bright: #f0d77b;
  --gold-deep: #765710;
  --ivory: #f2efe7;
  --paper: #dfd9cb;
  --muted: #aaa59b;
  --line: rgba(242, 239, 231, 0.16);
  --line-dark: rgba(8, 8, 8, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1280px;
  --header: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.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;
}

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

.container {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 140px 0;
}

.page-progress {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, height 240ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(8, 8, 8, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 48px), 1440px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  min-width: 168px;
  height: 48px;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: Baskerville, "Baskerville Old Face", "Palatino Linotype", Palatino, serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.055em;
  text-align: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: #d8d4ca;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 200ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.language-toggle {
  padding: 10px 13px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: transparent;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  color: var(--ivory);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 13px 10px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--ivory);
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 76px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px) 0 0 / 10vw 100%,
    var(--black);
}

.hero-glow {
  position: absolute;
  top: -280px;
  right: -250px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 67%);
  pointer-events: none;
}

.hero-grid {
  min-height: calc(100svh - 208px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.8fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-index,
.project-type {
  color: var(--gold-bright);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-kicker span {
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(4.6rem, 8.2vw, 8.9rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.78;
}

.hero h1 em,
.intro h2 em,
.work h2 em,
.company h2 em,
.contact h2 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: #c9c5bb;
  font-size: clamp(1.02rem, 1.3vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 54px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-gold {
  background: linear-gradient(135deg, #9c7418 0%, var(--gold) 38%, var(--gold-bright) 52%, #be8f20 100%);
  color: var(--black);
}

.button-gold:hover {
  background: linear-gradient(135deg, #ae8423 0%, #e2c04d 42%, #f5df91 55%, #c99a29 100%);
}

.button-dark {
  background: var(--black);
  color: var(--ivory);
}

.button-dark:hover {
  border-color: var(--black);
  background: transparent;
  color: var(--black);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  padding: 6px 0;
  color: var(--paper);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.text-link span {
  color: var(--gold);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin-bottom: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-facts > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.hero-facts dt {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.72rem;
}

.hero-facts dd {
  color: #99958d;
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 580px;
  padding: 18px 48px 44px 20px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 8%;
  right: 0;
  bottom: 0;
  left: 20%;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  filter: saturate(0.9) contrast(1.08);
}

.hero-project-caption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 7px;
  margin-top: 16px;
  padding: 5px 0 5px 16px;
  border-left: 1px solid var(--gold);
}

.hero-project-caption span {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-project-caption strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.15;
}

.image-wash,
.project-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.1), rgba(8, 8, 8, 0.58));
  pointer-events: none;
}

.image-number {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left top;
}

.project-stamp {
  position: relative;
  z-index: 4;
  bottom: auto;
  left: auto;
  width: auto;
  max-width: 100%;
  margin-top: 18px;
  padding: 8px 0 8px 16px;
  border-left: 2px solid var(--gold);
  background: transparent;
  color: var(--ivory);
}

.project-stamp span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-bright);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-stamp strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15;
}

.project-stamp small {
  display: block;
  max-width: 32rem;
  margin-top: 8px;
  color: #c8c4bb;
  font-size: 0.75rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.vertical-note {
  position: absolute;
  right: 16px;
  top: 22%;
  margin: 0;
  color: #77736c;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue {
  position: absolute;
  left: 24px;
  bottom: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #77736c;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  width: 1px;
  height: 54px;
  background: linear-gradient(var(--gold), transparent);
}

.service-band {
  overflow: hidden;
  border-block: 1px solid rgba(8, 8, 8, 0.2);
  background: var(--gold);
  color: var(--black);
}

.service-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  padding: 17px 0;
  animation: marquee 34s linear infinite;
}

.service-track span {
  margin: 0 34px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-track i {
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background: var(--black);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-index {
  margin-bottom: 28px;
}

.intro {
  background: var(--ivory);
  color: var(--black);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.46fr 1.45fr 0.56fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.intro .section-index {
  color: var(--gold-deep);
}

.intro h2,
.work h2,
.company h2,
.contact h2 {
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.1vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.intro h2 em,
.work h2 em,
.company h2 em,
.contact h2 em {
  display: inline-block;
  font-style: italic;
}

.intro-copy > p {
  max-width: 760px;
  margin-bottom: 0;
  color: #4e4b46;
  font-size: 1.16rem;
  line-height: 1.8;
}

.intro-note {
  margin-top: 56px;
}

.intro-note .gold-line {
  display: block;
  width: 54px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--gold);
}

.intro-note p {
  margin: 0;
  color: #383631;
  font-family: var(--serif);
  font-size: 1.14rem;
  line-height: 1.6;
}

.google-proof {
  padding-block: 112px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black-soft);
}

.google-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.google-proof-copy {
  max-width: 720px;
}

.google-proof-copy .section-index {
  color: var(--gold);
}

.google-proof-copy h2 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.google-proof-copy h2 em {
  color: var(--gold-bright);
  font-style: italic;
}

.google-proof-copy > p:not(.section-index) {
  max-width: 520px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 18px;
}

.google-rating strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
}

.google-rating span {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.16em;
}

.google-profile-link {
  display: inline-flex;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.google-profile-link:hover {
  color: var(--gold-bright);
}

.office-map {
  padding-block: 112px;
  background: var(--ivory);
  color: var(--black);
}

.office-map-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
  margin-bottom: 42px;
}

.office-map-heading .section-index {
  margin-bottom: 20px;
  color: #8d6b12;
}

.office-map-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.office-map-heading h2 em {
  color: #9a7414;
  font-style: italic;
  font-weight: 400;
}

.office-map-heading address {
  justify-self: end;
  margin: 0;
  color: #55514a;
  font-style: normal;
  line-height: 1.7;
}

.office-map-heading address strong {
  color: var(--black);
}

.office-map-frame {
  padding: 12px;
  border: 1px solid rgba(8, 8, 8, 0.2);
  background: #0a0a0a;
  box-shadow: 0 24px 70px rgba(8, 8, 8, 0.16);
}

.office-map-frame iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

.office-map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  margin-top: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.office-map-link:hover {
  background: var(--gold-bright);
}

.capabilities {
  border-top: 1px solid var(--line);
}

.section-heading,
.work-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 72px;
}

.section-heading h2,
.system-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.heading-copy {
  max-width: 410px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-card {
  min-height: 560px;
  padding: 44px 38px;
  border-right: 1px solid var(--line);
  transition: background 240ms ease, transform 240ms ease;
}

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

.capability-card:hover {
  background: var(--black-soft);
  transform: translateY(-8px);
}

.card-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.card-number::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.capability-card h3 {
  min-height: 2.5em;
  margin: 72px 0 24px;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.capability-card h4 {
  margin: -8px 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.capability-card:has(h4) > p {
  min-height: 5.2em;
}

.capability-card > p {
  min-height: 7em;
  color: var(--muted);
}

.capability-card ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: #d7d2c7;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.work {
  background: var(--paper);
  color: var(--black);
}

.work-heading {
  display: block;
}

.work .section-index {
  color: var(--gold-deep);
}

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

.project {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

.project-featured {
  grid-column: 2 / span 10;
}

.project-exterior {
  grid-column: 3 / span 8;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 4px;
}

.project-image {
  position: relative;
  height: 590px;
  overflow: hidden;
  background: #272621;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project:hover .project-image img {
  transform: scale(1.035);
}

.project-image .project-type {
  position: absolute;
  z-index: 3;
  left: 28px;
  bottom: 20px;
  margin: 0;
  color: var(--ivory);
}

.project-content {
  padding: 34px 36px 40px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  color: #77736c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project h3 {
  max-width: 680px;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.project-content > p {
  max-width: 690px;
  color: #55514a;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 26px;
}

.tag-list span {
  padding: 8px 11px;
  border: 1px solid rgba(8, 8, 8, 0.18);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-exterior .project-image {
  align-self: center;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.project-exterior .project-image img {
  object-fit: contain;
  object-position: center;
}

.project-exterior:hover .project-image img {
  transform: none;
}

.project-exterior .project-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
}

.system {
  background: var(--black-soft);
}

.system-layout {
  display: block;
}

.process-list {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
}

.process-list h3 {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.company {
  overflow: hidden;
}

.company::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.company-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.company-mark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 560px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.06), transparent 62%);
}

.company-mark span {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7rem);
  -webkit-text-stroke: 1px var(--gold);
}

.company-mark span:last-child {
  border-right: 0;
}

.company-copy {
  max-width: 650px;
}

.company-lede {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.5;
}

.company-copy > p:not(.section-index):not(.company-lede) {
  color: var(--muted);
}

.owner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.owner-grid > div {
  padding-top: 18px;
  border-top: 1px solid var(--gold);
}

.owner-grid span,
.owner-grid strong {
  display: block;
}

.owner-grid span {
  margin-bottom: 7px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.owner-grid strong {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact {
  padding: 120px 0;
  background: var(--gold);
  color: var(--black);
}

.contact .section-index {
  color: var(--gold-deep);
}

.contact h2 em {
  color: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}

.contact-main > p:not(.section-index) {
  max-width: 630px;
  margin-bottom: 32px;
  font-size: 1.08rem;
}

.contact-details {
  border-top: 1px solid var(--line-dark);
}

.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-row > span {
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row address {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: normal;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-row a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-links {
  display: flex;
  gap: 25px;
  padding-top: 24px;
}

.contact-links a {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer {
  padding: 72px 0 34px;
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.site-footer img {
  width: min(320px, 100%);
  height: auto;
  object-fit: contain;
}

.footer-location {
  justify-self: end;
  align-self: center;
  text-align: right;
}

.footer-location span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-location p {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.16rem;
}

.footer-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
}

.footer-actions a {
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-actions a:hover {
  color: var(--gold-bright);
}

.footer-actions a span {
  color: var(--gold);
  letter-spacing: 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #77736c;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--gold-bright);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.legal-page {
  background: var(--ivory);
  color: var(--black);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--black);
  color: var(--ivory);
}

.legal-header > a:last-child {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-shell {
  width: min(calc(100% - 48px), 980px);
  margin-inline: auto;
  padding: 92px 0 120px;
}

.legal-content + .legal-content {
  margin-top: 90px;
  padding-top: 90px;
  border-top: 1px solid var(--line-dark);
}

.legal-content h1 {
  max-width: 820px;
  margin-bottom: 48px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.legal-content h2 {
  margin: 44px 0 12px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.legal-content p {
  max-width: 760px;
  color: #494640;
  font-size: 1rem;
}

.legal-content a {
  border-bottom: 1px solid var(--gold-deep);
}

.legal-updated {
  margin-top: 52px;
  color: #77726a !important;
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1120px) {
  .site-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
    gap: 40px;
  }

  .hero-visual {
    padding-right: 34px;
  }

  .project-stamp {
    width: 190px;
  }

  .intro-grid {
    grid-template-columns: 0.35fr 1.45fr;
  }

  .intro-note {
    grid-column: 2;
    max-width: 430px;
    margin-top: 0;
  }

  .capability-card {
    min-height: 520px;
    padding-inline: 26px;
  }

  .project-exterior {
    grid-column: 2 / span 10;
  }
}

@media (max-width: 900px) {
  :root {
    --header: 76px;
  }

  .container {
    width: min(calc(100% - 40px), var(--max));
  }

  .section {
    padding: 100px 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 90px 11vw;
    background: rgba(8, 8, 8, 0.98);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 300ms ease, visibility 300ms;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav > a:not(.nav-cta) {
    font-family: var(--serif);
    font-size: 2.3rem;
  }

  .nav-cta {
    margin-top: 18px;
  }

  .language-toggle {
    margin-top: -12px;
    padding: 12px 18px;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 15vw, 7.4rem);
  }

  .hero-visual {
    min-height: 0;
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }

  .hero-image-wrap {
    height: auto;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .google-proof-grid,
  .office-map-heading,
  .system-layout,
  .company-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid > .section-index {
    margin-bottom: 0;
  }

  .intro-note {
    grid-column: auto;
  }

  .office-map-heading address {
    justify-self: start;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-card:last-child {
    border-bottom: 0;
  }

  .capability-card h3,
  .capability-card > p {
    min-height: auto;
  }

  .capability-card h3 {
    margin-top: 45px;
  }

  .project-featured,
  .project-exterior {
    grid-column: 1 / -1;
  }

  .project-exterior {
    grid-template-columns: 1fr;
  }

  .project-exterior .project-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .system-intro {
    position: static;
  }

  .company-mark {
    min-height: 360px;
  }

  .contact-details {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .brand-mark {
    min-width: 158px;
    height: 44px;
    padding-inline: 12px;
    font-size: 0.8rem;
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding: 108px 0 42px;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero-kicker {
    align-items: flex-start;
    max-width: 300px;
    line-height: 1.6;
  }

  .hero-kicker span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 18vw, 5rem);
    line-height: 0.84;
    letter-spacing: -0.07em;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero-visual {
    min-height: 0;
    max-width: none;
    padding: 12px 28px 30px 12px;
  }

  .hero-image-wrap {
    min-height: 0;
    height: auto;
  }

  .project-stamp {
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 16px;
    padding: 8px 0 8px 14px;
  }

  .project-stamp strong {
    font-size: 0.95rem;
  }

  .vertical-note {
    display: none;
  }

  .service-track span {
    margin-inline: 24px;
  }

  .intro h2,
  .google-proof-copy h2,
  .work h2,
  .company h2,
  .contact h2,
  .section-heading h2,
  .system-intro h2 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .capability-card {
    padding: 36px 22px;
  }

  .project-image {
    height: 450px;
  }

  .project-exterior .project-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .project-content,
  .project-exterior .project-content {
    padding: 28px 22px 34px;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 10px;
  }

  .company-mark {
    min-height: 250px;
  }

  .owner-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 82px 0;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-links {
    flex-direction: column;
    gap: 13px;
  }

  .google-proof {
    padding-block: 76px;
  }

  .office-map {
    padding-block: 76px;
  }

  .office-map-frame {
    padding: 8px;
  }

  .office-map-frame iframe {
    height: 390px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-location {
    justify-self: start;
    text-align: left;
  }

  .footer-actions {
    justify-content: flex-start;
  }

  .footer-bottom {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal {
    flex-wrap: wrap;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-shell {
    width: min(calc(100% - 32px), 980px);
    padding-block: 64px 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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