:root {
  --kcp-color-primary: #1a1a1a;
  --kcp-color-secondary: #2c3539;
  --kcp-color-accent: #c5a059;
  --kcp-color-accent-hover: #a38449;
  --kcp-color-text-body: #333333;
  --kcp-color-bg-light: #f8f6f2;
  --kcp-color-bg-white: #ffffff;
  --kcp-color-border: #e8e4dc;
  --kcp-font-main: 'Montserrat', Helvetica, Arial, sans-serif;
  --kcp-spacing-section: 104px;
  --kcp-container-width: 1240px;
}

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

body {
  font-family: var(--kcp-font-main);
}

.kcp-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--kcp-font-main);
  color: var(--kcp-color-text-body);
  line-height: 1.72;
  background: var(--kcp-color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.kcp-page,
.kcp-page * {
  box-sizing: border-box;
}

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

.kcp-page a {
  text-decoration: none;
  color: inherit;
}

.kcp-page h1,
.kcp-page h2,
.kcp-page h3,
.kcp-page h4 {
  margin: 0 0 14px;
  font-family: var(--kcp-font-main);
  color: var(--kcp-color-secondary);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.kcp-page h1 {
  font-size: 4rem;
  margin-bottom: 18px;
}

.kcp-page h2 {
  font-size: 2.45rem;
}

.kcp-page h3 {
  font-size: 1.28rem;
}

.kcp-page h4 {
  font-size: 1.04rem;
}

.kcp-page p {
  margin: 0 0 1.35rem;
  font-size: 1.04rem;
  color: var(--kcp-color-text-body);
}

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

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

.kcp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  transition: all 0.24s ease;
  white-space: nowrap;
  font-family: var(--kcp-font-main);
  cursor: pointer;
}

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

.kcp-btn-primary:hover,
.kcp-btn-primary:focus {
  background: var(--kcp-color-primary);
  transform: translateY(-2px);
}

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

.kcp-btn-outline:hover,
.kcp-btn-outline:focus {
  background: var(--kcp-color-secondary);
  color: #ffffff !important;
}

.kcp-btn-outline-light {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.88);
}

.kcp-btn-outline-light:hover,
.kcp-btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.12);
}

.kcp-chip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.34);
  background: rgba(197, 160, 89, 0.14);
  color: var(--kcp-color-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.22s ease;
}

.kcp-chip-link:hover,
.kcp-chip-link:focus {
  background: var(--kcp-color-accent);
  border-color: var(--kcp-color-accent);
  color: #ffffff;
}

/* hero */
.kcp-hero {
  position: relative;
  padding: 140px 0 78px;
  background:
    linear-gradient(rgba(17, 23, 31, 0.60), rgba(17, 23, 31, 0.72)),
    url('/assets/images/textures/pexels-martinpechy-2078266.jpg') center / cover no-repeat;
}

.kcp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(14, 20, 28, 0.26), rgba(14, 20, 28, 0.10)),
    linear-gradient(to bottom, rgba(14, 20, 28, 0.08), rgba(14, 20, 28, 0.18));
  z-index: 0;
}

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

.kcp-breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 34px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.88);
}

.kcp-breadcrumb a,
.kcp-breadcrumb span {
  color: inherit;
}

.kcp-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.kcp-hero-inner .kcp-eyebrow,
.kcp-hero-inner h1,
.kcp-hero-inner p {
  color: #ffffff !important;
}

.kcp-hero-lead {
  font-size: 1.14rem !important;
  max-width: 860px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.kcp-hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.kcp-hero-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* overview */
.kcp-contact-overview {
  padding: var(--kcp-spacing-section) 0 72px;
  background: var(--kcp-color-bg-light);
}

.kcp-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.kcp-overview-copy {
  max-width: 900px;
}

.kcp-consultation-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 24px;
}

.kcp-consultation-info-card {
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(232, 228, 220, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.035);
}

