@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/oswald-latin.woff2") format("woff2");
}

:root {
  --paper: #f2f0ea;
  --paper-deep: #e5e1d8;
  --ink: #1e201e;
  --muted: #676963;
  --line: #a9aaa4;
  --accent: #b54d35;
  --white: #faf9f5;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --page-pad: clamp(1.25rem, 5vw, 5.5rem);
  --section-space: clamp(3.75rem, 7vw, 6.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, figure { margin: 0; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .75rem 1rem;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5rem;
  padding-inline: var(--page-pad);
  border-bottom: 1px solid var(--ink);
}

.brand {
  width: max-content;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.brand span { color: var(--accent); }

nav { display: flex; gap: clamp(1.25rem, 3vw, 2.5rem); }
nav a, .header-contact, .kicker, .city-list, .site-footer {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
nav a { padding-block: .75rem; }
nav a, .text-link { text-decoration-color: transparent; text-underline-offset: .35rem; transition: text-decoration-color .2s ease; }
nav a:hover, .text-link:hover { text-decoration: underline; text-decoration-color: currentColor; }

.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-height: 2.75rem;
  padding: .75rem 1rem;
  border: 1px solid var(--ink);
  transition: background .2s ease, color .2s ease;
}
.header-contact:hover { background: var(--ink); color: var(--paper); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(24rem, .97fr);
  height: calc(100svh - 5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}
.hero-copy {
  align-self: center;
  padding: clamp(3.75rem, 7vw, 6.5rem) var(--page-pad);
}
.eyebrow {
  margin-bottom: clamp(1.75rem, 4vw, 3.5rem);
  color: var(--muted);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow svg {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

h1, h2, h3 { font-family: var(--display); font-weight: 500; text-transform: uppercase; }
h1 {
  max-width: 8ch;
  font-size: clamp(4.6rem, 9.2vw, 9.2rem);
  letter-spacing: .015em;
  line-height: .88;
}
h1 em { color: var(--accent); font-style: normal; }
.hero-intro {
  max-width: 35rem;
  margin-top: 2.5rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}
.hero-actions { display: flex; align-items: center; gap: 1.75rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 3.25rem;
  padding: .85rem 1.1rem;
  border: 1px solid var(--ink);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.button-dark { background: var(--ink); color: var(--paper); }
.button-dark:hover { border-color: var(--accent); background: var(--accent); }
.text-link { font-size: .75rem; font-weight: 500; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  height: auto;
  min-width: 0;
  min-height: 0;
  padding: 1rem 0;
  overflow: hidden;
  background: var(--paper-deep);
  border-left: 1px solid var(--ink);
}
.hero-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(82%, 80svh, 42rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(30, 32, 30, .2);
  border-radius: 50%;
  content: "";
}
.hero-visual picture {
  position: relative;
  z-index: 2;
  display: contents;
}
.hero-visual img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(126%, 66rem);
  height: calc(100% - 2rem);
  max-width: none;
  max-height: none;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
  filter: contrast(1.03);
}

.section-dark { background: var(--ink); color: var(--paper); }
.services, .approach, .area, .contact { padding: var(--section-space) var(--page-pad); scroll-margin-top: 2rem; }
.section-heading, .approach-intro {
  display: block;
}
.section-heading > div, .approach-intro > div {
  width: min(100%, 55rem);
  margin-inline: auto;
  text-align: left;
}
.section-dark .kicker { color: #dd7c64; }
.kicker { margin-bottom: 1.25rem; color: var(--accent); }
h2 { max-width: 15ch; font-size: clamp(3.2rem, 7vw, 7rem); letter-spacing: .01em; line-height: 1.04; }
.services h2 { line-height: 1.12; }

.service-list { margin-top: clamp(3rem, 5vw, 5rem); border-top: 1px solid #5a5b57; }
.service-item {
  display: grid;
  grid-template-columns: 4rem minmax(12rem, .7fr) minmax(16rem, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: start;
  padding: 1.7rem 0;
  border-bottom: 1px solid #5a5b57;
}
.service-number { color: #a9aaa4; font-size: .7rem; letter-spacing: .1em; }
.service-item h3 { font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 400; line-height: 1; }
.service-item > p:last-child { max-width: 32rem; color: #c6c5be; }

.approach-intro > div > p:last-child { max-width: 55rem; margin: 2rem auto 0; font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: clamp(3rem, 5vw, 5rem) 0 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}
.steps li { min-height: 18rem; padding: 1.75rem; background: var(--paper); }
.steps li > span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: .85;
}
.steps li div { margin-top: 1.5rem; }
.steps h3 { margin-bottom: .75rem; font-size: 2rem; }
.steps p { max-width: 18rem; color: var(--muted); }

.area {
  display: grid;
  grid-template-columns: minmax(20rem, .9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: center;
  background: var(--paper-deep);
  border-block: 1px solid var(--ink);
}
.area-map { position: relative; display: grid; place-items: center; aspect-ratio: 1; }
.area-ring { position: absolute; inset: 8%; border: 1px solid var(--ink); border-radius: 50%; }
.area-ring::before, .area-ring::after { position: absolute; background: var(--ink); content: ""; }
.area-ring::before { top: 50%; left: -8%; width: 116%; height: 1px; }
.area-ring::after { top: -8%; left: 50%; width: 1px; height: 116%; }
.area-map strong { position: relative; z-index: 1; padding: 0 1rem; background: var(--paper-deep); color: var(--accent); font-family: var(--display); font-size: clamp(8rem, 20vw, 18rem); font-weight: 500; line-height: 1; }
.area-map small { position: absolute; bottom: 3%; z-index: 2; padding: .35rem .75rem; background: var(--ink); color: var(--paper); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.area-copy > p:not(.kicker) { max-width: 39rem; margin-top: 2rem; }
.area .kicker { color: #913923; }
.city-list { display: flex; flex-wrap: wrap; gap: .55rem; margin: 2.5rem 0 0; padding: 0; list-style: none; }
.city-list li { padding: .6rem .8rem; border: 1px solid var(--line); }

.contact {
  display: block;
  background: var(--accent);
  color: var(--white);
}
.contact .kicker { color: var(--white); }
.contact h2 { font-size: clamp(4rem, 9vw, 9rem); }
.contact-main > p:not(.kicker) { max-width: 36rem; margin-top: 1.5rem; }
.contact-email {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: min(100%, 39rem);
  margin-top: 3rem;
  padding: 1rem 0;
  border-block: 1px solid currentColor;
  font-size: clamp(1rem, 2vw, 1.35rem);
  overflow-wrap: anywhere;
}
.architect-card { align-self: end; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .6); }
.architect-card { display: flex; gap: 1rem; }
.architect-monogram { display: grid; place-items: center; flex: 0 0 3.2rem; height: 3.2rem; border: 1px solid currentColor; border-radius: 50%; font-family: var(--display); font-size: 1.25rem; }
.architect-card p { margin-bottom: .25rem; font-size: .78rem; }
.architect-card .architect-name { margin-bottom: .65rem; font-size: 1rem; font-weight: 600; text-transform: uppercase; }

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(16rem, 1fr) auto;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 8rem;
  padding: 2rem var(--page-pad);
  background: var(--ink);
  color: var(--paper);
}
.site-footer .architect-card { justify-self: center; width: min(100%, 24rem); padding-top: 0; border-top: 0; }
.footer-meta { justify-self: end; text-align: right; }
.footer-meta p + p { margin-top: .5rem; }
.brand-light { font-size: 1rem; }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr .85fr; }
  .hero-copy { padding-block: 4.5rem; }
  h1 { font-size: clamp(4.4rem, 10.5vw, 7rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { padding-inline: 0; }
  .service-item { grid-template-columns: 3rem minmax(10rem, .65fr) 1fr; }
  .steps li { min-height: 16rem; padding: 1.35rem; }
  .steps li > span { font-size: 5rem; }
  .steps li div { margin-top: 1.25rem; }
  .area { grid-template-columns: minmax(16rem, .75fr) 1.25fr; }
  .site-footer { grid-template-columns: auto 1fr; }
  .site-footer .architect-card { grid-column: 1 / -1; grid-row: 2; justify-self: start; }
}

@media (min-width: 681px) and (max-height: 760px) {
  .site-header { min-height: 4.5rem; }
  .hero { height: calc(100svh - 4.5rem); }
  .hero-copy { padding-block: clamp(1.5rem, 4svh, 2.5rem); }
  .eyebrow { margin-bottom: clamp(1rem, 2.5svh, 1.5rem); }
  h1 { font-size: clamp(4rem, 11.5svh, 6.75rem); }
  .hero-intro { margin-top: clamp(1rem, 2.5svh, 1.5rem); font-size: 1rem; }
  .hero-actions { margin-top: clamp(1rem, 2.5svh, 1.5rem); }
}

@media (max-width: 680px) {
  :root { --page-pad: 1.25rem; --section-space: 3.75rem; }
  .site-header { min-height: 4.25rem; }
  .brand { font-size: 1rem; }
  .header-contact { min-height: 2.5rem; padding: .6rem .75rem; font-size: .62rem; }
  .hero { display: flex; flex-direction: column; height: auto; }
  .hero-copy { padding-block: 3.75rem 3rem; }
  .eyebrow { gap: .7rem; margin-bottom: 2.25rem; font-size: .62rem; letter-spacing: .08em; }
  .eyebrow svg { width: 1.1rem; height: 1.1rem; }
  h1 { font-size: clamp(4rem, 20vw, 6.2rem); }
  .hero-intro { margin-top: 1.75rem; }
  .hero-actions { margin-top: 1.75rem; }
  .hero-visual { height: 27rem; min-height: 27rem; padding: 1rem 0; border-top: 1px solid var(--ink); border-left: 0; }
  .hero-visual img { width: min(118%, 44rem); }
  h2 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .service-list { margin-top: 3rem; }
  .service-item { grid-template-columns: 2.2rem 1fr; gap: .75rem; padding: 1.5rem 0; }
  .service-item > p:last-child { grid-column: 2; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 0; }
  .steps li > span { font-size: 4.5rem; }
  .steps li div { margin-top: 1rem; }
  .steps p { max-width: 24rem; }
  .area { display: flex; flex-direction: column; align-items: stretch; gap: 4rem; }
  .area-map { width: min(100%, 26rem); align-self: center; }
  .area-map strong { font-size: clamp(8rem, 40vw, 12rem); }
  .contact h2 { font-size: clamp(4.5rem, 23vw, 7rem); }
  .contact-email { gap: 1rem; }
  .site-footer { display: block; min-height: 0; }
  .site-footer .architect-card { margin-top: 2rem; }
  .footer-meta { margin-top: 2rem; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
