/* ═══════════════════════════════════════════════════════════════
   Kigali Concierge Group — main.css  (v2.0 "Signature")
   A quiet-luxury design system: ink, bone, champagne gold.
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --ink:        #08080A;
  --ink-2:      #0E0E11;
  --ink-3:      #141418;
  --ink-4:      #1B1B21;
  --line:       rgba(255,255,255,0.07);
  --line-2:     rgba(255,255,255,0.12);

  --gold:       #C9A84C;
  --gold-2:     #E4CC86;
  --gold-3:     #F3E6C0;
  --gold-dim:   rgba(201,168,76,0.35);
  --gold-glow:  rgba(201,168,76,0.14);

  --bone:       #F4F0E8;
  --bone-70:    rgba(244,240,232,0.72);
  --bone-50:    rgba(244,240,232,0.52);
  --bone-30:    rgba(244,240,232,0.32);

  --serif:      'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans:       'Jost', 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-lux:   cubic-bezier(0.77, 0, 0.18, 1);
  --dur:        0.7s;

  --gutter:     clamp(20px, 5vw, 72px);
  --section-y:  clamp(96px, 12vw, 168px);
  --container:  1440px;
  --nav-h:      88px;
}

/* ── RESET / BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  background: var(--ink);
  color: var(--bone);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 1.5px solid var(--gold); outline-offset: 4px; }

/* Grain — a barely-there film over everything */
body::before {
  content: '';
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 9000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 10% { transform: translate(-2%,-3%); }
  20% { transform: translate(-4%,2%); } 30% { transform: translate(3%,-4%); }
  40% { transform: translate(-1%,4%); } 50% { transform: translate(-3%,1%); }
  60% { transform: translate(4%,0); } 70% { transform: translate(0,3%); }
  80% { transform: translate(2%,-2%); } 90% { transform: translate(-3%,3%); }
}

.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); border: 0; white-space: nowrap;
}
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 10000;
  padding: 12px 18px; background: var(--gold); color: var(--ink);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
}
.skip-link:focus { top: 16px; }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.kcg-section { position: relative; padding: var(--section-y) 0; }
.text-center { text-align: center; }

/* Section heads */
.section-head { margin-bottom: clamp(48px, 6vw, 88px); }
.section-head.center { text-align: center; }
.section-head.center .section-eyebrow { justify-content: center; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }
.section-head.split {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: end;
}
.section-head.split .lede { margin-bottom: 8px; }

.section-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 26px;
  font-size: 11px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
}
.section-eyebrow .idx {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 15px; letter-spacing: 1px; color: var(--gold-2); text-transform: none;
}
.section-eyebrow .rule { width: 40px; height: 1px; background: var(--gold); opacity: 0.6; }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--bone);
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--gold-2); font-weight: 400; }

.lede {
  font-size: 15.5px; line-height: 1.85; font-weight: 300;
  color: var(--bone-70); max-width: 620px; margin-top: 26px;
}

/* Buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 36px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 2.6px; text-transform: uppercase;
  border: 1px solid transparent;
  overflow: hidden; isolation: isolate;
  transition: color .45s var(--ease-out), border-color .45s var(--ease-out), transform .45s var(--ease-out), background .45s;
  will-change: transform;
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  transform: translateY(101%);
  transition: transform .55s var(--ease-lux);
}
.btn:hover::before { transform: translateY(0); }
.btn:active { transform: scale(0.98); }
.btn .arr { display: inline-block; transition: transform .45s var(--ease-out); }
.btn:hover .arr { transform: translateX(6px); }

.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold::before { background: var(--gold-3); }
.btn-gold:hover { color: var(--ink); }

.btn-ghost { background: transparent; color: var(--bone); border-color: rgba(244,240,232,0.28); }
.btn-ghost::before { background: var(--bone); }
.btn-ghost:hover { color: var(--ink); border-color: var(--bone); }

.btn-outline-gold { background: transparent; color: var(--gold-2); border-color: var(--gold-dim); }
.btn-outline-gold::before { background: var(--gold); }
.btn-outline-gold:hover { color: var(--ink); border-color: var(--gold); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--gold-2);
}
.link-arrow .line { width: 34px; height: 1px; background: var(--gold); transition: width .45s var(--ease-out); }
.link-arrow:hover .line { width: 56px; }
.link-arrow .arr { transition: transform .45s var(--ease-out); }
.link-arrow:hover .arr { transform: translateX(4px); }

.btn-circle {
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-dim); color: var(--gold-2);
  transition: background .4s, color .4s, border-color .4s, transform .4s var(--ease-out);
}
.btn-circle svg { width: 16px; height: 16px; }
.btn-circle:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: rotate(-45deg); }

/* ── PRELOADER ──────────────────────────────────────────────── */
.kcg-preloader {
  position: fixed; inset: 0; z-index: 12000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease-lux), visibility .8s;
}
.kcg-preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-mark { text-align: center; }
.preloader-monogram {
  display: block;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 96px; line-height: 1; color: var(--gold-2);
  animation: monoIn 1.2s var(--ease-out) both;
}
.preloader-word {
  display: block; margin-top: 12px;
  font-size: 10px; letter-spacing: 6px; text-transform: uppercase; color: var(--bone-50);
  animation: fadeIn 1s .3s both;
}
.preloader-line { display: block; width: 160px; height: 1px; margin: 28px auto 0; background: var(--line-2); overflow: hidden; }
.preloader-line i { display: block; width: 100%; height: 100%; background: var(--gold); transform-origin: left; transform: scaleX(0); animation: loadBar 1.4s .2s var(--ease-lux) forwards; }
@keyframes monoIn { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes loadBar { to { transform: scaleX(1); } }

/* ── CURSOR ─────────────────────────────────────────────────── */
.kcg-cursor { display: none; }
@media (pointer: fine) {
  .kcg-cursor {
    display: block; position: fixed; top: 0; left: 0; z-index: 11000;
    pointer-events: none; mix-blend-mode: difference;
  }
  .cursor-dot, .cursor-ring {
    position: absolute; top: 0; left: 0; border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor-dot { width: 6px; height: 6px; background: #fff; }
  .cursor-ring {
    width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.6);
    transition: width .35s var(--ease-out), height .35s var(--ease-out), border-color .35s, background .35s;
  }
  body.cursor-hover .cursor-ring { width: 64px; height: 64px; background: rgba(255,255,255,0.12); border-color: transparent; }
  body.cursor-hover .cursor-dot { opacity: 0; }
  body.cursor-active .kcg-cursor { cursor: none; }
}

/* ── SCROLL PROGRESS ────────────────────────────────────────── */
.kcg-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 10001;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
  transform-origin: left; transform: scaleX(0);
  pointer-events: none;
}

/* ── NAV ────────────────────────────────────────────────────── */
.kcg-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: transform .6s var(--ease-lux), background .5s, height .5s var(--ease-out), border-color .5s;
  border-bottom: 1px solid transparent;
  transform: translateY(-16px); opacity: 0;
}
body.is-loaded .kcg-nav { transform: translateY(0); opacity: 1; transition: transform .9s var(--ease-out) .2s, opacity .9s .2s, background .5s, height .5s var(--ease-out), border-color .5s; }
.kcg-nav.is-scrolled {
  height: 72px;
  background: rgba(8,8,10,0.72);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
}
body.is-loaded .kcg-nav.is-hidden { transform: translateY(-100%); }
.nav-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}

