/* ============================================================
   KING KAPLO — Component styles
   All reusable UI patterns for the full site
   ============================================================ */

/* ---- Container ---- */
.kk-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Eyebrow with leading rule ---- */
.kk-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.kk-eyebrow-row .kk-rule-line {
  width: 34px;
  height: 1px;
  background: var(--gold-400);
  flex: none;
}
.kk-eyebrow-row .kk-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* ---- Section head block ---- */
.kk-section-head { }
.kk-section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(30px, 3.2vw, 42px);
  margin: 14px 0 0;
  color: #fff;
  letter-spacing: -0.005em;
  line-height: 1.08;
}
.kk-section-head p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 18px 0 0;
}
.kk-section-head--center { text-align: center; }
.kk-section-head--center .kk-eyebrow-row { justify-content: center; }
.kk-section-head--center p { margin-left: auto; margin-right: auto; }

/* ---- Reveal animation ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .55s cubic-bezier(.22,1,.36,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.kk-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  border-radius: 2px;
  white-space: nowrap;
  border: none;
  line-height: 1;
}
.kk-btn .btn-arrow {
  display: inline-flex;
  transition: transform .35s;
}
.kk-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.kk-btn-primary {
  background: var(--gold-400);
  color: #0D0D0D !important;
  padding: 16px 28px;
}
.kk-btn-primary:hover {
  background: var(--gold-500);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: #0D0D0D !important;
}

.kk-btn-outline {
  background: transparent;
  color: var(--fg-1) !important;
  padding: 15px 27px;
  border: 1px solid var(--border-strong);
}
.kk-btn-outline:hover {
  background: rgba(212,175,55,.06);
  color: var(--gold-400) !important;
  border-color: var(--gold-400);
}

.kk-btn-link {
  background: none;
  color: var(--gold-400) !important;
  padding: 0;
  border: none;
}

.kk-btn-black {
  background: #0D0D0D;
  color: var(--gold-400) !important;
  padding: 16px 28px;
  border: none;
  border-radius: 2px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  flex: none;
}
.kk-btn-black:hover {
  background: #000;
  transform: translateY(-2px);
}
.kk-btn-black .btn-arrow {
  display: inline-flex;
  transition: transform .35s;
}
.kk-btn-black:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============================================================
   HEADER
   ============================================================ */
.kk-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,11,.32);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid transparent;
  transition: all .4s ease;
}
.kk-header.scrolled {
  background: rgba(10,10,11,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}
.kk-header-inner {
  display: flex;
  align-items: center;
  height: 80px;
  gap: 24px;
}
.kk-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}
.kk-logo-img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 2px;
}
.kk-logo-text { line-height: 1; }
.kk-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .04em;
  color: #fff;
}
.kk-logo-sub {
  font-size: 8.5px;
  letter-spacing: .34em;
  color: var(--gold-400);
  margin-top: 3px;
  font-weight: 600;
  font-family: var(--font-display);
}
.kk-desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  align-items: center;
}
.kk-nav-link {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color .3s;
  white-space: nowrap;
}
.kk-nav-link:hover { color: #fff; }
.kk-nav-link.active {
  color: var(--gold-400);
  border-bottom-color: var(--gold-400);
}
.kk-mobile-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  color: var(--gold-400);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.kk-mobile-menu {
  display: none;
  background: rgba(10,10,11,.98);
  border-top: 1px solid var(--hairline);
  padding: 12px 0;
}
.kk-mobile-menu.open { display: block; }
.kk-mobile-link {
  display: block;
  padding: 13px 40px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-2);
  transition: color .3s;
}
.kk-mobile-link:hover, .kk-mobile-link.active { color: var(--gold-400); }
.kk-mobile-menu-cta { padding: 12px 40px; }

/* ============================================================
   HOME HERO
   ============================================================ */
