:root {
  --forest-950: #10241e;
  --forest-900: #17342b;
  --forest-800: #21483b;
  --forest-700: #2e5a4a;
  --fir-600: #a96232;
  --fir-500: #bb7542;
  --fir-100: #ead7c5;
  --cream-50: #fcfaf5;
  --cream-100: #f5efe4;
  --cream-200: #e9dfcf;
  --ink: #202521;
  --muted: #5d655f;
  --white: #ffffff;
  --line: rgba(23, 52, 43, .17);
  --shadow: 0 26px 70px rgba(25, 34, 28, .14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shell: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--sans);
  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; }

button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--forest-950);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.utility-bar {
  color: rgba(255, 255, 255, .86);
  background: var(--forest-950);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar p { margin: 0; }
.utility-bar a { text-decoration: none; }
.utility-bar a:hover { color: var(--fir-100); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(252, 250, 245, .96);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 9px 30px rgba(20, 35, 29, .08);
}

.site-header__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .65rem;
  color: var(--forest-900);
  text-decoration: none;
}

.brand img { width: 56px; height: auto; }

.brand__wordmark { display: grid; line-height: 1; }

.brand__wordmark strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: .015em;
}

.brand__wordmark span {
  margin-top: .27rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.85rem, 1.5vw, 1.5rem);
}

.site-nav > a:not(.button) {
  position: relative;
  color: #314139;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -.5rem;
  left: 0;
  height: 2px;
  background: var(--fir-500);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  border: 0;
  color: var(--forest-900);
  background: transparent;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.35rem;
  border: 1px solid var(--fir-600);
  border-radius: 2px;
  color: var(--white);
  background: var(--fir-600);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
  border-color: var(--forest-900);
  background: var(--forest-900);
  transform: translateY(-1px);
}

.button--small { min-height: 42px; padding: .65rem 1rem; font-size: .73rem; }

.button--cream {
  border-color: var(--cream-100);
  color: var(--forest-950);
  background: var(--cream-100);
}

.button--cream:hover {
  border-color: var(--white);
  color: var(--forest-950);
  background: var(--white);
}

.button--outline {
  border-color: var(--forest-900);
  color: var(--forest-900);
  background: transparent;
}

.button--outline:hover { color: var(--white); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--forest-900);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span { color: var(--fir-600); font-size: 1.2em; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--fir-600);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light { color: #e6c7aa; }

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

h1, h2, h3 {
  color: var(--forest-950);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

h1 { margin-bottom: 1.4rem; font-size: clamp(3rem, 5.4vw, 5.65rem); letter-spacing: -.045em; }
h2 { margin-bottom: 1.2rem; font-size: clamp(2.25rem, 4vw, 4rem); letter-spacing: -.035em; }
h3 { margin-bottom: .75rem; font-size: 1.6rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(5rem, 9vw, 8rem);
  background:
    linear-gradient(90deg, rgba(23, 52, 43, .055) 1px, transparent 1px) 0 0 / 90px 90px,
    linear-gradient(rgba(23, 52, 43, .055) 1px, transparent 1px) 0 0 / 90px 90px,
    var(--cream-100);
}

.hero::before {
  position: absolute;
  top: -170px;
  left: -140px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(169, 98, 50, .2);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(3.5rem, 7vw, 7rem);
}

.hero__copy { position: relative; z-index: 2; }

.hero__lede {
  max-width: 650px;
  margin-bottom: 2.1rem;
  color: #4a554e;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.3rem; }

.hero__media {
  position: relative;
  min-height: 570px;
}

.hero__image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 92%;
  height: 78%;
  margin: 0;
  box-shadow: var(--shadow);
}

.hero__image-main::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .72);
  content: "";
  pointer-events: none;
}

.hero__image-main img,
.hero__image-inset img { width: 100%; height: 100%; object-fit: cover; }

.hero__image-inset {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 34%;
  height: 48%;
  margin: 0;
  border: 10px solid var(--cream-100);
  box-shadow: 0 20px 48px rgba(25, 34, 28, .18);
}

.hero__note {
  position: absolute;
  right: 0;
  bottom: 1.3rem;
  width: 58%;
  margin: 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--fir-500);
  color: #59635d;
  font-size: .86rem;
  line-height: 1.55;
}