.nav-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-logo img, .nav-logo .custom-logo, .kcg-logo-img {
  display: block; height: 48px; width: auto; max-width: 220px; object-fit: contain; object-position: left center;
  transition: height .5s var(--ease-out);
}
.kcg-nav.is-scrolled .kcg-logo-img, .kcg-nav.is-scrolled .custom-logo { height: 38px; }
.nav-logo .custom-logo-link { display: flex; align-items: center; line-height: 0; }
.logo-mark {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--gold-dim);
  font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--gold-2); line-height: 1;
  transition: background .4s, color .4s, border-color .4s;
}
.nav-logo:hover .logo-mark { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.kcg-logo-text {
  font-family: var(--serif); font-weight: 500; font-size: 20px; letter-spacing: 0.5px; color: var(--bone);
}
.kcg-logo-sub { font-size: 9px; font-weight: 500; letter-spacing: 3.2px; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  position: relative; display: block; padding: 6px 0;
  font-size: 11.5px; font-weight: 400; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--bone-70); transition: color .35s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-lux);
}
.nav-links a:hover, .nav-links li.is-active a, .nav-links li.current-menu-item a { color: var(--bone); }
.nav-links a:hover::after, .nav-links li.is-active a::after, .nav-links li.current-menu-item a::after { transform: scaleX(1); transform-origin: left; }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-cta { padding: 14px 26px; font-size: 11px; }

/* Burger */
.kcg-burger {
  display: none; position: relative; z-index: 2001;
  width: 48px; height: 48px; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  border: 1px solid var(--gold-dim); transition: background .3s, border-color .3s;
}
.kcg-burger:hover { border-color: var(--gold); background: var(--gold-glow); }
.burger-line { display: block; width: 20px; height: 1.5px; background: var(--gold-2); transition: transform .45s var(--ease-lux), opacity .3s, width .3s; }
.kcg-burger.is-open .burger-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.kcg-burger.is-open .burger-line:nth-child(2) { opacity: 0; width: 0; }
.kcg-burger.is-open .burger-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE MENU ────────────────────────────────────────────── */
.kcg-mobile-menu {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px var(--gutter) 48px;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: clip-path .75s var(--ease-lux), opacity .4s, visibility .75s;
}
.kcg-mobile-menu.is-open { clip-path: circle(160% at calc(100% - 44px) 44px); opacity: 1; pointer-events: auto; visibility: visible; }
.mobile-menu-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.mm-diamond { position: absolute; border: 1px solid rgba(201,168,76,0.09); transform: rotate(45deg); }
.mm-diamond-1 { width: 520px; height: 520px; top: -220px; right: -220px; }
.mm-diamond-2 { width: 320px; height: 320px; bottom: -120px; left: -120px; border-color: rgba(201,168,76,0.05); }
.mm-line { position: absolute; background: var(--line); }
.mm-line-1 { width: 1px; height: 100%; left: 50%; top: 0; }
.mm-line-2 { height: 1px; width: 100%; top: 50%; left: 0; }
.mm-close {
  position: absolute; top: 20px; right: var(--gutter); width: 48px; height: 48px;
  border: 1px solid var(--gold-dim); display: grid; place-items: center; transition: border-color .3s, background .3s;
}
.mm-close:hover { border-color: var(--gold); background: var(--gold-glow); }
.mm-close span { position: absolute; width: 18px; height: 1.5px; background: var(--gold-2); }
.mm-close span:nth-child(1) { transform: rotate(45deg); }
.mm-close span:nth-child(2) { transform: rotate(-45deg); }
.mm-nav { position: relative; z-index: 2; }
.mm-item { opacity: 0; transform: translateX(-24px); transition: opacity .5s ease calc(var(--i) * 0.06s + 0.2s), transform .6s var(--ease-out) calc(var(--i) * 0.06s + 0.2s); }
.kcg-mobile-menu.is-open .mm-item { opacity: 1; transform: none; }
.mm-link {
  display: flex; align-items: center; gap: 22px; padding: 16px 0;
  border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
  transition: padding-left .35s var(--ease-out), border-color .35s;
}
.mm-link:hover { padding-left: 10px; border-bottom-color: var(--gold-dim); }
.mm-num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--gold); width: 26px; flex-shrink: 0; }
.mm-label { font-family: var(--serif); font-weight: 300; font-size: clamp(34px, 8vw, 52px); line-height: 1; color: var(--bone); flex: 1; transition: color .3s; }
.mm-link:hover .mm-label { color: var(--gold-2); }
.mm-arrow { color: var(--gold); opacity: 0; transform: translateX(-8px); transition: opacity .3s, transform .3s; }
.mm-link:hover .mm-arrow { opacity: 1; transform: none; }
.mm-footer { position: relative; z-index: 2; margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; opacity: 0; transform: translateY(16px); transition: opacity .5s .6s, transform .6s var(--ease-out) .6s; }
.kcg-mobile-menu.is-open .mm-footer { opacity: 1; transform: none; }
.mm-tagline { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--bone-30); }
.kcg-menu-overlay { display: none; }

