:root {
  --kw-red: #b40101;
  --kw-red-dark: #760000;
  --ink: #181818;
  --charcoal: #2d2d2d;
  --paper: #fbf8f4;
  --mist: #eef2f0;
  --line: #ded8cf;
  --gold: #b89a58;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(24, 24, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(45, 45, 45, 0.12);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.nav-links a,
.button,
.card-link {
  text-decoration: none;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(180px, 24vw, 285px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links a:hover,
.active {
  color: var(--kw-red);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(24, 24, 24, 0.16);
}

.button-primary {
  background: var(--kw-red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--kw-red-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: stretch;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(24, 24, 24, 0.82) 38%, rgba(24, 24, 24, 0.3) 68%, rgba(24, 24, 24, 0.12) 100%),
    linear-gradient(180deg, rgba(24, 24, 24, 0.1), rgba(24, 24, 24, 0.42));
  z-index: -1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: clamp(70px, 9vw, 128px) 0 clamp(48px, 7vw, 84px);
  display: grid;
  align-content: center;
}

.hero-content {
  width: min(700px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f5d4d4;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--kw-red);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 7vw, 6.2rem);
  line-height: 0.95;
  max-width: 11ch;
}

.page-hero h1 {
  max-width: 13ch;
}

.hero-lede,
.page-lede {
  width: min(650px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  min-height: 54svh;
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.section-heading p,
.card p,
.feature-list p,
.contact-row span,
.contact-row a {
  color: #555;
}

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

.card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(24, 24, 24, 0.06);
}

.card-link {
  display: block;
  color: inherit;
}

.card-link:hover {
  border-color: rgba(180, 1, 1, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--mist);
  color: var(--kw-red);
  font-weight: 900;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.page-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.page-directory a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--charcoal);
  font-weight: 800;
  text-decoration: none;
}

.page-directory a:hover {
  color: var(--kw-red);
  border-color: rgba(180, 1, 1, 0.45);
}

.band {
  background: var(--charcoal);
  color: var(--white);
}

.band .section-heading p,
.band .feature-list p,
.band .card p {
  color: rgba(255, 255, 255, 0.72);
}

.band .card {
  background: #303030;
  border-color: rgba(255, 255, 255, 0.16);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 42px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-item {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.band .feature-item {
  border-color: rgba(255, 255, 255, 0.16);
}

.feature-item h3 {
  margin-bottom: 6px;
}

.aside-box {
  padding: clamp(26px, 4vw, 38px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 6px solid var(--kw-red);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.badge-list li {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 800;
}

.search-frame {
  width: 100%;
  min-height: 680px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-row strong {
  display: block;
  min-width: 112px;
}

.contact-row a {
  text-decoration: none;
}

.site-footer {
  padding: 26px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 960px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
  }

  .nav-links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.93), rgba(24, 24, 24, 0.72)),
      linear-gradient(180deg, rgba(24, 24, 24, 0.24), rgba(24, 24, 24, 0.62));
  }

  .card-grid,
  .page-directory,
  .section-heading,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav,
  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, 1160px);
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand-logo {
    width: min(52vw, 210px);
    max-height: 48px;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .nav-links a {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 6px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    font-size: 0.82rem;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .nav .button {
    width: 100%;
    grid-column: 1 / -1;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 72px;
  }

  .card {
    min-height: auto;
  }

  .contact-row {
    display: block;
  }
}