.kcp-consultation-info-label {
  display: block;
  margin-bottom: 10px;
  color: var(--kcp-color-accent);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.kcp-consultation-info-card p {
  margin: 0 !important;
  font-size: 0.98rem;
  line-height: 1.78;
}

.kcp-overview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.kcp-overview-sidebar {
  display: grid;
  gap: 16px;
}

.kcp-sidebar-card {
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(232, 228, 220, 0.95);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
}

.kcp-sidebar-label {
  display: block;
  margin-bottom: 10px;
  color: var(--kcp-color-accent);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.kcp-sidebar-actions {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.kcp-sidebar-actions .kcp-btn {
  width: 100%;
}

.kcp-big-phone {
  margin-bottom: 14px !important;
  font-size: 1.55rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: var(--kcp-color-secondary) !important;
}

/* center the buttons in Schedule + Call */
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(1) .kcp-btn,
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(2) .kcp-btn {
  display: flex;
  width: fit-content;
  margin: 18px auto 0;
}

/* center just the gold label in Schedule */
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(1) .kcp-sidebar-label {
  display: block;
  width: 100%;
  text-align: center;
}

/* center the gold label + phone number in Call */
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(2) .kcp-sidebar-label,
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(2) .kcp-big-phone {
  display: block;
  width: 100%;
  text-align: center;
}

/* apply the pulse/glow to Schedule, Call, and Office Hours */
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(1),
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(2),
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(3) {
  position: relative;
  isolation: isolate;
}

/* keep all content above the glow layer */
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(1) > *,
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(2) > *,
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(3) > * {
  position: relative;
  z-index: 2;
}

/* glowing border pulse */
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(1)::after,
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(2)::after,
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(3)::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  border: 1.5px solid rgba(87, 225, 209, 0.16);
  box-shadow:
    0 0 0 rgba(87, 225, 209, 0),
    0 0 0 rgba(255, 183, 88, 0),
    0 0 0 rgba(87, 225, 209, 0);
  pointer-events: none;
  z-index: 1;
  animation: kcpSidebarPulse 3.1s ease-in-out infinite;
}

/* stagger the timing so they don’t all pulse together */
.kcp-overview-sidebar .kcp-sidebar-card:nth-child(2)::after {
  animation-delay: 1.05s;
}

.kcp-overview-sidebar .kcp-sidebar-card:nth-child(3)::after {
  animation-delay: 2.1s;
}

@keyframes kcpSidebarPulse {
  0%,
  100% {
    border-color: rgba(87, 225, 209, 0.14);
    box-shadow:
      0 0 0 rgba(87, 225, 209, 0),
      0 0 0 rgba(255, 183, 88, 0),
      0 0 0 rgba(87, 225, 209, 0);
  }

  35% {
    border-color: rgba(87, 225, 209, 0.42);
    box-shadow:
      0 0 0 1px rgba(87, 225, 209, 0.08),
      0 0 16px rgba(87, 225, 209, 0.14),
      0 0 28px rgba(87, 225, 209, 0.08);
  }

  60% {
    border-color: rgba(255, 183, 88, 0.50);
    box-shadow:
      0 0 0 1px rgba(255, 183, 88, 0.10),
      0 0 16px rgba(255, 183, 88, 0.14),
      0 0 28px rgba(87, 225, 209, 0.08);
  }
}

@media (max-width: 768px) {
  .kcp-overview-sidebar .kcp-sidebar-card:nth-child(1) .kcp-btn,
  .kcp-overview-sidebar .kcp-sidebar-card:nth-child(2) .kcp-btn {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .kcp-overview-sidebar .kcp-sidebar-card:nth-child(1) .kcp-sidebar-label,
  .kcp-overview-sidebar .kcp-sidebar-card:nth-child(2) .kcp-sidebar-label,
  .kcp-overview-sidebar .kcp-sidebar-card:nth-child(2) .kcp-big-phone {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kcp-overview-sidebar .kcp-sidebar-card:nth-child(1)::after,
  .kcp-overview-sidebar .kcp-sidebar-card:nth-child(2)::after,
  .kcp-overview-sidebar .kcp-sidebar-card:nth-child(3)::after {
    animation: none;
  }
}

.kcp-hours-list {
  display: grid;
  gap: 10px;
}

.kcp-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(232, 228, 220, 0.95);
}

.kcp-hours-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.kcp-hours-row span {
  font-size: 0.96rem;
  color: var(--kcp-color-text-body);
}

.kcp-hours-row strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--kcp-color-secondary);
  text-align: right;
}

/* locations */
.kcp-locations {
  padding: 0 0 var(--kcp-spacing-section);
  background: var(--kcp-color-bg-light);
}

.kcp-section-header {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 52px;
  text-align: center;
}

.kcp-section-header p {
  max-width: 760px;
  margin: 0 auto !important;
}

.kcp-location-grid {
  display: grid;
  gap: 28px;
}

.kcp-location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(232, 228, 220, 0.95);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.045);
}