/* ── HERO ───────────────────────────────────────────────────── */
.kcg-hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: grid; grid-template-rows: 1fr auto;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-img, .hero-bg {
  position: absolute; inset: -6%; width: 112%; height: 112%;
  object-fit: cover; object-position: center;
  background-size: cover; background-position: center;
  transform: scale(1.08); opacity: 0;
  filter: saturate(0.85) contrast(1.05);
  transition: opacity 1.6s ease, transform 3.5s var(--ease-out);
}
body.is-loaded .hero-img, body.is-loaded .hero-bg { opacity: 1; transform: scale(1); }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,10,0.86) 0%, rgba(8,8,10,0.55) 45%, rgba(8,8,10,0.25) 100%),
    linear-gradient(180deg, rgba(8,8,10,0.55) 0%, rgba(8,8,10,0.05) 35%, rgba(8,8,10,0.35) 75%, rgba(8,8,10,0.96) 100%);
}
.hero-frame {
  position: absolute; inset: 22px; pointer-events: none;
  border: 1px solid rgba(244,240,232,0.09);
  opacity: 0; transition: opacity 1.4s .8s;
}
body.is-loaded .hero-frame { opacity: 1; }
.hero-frame::before, .hero-frame::after {
  content: ''; position: absolute; width: 26px; height: 26px; border: 1px solid var(--gold);
}
.hero-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-frame::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.hero-side {
  position: absolute; top: 50%; z-index: 2;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--bone-30);
  writing-mode: vertical-rl; transform: translateY(-50%);
  opacity: 0; transition: opacity 1.2s 1s;
}
body.is-loaded .hero-side { opacity: 1; }
.hero-side-left  { left: 34px; transform: translateY(-50%) rotate(180deg); }
.hero-side-right { right: 34px; }
.hero-side span { display: inline-flex; align-items: center; gap: 14px; }
.hero-side i { display: block; width: 1px; height: 48px; background: var(--gold-dim); }

.hero-content {
  position: relative; z-index: 2;
  align-self: center;
  padding-top: calc(var(--nav-h) + 40px); padding-bottom: 40px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-2);
  margin-bottom: 34px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s var(--ease-out) .5s, transform .9s var(--ease-out) .5s;
}
body.is-loaded .hero-tag { opacity: 1; transform: none; }
.hero-tag i { display: block; width: 44px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(58px, 9.4vw, 150px);
  line-height: 0.94; letter-spacing: -0.02em;
  color: var(--bone); max-width: 14ch;
}
.hero-title em { font-style: italic; color: var(--gold-2); font-weight: 400; }
/* split-word reveal */
.hero-title .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-title .w > span { display: inline-block; transform: translateY(110%); transition: transform 1.1s var(--ease-lux); transition-delay: calc(var(--i) * 0.08s + 0.45s); }
body.is-loaded .hero-title .w > span { transform: translateY(0); }

.hero-sub {
  margin-top: 36px;
  font-size: 12.5px; font-weight: 400; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--bone-50); max-width: 560px; line-height: 2;
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s var(--ease-out) 1.1s, transform .9s var(--ease-out) 1.1s;
}
body.is-loaded .hero-sub { opacity: 1; transform: none; }
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s var(--ease-out) 1.3s, transform .9s var(--ease-out) 1.3s;
}
body.is-loaded .hero-btns { opacity: 1; transform: none; }

.hero-foot {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding-bottom: 44px;
  opacity: 0; transition: opacity 1.2s 1.6s;
}
body.is-loaded .hero-foot { opacity: 1; }
.hero-scroll { display: inline-flex; align-items: center; gap: 16px; font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--bone-50); transition: color .3s; }
.hero-scroll:hover { color: var(--gold-2); }
.scroll-mouse { width: 22px; height: 36px; border: 1px solid var(--bone-30); border-radius: 12px; position: relative; }
.scroll-mouse i { position: absolute; left: 50%; top: 7px; width: 2px; height: 6px; margin-left: -1px; border-radius: 2px; background: var(--gold); animation: wheel 2s var(--ease-lux) infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

.hero-stats { display: flex; gap: 0; }
.hero-stat { padding: 0 34px; border-left: 1px solid var(--line-2); }
.hero-stat:first-child { padding-left: 0; border-left: 0; }
.hero-stat strong { display: block; font-family: var(--serif); font-weight: 300; font-size: 40px; line-height: 1; color: var(--bone); }
.hero-stat strong b { font-weight: 300; color: var(--gold-2); }
.hero-stat span { display: block; margin-top: 8px; font-size: 10px; letter-spacing: 2.6px; text-transform: uppercase; color: var(--bone-50); }

/* ── TICKER ─────────────────────────────────────────────────── */
.kcg-ticker {
  position: relative; z-index: 3; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: flex; width: max-content; animation: ticker 40s linear infinite; }
.kcg-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 28px; padding: 22px 28px 22px 0;
  font-family: var(--serif); font-style: italic; font-size: 22px; font-weight: 300; color: var(--bone-50); white-space: nowrap;
}
.ticker-item::after { content: ''; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); opacity: .8; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── ABOUT ──────────────────────────────────────────────────── */
.kcg-about { background: var(--ink); }
.kcg-about::before {
  content: ''; position: absolute; top: 0; left: 50%; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--line), transparent); pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(48px, 7vw, 120px); align-items: center; }
