:root {
  --ink: #111111;
  --charcoal: #101315;
  --charcoal-soft: #1a1e20;
  --gunmetal: #4a4f55;
  --gunmetal-deep: #0b0d0f;
  --stone: #f3f0e9;
  --limestone: #e9e2d6;
  --paper: #fbf8f0;
  --brass: #b9975b;
  --brass-soft: #c8aa69;
  --steel: #798288;
  --moss: #47564c;
  --line: rgba(17, 17, 17, 0.14);
  --line-dark: rgba(245, 243, 239, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  padding: 6rem clamp(1.25rem, 4vw, 4rem) 4.5rem;
  color: var(--paper);
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("hero-architecture.png");
  background-size: cover;
  background-position: 53% 50%;
  z-index: -3;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.9) 0%, rgba(8, 10, 12, 0.7) 38%, rgba(8, 10, 12, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 9, 11, 0.42) 0%, rgba(7, 9, 11, 0.08) 48%, rgba(7, 9, 11, 0.38) 100%);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem clamp(1.25rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  background: rgba(8, 10, 12, 0.48);
  backdrop-filter: blur(18px);
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.wordmark {
  display: inline-grid;
  gap: calc(var(--wordmark-width, 6rem) * 0.036);
  justify-items: center;
  width: var(--wordmark-width, 6rem);
  line-height: 1;
  overflow: visible;
}

.wordmark__mpi {
  display: block;
  width: 100%;
  color: #f2efe7;
  font-family:
    "Aptos Display",
    "Segoe UI Variable Display",
    "Avenir Next",
    "Montserrat",
    Arial,
    sans-serif;
  font-size: calc(var(--wordmark-width, 6rem) * 0.42);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.75;
  text-align: center;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14),
    0 2px 0 rgba(0, 0, 0, 0.18);
}

.wordmark__global {
  width: 75%;
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: calc(var(--wordmark-width, 6rem) * 0.038);
  color: var(--brass-soft);
}

.wordmark__rule {
  height: max(1px, calc(var(--wordmark-width, 6rem) * 0.008));
  background: var(--brass-soft);
}

.wordmark__global-text {
  font-family:
    "Aptos",
    "Segoe UI",
    Arial,
    sans-serif;
  font-weight: 700;
  font-size: calc(var(--wordmark-width, 6rem) * 0.078);
  letter-spacing: calc(var(--wordmark-width, 6rem) * 0.035);
  line-height: 1;
}

.wordmark--nav {
  --wordmark-width: 5.45rem;
}

.wordmark--footer {
  --wordmark-width: 5.65rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.88rem;
}

.nav-links a,
.footer-links a,
.footer-contact a {
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--brass);
}

.phone-link {
  white-space: nowrap;
  font-variant-numeric: lining-nums tabular-nums;
}

.hero__content {
  width: min(820px, 100%);
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--brass);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.1rem;
  line-height: 0.98;
  font-weight: 400;
}

.hero__subhead {
  width: min(650px, 100%);
  margin: 1.6rem 0 2rem;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.86rem 1.15rem;
  font-size: 0.92rem;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button--light {
  border-color: rgba(255, 253, 248, 0.72);
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
}

.button--light:hover {
  background: transparent;
  color: var(--paper);
}

.button--dark {
  width: 100%;
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--paper);
}

.button--dark:hover {
  background: var(--brass);
  border-color: var(--brass);
}

.section-shell {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section-shell--two {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.section-shell--narrow {
  width: min(850px, calc(100% - 2.5rem));
}

.intro-section,
.light-section,
.partner-section,
.audience-section,
.philosophy-section,
.engagement-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.intro-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.light-section {
  background: var(--stone);
}

.partner-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-section {
  background: #f8f7f3;
}

.philosophy-section {
  background: var(--charcoal);
  color: var(--paper);
}

.engagement-section {
  background: var(--limestone);
}

.dark-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, rgba(187, 154, 94, 0.13), transparent 42%),
    radial-gradient(circle at 86% 12%, rgba(74, 79, 85, 0.34), transparent 34%),
    var(--gunmetal-deep);
  background-size: 18px 100%, auto, auto, auto;
  color: var(--paper);
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 400;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  margin: 0;
}

.copy-stack {
  display: grid;
  gap: 1rem;
  color: rgba(17, 17, 17, 0.74);
  font-size: 1.05rem;
  line-height: 1.8;
}

.copy-stack--large {
  font-size: 1.28rem;
  line-height: 1.76;
}

.single-word {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.philosophy-section .copy-stack,
.dark-section .model-copy {
  color: rgba(255, 253, 248, 0.72);
}

.philosophy-section .single-word {
  color: var(--paper);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading--split {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.section-heading--split > p {
  color: rgba(17, 17, 17, 0.62);
  font-size: 1.05rem;
  line-height: 1.75;
}

.misalignment-list {
  display: grid;
  gap: 0.65rem;
}

.misalignment-list span {
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 0.65rem;
  color: rgba(255, 253, 248, 0.7);
}

.model-copy {
  width: min(760px, 100%);
  margin: 0 0 3rem;
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.quiet-card {
  min-height: 230px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 1.35rem;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(74, 79, 85, 0.18);
}

.quiet-card p {
  margin-top: 1rem;
  color: rgba(255, 253, 248, 0.68);
  line-height: 1.65;
}

.capability-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.capability-row {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 1.65rem 0;
}

.capability-row span {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.capability-row p {
  margin-top: 0.45rem;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.7;
}

.partner-panel {
  display: grid;
  gap: 0.75rem;
  border-left: 1px solid var(--line);
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
}

.partner-name {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.audience-item {
  min-height: 132px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.54);
  color: rgba(17, 17, 17, 0.76);
}

.engagement-copy {
  margin-top: 1.5rem;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.75;
}

.engagement-form {
  display: grid;
  gap: 1rem;
}

.engagement-form label {
  display: grid;
  gap: 0.45rem;
}

.engagement-form span {
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.engagement-form input,
.engagement-form select,
.engagement-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.7);
  color: var(--ink);
  padding: 0.9rem 0.95rem;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.engagement-form textarea {
  resize: vertical;
  min-height: 9rem;
}

.engagement-form input:focus,
.engagement-form select:focus,
.engagement-form textarea:focus {
  border-color: var(--brass);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(154, 116, 65, 0.16);
}

.site-footer {
  padding: 3rem 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #080a0b;
  background-size: 18px 100%;
  color: rgba(255, 253, 248, 0.68);
}

.footer-inner {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--paper);
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-contact {
  font-style: normal;
}

.footer-links {
  text-align: right;
}

@media (max-width: 980px) {
  .hero {
    min-height: 91svh;
    padding-top: 7.5rem;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .section-shell--two,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

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

  .partner-panel {
    border-left: 0;
    padding-left: 0;
  }

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

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 90svh;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: 2.6rem;
    line-height: 1.04;
  }

  .hero__subhead,
  .copy-stack--large {
    font-size: 1rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .pillar-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .quiet-card,
  .audience-item {
    min-height: auto;
  }

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