.hero__note span {
  display: block;
  margin-bottom: .15rem;
  color: var(--forest-900);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.proof-bar { color: var(--white); background: var(--forest-900); }

.proof-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-bar p {
  display: grid;
  margin: 0;
  padding: 1.8rem clamp(1rem, 2vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.proof-bar p:last-child { border-right: 1px solid rgba(255, 255, 255, .14); }

.proof-bar strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.proof-bar span { color: rgba(255, 255, 255, .65); font-size: .74rem; }

.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }

.section-heading { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr);
  gap: 3rem;
  align-items: center;
}

.section-heading--split h2 { max-width: 750px; margin-bottom: 0; }
.section-heading--split > p { max-width: 460px; margin-bottom: 0; color: var(--muted); }
.section-heading--align-end { align-items: end; }
.section-heading--align-end > .text-link { justify-self: end; margin-bottom: .35rem; }
.section-heading--center { max-width: 730px; margin-inline: auto; text-align: center; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.service-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(25, 34, 28, .055);
}

.service-card--raised { margin-top: 2.5rem; }

.service-card__image {
  display: block;
  height: 360px;
  overflow: hidden;
  background: var(--cream-200);
}

.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card--storm .service-card__image img { object-fit: contain; }
.service-card__image:hover img { transform: scale(1.025); }

.service-card__body { position: relative; min-height: 290px; padding: 2rem; }

.service-card__number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--fir-500);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-card h3 { padding-right: 2.6rem; font-size: 2rem; }
.service-card__body > p:not(.service-card__number) { color: var(--muted); }
.service-card .text-link { margin-top: .5rem; }

.craft-panel {
  color: rgba(255, 255, 255, .77);
  background:
    radial-gradient(circle at 85% 15%, rgba(187, 117, 66, .16), transparent 28%),
    var(--forest-950);
}

.craft-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(500px, 1.15fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
}

.craft-panel h2, .craft-panel h3 { color: var(--white); }
.craft-panel__copy > p:not(.eyebrow) { max-width: 530px; margin-bottom: 2rem; }

.capability-list { border-top: 1px solid rgba(255, 255, 255, .17); }

.capability-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.capability-list article > span { color: #d7ac86; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.capability-list h3 { margin-bottom: .3rem; font-family: var(--sans); font-size: 1rem; font-weight: 800; letter-spacing: .035em; }
.capability-list p { margin: 0; color: rgba(255, 255, 255, .6); font-size: .9rem; }

.selected-work { background: var(--cream-100); }

.architecture-feature {
  display: grid;
  min-height: 535px;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr);
  margin-bottom: 1rem;
  background: var(--forest-900);
}

.architecture-feature__image { min-height: 535px; overflow: hidden; }

.architecture-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.architecture-feature__copy {
  display: flex;
  padding: clamp(2.25rem, 4vw, 4.25rem);
  flex-direction: column;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
}

.architecture-feature__copy h3 {
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.architecture-feature__copy p:last-child { margin-bottom: 0; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 1rem;
}

.project-card {
  position: relative;
  grid-column: span 4;
  height: 330px;
  margin: 0;
  overflow: hidden;
  background: var(--cream-200);
}

.project-card--wide { grid-column: span 8; }
.project-card--tall { height: 676px; grid-row: span 2; }

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 25, 19, .78), transparent 48%);
  content: "";
}

.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.project-card:hover img { transform: scale(1.025); }

.project-card figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.25rem;
  left: 1.5rem;
  z-index: 1;
  display: grid;
  color: var(--white);
}

.project-card figcaption strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.project-card figcaption span { color: rgba(255, 255, 255, .7); font-size: .74rem; }

.testimonials { background: var(--cream-50); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.testimonial-grid figure {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 2.3rem;
  border-top: 3px solid var(--fir-500);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(25, 34, 28, .055);
}

.testimonial-grid blockquote {
  margin: 0 0 2.5rem;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.5;
}

.testimonial-grid figcaption { display: grid; }
.testimonial-grid figcaption strong { color: var(--forest-900); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.testimonial-grid figcaption span { color: var(--muted); font-size: .78rem; }

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

.process__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(480px, 1.2fr);
  gap: clamp(4rem, 8vw, 8rem);
}

.process__intro > p:not(.eyebrow) { max-width: 480px; color: var(--muted); }
.process__intro .button { margin-top: .8rem; }

.process__steps { margin: 0; padding: 0; list-style: none; }

.process__steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1.2rem;
  padding: 0 0 2rem;
}

.process__steps li:not(:last-child) { margin-bottom: 2rem; border-bottom: 1px solid var(--line); }