.about-visual { position: relative; padding: 0 0 60px 40px; }
.about-frame { position: absolute; top: 40px; left: 0; right: 40px; bottom: 20px; border: 1px solid var(--gold-dim); pointer-events: none; }
.about-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--ink-3); }
.about-img-wrap img { width: 100%; height: 118%; object-fit: cover; filter: saturate(.85); transition: filter .8s; will-change: transform; }
.about-visual:hover .about-img-wrap img { filter: saturate(1); }
.about-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(8,8,10,0.55)); pointer-events: none; }
.about-badge {
  position: absolute; right: -8px; bottom: 0; width: 176px; height: 176px;
  background: var(--gold); color: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7);
}
.about-badge::before { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(8,8,10,0.25); }
.about-badge strong { font-family: var(--serif); font-weight: 500; font-size: 60px; line-height: 1; }
.about-badge span { margin-top: 8px; font-size: 9.5px; font-weight: 600; letter-spacing: 2.6px; text-transform: uppercase; line-height: 1.5; }
.about-caption {
  position: absolute; left: 0; bottom: 0; transform-origin: left bottom; transform: rotate(-90deg) translateX(-100%);
  font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--bone-30); white-space: nowrap; padding-left: 4px;
}

.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--line); }
.pillar h4 { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 500; font-size: 20px; color: var(--bone); margin-bottom: 8px; }
.pillar h4::before { content: ''; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.pillar p { font-size: 13px; line-height: 1.75; color: var(--bone-50); }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px; }
.stat { border-left: 1px solid var(--gold-dim); padding-left: 18px; }
.stat strong { display: block; font-family: var(--serif); font-weight: 300; font-size: 46px; line-height: 1; color: var(--gold-2); }
.stat span { display: block; margin-top: 8px; font-size: 10px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--bone-50); }
.about-text .link-arrow { margin-top: 44px; }

/* ── SERVICES (interactive list) ────────────────────────────── */
.kcg-services { background: var(--ink-2); }
.kcg-services::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, var(--gold-glow), transparent 70%);
  opacity: .6;
}
.services-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.services-list { border-top: 1px solid var(--line-2); }
.service-row {
  position: relative; display: grid; grid-template-columns: 64px 1fr 56px; gap: 24px; align-items: start;
  padding: 34px 0 34px 8px; border-bottom: 1px solid var(--line-2);
  transition: padding-left .5s var(--ease-out), background .5s;
}
.service-row::before {
  content: ''; position: absolute; left: 0; top: -1px; bottom: -1px; width: 2px;
  background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform .5s var(--ease-lux);
}
.service-row.is-active { padding-left: 24px; }
.service-row.is-active::before { transform: scaleY(1); }
.service-num { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--gold); line-height: 1.3; padding-top: 4px; transition: color .4s; }
.service-main h3 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.4vw, 36px); line-height: 1.15; color: var(--bone);
  transition: color .4s, transform .5s var(--ease-out);
}
.service-row.is-active .service-main h3 { color: var(--gold-3); }
.service-main p {
  font-size: 14px; line-height: 1.8; color: var(--bone-50); max-width: 520px;
  max-height: 0; overflow: hidden; opacity: 0; margin-top: 0;
  transition: max-height .7s var(--ease-lux), opacity .5s, margin-top .5s;
}
.service-row.is-active .service-main p { max-height: 200px; opacity: 1; margin-top: 14px; }
.service-main .link-arrow { margin-top: 0; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .6s var(--ease-lux), opacity .5s .1s, margin-top .5s; }
.service-row.is-active .service-main .link-arrow { max-height: 40px; opacity: 1; margin-top: 18px; }
.service-icon {
  width: 44px; height: 44px; margin-top: 2px; border: 1px solid var(--line-2); border-radius: 50%;
  display: grid; place-items: center; color: var(--bone-50);
  transition: background .4s, color .4s, border-color .4s, transform .5s var(--ease-out);
}
.service-icon svg { width: 14px; height: 14px; }
.service-row.is-active .service-icon { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: rotate(-45deg); }
.service-row-img { display: none; }

.services-visual { position: sticky; top: 110px; }
.services-visual-stack { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--ink-3); }
.services-visual-stack img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.08); filter: saturate(.8);
  transition: opacity .9s var(--ease-out), transform 1.4s var(--ease-out), filter .9s;
}
.services-visual-stack img.is-active { opacity: 1; transform: scale(1); filter: saturate(1); }
.services-visual-stack::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(8,8,10,0.75)); pointer-events: none; }
.services-visual-frame { position: absolute; inset: 18px; border: 1px solid rgba(244,240,232,0.14); pointer-events: none; }
.services-visual-caption {
  position: absolute; left: 36px; right: 36px; bottom: 36px; display: flex; align-items: baseline; gap: 18px;
}
.services-visual-caption .cap-num { font-family: var(--serif); font-style: italic; font-size: 48px; color: var(--gold-2); line-height: 1; }
.services-visual-caption .cap-title { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--bone); }

