:root {
  --khp-color-primary: #1A1A1A;
  --khp-color-secondary: #2C3539;
  --khp-color-accent: #C5A059;
  --khp-color-accent-hover: #A38449;
  --khp-color-heading-light: #9a9b96;
  --khp-color-text-body: #333333;
  --khp-color-bg-light: #F9F8F6;
  --khp-color-bg-white: #FFFFFF;
  --khp-color-border: #E5E5E5;
  --khp-header-blue: #8E99AA;

  --khp-font-main: 'Montserrat', Helvetica, Arial, sans-serif;
  --khp-spacing-section: 120px;
  --khp-container-width: 1200px;
  --khp-radius: 8px;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

body {
  font-family: var(--khp-font-main);
  color: var(--khp-color-text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.khp-site-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.khp-container {
  width: 90%;
  max-width: var(--khp-container-width);
  margin: 0 auto;
}

.khp-eyebrow {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--khp-color-accent);
  font-weight: 600;
  margin-bottom: 15px;
}

.khp-eyebrow-light {
  color: var(--khp-color-bg-white);
  opacity: 0.9;
}

.khp-eyebrow-light-accent {
  color: var(--khp-color-accent);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.khp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--khp-font-main);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 40px;
  text-decoration: none;
}

.khp-btn-primary {
  background-color: var(--khp-color-secondary) !important;
  color: #FFFFFF !important;
}

.khp-btn-primary:hover {
  background-color: var(--khp-color-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  color: #FFFFFF !important;
}

.khp-btn-outline {
  background-color: transparent;
  color: var(--khp-color-bg-white) !important;
  border-color: var(--khp-color-bg-white);
}

.khp-btn-outline:hover {
  background-color: var(--khp-color-bg-white);
  color: var(--khp-color-secondary) !important;
}

.khp-btn-outline-dark {
  background-color: transparent;
  color: var(--khp-color-secondary) !important;
  border-color: var(--khp-color-secondary);
}

.khp-btn-outline-dark:hover {
  background-color: var(--khp-color-secondary);
  color: var(--khp-color-bg-white) !important;
}

.khp-light-heading {
  color: var(--khp-color-bg-white) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.khp-light-paragraph {
  color: #FFFFFF !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.khp-inline-link {
  color: var(--khp-color-accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.khp-inline-link:hover {
  opacity: 0.8;
}

#khp-site-footer,
#khp-consultation-shell {
  font-family: var(--khp-font-main);
  color: var(--khp-color-text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#khp-site-header *,
#khp-site-footer *,
#khp-consultation-shell * {
  box-sizing: border-box;
}

#khp-site-footer a,
#khp-consultation-shell a {
  text-decoration: none;
  color: inherit;
}

#khp-site-header button,
#khp-site-footer button,
#khp-consultation-shell button {
  font-family: var(--khp-font-main);
}

.khp-mobile-sticky-cta {
  display: none;
}

.khp-skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 20000;
  padding: 12px 16px;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  transform: translateY(-140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.khp-skip-link:focus,
.khp-skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid #c5a059;
  outline-offset: 3px;
  border-radius: 8px;
}

#main-content:focus {
  outline: 2px solid rgba(197, 160, 89, 0.45);
  outline-offset: 6px;
}