:root {
  --ink: #080808;
  --paper: #f3efe5;
  --white: #ffffff;
  --gold: #c8942f;
  --concrete: #c9c8c2;
  --muted: #5a5852;
  --line: 2px solid var(--ink);
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

button,
a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border: 2px solid var(--white);
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-80px);
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.utility-bar {
  min-height: 44px;
  padding: 0 3vw;
  border-bottom: var(--line);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-bar p {
  margin: 0;
}

.utility-bar p span {
  padding: 0 10px;
  font-size: 0.55rem;
}

.utility-bar a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 96px;
  padding: 10px 3vw;
  border-bottom: 2px solid var(--white);
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(230px, 330px) 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.brand img {
  width: min(100%, 310px);
  height: 70px;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: stretch;
  gap: 6px;
}

.site-nav a {
  min-width: 82px;
  min-height: 48px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.site-nav .nav-call {
  margin-left: 8px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.site-nav .nav-call:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.menu-button {
  display: none;
  min-width: 92px;
  min-height: 48px;
  border: 2px solid var(--white);
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-mark {
  margin-left: 10px;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 110px) 4vw clamp(72px, 8vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(46px, 7vw, 110px);
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  min-width: 36px;
  min-height: 36px;
  border: 2px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eyebrow-light {
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.project-heading h2,
.contact-copy h2,
.about-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(4rem, 7.4vw, 7.3rem);
}

.hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-lede {
  max-width: 660px;
  margin: 34px 0 0;
  font-size: clamp(1.02rem, 1.4vw, 1.3rem);
}

.button-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 13px 22px;
  border: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 7px 7px 0 var(--gold);
}

.button-dark:hover {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--gold);
}

.hero-image {
  position: relative;
  margin: 0 12px 12px 0;
  border: 3px solid var(--ink);
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--gold);
}

.hero-image img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
}

.hero-image figcaption {
  position: absolute;
  right: -3px;
  bottom: -3px;
  min-width: 190px;
  padding: 15px 18px;
  border: 3px solid var(--ink);
  background: var(--white);
  display: grid;
  text-align: right;
  text-transform: uppercase;
}

.hero-image figcaption strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.hero-image figcaption span {
  margin-top: 4px;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.proof-strip {
  border-top: var(--line);
  border-bottom: var(--line);
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip p {
  min-height: 82px;
  margin: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.1vw, 1.8rem);
  font-style: italic;
  text-align: center;
}

.proof-strip p:last-child {
  border-right: 0;
}

.about-section {
  position: relative;
  padding: clamp(70px, 9vw, 140px) max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 0.1fr minmax(0, 1.15fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  overflow: hidden;
}

.section-number {
  align-self: start;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.8;
}

.about-copy h2 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(3rem, 5.5vw, 6rem);
}

.about-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: #deddd7;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.text-link {
  min-height: 48px;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 900;
  text-underline-offset: 5px;
}

.about-image {
  margin: 0 10px 10px 0;
  border: 3px solid var(--white);
  box-shadow: 10px 10px 0 var(--gold);
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.services-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 140px) 4vw;
}

.section-heading,
.project-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 40px;
}

.section-heading h2,
.project-heading h2 {
  font-size: clamp(3.7rem, 7vw, 7.2rem);
}

.section-heading > p,
.project-heading > p {
  margin: 0 0 10px;
  padding: 18px 0 18px 22px;
  border-left: 5px solid var(--gold);
  font-weight: 700;
}

.service-layout {
  margin-top: clamp(50px, 7vw, 95px);
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  gap: 38px;
}