/* ── PROJECTS (bento) ───────────────────────────────────────── */
.kcg-projects { background: var(--ink); }
.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.project-card { position: relative; overflow: hidden; background: var(--ink-3); display: block; }
.project-card:nth-child(1) { grid-column: span 2; aspect-ratio: 16/10; }
.project-card:nth-child(2), .project-card:nth-child(3), .project-card:nth-child(4), .project-card:nth-child(5) { aspect-ratio: 4/5; }
.project-card:nth-child(6) { grid-column: span 2; aspect-ratio: 16/10; }
.project-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) brightness(.9); transition: transform 1.2s var(--ease-out), filter .8s; }
.project-card:hover img { transform: scale(1.06); filter: saturate(1) brightness(.75); }
.project-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,0) 40%, rgba(8,8,10,0.85)); pointer-events: none; }
.project-meta { position: absolute; left: 28px; right: 84px; bottom: 26px; z-index: 2; transform: translateY(6px); transition: transform .6s var(--ease-out); }
.project-card:hover .project-meta { transform: translateY(0); }
.project-tag { display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-2); margin-bottom: 8px; }
.project-meta h4 { font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 1.8vw, 30px); line-height: 1.15; color: var(--bone); }
.project-arrow {
  position: absolute; right: 24px; bottom: 24px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(244,240,232,0.3);
  display: grid; place-items: center; color: var(--bone);
  opacity: 0; transform: translate(-6px, 6px);
  transition: opacity .5s, transform .6s var(--ease-out), background .4s, color .4s, border-color .4s;
}
.project-arrow svg { width: 15px; height: 15px; }
.project-card:hover .project-arrow { opacity: 1; transform: none; }
.project-card:hover .project-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.project-index { position: absolute; top: 22px; left: 26px; z-index: 2; font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--bone-50); }

/* ── GALLERY (dual marquee + lightbox) ──────────────────────── */
.kcg-gallery { background: var(--ink-2); overflow: hidden; }
.gallery-marquee {
  overflow: hidden; margin-bottom: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.gallery-track { display: flex; gap: 14px; width: max-content; animation: gallery-left 70s linear infinite; }
.gallery-marquee[data-dir="right"] .gallery-track { animation-name: gallery-right; animation-duration: 84s; }
.gallery-marquee:hover .gallery-track { animation-play-state: paused; }
@keyframes gallery-left  { to { transform: translateX(-50%); } }
@keyframes gallery-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.gallery-item { position: relative; flex: 0 0 auto; height: clamp(240px, 28vw, 400px); overflow: hidden; background: var(--ink-3); cursor: zoom-in; }
.gallery-item:nth-child(odd)  { aspect-ratio: 3/4; }
.gallery-item:nth-child(even) { aspect-ratio: 4/3; }
.gallery-item:nth-child(4n)   { aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.02); transition: transform 1.2s var(--ease-out), filter .6s; }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.05); }
.gallery-label {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--bone);
  padding: 8px 12px; background: rgba(8,8,10,0.6); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(244,240,232,0.14);
  opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .5s var(--ease-out);
}
.gallery-item:hover .gallery-label { opacity: 1; transform: none; }
.gallery-foot { display: flex; justify-content: center; margin-top: 40px; }

