:root {
  --ink: #171719;
  --muted: #65666a;
  --line: #e6e2dc;
  --paper: #faf9f6;
  --white: #ffffff;
  --blue: #748da7;
  --gold: #b98a4a;
  --charcoal: #29292d;
  --shadow: 0 22px 60px rgba(23, 23, 25, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(250, 249, 246, 0.92);
  border-bottom: 1px solid rgba(23, 23, 25, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1;
}

.brand-name {
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.93rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(185, 138, 74, 0.12);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

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

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(14, 18, 23, 0.78), rgba(14, 18, 23, 0.28) 48%, rgba(14, 18, 23, 0.16));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vh, 110px) 0 clamp(54px, 9vh, 92px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
}

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

.button-primary:hover {
  background: #a6793f;
}

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

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.section {
  padding: clamp(68px, 10vw, 128px) 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.intro-band {
  background: var(--white);
  padding-top: clamp(32px, 5vw, 64px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 8vw, 96px);
  align-items: start;
}

.lead-copy {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 36px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.metric span {
  color: var(--muted);
  max-width: 330px;
}

.muted-section {
  background: #f1eee8;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.split-feature.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.feature-image {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-panel {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-panel h2 {
  color: var(--ink);
}

.text-link {
  color: var(--gold);
  font-weight: 800;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.values-section .section-heading {
  max-width: 640px;
}

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

.values-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: stretch;
}

.values-content {
  display: grid;
  align-content: center;
}

.values-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.values-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.value-card,
.client-name,
.statement,
.contact-card,
.contact-form,
.leader-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.value-card {
  min-height: 220px;
  padding: 26px;
}

.value-card h3 {
  margin-bottom: 18px;
}

.value-card p {
  color: var(--muted);
}

.page-hero {
  padding: clamp(86px, 13vw, 150px) 0 clamp(58px, 8vw, 94px);
  background: var(--white);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.dark-page-hero {
  color: var(--white);
  background: var(--charcoal);
}

.page-hero-inner {
  max-width: 900px;
}

.page-hero-inner p:last-child {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.1rem;
}

.dark-page-hero .page-hero-inner p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

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

.statement {
  min-height: 320px;
  padding: clamp(28px, 5vw, 54px);
}

.statement p:last-child {
  margin-top: 24px;
  color: var(--muted);
}

.leadership-list {
  display: grid;
  gap: 28px;
}

.leader-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(18px, 4vw, 36px);
}

.leader-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center top;
  background: #f1eee8;
  border-radius: 8px;
}

.leader-card p:last-child {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.04rem;
}

.project-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.project-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 18px;
  align-items: center;
  min-height: 66px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}

.project-row:first-child {
  border-top: 0;
}

.project-row strong {
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
}

.featured-project {
  background: rgba(116, 141, 167, 0.1);
}

.featured-project span strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  text-align: left;
  white-space: normal;
}

.table-head {
  color: var(--white);
  background: var(--charcoal);
  font-weight: 800;
}

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

.client-name {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 180px;
  padding: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.08;
  text-align: left;
}

.client-featured {
  grid-column: span 2;
  min-height: 240px;
  color: var(--white);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.client-featured span {
  display: block;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.client-featured small {
  margin-top: 14px;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px;
  color: var(--muted);
}

.contact-card:hover {
  border-color: rgba(185, 138, 74, 0.55);
}

.contact-card svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.contact-card strong {
  display: block;
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 5vw, 42px);
}

.contact-form h2 {
  margin-bottom: 12px;
}

label {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(185, 138, 74, 0.28);
  border-color: var(--gold);
}

.site-footer {
  padding: 34px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.site-footer .brand-mark {
  color: var(--white);
}

.site-footer p {
  margin-top: 8px;
}

address {
  font-style: normal;
  text-align: right;
}

address a {
  color: var(--white);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .brand-name {
    display: none;
  }

  .two-column,
  .split-feature,
  .split-feature.reverse,
  .values-layout,
  .statement-grid,
  .leader-card,
  .client-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .client-featured {
    grid-column: auto;
  }

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

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: clamp(560px, 76vh, 680px);
  }

  .page-hero {
    padding-top: clamp(64px, 10vw, 96px);
  }

  .leader-card {
    align-items: start;
  }

  .leader-card img {
    max-width: 420px;
  }

  .values-media {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .container,
  .hero-content {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    min-height: clamp(560px, 76vh, 640px);
  }

  .hero-content {
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  h2,
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-copy,
  .page-hero-inner p:last-child,
  .lead-copy,
  .feature-panel,
  .leader-card p:last-child {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: clamp(52px, 14vw, 76px) 0;
  }

  .page-hero {
    padding: 58px 0 48px;
  }

  .feature-image {
    aspect-ratio: 1 / 0.78;
  }

  .values-media {
    min-height: 0;
    aspect-ratio: 1 / 0.82;
  }

  .value-card,
  .statement,
  .contact-form,
  .leader-card {
    padding: 22px;
  }

  .leader-card img {
    max-width: none;
    width: 100%;
  }

  .client-name,
  .client-featured {
    min-height: 150px;
  }

  .client-featured span {
    font-size: clamp(2.2rem, 13vw, 3.5rem);
  }

  .contact-card {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 18px;
  }

  .contact-card svg {
    width: 24px;
    height: 24px;
  }

  .metrics,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:nth-child(2),
  .metric:last-child {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .metric:first-child {
    border-top: 0;
  }

  .project-row {
    grid-template-columns: 1fr;
  }

  .project-row strong {
    text-align: left;
  }

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

  address {
    text-align: left;
  }
}

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

  .container,
  .hero-content {
    width: min(100% - 24px, var(--max));
  }

  .brand-mark {
    font-size: 1.75rem;
  }

  .hero {
    min-height: 590px;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .project-row,
  .metric,
  .client-name {
    padding: 18px;
  }

  .footer-inner {
    font-size: 0.94rem;
  }
}