.service-image {
  position: relative;
  min-height: 590px;
  margin: 0 9px 9px 0;
  border: 3px solid var(--ink);
  background: var(--ink);
  box-shadow: 9px 9px 0 var(--gold);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

.service-image figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 14px 18px;
  border-top: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
  background: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-list {
  margin: 0;
  padding: 0;
  border-top: var(--line);
  list-style: none;
}

.service-list li {
  min-height: 98px;
  padding: 16px 0;
  border-bottom: var(--line);
  display: grid;
  grid-template-columns: 52px minmax(170px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 18px;
}

.service-list li > span {
  width: 44px;
  height: 44px;
  border: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 900;
}

.service-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 400;
}

.service-list small {
  color: var(--muted);
  font-size: 0.95rem;
}

.finishes {
  margin-top: 50px;
  border: var(--line);
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(200px, 0.35fr) minmax(0, 1.65fr);
}

.finishes h3 {
  margin: 0;
  padding: 24px;
  border-right: var(--line);
  background: var(--gold);
  display: flex;
  align-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
}

.finishes ul {
  margin: 0;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  list-style: none;
}

.finishes li {
  min-height: 48px;
  padding: 10px;
  border: var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.projects-section {
  padding: clamp(72px, 9vw, 140px) max(3vw, calc((100vw - 1540px) / 2));
  background: var(--ink);
  color: var(--white);
}

.project-heading {
  padding: 0 2vw;
}

.project-heading h2 {
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 6.5rem);
}

.project-heading > p {
  color: #d7d6d0;
}

.project-grid {
  margin-top: clamp(50px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.project-grid figure {
  min-width: 0;
  margin: 0;
  border: 2px solid var(--white);
  background: var(--white);
  color: var(--ink);
}

.project-grid figure:nth-child(7n + 1),
.project-grid figure:nth-child(7n + 4) {
  grid-column: span 2;
}

.project-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.project-grid figcaption {
  min-height: 48px;
  padding: 10px 13px;
  border-top: var(--line);
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-section {
  padding: clamp(70px, 9vw, 135px) max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  border-bottom: var(--line);
  background: var(--gold);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(50px, 8vw, 130px);
}

.contact-copy h2 {
  font-size: clamp(3.8rem, 7vw, 7rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
}

.contact-copy .button-dark {
  box-shadow: 7px 7px 0 var(--white);
}

.contact-details {
  margin: 0;
  border-top: var(--line);
}

.contact-details > div {
  min-height: 92px;
  padding: 16px 0;
  border-bottom: var(--line);
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.contact-details dt {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details dd {
  min-width: 0;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.contact-details a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.social-row dd {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.map-section {
  border-bottom: 2px solid var(--white);
  background: var(--ink);
}

.map-label {
  min-height: 68px;
  padding: 10px 4vw;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-label a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--gold);
}

.map-section iframe {
  width: 100%;
  height: 470px;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.05);
}

.site-footer {
  padding: 50px 4vw;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(240px, 460px) 1fr;
  align-items: center;
  gap: 50px;
}

.site-footer img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
}

.site-footer > div {
  justify-self: end;
  text-align: right;
}

.site-footer p {
  margin: 6px 0;
}

.site-footer p:last-child {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(190px, 260px) 1fr;
  }

  .site-nav a {
    min-width: auto;
    padding-inline: 9px;
  }

  .site-nav .nav-call {
    margin-left: 0;
  }

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

  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5rem);
  }

  .about-section {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  }

  .section-number {
    display: none;
  }

  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-grid figure:nth-child(7n + 1),
  .project-grid figure:nth-child(7n + 4) {
    grid-column: span 1;
  }

  .project-grid figure:nth-child(5n + 1) {
    grid-column: span 2;
  }
}

@media (max-width: 840px) {
  .utility-bar {
    padding-inline: 18px;
  }

  .utility-bar p span,
  .utility-bar p {
    display: none;
  }

  .utility-bar {
    justify-content: center;
  }

  .site-header {
    position: relative;
    min-height: 88px;
    padding: 8px 18px;
    grid-template-columns: minmax(160px, 240px) auto;
    gap: 20px;
  }

  .brand {
    min-height: 60px;
  }

  .brand img {
    height: 60px;
  }

  .menu-button {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 18px 18px;
    border-bottom: 3px solid var(--gold);
    background: var(--ink);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    min-height: 50px;
    border: 2px solid #5b5b5b;
    justify-content: flex-start;
  }

  .site-nav .nav-call {
    margin: 4px 0 0;
  }

  .hero {
    padding-inline: 24px;
    grid-template-columns: 1fr;
  }

  .hero-image {
    width: min(100%, 650px);
  }

  .hero-image img {
    min-height: 310px;
  }

  .about-section {
    padding-inline: 24px;
    grid-template-columns: 1fr;
  }

  .about-image {
    width: min(100%, 520px);
  }

  .section-heading,
  .project-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p,
  .project-heading > p {
    max-width: 680px;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-image {
    min-height: 470px;
  }

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

  .finishes h3 {
    border-right: 0;
    border-bottom: var(--line);
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid figure:nth-child(5n + 1) {
    grid-column: span 1;
  }

  .project-grid figure:nth-child(4n + 1) {
    grid-column: span 2;
  }

  .contact-section {
    padding-inline: 24px;
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer img {
    max-width: 520px;
  }

  .site-footer > div {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.3rem);
  }

  .hero-lede {
    margin-top: 26px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-image img {
    min-height: 240px;
  }

  .hero-image figcaption {
    min-width: 165px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip p:nth-child(2) {
    border-right: 0;
  }

  .proof-strip p:nth-child(-n + 2) {
    border-bottom: var(--line);
  }

  .about-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .section-heading h2,
  .project-heading h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .service-list li {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
  }

  .service-list small {
    grid-column: 2;
  }

  .finishes ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid img {
    height: 190px;
  }

  .contact-details > div {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
  }

  .map-label {
    padding-inline: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .map-section iframe {
    height: 390px;
  }

  .site-footer {
    padding-inline: 24px;
  }
}

@media (max-width: 350px) {
  .site-header {
    padding-inline: 12px;
    grid-template-columns: minmax(140px, 1fr) auto;
    gap: 8px;
  }

  .menu-button {
    min-width: 80px;
    padding-inline: 8px;
  }

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

  .hero,
  .about-section,
  .contact-section {
    padding-inline: 18px;
  }

  .services-section {
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-image img {
    min-height: 210px;
  }

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

  .proof-strip p {
    border-right: 0;
    border-bottom: var(--line);
  }

  .proof-strip p:last-child {
    border-bottom: 0;
  }

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

  .project-grid figure:nth-child(4n + 1) {
    grid-column: span 1;
  }

  .project-grid img {
    height: 210px;
  }

  .contact-details > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .social-row dd {
    display: grid;
  }
}

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

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