.kcg-lightbox {
  position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center;
  background: rgba(8,8,10,0.94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transition: opacity .5s, visibility .5s;
}
.kcg-lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure { max-width: min(1100px, 90vw); max-height: 84vh; display: flex; flex-direction: column; align-items: center; gap: 18px; transform: scale(.96); transition: transform .6s var(--ease-out); }
.kcg-lightbox.is-open .lightbox-figure { transform: scale(1); }
.lightbox-figure img { max-height: 76vh; max-width: 100%; width: auto; object-fit: contain; box-shadow: 0 40px 100px -30px rgba(0,0,0,.9); }
.lightbox-caption { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--bone-70); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; width: 52px; height: 52px; border: 1px solid var(--line-2); border-radius: 50%;
  display: grid; place-items: center; color: var(--bone); transition: background .3s, color .3s, border-color .3s;
}
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 16px; height: 16px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.kcg-testimonials { background: var(--ink); }
.kcg-testimonials::before {
  content: '“'; position: absolute; left: 50%; top: 40%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-size: clamp(400px, 50vw, 760px); line-height: 1; color: var(--gold); opacity: .04; pointer-events: none;
}
.testi-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 110px); align-items: start; }
.testi-head .section-head { margin-bottom: 32px; }
.testi-slider { position: relative; min-height: 320px; }
.testi-item { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(18px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out), visibility .8s; }
.testi-item.is-active { position: relative; opacity: 1; visibility: visible; transform: none; }
.testi-quote { display: block; font-family: var(--serif); font-size: 72px; line-height: .6; color: var(--gold-2); margin-bottom: 26px; }
.testi-item p { font-family: var(--serif); font-weight: 300; font-size: clamp(24px, 2.4vw, 36px); line-height: 1.35; color: var(--bone); letter-spacing: -0.005em; }
.testi-item footer { display: flex; align-items: center; gap: 18px; margin-top: 34px; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 1px solid var(--gold-dim); display: grid; place-items: center; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--gold-2); background: var(--ink-3); flex-shrink: 0; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-item footer div strong { display: block; font-weight: 500; font-size: 14px; letter-spacing: .5px; color: var(--bone); }
.testi-item footer div span { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--bone-50); margin-top: 3px; }
.testi-nav { display: flex; align-items: center; gap: 18px; margin-top: 44px; }
.testi-count { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--bone-50); margin-left: 6px; }
.testi-count b { font-weight: 400; color: var(--gold-2); }
.testi-progress { flex: 1; max-width: 160px; height: 1px; background: var(--line-2); position: relative; overflow: hidden; }
.testi-progress i { position: absolute; inset: 0; background: var(--gold); transform-origin: left; transform: scaleX(0); }
.testi-slider.is-playing .testi-progress i { animation: testiBar 7s linear infinite; }
@keyframes testiBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ── EVENTS ─────────────────────────────────────────────────── */
.kcg-events { background: var(--ink-2); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.event-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--ink-3); border: 1px solid var(--line);
  transition: transform .7s var(--ease-out), border-color .5s, box-shadow .7s;
}
.event-card:hover { transform: translateY(-8px); border-color: var(--gold-dim); box-shadow: 0 40px 80px -40px rgba(0,0,0,.9); }
.event-card figure { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.event-card figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) brightness(.85); transition: transform 1.2s var(--ease-out), filter .6s; }
.event-card:hover figure img { transform: scale(1.06); filter: saturate(1) brightness(1); }
.event-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  padding: 7px 12px; font-size: 9.5px; font-weight: 500; letter-spacing: 2.6px; text-transform: uppercase; color: var(--gold-2);
  background: rgba(8,8,10,0.7); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid var(--gold-dim);
}
.event-body { padding: 30px 30px 8px; flex: 1; }
.event-body h3 { font-family: var(--serif); font-weight: 400; font-size: 28px; line-height: 1.15; color: var(--bone); margin-bottom: 14px; }
.event-body p { font-size: 13.5px; line-height: 1.8; color: var(--bone-50); }
.event-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 30px 28px; margin-top: 12px; border-top: 1px solid var(--line); }
.event-date { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--bone-50); }
.event-date::before { content: ''; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.event-footer .btn-circle { width: 46px; height: 46px; }

/* ── PARTNERS ───────────────────────────────────────────────── */
.kcg-partners { background: var(--ink); text-align: center; overflow: hidden; }
.kcg-partners::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, var(--gold-glow), transparent 70%);
}
.kcg-partners .section-head { margin-bottom: 56px; }
.partners-marquee-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.partners-track { display: flex; align-items: stretch; width: max-content; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); animation: ticker 36s linear infinite; }
.partners-track:hover { animation-play-state: paused; }
.partner-item {
  position: relative; flex: 0 0 auto; min-width: 220px; padding: 44px 56px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  border-right: 1px solid var(--line); transition: background .4s;
}
.partner-item::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 1px; background: var(--gold); transition: width .5s var(--ease-out); }
.partner-item:hover { background: rgba(201,168,76,0.04); }
.partner-item:hover::after { width: 70%; }
.partner-img-wrap { width: 120px; height: 56px; display: grid; place-items: center; }
.partner-img-wrap img { max-width: 120px; max-height: 56px; width: auto; height: auto; object-fit: contain; filter: brightness(.45) grayscale(1); transition: filter .5s, transform .5s; }
.partner-item:hover .partner-img-wrap img { filter: brightness(1) grayscale(0); transform: scale(1.05); }
.partner-name { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--bone-30); transition: color .4s; }
.partner-item:hover .partner-name { color: var(--gold-2); }
.partner-logo-text { font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: 2px; color: var(--bone-30); transition: color .4s; }
.partner-item:hover .partner-logo-text { color: var(--gold-2); }

/* ── CONTACT ────────────────────────────────────────────────── */
.kcg-contact { background: var(--ink-2); }
.kcg-contact::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dim), transparent); }
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 4vw, 64px); align-items: start; }
.contact-left { display: flex; flex-direction: column; gap: 28px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px;
  background: var(--ink-3); border: 1px solid var(--line);
  transition: border-color .4s, transform .5s var(--ease-out), background .4s;
}
.contact-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); background: var(--ink-4); }
.contact-card-ico { flex-shrink: 0; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--gold-dim); color: var(--gold-2); }
.contact-card-ico svg { width: 18px; height: 18px; }
.contact-card-body h6 { font-size: 9.5px; font-weight: 500; letter-spacing: 2.6px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-card-body p { font-size: 13.5px; line-height: 1.6; color: var(--bone-70); }
.contact-card-body a { transition: color .3s; }
.contact-card-body a:hover { color: var(--gold-2); }

.contact-flash { padding: 14px 18px; font-size: 13px; letter-spacing: .3px; border-left: 2px solid var(--gold); background: var(--gold-glow); color: var(--bone); }
.contact-flash.error { border-left-color: #E07C7C; background: rgba(224,124,124,0.07); }

.contact-form { position: relative; padding: 40px 36px; background: var(--ink-3); border: 1px solid var(--line); }
.contact-form::before { content: ''; position: absolute; top: -1px; left: 36px; width: 72px; height: 2px; background: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-field { display: flex; flex-direction: column; margin-bottom: 24px; position: relative; }
.form-row .form-field { margin-bottom: 0; }
.form-field label { font-size: 10px; font-weight: 500; letter-spacing: 2.4px; text-transform: uppercase; color: var(--bone-50); margin-bottom: 10px; transition: color .3s; }
.form-field:focus-within label { color: var(--gold-2); }
.form-field input, .form-field select, .form-field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--line-2); border-radius: 0;
  padding: 12px 0; color: var(--bone); font-family: var(--sans); font-size: 15px; font-weight: 300; outline: none;
  transition: border-color .3s;
}
.form-field::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-lux); }
.form-field:focus-within::after { transform: scaleX(1); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select {
  appearance: none; -webkit-appearance: none; padding-right: 28px; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 14px) 20px, calc(100% - 9px) 20px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.form-field select option { background: var(--ink-3); color: var(--bone); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--bone-30); }
.form-submit-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.btn-whatsapp svg { width: 16px; height: 16px; }
.form-note { font-size: 11.5px; color: var(--bone-30); margin-top: 18px; letter-spacing: .3px; }

