:root {
  --ink: #111111;
  --ink-2: #252525;
  --gold: #c99a3e;
  --gold-2: #f0c76b;
  --paper: #fbfaf6;
  --white: #ffffff;
  --stone: #e7e1d7;
  --muted: #6c675f;
  --steel: #45605d;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(17, 17, 17, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--gold-2);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(17, 17, 17, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(240, 199, 107, 0.32);
}

.nav-wrap,
.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 74px;
}

.brand {
  display: inline-grid;
  gap: 0.05rem;
  text-decoration: none;
  line-height: 1.05;
  letter-spacing: 0;
  min-width: 13rem;
}

.brand strong {
  font-size: 1.02rem;
  text-transform: uppercase;
}

.brand span {
  color: var(--gold-2);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.72rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(240, 199, 107, 0.13);
  color: var(--white);
}

.hero {
  background:
    linear-gradient(120deg, rgba(17, 17, 17, 0.97), rgba(17, 17, 17, 0.83)),
    radial-gradient(circle at 82% 22%, rgba(240, 199, 107, 0.24), transparent 36%),
    var(--ink);
  color: var(--white);
}

.hero-grid {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(3rem, 8vh, 5.5rem) 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.2rem);
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 46rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.05rem;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--gold-2);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
}

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

.brand-panel {
  overflow: hidden;
  border: 1px solid rgba(240, 199, 107, 0.36);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--shadow);
}

.brand-panel img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
}

.brand-panel figcaption {
  padding: 0.8rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.proof-strip {
  background: var(--gold-2);
  color: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
}

.proof-item {
  min-height: 110px;
  display: grid;
  align-content: center;
  gap: 0.25rem;
  padding: 1.25rem;
  border-left: 1px solid rgba(17, 17, 17, 0.22);
}

.proof-item:first-child {
  border-left: 0;
}

.proof-item strong {
  font-size: 1.45rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.proof-item span {
  font-weight: 750;
}

.section {
  padding: clamp(3.2rem, 8vw, 6rem) 0;
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.alt {
  background: var(--white);
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-header h2,
.page-header h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  text-transform: uppercase;
}

.section-header p,
.page-header p,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.dark .section-header p,
.dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

.page-header {
  background: var(--ink);
  color: var(--white);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.page-header h1 {
  max-width: 13ch;
}

.page-header p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.copy-block p:first-child {
  margin-top: 0;
}

.service-grid,
.gallery-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.gallery-card,
.value-card,
.note-box {
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card,
.value-card {
  padding: 1.25rem;
}

.service-card h3,
.value-card h3,
.gallery-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.service-card p,
.value-card p,
.gallery-card p {
  margin: 0;
  color: var(--muted);
}

.service-card {
  border-top: 4px solid var(--gold);
}

.work-panel {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201, 154, 62, 0.16), transparent 46%),
    var(--ink-2);
  color: var(--white);
}

.check-row {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.check-row:last-child {
  border-bottom: 0;
}

.checkmark {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: inset 0 0 0 4px var(--ink-2);
}

.note-box {
  padding: 1.1rem;
  border-left: 5px solid var(--steel);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-email {
  margin: 0.45rem 0;
  font-size: 1.12rem;
  font-weight: 900;
}

.contact-email a {
  overflow-wrap: anywhere;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.8rem;
  border: 1px solid #c9c1b4;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ink);
}

.gallery-card .card-body {
  padding: 1rem;
}

.placeholder-panel {
  min-height: 220px;
  display: grid;
  align-content: end;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(69, 96, 93, 0.42), transparent 42%),
    repeating-linear-gradient(90deg, #f8f5ef 0 18px, #ece6dc 18px 36px);
}

.placeholder-panel strong {
  max-width: 18rem;
  padding: 0.5rem 0.65rem;
  background: rgba(255, 255, 255, 0.9);
  border-left: 4px solid var(--gold);
}

.site-footer {
  background: #090909;
  color: rgba(255, 255, 255, 0.82);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--gold-2);
  font-weight: 850;
}

@media (max-width: 820px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.9rem 0;
  }

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

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

  .hero-grid {
    min-height: auto;
  }

  .proof-grid,
  .service-grid,
  .gallery-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .section-inner {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .site-nav a {
    justify-content: center;
    padding: 0.5rem;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .proof-grid,
  .service-grid,
  .gallery-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.22);
  }

  .proof-item:first-child {
    border-top: 0;
  }

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