.kk-home-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink-950);
  border-bottom: 1px solid var(--hairline);
}
.kk-home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kk-home-hero__overlay-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,9,.95) 0%, rgba(8,8,9,.82) 42%, rgba(8,8,9,.42) 78%, rgba(8,8,9,.6) 100%);
}
.kk-home-hero__overlay-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,9,.5) 0%, transparent 30%, transparent 70%, rgba(8,8,9,.7) 100%);
}
.kk-home-hero__content {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
.kk-home-hero__inner { max-width: 720px; }
.kk-home-hero__eyebrow { margin-bottom: 28px; }
.kk-home-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -.015em;
  margin: 0;
  color: #fff;
}
.kk-home-hero__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 520px;
  margin: 30px 0 38px;
}
.kk-home-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.kk-page-hero {
  position: relative;
  background: var(--ink-950);
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.kk-page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}
.kk-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,11,.96) 0%, rgba(10,10,11,.78) 48%, rgba(10,10,11,.55) 100%);
}
.kk-page-hero__deco {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 220px;
  color: rgba(212,175,55,.045);
  font-weight: 800;
  font-family: var(--font-display);
  pointer-events: none;
  line-height: 1;
}
.kk-page-hero__content {
  position: relative;
  padding: 116px 40px 84px;
}
.kk-page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -.01em;
  margin: 20px 0 0;
  color: #fff;
  text-wrap: balance;
}
.kk-page-hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 24px 0 0;
  max-width: 600px;
}

/* ============================================================
   HOME — SERVICES 3-COL
   ============================================================ */
.kk-services-section {
  background: var(--ink-850);
  padding: 96px 0;
}
.kk-services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 56px;
}
.kk-service-col {
  display: block;
  text-decoration: none;
  padding: 4px 40px;
  border-right: 1px solid var(--hairline);
  transition: opacity .3s;
}
.kk-service-col:last-child { border-right: none; }
.kk-service-col__num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-400);
  font-size: 13px;
  letter-spacing: .1em;
  margin: 22px 0 8px;
}
.kk-service-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.18;
  margin: 0 0 14px;
  color: #fff;
  white-space: pre-line;
}
.kk-service-col p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--fg-3);
  margin: 0 0 20px;
  max-width: 260px;
}
.kk-service-col__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.kk-service-col__more .btn-arrow { display: inline-flex; transition: transform .35s; }
.kk-service-col:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   HOME — FEATURED WORK
   ============================================================ */
.kk-work-section {
  background: var(--ink-900);
  padding: 96px 0;
}
.kk-work-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.kk-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kk-feat-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-md);
  transition: border-color .4s;
  height: 340px;
}
.kk-feat-card:hover { border-color: var(--hairline-gold); }
.kk-feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.kk-feat-card:hover img { transform: scale(1.04); }
.kk-feat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.05) 35%, rgba(10,10,11,.92) 100%);
}
.kk-feat-card__meta {
  position: absolute;
  left: 24px;
  bottom: 22px;
  right: 24px;
}
.kk-feat-card__cat {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 8px;
}
.kk-feat-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 1.18;
  color: #fff;
}

/* ============================================================
   HOME — WHY KING KAPLO
   ============================================================ */
.kk-why-section {
  background: var(--ink-850);
  padding: 96px 0;
  border-top: 1px solid var(--hairline);
}
.kk-grid-block {
  display: grid;
  gap: 1px;
  margin-top: 56px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.kk-why-grid-inner { grid-template-columns: repeat(4,1fr); }
.kk-grid-cell {
  background: var(--ink-850);
  padding: 40px 30px;
  height: 100%;
}
.kk-grid-cell h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .02em;
  margin: 22px 0 12px;
  color: #fff;
  line-height: 1.3;
}
.kk-grid-cell p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-3);
  margin: 0;
}

/* ============================================================
   HOME — INDUSTRIES
   ============================================================ */
.kk-industries-section {
  background: var(--ink-900);
  padding: 96px 0;
}
.kk-industries-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin: 16px 0 20px;
  color: #fff;
  letter-spacing: -.005em;
}
.kk-industries-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 0;
  max-width: 380px;
}
.kk-industry-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  border-top: 1px solid var(--hairline);
}
.kk-industry-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--hairline);
  cursor: default;
}
.kk-industry-row__bullet {
  width: 8px;
  height: 8px;
  background: var(--gold-400);
  transform: rotate(45deg);
  flex: none;
  opacity: 0.6;
  transition: opacity .3s;
}
.kk-industry-row:hover .kk-industry-row__bullet { opacity: 1; }
.kk-industry-row__name {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--fg-2);
  transition: color .3s;
}
.kk-industry-row:hover .kk-industry-row__name { color: #fff; }

/* ============================================================
   HOME — CLIENT WALL
   ============================================================ */
.kk-clients-section {
  background: var(--ink-950);
  padding: 72px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.kk-clients-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 56px;
  margin-top: 40px;
}
.kk-client-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--fg-3);
  opacity: .58;
  letter-spacing: .01em;
}

