/* One KC Property Group — site styles */

:root {
  --navy: #0a2440;
  --navy-2: #123457;
  --blue-700: #0f5aa8;
  --blue-600: #1a71cc;
  --blue-500: #2f8ae4;
  --blue-300: #8cc0f0;
  --blue-100: #dbebfa;
  --blue-50: #f0f7fe;

  --ink: #0d2137;
  --ink-soft: #33506b;
  --body: #566c81;
  --line: #e0eaf3;
  --line-soft: #edf3f9;

  --bg: #ffffff;
  --bg-alt: #f5f9fd;

  --shadow-sm: 0 1px 2px rgba(10, 36, 64, .05), 0 6px 18px rgba(10, 36, 64, .06);
  --shadow-md: 0 4px 10px rgba(10, 36, 64, .07), 0 18px 44px rgba(10, 36, 64, .10);
  --shadow-lg: 0 30px 70px rgba(10, 36, 64, .18);

  --max: 1180px;
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  color: var(--body);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-600); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { color: var(--ink); }

h2 {
  font-size: clamp(1.65rem, 2.9vw, 2.25rem);
  letter-spacing: -1px;
  line-height: 1.18;
  margin: 0 0 14px;
  font-weight: 800;
}

h3 { font-size: 1.1rem; margin: 24px 0 8px; font-weight: 700; letter-spacing: -.2px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lede { font-size: 1.08rem; max-width: 62ch; }

/* ---------- Header ---------- */

.topbar {
  background: var(--navy);
  color: #a9c3de;
  font-size: 13.5px;
}

.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 26px;
  justify-content: flex-end;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar a { color: #d3e2f1; text-decoration: none; }
.topbar a:hover { color: #fff; }

.site-header {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  filter: drop-shadow(0 5px 12px rgba(26, 113, 204, .3));
}

.brand-text { line-height: 1.2; }
.brand-name { font-weight: 800; font-size: 17.5px; letter-spacing: -.4px; color: var(--ink); }
.brand-sub {
  font-size: 11px;
  color: var(--blue-600);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}

nav.main-nav ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }

nav.main-nav a {
  display: block;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background .15s ease, color .15s ease;
}

nav.main-nav a:hover { background: var(--blue-50); color: var(--blue-700); }
nav.main-nav a.active { background: var(--blue-100); color: var(--blue-700); }

.header-cta { flex: 0 0 auto; }

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  white-space: nowrap;
}

.btn-sm { padding: 10px 20px; font-size: 14.5px; }

.btn-primary {
  background: linear-gradient(180deg, var(--blue-500), var(--blue-600));
  color: #fff;
  box-shadow: 0 10px 22px rgba(26, 113, 204, .3);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(26, 113, 204, .38); }

.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--blue-300); color: var(--blue-700); }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, .25); }

.btn-outline-light { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn-outline-light:hover { background: rgba(255, 255, 255, .14); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 88% -10%, rgba(140, 192, 240, .40), transparent 60%),
    linear-gradient(180deg, var(--blue-50) 0%, #ffffff 78%);
  padding: 76px 0 88px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.5rem);
  line-height: 1.06;
  margin: 0 0 20px;
  letter-spacing: -1.9px;
  font-weight: 800;
}

.hero h1 em { font-style: normal; color: var(--blue-600); }

.hero p { font-size: 1.14rem; color: var(--ink-soft); max-width: 46ch; margin: 0 0 32px; }

.hero-media { position: relative; }

.hero-media .shot-main {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.hero-media .shot-sub {
  position: absolute;
  left: -34px;
  bottom: -34px;
  width: 44%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r);
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
}

/* ---------- Trust strip ---------- */

.strip { background: var(--navy); color: #fff; padding: 34px 0; }

.strip .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 26px;
  text-align: center;
}

.strip .num {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
}

.strip .cap { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #9dbcdd; font-weight: 600; }

/* ---------- Page header (photo band) ---------- */

.page-head {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  overflow: hidden;
}

.page-head img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}

.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 36, 64, .94) 12%, rgba(10, 36, 64, .58) 72%, rgba(10, 36, 64, .38) 100%);
}

.page-head .wrap { position: relative; z-index: 2; padding-top: 66px; padding-bottom: 46px; }

