:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F5F2EC;
  --gray: #888888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav.kcg-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  background: linear-gradient(180deg, rgba(0,0,0,0.92) 0%, transparent 100%);
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}
nav.kcg-nav.scrolled { background: rgba(0,0,0,0.97); }
/* ── LOGO — image or text ── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* When WordPress custom_logo or kcg_logo_image is set */
.nav-logo img,
.nav-logo .custom-logo,
.kcg-logo-img {
  display: block;
  height: 52px;          /* fixed nav height — crisp on retina */
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  /* Optimisation: browser hint for layout */
  content-visibility: auto;
  /* Subtle filter so logo pops on dark nav */
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.4));
  transition: opacity 0.3s ease;
}
.nav-logo img:hover,
.kcg-logo-img:hover { opacity: 0.85; }

/* WordPress wraps custom_logo in an <a> — neutralise it */
.nav-logo .custom-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

/* Text fallback (no logo uploaded yet) */
.kcg-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: 2px; color: var(--gold);
  text-transform: uppercase; line-height: 1.2;
  display: block;
}
.kcg-logo-sub {
  display: block;
  font-size: 11px; font-weight: 300;
  color: var(--white); letter-spacing: 5px;
}

/* Scrolled nav — slightly smaller logo */
nav.kcg-nav.scrolled .kcg-logo-img,
nav.kcg-nav.scrolled .custom-logo { height: 40px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--black);
  background: var(--gold); border: none;
  padding: 12px 28px; cursor: pointer; transition: background 0.3s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--gold-light); color: var(--black); }

/* ── HERO ── */
.kcg-hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 10s ease-out forwards;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-content {
  position: relative; text-align: center;
  padding-bottom: 120px;
  animation: fadeUp 1.2s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4); padding: 6px 20px; margin-bottom: 28px;
}
.kcg-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 110px); font-weight: 300;
  line-height: 0.95; letter-spacing: -1px; color: var(--white); margin-bottom: 32px;
}
.kcg-hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 13px; font-weight: 300; letter-spacing: 3px;
  color: rgba(255,255,255,0.65); text-transform: uppercase;
  max-width: 500px; margin: 0 auto 48px; line-height: 2;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; }
.btn-gold {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  background: var(--gold); color: var(--black); border: none;
  padding: 16px 40px; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); color: var(--black); }
.btn-outline {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 16px 40px; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.scroll-line {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ── SHARED SECTION STYLES ── */
.kcg-section { padding: 120px 60px; }
.section-label {
  display: inline-block; border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 20px; font-size: 10px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 72px); font-weight: 300;
  letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.6);
  font-weight: 300; max-width: 680px;
}
.divider { width: 60px; height: 1px; background: var(--gold); margin: 32px 0; }
.text-center { text-align: center; }
.text-center .section-body { margin: 0 auto; }
.text-center .divider { margin: 24px auto; }

/* ── ABOUT ── */
.kcg-about {
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.about-badge {
  position: absolute; bottom: -30px; right: -30px;
  width: 160px; height: 160px; background: var(--gold);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; color: var(--black);
}
.about-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 600; line-height: 1;
}
.about-badge span { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.stat { border-left: 1px solid rgba(201,168,76,0.4); padding-left: 20px; }
.stat strong {
  font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300;
  color: var(--gold); display: block; line-height: 1;
}
.stat span { font-size: 11px; font-weight: 500; letter-spacing: 1px; color: rgba(255,255,255,0.5); text-transform: uppercase; }

/* ── PROJECTS ── */
.kcg-projects { background: var(--black); }
.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 16px; }
.project-card { position: relative; overflow: hidden; cursor: pointer; }
.project-card:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.project-card:nth-child(2) { aspect-ratio: 4/5; }
.project-card:nth-child(3) { aspect-ratio: 4/5; }
.project-card:nth-child(4) { aspect-ratio: 4/5; }
.project-card:nth-child(5) { aspect-ratio: 4/5; }
.project-card:nth-child(6) { grid-column: span 2; aspect-ratio: 16/9; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; opacity: 0; transition: opacity 0.4s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400;
  color: var(--white); margin-bottom: 6px;
}
.project-overlay p { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

/* ── SERVICES ── */
.kcg-services { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease; filter: brightness(0.5);
}
.service-card:hover img { transform: scale(1.06); filter: brightness(0.35); }
.service-info {
  position: absolute; inset: 0; display: flex;
  flex-direction: column; justify-content: flex-end; padding: 40px 36px;
}
.service-number {
  font-family: 'Cormorant Garamond', serif; font-size: 60px; font-weight: 300;
  color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 8px;
}
.service-info h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400;
  color: var(--white); margin-bottom: 12px; line-height: 1.2;
}
.service-info p {
  font-size: 12px; line-height: 1.8; color: rgba(255,255,255,0);
  font-weight: 300; max-height: 0; overflow: hidden; transition: all 0.4s ease;
}
.service-card:hover .service-info p { color: rgba(255,255,255,0.7); max-height: 200px; }
.service-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-top: 20px; opacity: 0; cursor: pointer;
  transform: translateY(10px); transition: all 0.4s ease; text-decoration: none;
}
.service-link:hover { color: var(--white); }
.service-card:hover .service-link { opacity: 1; transform: translateY(0); }
.service-link::after { content: '→'; font-size: 14px; }