/* ============================================================
   HOME — TESTIMONIALS
   ============================================================ */
.kk-testimonials-section {
  background: var(--ink-850);
  padding: 96px 0;
}
.kk-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 52px;
}
.kk-testimonial-card {
  background: var(--ink-850);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.kk-testimonial-card__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--gold-400);
  line-height: 0.6;
  height: 30px;
}
.kk-testimonial-card__text {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--fg-1);
  margin: 18px 0 28px;
  flex: 1;
  font-weight: 400;
}
.kk-testimonial-card__author {
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}
.kk-testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
}
.kk-testimonial-card__role {
  font-size: 13px;
  color: var(--gold-400);
  margin-top: 5px;
}

/* ============================================================
   HOME — ABOUT PREVIEW
   ============================================================ */
.kk-about-preview {
  background: var(--ink-900);
  padding: 96px 0;
}
.kk-about-preview__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline-gold-2);
  box-shadow: var(--shadow-lg);
}
.kk-about-preview__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.kk-about-preview h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  margin: 16px 0 22px;
  color: #fff;
  letter-spacing: -.005em;
}
.kk-about-preview__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-2);
  max-width: 480px;
  margin: 0 0 28px;
}
.kk-about-preview__mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 0 0 32px;
}
.kk-about-preview__mv-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 8px;
}
.kk-about-preview__mv-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-3);
  margin: 0;
}

/* ============================================================
   HOME — FINAL CTA
   ============================================================ */
.kk-final-cta {
  position: relative;
  background: var(--ink-950);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.kk-final-cta__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(212,175,55,.10) 0%, transparent 68%);
  pointer-events: none;
}
.kk-final-cta__inner { position: relative; }
.kk-final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin: 22px auto 0;
  color: #fff;
  max-width: 880px;
  text-wrap: balance;
}
.kk-final-cta p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 24px auto 38px;
  max-width: 560px;
}
.kk-final-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CTA BAND (gold inversion)
   ============================================================ */
