:root {
  --kh-green-1000: #06130c;
  --kh-green-950: #08170f;
  --kh-green-900: #0c2115;
  --kh-green-850: #102a1b;
  --kh-green-800: #173522;

  --kh-gold: #d9ad4e;
  --kh-gold-light: #efca74;
  --kh-gold-dark: #9e7427;

  --kh-cream: #f5f1e7;
  --kh-cream-light: #fbf9f3;
  --kh-white: #ffffff;

  --kh-ink: #172019;
  --kh-muted: #596158;
  --kh-line: #d9d3c6;

  --kh-content-width: 1180px;
  --kh-header-height: 76px;

  --kh-shadow:
    0 20px 55px rgba(8, 23, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--kh-cream);
  color: var(--kh-ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

a {
  color: inherit;
}

.kh-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  min-height: var(--kh-header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding:
    12px
    max(28px, calc((100% - var(--kh-content-width)) / 2));
  background: rgba(8, 23, 15, 0.98);
  backdrop-filter: blur(12px);
}

.kh-site-brand {
  color: var(--kh-white);
  text-decoration: none;
}

.kh-site-brand span,
.kh-site-brand strong {
  display: block;
}

.kh-site-brand span {
  color: var(--kh-gold);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kh-site-brand strong {
  margin-top: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  font-weight: 500;
}

.kh-site-nav {
  display: flex;
  align-items: center;
  gap: 23px;
}

.kh-site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.kh-site-nav a:hover,
.kh-site-nav a:focus-visible {
  color: var(--kh-white);
}

.kh-site-nav .kh-site-nav-button {
  padding: 13px 18px;
  background: var(--kh-gold);
  color: var(--kh-green-950);
}

.kh-eyebrow {
  margin: 0 0 13px;
  color: var(--kh-gold);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kh-page-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.kh-section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.kh-button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 1px solid transparent;
  font-size: 0.81rem;
  font-weight: 850;
  text-decoration: none;
}

.kh-button-gold {
  background: var(--kh-gold);
  color: var(--kh-green-950);
}

.kh-button-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--kh-white);
}

.kh-page-footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding:
    34px
    max(28px, calc((100% - var(--kh-content-width)) / 2));
  background: var(--kh-green-950);
  color: var(--kh-white);
}

.kh-page-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  line-height: 1.55;
}

.kh-page-footer a {
  color: var(--kh-gold-light);
  font-size: 0.77rem;
  font-weight: 800;
  text-decoration: none;
}

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

  .kh-site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .kh-site-nav {
    gap: 12px;
  }

  .kh-site-nav a:not(.kh-site-nav-button) {
    display: none;
  }

  .kh-page-footer {
    display: block;
    padding: 30px 20px;
  }
}

/* KH UNIFIED FOOTER START */

.kh-unified-footer {
  box-sizing: border-box;
  padding: 0 !important;
  background: #06170f;
  color: #ffffff;
}

.kh-unified-footer__inner {
  box-sizing: border-box;
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(1.6rem, 3vw, 2.7rem)
    clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: center;
  gap: 2rem 3rem;
}

.kh-unified-footer__identity strong {
  display: block;
  margin: 0 0 0.35rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 600;
  line-height: 1.15;
}

.kh-unified-footer__identity p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.55;
}

.kh-unified-footer__navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.65rem 1.5rem;
}

.kh-unified-footer__navigation a {
  color: #e1b54f;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.kh-unified-footer__navigation a:hover,
.kh-unified-footer__navigation a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

@media (max-width: 900px) {
  .kh-unified-footer__inner {
    grid-template-columns: 1fr;
  }

  .kh-unified-footer__navigation {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .kh-unified-footer__navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* KH UNIFIED FOOTER END */

/* KH SUPPORT STATUS START */

.kh-support-status {
  box-sizing: border-box;
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(225, 181, 79, 0.75);
  background: rgba(225, 181, 79, 0.12);
  color: #e1b54f;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  cursor: default;
}

/* KH SUPPORT STATUS END */