/* ── GALLERY ── */
.kcg-gallery { background: var(--black); }
.gallery-strip { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 8px; margin-bottom: 8px; }
.gallery-strip.row2 { grid-template-columns: 1fr 1.5fr 1fr 1fr; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s, filter 0.5s; filter: saturate(0.8);
}
.gallery-item:hover img { transform: scale(1.07); filter: saturate(1.1); }
.gallery-label {
  position: absolute; bottom: 16px; left: 16px;
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; }

/* ── EVENTS ── */
.kcg-events { background: var(--dark2); }
.events-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; }
.event-card { background: var(--dark); overflow: hidden; transition: transform 0.3s; }
.event-card:hover { transform: translateY(-8px); }
.event-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; filter: brightness(0.85); transition: filter 0.4s; }
.event-card:hover .event-img { filter: brightness(1); }
.event-body { padding: 28px; }
.event-tag { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.event-body h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400;
  color: var(--white); margin-bottom: 12px; line-height: 1.3;
}
.event-body p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.8; font-weight: 300; }
.event-footer {
  padding: 20px 28px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.event-footer span { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 1px; }
.event-arrow {
  width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px; cursor: pointer; transition: all 0.3s;
  text-decoration: none;
}
.event-arrow:hover { background: var(--gold); color: var(--black); }

/* ── PARTNERS ── */
.kcg-partners {
  background: var(--black);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.kcg-partners::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.kcg-partners .section-body { margin: 0 auto 64px; max-width: 600px; }

/* Marquee wrapper */
.partners-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.partners-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  animation: marquee-scroll 32s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Partner card */
.partner-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 44px 52px;
  border-right: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  position: relative;
  transition: background 0.4s ease;
  min-width: 200px;
  white-space: nowrap;
}
.partner-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.4s ease;
}
.partner-item:hover { background: rgba(201,168,76,0.05); }
.partner-item:hover::after { width: 65%; }

/* Logo image */
.partner-img-wrap {
  width: 110px; height: 56px;
  display: flex; align-items: center; justify-content: center;
}
.partner-img-wrap img {
  max-width: 110px; max-height: 56px;
  width: auto; height: auto;
  object-fit: contain;
  filter: brightness(0.35) grayscale(1);
  transition: filter 0.4s ease, transform 0.4s ease;
  display: block;
}
.partner-item:hover .partner-img-wrap img {
  filter: brightness(1) grayscale(0);
  transform: scale(1.06);
}

/* Partner title */
.partner-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  transition: color 0.4s ease;
  white-space: nowrap;
}
.partner-item:hover .partner-name { color: var(--gold); }

/* Text-only fallback */
.partner-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  color: rgba(255,255,255,0.22);
  letter-spacing: 3px; text-transform: uppercase;
  transition: color 0.4s ease;
}
.partner-item:hover .partner-logo-text { color: var(--gold); }

/* ── CTA BAND ── */
.kcg-cta {
  position: relative; padding: 120px 60px; text-align: center; overflow: hidden;
  background-size: cover; background-position: center;
}
.kcg-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75));
}
.kcg-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent 60%);
}
.kcg-cta > * { position: relative; z-index: 1; }
.kcg-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px); font-weight: 300; line-height: 1.1; margin-bottom: 28px;
}
.kcg-cta h2 em { font-style: italic; color: var(--gold); }
.kcg-cta p {
  font-size: 14px; font-weight: 300; letter-spacing: 1px;
  color: rgba(255,255,255,0.6); margin-bottom: 48px;
  max-width: 480px; margin-left: auto; margin-right: auto; line-height: 2;
}

