:root {
  color-scheme: light;
  --ink: #191713;
  --muted: #666157;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #ded8ce;
  --accent: #9b5e32;
  --accent-dark: #71401e;
  --sage: #5f7161;
  --charcoal: #25221e;
  --soft: #efe9df;
  --shadow: 0 20px 60px rgba(35, 29, 21, 0.12);
  --radius: 8px;
  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);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(222, 216, 206, 0.9);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.brand span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  padding: 9px 13px;
  text-decoration: none;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--soft);
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  padding: 9px 16px;
  text-decoration: none;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  min-height: 42px;
  padding: 0 13px;
  font: inherit;
}

.hero {
  position: relative;
  min-height: min(740px, calc(100vh - 74px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 23, 19, 0.78), rgba(25, 23, 19, 0.34) 54%, rgba(25, 23, 19, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 92px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 700;
}

.hero-content p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.13rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.button.light {
  border-color: var(--line);
  background: #fff;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.section.compact {
  padding: 44px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.section-head h2,
.page-title h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-head p,
.page-title p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.page-title {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 66px 0 36px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.service,
.project-card,
.contact-panel,
.process-step,
.feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.service,
.process-step,
.feature {
  padding: 24px;
}

.service h3,
.process-step h3,
.feature h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.service p,
.process-step p,
.feature p {
  margin: 0;
  color: var(--muted);
}

.media-band {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: center;
}

.split img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.project-card {
  overflow: hidden;
  text-decoration: none;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card div {
  padding: 18px;
}

.project-card small {
  color: var(--sage);
  font-weight: 800;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 6px 0 8px;
  font-size: 1.18rem;
}

.project-card p {
  margin: 0;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  padding: 9px 14px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.filter-button.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 24px;
}

.contact-panel {
  padding: 26px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  font-size: 1.05rem;
}

.map {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: var(--radius);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--charcoal);
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    inset: 74px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 6px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(25, 23, 19, 0.35), rgba(25, 23, 19, 0.84));
  }

  .section-head,
  .split,
  .contact-grid,
  .grid.two,
  .grid.three,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .nav {
    width: min(100% - 24px, 1160px);
  }

  .section,
  .page-title {
    width: min(100% - 24px, 1160px);
  }

  .hero-content {
    width: min(100% - 24px, 1160px);
    padding-bottom: 56px;
  }
}