.process__steps li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--fir-500);
  border-radius: 50%;
  color: var(--fir-600);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.process__steps h3 { margin-bottom: .4rem; font-family: var(--sans); font-size: 1.05rem; font-weight: 800; }
.process__steps p { margin: 0; color: var(--muted); font-size: .94rem; }

.cta-band { padding: clamp(3.5rem, 6vw, 5rem) 0; color: var(--white); background: var(--forest-800); }

.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.cta-band h2 { margin: 0; color: var(--white); font-size: clamp(2rem, 3.5vw, 3.5rem); }
.cta-band__actions { display: flex; flex: 0 0 auto; flex-direction: column; align-items: center; gap: .8rem; }
.cta-band__phone { color: rgba(255, 255, 255, .8); font-size: .82rem; font-weight: 700; text-decoration: none; }
.cta-band__phone:hover { color: var(--white); }

.site-footer { padding: 4.5rem 0 1.5rem; color: rgba(255, 255, 255, .65); background: var(--forest-950); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr .65fr .65fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.brand--footer { color: var(--white); }
.brand--footer img { filter: brightness(1.08); }
.site-footer__brand > p { max-width: 330px; margin: 1.2rem 0 0; font-size: .88rem; }

.site-footer h2 {
  margin: .35rem 0 1rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer nav, .site-footer address { display: grid; gap: .6rem; font-style: normal; }
.site-footer a { font-size: .85rem; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.site-footer address a:first-child { margin-bottom: .3rem; }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .4);
  font-size: .72rem;
}

.site-footer__bottom p { margin: 0; }

@media (max-width: 1180px) {
  .site-header__inner { min-height: 76px; }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .6rem 0;
    cursor: pointer;
  }

  .menu-toggle__label { font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .menu-toggle__icon { display: grid; width: 24px; gap: 5px; }
  .menu-toggle__icon i { display: block; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    top: 110px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 2rem max(20px, calc((100vw - var(--shell)) / 2));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--cream-50);
  }

  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.button) { padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { margin-top: 1.4rem; }
}

@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 800px; }
  .hero__media { width: min(100%, 760px); min-height: 610px; margin-inline: auto; }
  .proof-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-bar p:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, .14); }
  .proof-bar p:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, .14); }
  .service-card__image { height: 300px; }
  .service-card__body { min-height: 330px; }
  .craft-panel__grid { grid-template-columns: 1fr; }
  .craft-panel__copy { max-width: 700px; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .utility-bar__inner { justify-content: center; }
  .utility-bar p { display: none; }
  .utility-bar a { padding: .35rem 0; }
  .site-header__inner { min-height: 72px; }
  .site-nav { top: 106px; }
  .brand img { width: 46px; }
  .brand__wordmark strong { font-size: 1.15rem; }
  .brand__wordmark span { font-size: .54rem; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.25rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.25rem); }
  .hero { padding-top: 3.5rem; }
  .hero__grid { gap: 3rem; }
  .hero__media { min-height: 460px; }
  .hero__image-main { width: 96%; height: 73%; }
  .hero__image-inset { width: 40%; height: 45%; border-width: 7px; }
  .hero__note { width: 54%; bottom: .25rem; padding-left: 1rem; font-size: .76rem; }
  .proof-bar__grid { grid-template-columns: 1fr 1fr; }
  .proof-bar p { padding: 1.3rem .85rem; }
  .proof-bar strong { font-size: 1rem; }
  .proof-bar span { font-size: .67rem; }
  .section-heading--split { grid-template-columns: 1fr; gap: 1.25rem; }
  .section-heading--align-end > .text-link { justify-self: start; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card--raised { margin-top: 0; }
  .service-card__image { height: 390px; }
  .service-card__body { min-height: auto; }
  .architecture-feature { min-height: 0; grid-template-columns: 1fr; }
  .architecture-feature__image { min-height: 0; aspect-ratio: 4 / 3; }
  .project-card, .project-card--wide { grid-column: span 12; height: 350px; }
  .project-card--tall { height: 480px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid figure { min-height: 260px; }
  .process__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .cta-band__actions { align-items: flex-start; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 470px) {
  .button-row { align-items: flex-start; flex-direction: column; }
  .hero__media { min-height: 390px; }
  .hero__image-main { height: 68%; }
  .hero__image-inset { width: 43%; height: 45%; }
  .hero__note { width: 52%; bottom: 0; line-height: 1.4; }
  .service-card__image { height: 330px; }
  .project-card, .project-card--wide { height: 310px; }
  .project-card--tall { height: 420px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; gap: .35rem; }
}

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