/* ── FOOTER ── */
.kcg-footer { background: var(--dark); padding: 80px 60px 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 2; font-weight: 300; margin-top: 16px; }
.footer-col h5 {
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.3s; letter-spacing: 0.5px;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }
.social-links { display: flex; gap: 16px; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── ADMIN BAR FIX ── */
.admin-bar nav.kcg-nav { top: 32px; }

/* ── RESPONSIVE ── */
/* ══════════════════════════════════════════════════════════
   HAMBURGER BUTTON
══════════════════════════════════════════════════════════ */
.kcg-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
  position: relative;
  z-index: 201;
}
.kcg-burger:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
}
.burger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1),
              opacity   0.3s ease,
              width     0.3s ease;
  transform-origin: center;
}
/* Animated X when open */
.kcg-burger.is-open .burger-line:nth-child(1) { transform: translateY(6.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(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   FULLSCREEN MOBILE MENU
══════════════════════════════════════════════════════════ */
.kcg-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 40px 60px;
  /* Hidden state */
  clip-path: circle(0% at calc(100% - 50px) 50px);
  opacity: 0;
  pointer-events: none;
  transition: clip-path 0.6s cubic-bezier(0.77,0,0.18,1),
              opacity   0.3s ease;
}
.kcg-mobile-menu.is-open {
  clip-path: circle(150% at calc(100% - 50px) 50px);
  opacity: 1;
  pointer-events: all;
}

/* Decorative background */
.mobile-menu-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.mm-diamond {
  position: absolute;
  border: 1px solid rgba(201,168,76,0.08);
  transform: rotate(45deg);
}
.mm-diamond-1 { width: 500px; height: 500px; top: -200px; right: -200px; }
.mm-diamond-2 { width: 300px; height: 300px; bottom: -100px; left: -100px; border-color: rgba(201,168,76,0.05); }
.mm-line {
  position: absolute;
  background: rgba(201,168,76,0.06);
}
.mm-line-1 { width: 1px; height: 100%; left: 50%; top: 0; }
.mm-line-2 { height: 1px; width: 100%; top: 50%; left: 0; }

/* Close button */
.mm-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.mm-close:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.mm-close span {
  position: absolute;
  width: 18px; height: 1.5px;
  background: var(--gold);
  display: block;
}
.mm-close span:nth-child(1) { transform: rotate(45deg); }
.mm-close span:nth-child(2) { transform: rotate(-45deg); }

/* Nav links */
.mm-nav { position: relative; z-index: 2; }
.mm-links { list-style: none; padding: 0; margin: 0; }

.mm-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease calc(var(--i) * 0.07s + 0.15s),
              transform 0.5s cubic-bezier(0.23,1,0.32,1) calc(var(--i) * 0.07s + 0.15s);
}
.kcg-mobile-menu.is-open .mm-item {
  opacity: 1;
  transform: translateX(0);
}

.mm-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: padding-left 0.3s ease;
}
.mm-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: rgba(201,168,76,0.06);
  transition: width 0.4s ease;
}
.mm-link:hover::before { width: 100%; }
.mm-link:hover { padding-left: 12px; border-bottom-color: rgba(201,168,76,0.2); }

.mm-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  width: 24px;
  flex-shrink: 0;
  letter-spacing: 1px;
}
.mm-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 2px;
  flex: 1;
  line-height: 1;
  transition: color 0.3s;
}
.mm-link:hover .mm-label { color: var(--gold); }

.mm-arrow {
  font-size: 20px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.mm-link:hover .mm-arrow { opacity: 1; transform: translateX(0); }

/* Bottom CTA */
.mm-footer {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.55s, transform 0.5s ease 0.55s;
}
.kcg-mobile-menu.is-open .mm-footer { opacity: 1; transform: translateY(0); }

.mm-cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.3s;
  margin-bottom: 20px;
}
.mm-cta:hover { background: var(--gold-light); }

.mm-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.25);
  letter-spacing: 2px;
}

/* Overlay */
.kcg-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0,0,0,0.5);
}
.kcg-menu-overlay.is-visible { display: block; }

/* Prevent scroll when menu open */
body.menu-open { overflow: hidden; }

/* ══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav.kcg-nav { padding: 20px 24px; }
  .nav-links, .nav-cta { display: none; }
  .kcg-burger { display: flex; }
  .kcg-section { padding: 80px 28px; }
  .kcg-about { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { display: none; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card:nth-child(1) { grid-column: span 2; }
  .project-card:nth-child(6) { grid-column: span 2; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-strip, .gallery-strip.row2 { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .partners-track { animation-duration: 20s; }
  .partner-item { padding: 36px 32px; min-width: 150px; }
  .partner-img-wrap { width: 80px; height: 42px; }
  .partner-img-wrap img { max-width: 80px; max-height: 42px; }
  .partner-name { font-size: 9px; letter-spacing: 2px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .kcg-cta { padding: 80px 28px; }
}