.contact-right { position: sticky; top: 104px; }
.contact-map-frame {
  position: relative; min-height: 600px; display: flex; overflow: hidden;
  background: var(--ink-3); border: 1px solid var(--line-2);
  box-shadow: 0 40px 100px -40px rgba(0,0,0,.9);
}
.contact-map-frame::before, .contact-map-frame::after { content: ''; position: absolute; width: 28px; height: 28px; border: 1px solid var(--gold); z-index: 4; pointer-events: none; }
.contact-map-frame::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.contact-map-frame::after { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.contact-map-tag {
  position: absolute; top: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px;
  background: rgba(8,8,10,0.82); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid var(--gold-dim);
  font-size: 10px; font-weight: 500; letter-spacing: 2.6px; text-transform: uppercase; color: var(--gold-2);
}
.contact-map-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(201,168,76,.55); } 70% { box-shadow: 0 0 0 10px rgba(201,168,76,0); } 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); } }
.contact-map-iframe { position: absolute; inset: 0; z-index: 1; filter: grayscale(.85) contrast(1.05) brightness(.8); transition: filter .8s; }
.contact-map-frame:hover .contact-map-iframe { filter: grayscale(.2) contrast(1) brightness(.95); }
.contact-map-iframe iframe { width: 100%; height: 100%; display: block; border: 0; }
.contact-map-iframe::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 45%, rgba(8,8,10,.55)); pointer-events: none; }
.contact-map-card {
  position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 20px 22px;
  background: rgba(8,8,10,0.9); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid var(--gold-dim);
}
.contact-map-card-row { display: flex; align-items: center; gap: 16px; min-width: 0; }
.contact-map-pin { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; }
.contact-map-pin svg { width: 20px; height: 20px; }
.contact-map-info h6 { font-family: var(--serif); font-weight: 500; font-size: 20px; color: var(--bone); margin-bottom: 3px; }
.contact-map-info p { font-size: 12px; color: var(--bone-50); line-height: 1.5; }
.contact-map-btn { padding: 12px 20px; font-size: 10px; }

/* ── CTA BAND ───────────────────────────────────────────────── */
.kcg-cta { position: relative; padding: clamp(120px, 16vw, 220px) 0; text-align: center; overflow: hidden; }
.cta-media { position: absolute; inset: -12% 0; background-size: cover; background-position: center; will-change: transform; filter: saturate(.8); }
.kcg-cta::before { content: ''; position: absolute; inset: 0; background: rgba(8,8,10,0.78); }
.kcg-cta::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, var(--gold-glow), transparent 70%); }
.cta-inner { position: relative; z-index: 2; }
.cta-inner .section-eyebrow { justify-content: center; }
.kcg-cta h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(44px, 6.6vw, 96px); line-height: 1.02; letter-spacing: -0.015em; color: var(--bone); text-wrap: balance; }
.kcg-cta h2 em { font-style: italic; color: var(--gold-2); font-weight: 400; }
.kcg-cta p { font-size: 15px; line-height: 1.9; color: var(--bone-70); max-width: 520px; margin: 28px auto 44px; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.kcg-footer { position: relative; background: var(--ink); border-top: 1px solid var(--line); overflow: hidden; }
.kcg-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent); opacity: .5; }
.footer-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.footer-strip-item {
  display: flex; align-items: center; gap: 18px; padding: 28px var(--gutter);
  color: var(--bone-70); border-right: 1px solid var(--line); transition: background .4s, color .4s;
}
.footer-strip-item:last-child { border-right: 0; }
.footer-strip-item:hover { background: rgba(201,168,76,0.04); color: var(--bone); }
.footer-strip-item svg { width: 22px; height: 22px; color: var(--gold-2); flex-shrink: 0; }
.footer-strip-item span { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.footer-strip-item strong { font-size: 10px; font-weight: 500; letter-spacing: 2.6px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.footer-strip-item em { font-style: normal; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 56px; padding: 80px 0 64px; }
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 13.5px; line-height: 1.9; color: var(--bone-50); max-width: 380px; }
.footer-col h5 { position: relative; font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 26px; padding-bottom: 14px; }
.footer-col h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 1px; background: var(--gold); opacity: .6; }
.footer-col li { margin-bottom: 12px; }
.footer-col li a { position: relative; font-size: 13.5px; color: var(--bone-50); transition: color .3s, padding-left .35s var(--ease-out); }
.footer-col li a::before { content: ''; position: absolute; left: 0; top: 50%; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease-out); }
.footer-col li a:hover { color: var(--bone); padding-left: 18px; }
.footer-col li a:hover::before { width: 10px; }

.footer-social { display: flex; gap: 10px; margin-top: 28px; }
.social-link { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--bone-50); transition: border-color .35s, color .35s, background .35s, transform .35s var(--ease-out); }
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--gold); color: var(--gold-2); background: var(--gold-glow); transform: translateY(-3px); }

.footer-news-text { font-size: 13.5px; line-height: 1.8; color: var(--bone-50); margin-bottom: 18px; }
.footer-news { display: flex; border: 1px solid var(--line-2); background: var(--ink-2); transition: border-color .3s; }
.footer-news:focus-within { border-color: var(--gold-dim); }
.footer-news input { flex: 1; min-width: 0; background: transparent; border: 0; outline: none; padding: 14px 16px; color: var(--bone); font-family: var(--sans); font-size: 13.5px; font-weight: 300; }
.footer-news input::placeholder { color: var(--bone-30); }
.footer-news button { background: var(--gold); color: var(--ink); padding: 0 18px; display: grid; place-items: center; transition: background .3s; }
.footer-news button svg { width: 16px; height: 16px; }
.footer-news button:hover { background: var(--gold-3); }

