:root {
  --color-black: #050505;
  --color-ink: #171717;
  --color-muted: #737373;
  --color-paper: #f3f3f1;
  --color-white: #ffffff;
  --color-gold: #bfa277;
  --color-gold-dark: #8e724f;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 116px;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-header {
  align-items: center;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  min-height: 96px;
  padding: 18px clamp(22px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 16px;
  min-width: 250px;
}

.brand-mark {
  color: var(--color-white);
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.3rem);
  font-weight: 700;
  line-height: 0.78;
  min-width: 105px;
}

.brand-copy {
  display: grid;
  gap: 6px;
}

.brand-name {
  font-size: clamp(1.15rem, 2.4vw, 1.9rem);
  font-weight: 800;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 48px);
  justify-content: flex-end;
  font-size: 0.98rem;
  font-weight: 800;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding: 10px 0;
}

.site-nav a:focus-visible,
.site-nav a:hover {
  border-color: var(--color-gold);
  outline: none;
}

.hero {
  background: var(--color-paper);
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  min-height: 620px;
  overflow: hidden;
}

.hero-copy {
  align-content: center;
  display: grid;
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 88px);
  position: relative;
  z-index: 2;
}

.kicker {
  color: var(--color-gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4.1rem, 9vw, 7.6rem);
  line-height: 0.9;
  margin: 0;
}

.hero-subtitle {
  color: var(--color-gold);
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  font-weight: 800;
  margin: 22px 0 74px;
}

.hero-lines {
  display: grid;
  gap: 14px;
  font-size: clamp(1.2rem, 2.3vw, 1.7rem);
  font-weight: 800;
}

.hero-lines p {
  margin: 0;
}

.hero-visual {
  background: var(--color-black);
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.hero-visual::before {
  background: var(--color-paper);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  content: "";
  inset: 0 auto 0 0;
  pointer-events: none;
  position: absolute;
  width: 19%;
  z-index: 2;
}

.hero-visual::after {
  background: linear-gradient(125deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.36));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-image {
  display: block;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.services-section,
.contact-section {
  background: var(--color-black);
  color: var(--color-white);
}

.services-section {
  padding: 76px clamp(22px, 6vw, 72px) 94px;
  text-align: center;
}

.section-kicker {
  color: var(--color-gold);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.services-section h2,
.work-section h2,
.contact-section h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.services-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 56px auto 0;
  max-width: var(--max-width);
}

.services-grid article {
  border-top: 1px solid rgba(191, 162, 119, 0.55);
  min-height: 250px;
  padding: 24px 18px 0;
  text-align: left;
}

.services-grid h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  margin: 0 0 22px;
}

.services-grid ul,
.reasons-card ul {
  color: rgba(255, 255, 255, 0.76);
  display: grid;
  gap: 10px;
  line-height: 1.45;
  margin: 0;
  padding-left: 18px;
}

.work-section {
  background: var(--color-paper);
  padding: 88px clamp(22px, 6vw, 72px) 104px;
  text-align: center;
}

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

.work-lede {
  color: var(--color-muted);
  line-height: 1.65;
  margin: 24px auto 0;
  max-width: 680px;
}

.work-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 58px auto 0;
  max-width: var(--max-width);
}

.work-item {
  background: var(--color-white);
  border: 1px solid rgba(5, 5, 5, 0.09);
  box-shadow: 0 18px 48px rgba(5, 5, 5, 0.07);
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  text-align: left;
}

.project-media {
  aspect-ratio: 4 / 3;
  background: #ddd9d2;
  overflow: hidden;
}

.project-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
  width: 100%;
}

.work-item:hover .project-media img {
  transform: scale(1.025);
}

.project-media-contain img {
  object-fit: contain;
  padding: 14px;
}

.project-media-portrait img {
  object-position: center 20%;
}

.work-copy {
  padding: 20px 22px 24px;
}

.work-item h3 {
  color: #2a2a2a;
  font-size: 1.12rem;
  margin: 0;
}

.work-item p {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 9px 0 0;
}

.contact-section {
  min-height: 470px;
  padding: 42px clamp(22px, 6vw, 72px) 72px;
  text-align: center;
}

.contact-cta {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 auto;
  max-width: 980px;
}

.contact-content {
  display: grid;
  gap: 26px;
  margin: 92px auto 0;
  max-width: 620px;
}

.contact-content > p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  margin: 0;
}

.contact-list {
  display: flex;
  gap: 44px;
  justify-content: center;
}

.contact-icon {
  align-items: center;
  background: var(--color-gold);
  border-radius: 50%;
  color: var(--color-black);
  display: inline-grid;
  font-size: 2rem;
  font-weight: 900;
  height: 58px;
  justify-items: center;
  line-height: 1;
  width: 58px;
}

.contact-icon:focus-visible,
.contact-icon:hover {
  background: var(--color-white);
  outline: none;
}

.contact-icon-wide {
  font-size: 1.25rem;
}

.contact-details {
  display: grid;
  font-size: 0.92rem;
  gap: 10px;
  line-height: 1.35;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.76);
}

.contact-details a:focus-visible,
.contact-details a:hover {
  color: var(--color-gold);
  outline: none;
}

.about-section,
.quality-section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 96px clamp(22px, 6vw, 72px);
}

.about-section {
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.section-intro h2,
.quality-section h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.03;
  margin: 0;
}

.about-copy {
  display: grid;
  gap: 18px;
  line-height: 1.7;
}

.about-copy p,
.quality-copy p {
  margin: 0;
}

.purpose-grid {
  display: grid;
  gap: 22px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.purpose-grid article,
.reasons-card {
  background: var(--color-paper);
  border-top: 4px solid var(--color-gold);
  padding: 28px;
}

.purpose-grid article p:last-child {
  line-height: 1.6;
  margin: 0;
}

.card-kicker {
  color: var(--color-gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.quality-section {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
}

.quality-copy {
  display: grid;
  gap: 24px;
  line-height: 1.7;
}

.reasons-card h3 {
  margin: 0 0 20px;
}

.reasons-card ul {
  color: var(--color-ink);
}

.site-footer {
  background: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  padding: 20px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
  }

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

  .hero-copy {
    min-height: 470px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-image {
    min-height: 520px;
  }

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

  .about-section,
  .quality-section {
    grid-template-columns: 1fr;
  }

  .contact-content {
    margin-top: 130px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: auto;
    padding: 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    min-width: 72px;
  }

  .site-nav {
    gap: 8px 20px;
    font-size: 0.84rem;
  }

  .hero-copy {
    min-height: 420px;
  }

  .hero-subtitle {
    margin-bottom: 48px;
  }

  .hero-visual,
  .hero-image {
    min-height: 360px;
  }

  .services-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

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

  .services-grid {
    margin-top: 52px;
  }

  .work-grid {
    margin-top: 52px;
  }

  .contact-section {
    min-height: 390px;
  }

  .contact-content {
    margin-top: 96px;
  }

  .contact-list {
    gap: 24px;
  }
}
