:root {
  --ink: #10221f;
  --ink-soft: #30413d;
  --forest: #1d4d43;
  --forest-deep: #0c2e2b;
  --copper: #b67c45;
  --clay: #b65f4b;
  --mist: #dfe9e8;
  --paper: #f8f6f1;
  --surface: #ffffff;
  --line: #d9ded8;
  --shadow: 0 24px 60px rgba(16, 34, 31, 0.14);
  --container: 1160px;
  --header-height: 76px;
}

* {
  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;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

p {
  margin: 0;
  color: var(--ink-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  font-weight: 500;
}

h2 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 4px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px 32px;
  color: #ffffff;
  background: rgba(12, 46, 43, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(248, 246, 241, 0.96);
  box-shadow: 0 12px 30px rgba(16, 34, 31, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.74;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 92px) 0 96px;
  background: var(--forest-deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/ahoden-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 46, 43, 0.86), rgba(12, 46, 43, 0.52) 48%, rgba(12, 46, 43, 0.1)),
    linear-gradient(0deg, rgba(12, 46, 43, 0.62), rgba(12, 46, 43, 0.04) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e9c79e;
  margin-bottom: 18px;
}

.hero-lede {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.35rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: #ffffff;
  color: var(--forest-deep);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f1e5d5;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.54);
  color: #ffffff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.quick-facts {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.facts-grid article {
  min-height: 126px;
  padding: 28px 30px 28px 0;
  border-right: 1px solid var(--line);
}

.facts-grid article + article {
  padding-left: 30px;
}

.facts-grid article:last-child {
  border-right: 0;
}

.facts-grid span {
  display: block;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.facts-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
}

.section {
  padding: 104px 0;
}

.muted-section {
  background: #edf2ef;
}

.split-layout,
.about-grid,
.approach-grid,
.strengths-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
}

.split-layout h2,
.section-copy h2,
.section-heading h2,
.values-grid h2,
.contact-grid h2 {
  margin-top: 12px;
}

.rich-copy,
.section-copy,
.choose-block {
  display: grid;
  gap: 18px;
}

.rich-copy p,
.section-copy p,
.section-heading p,
.choose-block p,
.values-grid p {
  font-size: 1.04rem;
}

.principles-panel {
  align-self: start;
  border-radius: 8px;
  background: var(--surface);
  padding: 34px;
  box-shadow: var(--shadow);
}

.principles-panel h3 {
  margin-bottom: 20px;
}

.principles-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.principles-panel li {
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
}

.principles-panel li::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 2px;
  content: "";
  background: var(--copper);
}

.section-heading {
  display: grid;
  max-width: 780px;
  gap: 16px;
  margin-bottom: 42px;
}

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

.activity-card {
  display: grid;
  min-height: 308px;
  align-content: start;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.activity-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 124, 69, 0.45);
  box-shadow: 0 18px 38px rgba(16, 34, 31, 0.1);
}

.activity-index {
  display: inline-grid;
  width: 44px;
  height: 36px;
  place-items: center;
  border-radius: 6px;
  background: #f1e5d5;
  color: var(--forest);
  font-weight: 800;
}

.activity-card-wide {
  grid-column: span 2;
  min-height: 236px;
  background: linear-gradient(135deg, #ffffff 0%, #f6efe6 100%);
}

.dark-section {
  background: var(--forest-deep);
  color: #ffffff;
}

.dark-section p {
  color: rgba(255, 255, 255, 0.74);
}

.dark-section .section-kicker {
  color: #e9c79e;
}

.strengths-layout {
  align-items: start;
}

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

.strength-list article {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 22px;
}

.strength-list h3 {
  margin-bottom: 10px;
}

.values-section {
  background: var(--surface);
}

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

.values-grid article {
  min-height: 294px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
}

.values-grid h2 {
  font-size: 2rem;
}

.values-grid p:last-child {
  margin-top: 16px;
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.value-tags span {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f6efe6;
  padding: 9px 11px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.choose-block {
  align-self: start;
  border-left: 4px solid var(--copper);
  background: #edf2ef;
  padding: 34px;
}

.choose-block h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.text-link {
  position: relative;
  width: fit-content;
  margin-top: 8px;
  color: var(--forest);
  font-weight: 800;
}

.text-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  content: "";
  background: var(--copper);
}

.contact-section {
  padding: 88px 0;
  color: #ffffff;
  background: #173b35;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section .section-kicker {
  color: #e9c79e;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 1.08rem;
}

.contact-details a {
  width: fit-content;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: #e9c79e;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #10221f;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}

.footer-inner a {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 980px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .split-layout,
  .about-grid,
  .approach-grid,
  .strengths-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .activity-grid,
  .values-grid,
  .strength-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .site-header {
    min-height: var(--header-height);
    padding: 12px 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 15px;
    right: 15px;
    top: calc(var(--header-height) + 12px);
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    padding: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 78svh;
    padding: calc(var(--header-height) + 72px) 0 76px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 46, 43, 0.9), rgba(12, 46, 43, 0.58)),
      linear-gradient(0deg, rgba(12, 46, 43, 0.58), rgba(12, 46, 43, 0.12));
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-lede {
    font-size: 1.12rem;
  }

  .button {
    width: 100%;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid article,
  .facts-grid article + article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }

  .facts-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .activity-grid,
  .values-grid,
  .strength-list {
    grid-template-columns: 1fr;
  }

  .activity-card,
  .activity-card-wide,
  .values-grid article {
    grid-column: auto;
    min-height: 0;
  }

  .principles-panel,
  .choose-block,
  .activity-card,
  .values-grid article {
    padding: 24px;
  }

  .contact-section {
    padding: 72px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.74rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .values-grid h2,
  .choose-block h3 {
    font-size: 1.6rem;
  }

  .contact-details a {
    font-size: 1.12rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
