:root {
  --ink: #132322;
  --muted: #536361;
  --green: #0c4b43;
  --green-2: #156a61;
  --blue: #08779a;
  --gold: #d6aa47;
  --paper: #f7f9f7;
  --white: #ffffff;
  --line: #dce5e1;
  --soft: #eef5f2;
  --shadow: 0 16px 40px rgba(19, 35, 34, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.58;
}

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

a {
  color: inherit;
}

p,
li {
  color: var(--muted);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 250px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--green);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand span {
  display: block;
  max-width: 250px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 2px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: #344441;
  font-size: 0.86rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green);
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--green);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 32, 30, 0.82), rgba(7, 32, 30, 0.48) 48%, rgba(7, 32, 30, 0.12));
}

.hero > img,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-content {
  padding: 96px 0 54px;
  color: var(--white);
  max-width: 850px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #f3d27e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.7rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.35rem;
}

.hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button,
button.button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--green);
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
input[type="submit"]:hover {
  background: var(--green-2);
}

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

.button.light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-links a {
  padding: 22px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links strong {
  display: block;
  color: var(--green);
  margin-bottom: 4px;
}

.quick-links span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  font-size: 1.02rem;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.media-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.media-frame.tall img {
  aspect-ratio: 4 / 5;
}

.media-frame.wide img {
  aspect-ratio: 16 / 7;
}

.text-flow > * + * {
  margin-top: 14px;
}

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

.card,
.profile,
.award-item,
.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(19, 35, 34, 0.05);
}

.card h3,
.profile h3,
.award-item h3 {
  color: var(--green);
  margin-bottom: 8px;
}

.badge {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.specialist-list {
  columns: 2;
  column-gap: 46px;
  margin: 0;
  padding-left: 20px;
}

.specialist-list li {
  margin-bottom: 8px;
  break-inside: avoid;
}

.page-hero {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--green);
}

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

.page-hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 5.4rem);
}

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

.timeline ul,
.profile ul,
.award-item ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

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

.profile img {
  width: 100%;
  max-height: 270px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  margin-bottom: 14px;
  background: var(--soft);
}

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

.award-item.with-photo {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 16px;
  align-items: start;
}

.award-item.with-photo img {
  width: 94px;
  height: 118px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  background: var(--soft);
}

.assoc-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 36px;
  align-items: start;
}

.qr-box {
  display: grid;
  gap: 18px;
}

.qr-box img {
  margin: 0 auto;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.radio-row input {
  width: auto;
}

.footer {
  background: var(--green);
  color: var(--white);
  padding: 34px 0;
}

.footer p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .menu-toggle {
    display: inline-flex;
  }

  .quick-links,
  .section-head,
  .split,
  .split.reverse,
  .assoc-layout {
    grid-template-columns: 1fr;
  }

  .quick-links a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-links a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .brand span {
    display: none;
  }

  .hero {
    min-height: 70vh;
  }

  .section {
    padding: 52px 0;
  }

  .content-grid,
  .timeline,
  .profiles,
  .award-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .specialist-list {
    columns: 1;
  }

  .award-item.with-photo {
    grid-template-columns: 78px 1fr;
  }

  .award-item.with-photo img {
    width: 78px;
    height: 98px;
  }

  .footer-inner {
    display: grid;
  }
}