.page-head h1 {
  margin: 0 0 12px;
  font-size: clamp(1.95rem, 3.8vw, 2.85rem);
  letter-spacing: -1.3px;
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
}

.page-head p { color: #cadcee; margin: 0; max-width: 58ch; }

/* ---------- Sections ---------- */

section { padding: 84px 0; }

section.alt { background: var(--bg-alt); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.section-head { max-width: 660px; margin-bottom: 8px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.cards-4 { grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }

.card h3 { margin-top: 0; }
.card p { margin: 0 0 14px; }
.card a.more { font-weight: 700; text-decoration: none; font-size: 15px; }
.card a.more:hover { text-decoration: underline; }

.icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--blue-50), var(--blue-100));
  color: var(--blue-600);
  margin-bottom: 18px;
}

.icon svg { width: 26px; height: 26px; }

.stat {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--blue-600);
  margin-bottom: 2px;
}

/* ---------- Content blocks ---------- */

.content { max-width: 820px; margin: 0 auto; }

.block {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 32px;
  margin: 0 0 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.block h2 { font-size: 1.3rem; letter-spacing: -.5px; margin-bottom: 12px; padding-left: 15px; border-left: 4px solid var(--blue-500); }
.block > :last-child { margin-bottom: 0; }
.block ul { margin: 12px 0; padding-left: 22px; }
.block li { margin-bottom: 8px; }
.block li::marker { color: var(--blue-300); }

.note {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  font-size: .95rem;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.pet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 20px 0; }

.pet { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 18px 20px; background: var(--bg-alt); }
.pet strong { display: block; color: var(--ink); margin-bottom: 8px; }
.pet span { display: block; font-size: .95rem; }

table.credit { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .97rem; }
table.credit th, table.credit td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line-soft); }
table.credit th { color: var(--ink); background: var(--blue-50); font-weight: 700; }
table.credit tr:last-child td { border-bottom: none; }

/* ---------- FAQ ---------- */

details.faq {
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

details.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 21px 24px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

details.faq summary::-webkit-details-marker { display: none; }

details.faq summary::after {
  content: "+";
  color: var(--blue-500);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

details.faq[open] summary::after { content: "\2212"; }
details.faq[open] summary { border-bottom: 1px solid var(--line-soft); }
details.faq .answer { padding: 18px 24px 22px; }
details.faq .answer > :first-child { margin-top: 0; }
details.faq .answer > :last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 8px; }

.contact-item {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact-item .label {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-item .value { font-size: 1.1rem; color: var(--ink); font-weight: 700; word-break: break-word; }
.contact-item .value a { color: var(--ink); text-decoration: none; }
.contact-item .value a:hover { color: var(--blue-600); }

/* ---------- CTA band ---------- */

.cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  text-align: center;
  padding: 96px 0;
}

.cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 36, 64, .66), rgba(10, 36, 64, .86));
}

.cta .wrap { position: relative; z-index: 2; }
.cta h2 { color: #fff; }
.cta p { color: #c7dbee; max-width: 52ch; margin: 0 auto 30px; }
.cta .btn-row { justify-content: center; }

/* ---------- Footer ---------- */

footer.site-footer { background: var(--navy); color: #9db8d4; padding: 60px 0 30px; font-size: 14.5px; }
footer.site-footer a { color: #cfe0f0; text-decoration: none; }
footer.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-grid h4 { color: #fff; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 40px; height: 40px; flex: 0 0 40px; }
.footer-brand .brand-name { color: #fff; font-weight: 800; font-size: 16.5px; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 13.5px;
  color: #7d9cbc;
}

.eho { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 52px; }
  .hero-media { max-width: 560px; }
  .hero-media .shot-sub { left: -12px; bottom: -22px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }

  nav.main-nav { display: none; width: 100%; order: 4; }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 2px; padding: 12px 0 4px; }
  nav.main-nav a { padding: 12px 14px; border-radius: 10px; }

  .site-header .wrap { flex-wrap: wrap; }
  .hero { padding: 56px 0 74px; }
  section { padding: 58px 0; }
  .cta { padding: 68px 0; }
  .topbar .wrap { justify-content: center; }
  .block { padding: 24px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-head { min-height: 230px; }
  .page-head .wrap { padding-top: 52px; padding-bottom: 36px; }
}
