:root {
  --ink: #171614;
  --muted: #6e665d;
  --paper: #fbf7f0;
  --white: #fffdf8;
  --sage: #5d756a;
  --sage-dark: #31483e;
  --clay: #b46b50;
  --gold: #c4a35c;
  --line: rgba(23, 22, 20, 0.14);
  --shadow: 0 24px 70px rgba(31, 29, 25, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body::selection {
  background: rgba(196, 163, 92, 0.38);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 247, 240, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 720;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 720;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 146px clamp(20px, 5vw, 70px) 64px;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 20, 18, 0.86) 0%, rgba(21, 20, 18, 0.62) 41%, rgba(21, 20, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(21, 20, 18, 0.45) 0%, rgba(21, 20, 18, 0.05) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.7vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 760px;
}

.hero-copy {
  margin: 26px 0 0;
  max-width: 610px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
}

.hero .button-primary {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.button-secondary {
  border: 1px solid rgba(255, 253, 248, 0.66);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: -36px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 clamp(18px, 4vw, 32px);
}

.metric {
  min-height: 142px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.metric span {
  display: block;
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.metric p {
  margin: 11px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) clamp(20px, 4vw, 32px);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

.body-copy p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.body-copy p {
  margin: 0 0 20px;
}

.services-section {
  max-width: none;
  background: #f2eadf;
}

.services-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading p {
  margin: 0;
}

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

.service-card {
  min-height: 330px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(23, 22, 20, 0.08);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.service-number {
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
}

.service-card h3 {
  margin: 54px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.perspective-section {
  padding-top: clamp(74px, 9vw, 112px);
  padding-bottom: clamp(74px, 9vw, 112px);
}

.perspective-panel {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  margin: 0;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 88px;
  line-height: 0.7;
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 4.6vw, 54px);
  line-height: 1.16;
}

.quote-credit {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact-copy p {
  max-width: 610px;
}

.contact-card {
  padding: 18px;
  border-radius: 8px;
  background: var(--sage-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-line {
  display: block;
  padding: 23px 20px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
}

.contact-line span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-line strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 20px;
}

.contact-card .button-primary {
  margin-top: 18px;
  border-color: var(--white);
  background: var(--white);
  color: var(--sage-dark);
}

.full-width {
  width: 100%;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 760;
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-header {
    gap: 14px;
  }

  .site-nav {
    display: none;
  }

  .brand-text {
    white-space: normal;
  }

  .intro-band,
  .split-layout,
  .section-heading,
  .service-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-band {
    margin-top: 0;
    padding: 0;
  }

  .metric {
    min-height: auto;
    box-shadow: none;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    gap: 22px;
  }

  .section-heading p {
    max-width: 620px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    margin-top: 32px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    max-width: 132px;
    font-size: 13px;
    line-height: 1.15;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding: 122px 18px 42px;
  }

  .eyebrow {
    max-width: 310px;
    font-size: 11px;
    line-height: 1.45;
  }

  .hero h1 {
    max-width: 354px;
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 342px;
    font-size: 16px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(21, 20, 18, 0.88) 0%, rgba(21, 20, 18, 0.66) 62%, rgba(21, 20, 18, 0.35) 100%),
      linear-gradient(0deg, rgba(21, 20, 18, 0.52) 0%, rgba(21, 20, 18, 0.08) 55%);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-card {
    padding: 10px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