.kk-cta-band {
  background: var(--gold-400);
  padding: 44px 0;
}
.kk-cta-band__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.kk-cta-band__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(13,13,13,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.kk-cta-band__text { flex: 1; min-width: 260px; }
.kk-cta-band__text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 26px;
  margin: 0;
  color: #0D0D0D;
  letter-spacing: -.005em;
}
.kk-cta-band__text p {
  margin: 7px 0 0;
  font-size: 14.5px;
  color: var(--on-gold-2);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.kk-footer {
  background: var(--ink-950);
  padding-top: 72px;
  border-top: 1px solid var(--hairline);
}
.kk-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 52px;
}
.kk-footer-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  text-decoration: none;
}
.kk-footer-logo-img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 2px;
}
.kk-footer-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: .04em;
}
.kk-footer-logo-sub {
  font-size: 8px;
  letter-spacing: .32em;
  color: var(--gold-400);
  margin-top: 3px;
  font-weight: 600;
  font-family: var(--font-display);
}
.kk-footer-blurb {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--fg-3);
  max-width: 290px;
  margin: 0;
}
.kk-footer-col-head {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.kk-footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.kk-footer-link {
  font-size: 14px;
  color: var(--fg-3);
  text-decoration: none;
  transition: color .3s;
}
.kk-footer-link:hover { color: #fff; }
.kk-contact-lines { display: flex; flex-direction: column; gap: 13px; }
.kk-contact-line { display: flex; align-items: flex-start; gap: 11px; }
.kk-contact-line__icon { margin-top: 2px; }
.kk-contact-line__text { font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }
.kk-social-btns { display: flex; gap: 12px; margin-top: 22px; }
.kk-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ink-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  cursor: pointer;
  transition: border-color .3s;
  text-decoration: none;
}
.kk-social-btn:hover { border-color: var(--gold-400); }
.kk-footer-bottom {
  border-top: 1px solid var(--hairline);
  padding: 22px 0;
}
.kk-footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.kk-footer-bottom__copy { font-size: 12.5px; color: var(--fg-3); }
.kk-footer-bottom__tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.kk-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5,5,6,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  animation: kkFade .3s ease;
}
.kk-modal-overlay.open { display: flex; }
.kk-modal {
  width: 540px;
  max-width: 100%;
  background: var(--ink-850);
  border: 1px solid var(--hairline-gold);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin: auto;
}
.kk-modal__bar { height: 4px; background: var(--gold-foil); }
.kk-modal__body { padding: 32px 36px 36px; }
.kk-modal__head {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.kk-modal__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 27px;
  margin: 10px 0 0;
  color: #fff;
  letter-spacing: -.005em;
}
.kk-modal__close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--fg-3);
  cursor: pointer;
  padding: 2px;
  display: flex;
  transition: color .3s;
}
.kk-modal__close:hover { color: #fff; }

/* ============================================================
   FORM FIELDS (shared: modal + contact page)
   ============================================================ */
.kk-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.kk-field-label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
}
.kk-field-label .req { color: var(--gold-400); margin-left: 4px; }
.kk-input {
  background: var(--ink-800);
  border: 1px solid var(--ink-600);
  border-radius: 2px;
  padding: 13px 15px;
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color .25s;
  resize: vertical;
  -webkit-appearance: none;
  appearance: none;
}
.kk-input:focus { border-color: var(--gold-400); }
.kk-input.has-error { border-color: #C0563A; }
.kk-field-error { font-size: 12px; color: #D08164; }
.kk-select-wrap {
  position: relative;
}
.kk-select-wrap select.kk-input { padding-right: 40px; }
.kk-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gold-400);
  display: flex;
}
.kk-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.kk-form-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kk-success-panel {
  padding: 36px 0 8px;
  text-align: center;
}
.kk-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 1.5px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  box-shadow: var(--shadow-gold);
}
.kk-success-panel h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -.005em;
}
.kk-success-panel p {
  color: var(--fg-2);
  font-size: 15px;
  margin: 0 auto;
  max-width: 360px;
  line-height: 1.7;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.kk-services-blocks { background: var(--ink-900); padding: 88px 0; }
.kk-service-block-wrap {
  padding-bottom: 88px;
  margin-bottom: 88px;
  border-bottom: 1px solid var(--hairline);
}
.kk-service-block-wrap:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.kk-service-block__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline-gold-2);
  box-shadow: var(--shadow-lg);
}
.kk-service-block__media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.kk-service-block__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.kk-service-block__num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-400);
  font-size: 14px;
  letter-spacing: .14em;
}
.kk-service-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  margin: 0 0 18px;
  color: #fff;
  letter-spacing: -.005em;
}
.kk-service-block__lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-2);
  margin: 0 0 28px;
  max-width: 480px;
}
.kk-service-block__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 2px;
  border-top: 1px solid var(--hairline);
}
.kk-service-block__item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}
.kk-service-block__bullet {
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  transform: rotate(45deg);
  flex: none;
}
.kk-service-block__item-label { font-size: 14.5px; color: var(--fg-2); }

/* ---- Process ---- */
.kk-process-section {
  background: var(--ink-850);
  padding: 96px 0;
  border-top: 1px solid var(--hairline);
}
.kk-process-grid { grid-template-columns: repeat(4,1fr); }
.kk-process-cell { background: var(--ink-850); padding: 40px 30px; height: 100%; }
.kk-process-cell__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.kk-process-cell__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--ink-600);
}
.kk-process-cell h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .02em;
  margin: 0 0 12px;
  color: #fff;
}
.kk-process-cell p { font-size: 14px; line-height: 1.7; color: var(--fg-3); margin: 0; }

/* ============================================================
   WORK PAGE
   ============================================================ */
.kk-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.kk-filter-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s;
  background: transparent;
  color: var(--fg-2);
  border: 1px solid var(--border-strong);
}
.kk-filter-btn:hover { color: var(--gold-400); }
.kk-filter-btn.active {
  background: var(--gold-400);
  color: #0D0D0D;
  border-color: var(--gold-400);
}
.kk-work-grid-page {
  background: var(--ink-900);
  padding: 80px 0 96px;
}
.kk-work-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.kk-work-card {
  display: block;
  text-decoration: none;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-md);
  transition: border-color .4s;
  background: var(--ink-850);
}
.kk-work-card:hover { border-color: var(--hairline-gold); }
.kk-work-card__img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.kk-work-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.kk-work-card:hover .kk-work-card__img-wrap img { transform: scale(1.05); }
.kk-work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.1) 50%, rgba(10,10,11,.78) 100%);
}
.kk-work-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #0D0D0D;
  background: var(--gold-400);
  padding: 6px 12px;
  border-radius: 2px;
}
.kk-work-card__body { padding: 24px 26px 28px; }
.kk-work-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #fff;
}
.kk-work-card__overview {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-3);
  margin: 0 0 18px;
}
.kk-work-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.kk-work-card__link .btn-arrow { display: inline-flex; transition: transform .35s; }
.kk-work-card:hover .btn-arrow { transform: translateX(4px); }

