/* Fieldwork Consolidated — shared stylesheet */

:root {
  --bg: #f4eee2;
  --bg-band: #e9e1d1;
  --ink: #1c1c18;
  --ink-soft: #4a4a42;
  --green: #3a4530;
  --rule: #cdc3ab;
  --accent: #5c130e;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --serif-caps: "EB Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif-caps);
  font-size: 18px;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}

/* Header */

.site-header {
  border-bottom: 1px solid var(--ink);
  padding: 22px 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--ink);
}

.brand svg {
  width: 40px;
  height: 40px;
  flex: none;
}

.brand-name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav.primary-nav {
  display: flex;
  gap: 40px;
}

nav.primary-nav a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding-bottom: 14px;
}

nav.primary-nav a.active::after {
  content: "\25C6";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--accent);
}

/* Hero */

.hero {
  padding: 88px 0 64px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-copy .eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.12;
  margin: 0 0 28px;
}

.hero-copy p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 16px;
}

.hero-copy p:last-child {
  margin-bottom: 0;
}

.hero-photo img {
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
}

/* Feature strip (three columns, with rules) */

.feature-strip {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.feature-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-strip .feature {
  padding: 34px 40px;
  text-align: center;
  border-left: 1px solid var(--rule);
}

.feature-strip .feature:first-child {
  border-left: none;
}

.feature-strip .diamond {
  color: var(--accent);
  font-size: 11px;
  display: block;
  margin-bottom: 10px;
}

.feature-strip .feature span.label {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Approach grid (company page: eyebrow + title/desc per column) */

.section {
  padding: 64px 0;
}

.section .eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.approach-grid .item {
  padding: 0 40px;
  border-left: 1px solid var(--rule);
}

.approach-grid .item:first-child {
  padding-left: 0;
  border-left: none;
}

.approach-grid .diamond {
  color: var(--accent);
  font-size: 11px;
  display: block;
  margin-bottom: 14px;
}

.approach-grid h3 {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 10px;
}

.approach-grid p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}

/* Shaded statement band */

.band {
  background: var(--bg-band);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 28px 0;
  text-align: center;
}

.band p {
  font-family: var(--serif-caps);
  font-size: 19px;
  margin: 0;
}

/* Simple rule-bounded statement (correspondence page) */

.statement-rule {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 26px 0;
  text-align: center;
}

.statement-rule p {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

/* Footer */

.site-footer {
  padding: 56px 0 40px;
  text-align: center;
}

.pull-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 20px;
}

.pull-quote .line {
  height: 1px;
  width: 120px;
  background: var(--rule);
}

.pull-quote .diamond {
  color: var(--accent);
  font-size: 10px;
}

.site-footer .quote {
  font-family: var(--serif-caps);
  font-variant: small-caps;
  font-size: 19px;
  letter-spacing: 0.03em;
  margin: 0 0 28px;
}

.site-footer .quote.quote-lg {
  font-size: 34px;
  margin: 0 0 32px;
}

.site-footer .footer-rule {
  border: none;
  border-top: 1px solid var(--ink);
  margin: 0 0 28px;
}

.site-footer .location {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}

.site-footer .location.with-rule {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}

/* 404 */

.error-hero {
  padding: 120px 0;
  text-align: center;
}

.error-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 48px;
  margin: 0 0 16px;
}

.error-hero p {
  font-family: var(--sans);
  color: var(--ink-soft);
  margin: 0 0 28px;
}

.error-hero a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    order: -1;
  }
  .feature-strip .wrap,
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .feature-strip .feature,
  .approach-grid .item {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding: 28px 0;
  }
  .feature-strip .feature:first-child,
  .approach-grid .item:first-child {
    border-top: none;
  }
  .approach-grid .item {
    padding-left: 0;
  }
  .hero-copy h1 {
    font-size: 40px;
  }
  .wrap {
    padding: 0 24px;
  }
  nav.primary-nav {
    gap: 24px;
  }
}
