:root {
  --ink: #17211f;
  --muted: #5e6b67;
  --paper: #fbfaf6;
  --sage: #9eb7a5;
  --sage-dark: #365c50;
  --clay: #b8644d;
  --butter: #f0d28d;
  --mist: #edf2ee;
  --line: rgba(23, 33, 31, 0.14);
  --shadow: 0 24px 70px rgba(35, 45, 41, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--sage-dark);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  color: var(--sage-dark);
}

.hero {
  min-height: calc(100vh - 75px);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  align-items: stretch;
  gap: clamp(32px, 6vw, 86px);
  padding: clamp(28px, 5vw, 72px) clamp(20px, 6vw, 92px) clamp(54px, 7vw, 90px);
  background:
    linear-gradient(90deg, rgba(240, 210, 141, 0.22), rgba(158, 183, 165, 0.2)),
    var(--paper);
}

.hero-media {
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding-block: 32px;
}

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

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(4rem, 10vw, 8.6rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.lead {
  max-width: 680px;
  color: #2f3c38;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--sage-dark);
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--sage-dark);
}

.button.secondary {
  color: var(--sage-dark);
  background: transparent;
}

.section-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  color: var(--sage-dark);
  font-weight: 800;
  border-bottom: 2px solid var(--butter);
}

.section-link.light {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.58);
}

section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 92px);
}

.page-hero {
  min-height: 56vh;
  display: grid;
  align-content: center;
  padding-block: clamp(70px, 10vw, 128px);
  background:
    linear-gradient(90deg, rgba(240, 210, 141, 0.28), rgba(158, 183, 165, 0.22)),
    var(--paper);
}

.page-hero.compact {
  min-height: 42vh;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.page-hero .lead {
  max-width: 780px;
}

.page-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #fff;
}

.page-feature img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.long-copy {
  max-width: 840px;
  color: #33423d;
  font-size: clamp(1.06rem, 1.4vw, 1.22rem);
}

.detail-band {
  background: var(--mist);
}

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

.detail-grid article {
  min-height: 220px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-grid p {
  color: var(--muted);
}

.page-section {
  padding-top: clamp(42px, 6vw, 76px);
}

.intro-band {
  background: #fff;
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.section-heading.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

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

.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(260px, 0.65fr);
  gap: 32px;
  align-items: stretch;
}

.story-copy {
  columns: 2 280px;
  column-gap: 44px;
  color: #33423d;
  font-size: 1.05rem;
}

.signature-panel {
  position: relative;
  min-height: 280px;
  padding: 34px;
  color: #fff;
  background: var(--sage-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-mark {
  display: block;
  margin-bottom: 18px;
  color: var(--butter);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
}

.signature-panel p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

.qualities {
  background: var(--mist);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.quality-grid article {
  min-height: 270px;
  padding: 28px;
  background: #fff;
}

.quality-grid article:last-child {
  grid-column: span 2;
  min-height: 210px;
  background: #f9f3df;
}

.quality-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--clay);
  font-weight: 800;
}

.quality-grid p,
.leadership-list p,
.timeline p,
.contact p {
  color: var(--muted);
}

.leadership {
  background: #fff;
}

.leadership-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.image-pair {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 14px;
  align-items: end;
}

.image-pair img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-pair img:first-child {
  height: 520px;
}

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

.leadership-list article {
  min-height: 240px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.experience {
  background: #253933;
  color: #fff;
}

.experience .eyebrow {
  color: var(--butter);
}

.experience .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.timeline article {
  min-height: 190px;
  padding: 28px;
  background: #253933;
}

.timeline time {
  display: block;
  margin-bottom: 28px;
  color: var(--butter);
  font-weight: 800;
}

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

.education-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.education-strip span {
  padding: 10px 14px;
  color: #253933;
  background: var(--butter);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
}

.media-section {
  background: var(--paper);
}

.focus-area {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(560px, 74vw, 780px);
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #17211f;
}

.focus-image {
  position: absolute;
  inset: 0;
}

.focus-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 33, 31, 0.76), rgba(23, 33, 31, 0.18) 58%, rgba(23, 33, 31, 0.06)),
    linear-gradient(0deg, rgba(23, 33, 31, 0.74), rgba(23, 33, 31, 0.08) 52%);
}

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

.focus-copy {
  position: relative;
  max-width: 720px;
  padding: clamp(44px, 7vw, 92px);
}

.focus-copy .eyebrow {
  color: var(--butter);
}

.focus-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 1.6vw, 1.26rem);
}

.page-focus {
  min-height: clamp(520px, 66vw, 720px);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.video-card {
  margin: 0;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.photo-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
}

.photo-grid.gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-grid.gallery img {
  height: 310px;
}

.page-media {
  padding-top: clamp(32px, 5vw, 64px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: #fff;
  background: var(--clay);
}

.page-contact {
  padding-top: clamp(42px, 6vw, 76px);
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.25rem, 3vw, 2.2rem);
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(240, 210, 141, 0.7);
  border-color: var(--sage-dark);
}

.contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--sage-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 6vw, 92px);
  color: rgba(255, 255, 255, 0.75);
  background: #17211f;
}

footer p {
  margin: 0;
}

footer a {
  font-weight: 800;
}

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

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .story-grid,
  .page-feature,
  .detail-grid,
  .leadership-layout,
  .media-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .focus-area {
    min-height: 620px;
  }

  .focus-image img {
    object-position: 64% center;
  }

  .quality-grid,
  .photo-grid.gallery,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-grid article:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .nav {
    gap: 8px 14px;
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-media {
    min-height: 360px;
  }

  .focus-area {
    min-height: 560px;
  }

  .focus-copy {
    padding: 34px 20px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.8rem);
  }

  .quality-grid,
  .detail-grid,
  .leadership-list,
  .timeline,
  .photo-grid.gallery,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .quality-grid article,
  .leadership-list article,
  .timeline article {
    min-height: auto;
  }

  .quality-grid article:last-child {
    grid-column: auto;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair img,
  .image-pair img:first-child {
    height: auto;
    max-height: 560px;
  }

  .contact-card strong {
    font-size: 1.2rem;
  }
}