.kcp-card-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--kcp-color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.kcp-location-address {
  margin-bottom: 18px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--kcp-color-secondary) !important;
}

.kcp-location-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.kcp-detail-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--kcp-color-bg-light);
  border: 1px solid rgba(232, 228, 220, 0.95);
}

.kcp-detail-label {
  display: block;
  margin-bottom: 8px;
  color: var(--kcp-color-accent);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.kcp-detail-card strong {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--kcp-color-secondary);
}

.kcp-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.kcp-map-shell {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.kcp-map-wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #f2eee7;
  border: 1px solid rgba(232, 228, 220, 0.95);
}

.kcp-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* guidance */
.kcp-guidance {
  padding: var(--kcp-spacing-section) 0;
  background: #ffffff;
}

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

.kcp-guidance-card {
  padding: 26px 24px;
  border-radius: 24px;
  background: var(--kcp-color-bg-light);
  border: 1px solid rgba(232, 228, 220, 0.95);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.03);
}

.kcp-guidance-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--kcp-color-accent);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* bottom cta */
.kcp-bottom-cta {
  padding: 78px 0;
  background:
    linear-gradient(rgba(17, 23, 31, 0.68), rgba(17, 23, 31, 0.78)),
    url('/assets/images/textures/shutterstock-433037449.jpg') center / cover no-repeat;
}

.kcp-bottom-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.kcp-bottom-cta-inner .kcp-eyebrow,
.kcp-bottom-cta-inner h2,
.kcp-bottom-cta-inner p {
  color: #ffffff !important;
}

.kcp-bottom-cta-inner p {
  max-width: 720px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.kcp-bottom-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* responsive */
@media (max-width: 1180px) {
  .kcp-location-card {
    grid-template-columns: minmax(0, 1fr) 380px;
  }

  .kcp-guidance-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .kcp-page {
    --kcp-spacing-section: 88px;
  }

  .kcp-page h1 {
    font-size: 3.1rem;
  }

  .kcp-page h2 {
    font-size: 2.1rem;
  }

  .kcp-overview-grid,
  .kcp-location-card,
  .kcp-guidance-grid {
    grid-template-columns: 1fr;
  }

  .kcp-map-wrapper iframe {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .kcp-page {
    --kcp-spacing-section: 72px;
  }

.kcp-consultation-info-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

  .kcp-hero {
    padding: 128px 0 56px;
  }

  .kcp-page h1 {
    font-size: 2.45rem;
    line-height: 1.08;
  }

  .kcp-page h2 {
    font-size: 1.8rem;
  }

  .kcp-breadcrumb {
    margin-bottom: 24px;
  }

  .kcp-hero-inner,
  .kcp-section-header,
  .kcp-bottom-cta-inner {
    text-align: left;
  }

  .kcp-hero-lead,
  .kcp-section-header p,
  .kcp-bottom-cta-inner p {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left;
  }

  .kcp-hero-pills,
  .kcp-bottom-actions,
  .kcp-overview-links {
    justify-content: flex-start;
  }

  .kcp-location-card {
    padding: 22px;
  }

  .kcp-location-details {
    grid-template-columns: 1fr;
  }

  .kcp-location-actions {
    flex-direction: column;
  }

  .kcp-location-actions .kcp-btn,
  .kcp-sidebar-actions .kcp-btn {
    width: 100%;
  }

  .kcp-hours-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .kcp-hours-row strong {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .kcp-page h1 {
    font-size: 2.08rem;
  }

  .kcp-page h2 {
    font-size: 1.58rem;
  }

  .kcp-sidebar-card,
  .kcp-location-card,
  .kcp-guidance-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .kcp-map-wrapper iframe {
    min-height: 260px;
  }

  .kcp-btn {
    white-space: normal;
  }
}