/* ---- Results ---- */
.kk-results-section {
  background: var(--ink-950);
  padding: 96px 0;
  border-top: 1px solid var(--hairline);
}
.kk-results-grid { grid-template-columns: repeat(4,1fr); }
.kk-result-cell {
  background: var(--ink-950);
  padding: 44px 28px;
  text-align: center;
  height: 100%;
}
.kk-result-cell__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 58px);
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -.01em;
}
.kk-result-cell__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-top: 16px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.kk-story-section {
  background: var(--ink-900);
  padding: 96px 0;
}
.kk-story-section__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline-gold-2);
  box-shadow: var(--shadow-lg);
}
.kk-story-section__img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.kk-story-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  margin: 16px 0 24px;
  color: #fff;
  letter-spacing: -.005em;
}
.kk-story-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-2);
  margin: 0 0 20px;
  max-width: 480px;
}
.kk-story-section p:last-child { margin-bottom: 0; }

.kk-mv-section {
  background: var(--ink-850);
  padding: 88px 0;
  border-top: 1px solid var(--hairline);
}
.kk-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.kk-mv-card {
  background: var(--ink-900);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 44px 40px;
  height: 100%;
}
.kk-mv-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 24px 0 14px;
}
.kk-mv-card__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: #fff;
  margin: 0;
  letter-spacing: -.005em;
}

.kk-values-section {
  background: var(--ink-900);
  padding: 96px 0;
}
.kk-values-inner { grid-template-columns: repeat(5,1fr); }
.kk-value-cell {
  background: var(--ink-900);
  padding: 38px 26px;
  text-align: center;
  height: 100%;
}
.kk-value-cell h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .04em;
  margin: 20px 0 10px;
  color: #fff;
}
.kk-value-cell p { font-size: 13px; line-height: 1.6; color: var(--fg-3); margin: 0; }

.kk-ind-section {
  background: var(--ink-850);
  padding: 96px 0;
  border-top: 1px solid var(--hairline);
}
.kk-ind-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
}
.kk-ind-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fg-2);
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  padding: 13px 24px;
}

.kk-leadership-section {
  background: var(--ink-900);
  padding: 96px 0;
}
.kk-leaders-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 52px;
}
.kk-leader-card {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--ink-850);
}
.kk-portrait-placeholder {
  position: relative;
  height: 360px;
  background: linear-gradient(160deg, var(--ink-700) 0%, var(--ink-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--hairline-gold-2);
}
.kk-portrait-placeholder span {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-3);
  opacity: .6;
}
.kk-leader-card__body { padding: 24px 26px 28px; }
.kk-leader-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: .02em;
  margin: 0;
  color: #fff;
}
.kk-leader-card__role { font-size: 13.5px; color: var(--gold-400); margin-top: 7px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.kk-contact-section {
  background: var(--ink-900);
  padding: 88px 0 96px;
}
.kk-contact-form-card {
  background: var(--ink-850);
  border: 1px solid var(--hairline-gold);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.kk-contact-form-card__bar { height: 4px; background: var(--gold-foil); }
.kk-contact-form-card__body { padding: 40px 44px 44px; }
.kk-contact-form-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 28px;
  margin: 10px 0 28px;
  color: #fff;
  letter-spacing: -.005em;
}

.kk-contact-info__intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.1;
  margin: 16px 0 8px;
  color: #fff;
  letter-spacing: -.005em;
}
.kk-contact-info__intro p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 0 0 14px;
  max-width: 380px;
}
.kk-contact-info-items { border-top: 1px solid var(--hairline); }
.kk-contact-info-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}
.kk-contact-info-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hairline-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex: none;
}
.kk-contact-info-item__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 7px;
}
.kk-contact-info-item__line { font-size: 15.5px; color: var(--fg-1); line-height: 1.5; }
.kk-contact-social { margin-top: 26px; }
.kk-contact-social__head {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 14px;
}
.kk-social-row { display: flex; gap: 12px; }
.kk-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ink-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  transition: border-color .3s;
  text-decoration: none;
}
.kk-social-icon:hover { border-color: var(--gold-400); }