.footer-wordmark {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(56px, 11.5vw, 190px); line-height: .9; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(244,240,232,0.13);
  text-align: center; white-space: nowrap; user-select: none; pointer-events: none;
  padding: 0 0 8px; margin-top: -10px;
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
}

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 26px 0 32px; border-top: 1px solid var(--line); }
.footer-bottom p { font-size: 11.5px; letter-spacing: .8px; color: var(--bone-30); }
.footer-legal { display: flex; gap: 26px; }
.footer-legal a { font-size: 11.5px; letter-spacing: .8px; color: var(--bone-30); transition: color .3s; }
.footer-legal a:hover { color: var(--gold-2); }
.footer-made { display: flex; align-items: center; gap: 8px; }
.footer-made span { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold-2); }

.kcg-totop {
  position: fixed; right: 28px; bottom: 100px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--gold-dim); color: var(--gold-2);
  background: rgba(8,8,10,0.7); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .4s, transform .5s var(--ease-out), background .3s, color .3s;
}
.kcg-totop svg { width: 14px; height: 14px; }
.kcg-totop.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.kcg-totop:hover { background: var(--gold); color: var(--ink); }

/* Admin bar */
.admin-bar .kcg-nav { top: 32px; }
.admin-bar .kcg-progress { top: 32px; }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform 1s var(--ease-out); transition-delay: var(--d, 0s); will-change: opacity, transform; }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="clip"]  { transform: none; clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease-lux), opacity .6s; }
[data-reveal].is-in   { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
.reveal-line { display: block; width: 100%; height: 1px; background: var(--line-2); transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease-lux); }
.reveal-line.is-in { transform: scaleX(1); }
.no-js [data-reveal] { opacity: 1; transform: none; clip-path: none; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .nav-links { gap: 26px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 0 24px; }
  .hero-stat strong { font-size: 34px; }
}

@media (max-width: 1024px) {
  :root { --nav-h: 76px; }
  .nav-links, .nav-cta { display: none; }
  .kcg-burger { display: flex; }
  .section-head.split { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .about-grid { grid-template-columns: 1fr; gap: 64px; }
  .about-visual { max-width: 560px; }
  .services-layout { grid-template-columns: 1fr; }
  .services-visual { display: none; }
  .service-row { grid-template-columns: 48px 1fr 44px; }
  .service-row-img { display: block; grid-column: 2 / 4; width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-top: 4px; max-height: 0; opacity: 0; transition: max-height .8s var(--ease-lux), opacity .6s, margin-top .5s; }
  .service-row.is-active .service-row-img { max-height: 320px; opacity: 1; margin-top: 22px; }
  .testi-grid { grid-template-columns: 1fr; gap: 24px; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-right { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
  .hero-side { display: none; }
  .hero-frame { inset: 14px; }
}

@media (max-width: 720px) {
  body { font-size: 14.5px; }
  .nav-inner { gap: 16px; }
  .nav-inner > * { min-width: 0; }
  .nav-logo { gap: 10px; flex-shrink: 1; overflow: hidden; }
  .logo-mark { width: 38px; height: 38px; font-size: 22px; }
  .kcg-logo-text { font-size: 17px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .kcg-logo-sub { display: none; }
  .nav-logo img, .nav-logo .custom-logo, .kcg-logo-img { height: 38px; max-width: 160px; }
  .kcg-burger { width: 44px; height: 44px; }
  .hero-content { padding-top: calc(var(--nav-h) + 28px); }
  .hero-title { font-size: clamp(48px, 15vw, 82px); max-width: none; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 28px; padding-bottom: 36px; }
  .hero-stats { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 0; }
  .hero-stat { padding: 0 0 0 18px; border-left: 1px solid var(--line-2); }
  .hero-stat:first-child { padding-left: 18px; border-left: 1px solid var(--line-2); }
  .hero-stat strong { font-size: 30px; }
  .ticker-item { font-size: 18px; padding: 16px 22px 16px 0; }
  .about-visual { padding: 0 0 48px 20px; }
  .about-frame { left: 0; right: 24px; top: 24px; }
  .about-badge { width: 136px; height: 136px; right: 0; }
  .about-badge strong { font-size: 44px; }
  .about-caption { display: none; }
  .about-pillars { grid-template-columns: 1fr; gap: 20px; }
  .service-row { grid-template-columns: 36px 1fr 40px; gap: 14px; padding: 26px 0; }
  .service-row.is-active { padding-left: 14px; }
  .service-num { font-size: 18px; }
  .service-icon { width: 38px; height: 38px; }
  .projects-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .project-card:nth-child(1), .project-card:nth-child(6) { grid-column: span 2; }
  .project-meta { left: 18px; right: 18px; bottom: 18px; }
  .project-arrow, .project-index { display: none; }
  .gallery-item { height: 200px; }
  .testi-slider { min-height: 280px; }
  .events-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-field { margin-bottom: 24px; }
  .contact-form { padding: 32px 22px; }
  .contact-form::before { left: 22px; }
  .contact-map-frame { min-height: 480px; }
  .contact-map-card { left: 14px; right: 14px; bottom: 14px; padding: 16px; }
  .contact-map-btn { width: 100%; justify-content: center; }
  .footer-strip { grid-template-columns: 1fr; }
  .footer-strip-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px var(--gutter); }
  .footer-strip-item:last-child { border-bottom: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 18px; }
  .kcg-totop { right: 18px; bottom: 96px; }
  .lightbox-prev, .lightbox-next { display: none; }
}

/* ── MOTION PREFERENCES ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  body::before { display: none; }
  .kcg-cursor { display: none !important; }
  [data-reveal] { opacity: 1; transform: none; clip-path: none; }
  .hero-title .w > span { transform: none; }
  .ticker-track, .gallery-track, .partners-track { animation: none; }
}
