:root {
  --ink: #171717;
  --muted: #66625d;
  --paper: #f5f2ee;
  --white: #ffffff;
  --charcoal: #171717;
  --charcoal-2: #202020;
  --bronze: #a56f43;
  --bronze-dark: #805234;
  --sage: #5d746c;
  --line: rgba(23, 23, 23, 0.12);
  --soft-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 70px rgba(23, 23, 23, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

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

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

.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;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 20px clamp(22px, 5vw, 72px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 23, 23, 0.06);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(23, 23, 23, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bronze);
  font-size: clamp(1.15rem, 2.1vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-mark {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-color: var(--bronze);
}

.nav-cta {
  padding: 8px 0;
  border-radius: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

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

.hero-image {
  position: absolute;
  inset: 0;
  min-height: calc(100vh - 92px);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 15, 24, 0.88) 0%, rgba(8, 15, 24, 0.66) 31%, rgba(8, 15, 24, 0.18) 63%, rgba(8, 15, 24, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 15, 24, 0.52), rgba(8, 15, 24, 0.08));
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 92px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.06) brightness(0.9);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 92px);
  max-width: 760px;
  padding: clamp(76px, 8vw, 118px) clamp(26px, 7vw, 96px);
  color: var(--white);
  text-align: left;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--bronze);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.6vw, 5.8rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.28;
}

.lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 500;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

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

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

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

.button.secondary.dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.quote-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 6vw, 76px) clamp(22px, 6vw, 86px);
  background: var(--white);
}

.quote-banner blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--bronze);
  background: transparent;
  box-shadow: none;
  font-size: clamp(1.65rem, 3.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.quote-banner blockquote::before {
  content: open-quote;
  display: block;
  margin-bottom: 8px;
  color: rgba(23, 23, 23, 0.18);
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.7;
}

.quote-banner blockquote::after {
  content: close-quote;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-banner img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.pillars article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--paper);
}

.pillars span,
.story-number,
.experience-item span {
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillars h2 {
  margin: 26px 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.pillars p,
.body-copy p,
.card p,
.story-card p,
.story-card li,
.principles p,
.experience-item p,
.experience-item li,
.contact-section p {
  color: var(--muted);
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(22px, 6vw, 86px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: start;
}

.section-heading {
  max-width: 760px;
}

.section-heading.narrow {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.body-copy {
  max-width: 860px;
  font-size: 1.04rem;
}

.section-image,
.wide-image {
  margin: 34px 0 0;
}

.section-image img,
.wide-image img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section-image img {
  aspect-ratio: 4 / 3;
}

.wide-image {
  margin-bottom: 36px;
}

.wide-image img {
  aspect-ratio: 21 / 8;
}

.wide-image.compact img {
  aspect-ratio: 21 / 7;
}

blockquote {
  margin: 34px 0 0;
  padding: 28px;
  border-left: 4px solid var(--bronze);
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(23, 23, 23, 0.08);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.42;
}

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

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

.card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 23, 23, 0.06);
}

.stories-section,
.experience-section {
  background: var(--white);
}

.story-list,
.experience-list {
  display: grid;
  gap: 18px;
}

.story-card,
.experience-item {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fbfaf8;
}

.story-card ul,
.experience-item ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

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

.philosophy .section-heading h2 {
  color: var(--white);
}

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

.principles article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--soft-line);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.principles p {
  color: rgba(255, 255, 255, 0.72);
}

.experience-item {
  background: var(--paper);
}

.skills-section {
  background: #ece6df;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills-grid span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(72px, 9vw, 120px) clamp(22px, 6vw, 86px);
  background: var(--white);
}

.contact-section h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.contact-actions {
  justify-content: flex-start;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 6vw, 86px);
  color: var(--white);
  background: var(--charcoal);
}

@media (max-width: 1080px) {
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-copy,
  .hero-image,
  .hero-image img {
    min-height: 680px;
  }

  .hero-image img {
    height: 680px;
    object-position: 58% center;
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 2px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .nav-cta {
    text-align: left;
  }

  .quote-banner,
  .pillars,
  .card-grid.six,
  .story-card,
  .experience-item,
  .principles {
    grid-template-columns: 1fr;
  }

  .quote-banner blockquote {
    text-align: left;
  }

  .wide-image img,
  .wide-image.compact img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .brand {
    max-width: 240px;
    font-size: 1rem;
    letter-spacing: 0.16em;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3.2rem);
    letter-spacing: 0.07em;
  }

  .hero,
  .hero-copy,
  .hero-image,
  .hero-image img {
    min-height: 640px;
  }

  .hero-copy {
    padding-block: 64px;
  }

  .hero-image img {
    height: 640px;
    object-position: 61% center;
  }

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

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