/* ═══════════════════════════════════════════════════
   K2BC Creative Business Incubator — Core Styles
   Tailwind-free · External stylesheet
   ═══════════════════════════════════════════════════ */

:root {
  --cream: #FDFCF5;
  --sand: #F5F1E6;
  --navy: #0A1F33;
  --teal: #008b8b;
  --rose: #B83B5E;
  --steel: #4A5B6A;
  --muted: #7a8f9e;
  --line: #D9CFC1;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--steel);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

.page { min-height: 100vh; }

/* ─── NAV ─────────────────────────────────────────── */
.k-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: rgba(253, 252, 245, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--steel);
}

.k-nav-brand { display: flex; flex-direction: column; }

.k-nav-brand .brand {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.k-nav-brand .tagline {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  color: var(--teal);
}

.k-nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .k-nav-links { display: flex; } }

.k-nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--steel);
  font-family: 'Barlow', sans-serif;
  text-decoration: none;
  transition: color 0.2s;
}
.k-nav-link:hover { color: var(--teal); }

.k-nav-cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  background: var(--rose);
  color: var(--cream);
  border: 2px solid var(--rose);
  border-radius: 0;
  transition: background 0.3s, border-color 0.3s;
}
.k-nav-cta:hover { background: var(--navy); border-color: var(--navy); }
.k-nav-cta .cta-label { display: inline-block; transition: transform 0.3s; }
.k-nav-cta:hover .cta-label { transform: translateX(4px); }
.k-nav-cta .arrow { opacity: 0.8; transition: opacity 0.3s; }
.k-nav-cta:hover .arrow { opacity: 1; }

/* Hamburger */
.k-menu-trigger {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
}
@media (min-width: 768px) { .k-menu-trigger { display: none; } }
.k-menu-trigger span { display: block; height: 0.125rem; transition: width 0.3s; }
.k-menu-trigger .bar-1 { width: 1.5rem; background: var(--navy); }
.k-menu-trigger .bar-2 { width: 1rem; background: var(--rose); }
.k-menu-trigger .bar-3 { width: 1.25rem; background: var(--navy); }
.k-menu-trigger:hover .bar-1 { width: 1rem; }
.k-menu-trigger:hover .bar-2 { width: 1.5rem; }
.k-menu-trigger:hover .bar-3 { width: 0.75rem; }

/* Mobile menu */
.k-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  height: 100vh;
  width: 100vw;
  transform: translateX(100%);
  transition: transform 0.5s;
}
@media (min-width: 768px) { .k-mobile-menu { display: none; } }
.k-mobile-menu.open { transform: translateX(0); }

.k-menu-close {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--cream);
  transition: color 0.2s;
}
.k-menu-close:hover { color: var(--rose); }
.k-menu-close svg { width: 2.5rem; height: 2.5rem; display: block; }

.k-mobile-links { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }

.k-mobile-link { display: flex; flex-direction: column; align-items: center; text-decoration: none; }
.k-mobile-link .num {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.k-mobile-link .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
}
.k-mobile-link .bar {
  width: 0;
  height: 0.125rem;
  background: var(--rose);
  transition: width 0.3s;
}
.k-mobile-link:hover .bar { width: 100%; }

.k-mobile-link--invite { position: relative; padding: 2rem; transition: all 0.3s; }
.k-mobile-link--invite .label {
  color: var(--rose);
  transition: color 0.3s;
  position: relative;
  z-index: 10;
}
.k-mobile-link--invite:hover .label { color: var(--cream); }
.k-mobile-link--invite .arrow {
  display: inline-block;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.k-mobile-link--invite:hover .arrow { opacity: 1; transform: translateX(4px); }
.k-mobile-link--invite .frame {
  position: absolute;
  inset: 0;
  border: 4px double var(--cream);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}
.k-mobile-link--invite:hover .frame { opacity: 1; transform: scale(1); }

/* ─── HERO / CONCIERGE ────────────────────────────── */
.k-concierge {
  position: relative;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  border-bottom: 4px double var(--steel);
}
@media (min-width: 1024px) { .k-concierge { flex-direction: row; } }

.k-concierge-main {
  position: relative;
  flex: 1;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
  background: var(--cream);
}
@media (min-width: 1024px) {
  .k-concierge-main { flex-basis: 66.667%; min-height: 800px; padding: 5rem; }
}

.k-concierge-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.k-concierge-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(253, 252, 245, 0.8) 0%,
    rgba(253, 252, 245, 0) 25%,
    rgba(253, 252, 245, 0) 75%,
    #FDFCF5 100%);
}

.k-concierge-top-label {
  position: absolute;
  top: 1.25rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 20;
}
.k-concierge-top-label p {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6em;
  font-weight: 700;
  color: var(--rose);
  font-family: 'Barlow', sans-serif;
}

.k-concierge-headline-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 42rem;
  text-align: left;
  padding: 0 1rem;
}
@media (min-width: 1024px) { .k-concierge-headline-wrap { padding: 0; } }

.k-concierge-headline {
  margin: 0;
  font-size: clamp(3.5rem, 8.5vw, 6.2rem);
  font-weight: 600;
  line-height: 0.82;
  color: var(--navy);
}
.k-concierge-headline em { font-style: italic; color: var(--teal); }

.k-concierge-bottom-label {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 1024px) { .k-concierge-bottom-label { gap: 2rem; } }
.k-concierge-bottom-label .rule { height: 1px; width: 2rem; background: var(--steel); }
@media (min-width: 1024px) { .k-concierge-bottom-label .rule { width: 4rem; } }
.k-concierge-bottom-label p { margin: 0; font-style: italic; font-size: 1.125rem; color: var(--steel); }
@media (min-width: 1024px) { .k-concierge-bottom-label p { font-size: 1.5rem; } }

.k-concierge-side {
  display: flex;
  flex-direction: column;
  background-color: var(--sand);
  background-image: radial-gradient(var(--steel) 0.7px, transparent 0.7px);
  background-size: 38px 38px;
  border-top: 4px double var(--steel);
}
@media (min-width: 1024px) {
  .k-concierge-side {
    flex-basis: 33.333%;
    border-top: none;
    border-left: 4px double var(--steel);
  }
}

.k-concierge-intent { padding: 3rem; border-bottom: 1px solid var(--line); }
.k-concierge-intent .kicker {
  margin: 0 0 2.5rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 700;
  color: var(--steel);
  font-family: 'Barlow', sans-serif;
}
.k-concierge-intent h2 {
  margin: 0 0 2rem;
  font-size: 3rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
}
.k-concierge-intent h2 em { font-style: italic; color: var(--teal); }
.k-concierge-intent .lede {
  margin: 0 0 2rem;
  font-size: 1.25rem;
  color: var(--steel);
  line-height: 1.625;
}
.k-concierge-intent .link {
  display: inline-block;
  padding-bottom: 0.25rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: var(--navy);
  font-family: 'Barlow', sans-serif;
  border-bottom: 2px solid var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}
.k-concierge-intent .link:hover { color: var(--teal); }

.k-concierge-cta {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(74, 91, 106, 0.2);
  box-shadow: 20px 20px 0 rgba(10, 31, 51, 0.03);
}
.k-concierge-cta .top-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: var(--navy);
}
.k-concierge-cta .kicker {
  margin: 0 0 1rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 700;
  color: var(--rose);
  font-family: 'Barlow', sans-serif;
}
.k-concierge-cta .tagline {
  margin: 0 0 3rem;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1.375;
}
.k-concierge-cta .tagline span { color: var(--teal); }

.k-btn-cohort {
  display: block;
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--navy);
  color: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 0;
  transition: background 0.3s, border-color 0.3s;
}
.k-btn-cohort:hover { background: var(--rose); border-color: var(--rose); }
.k-btn-cohort .cta-label { display: inline-block; transition: transform 0.3s; }
.k-btn-cohort:hover .cta-label { transform: translateX(8px); }
.k-btn-cohort .arrow { opacity: 0.8; transition: opacity 0.3s; }
.k-btn-cohort:hover .arrow { opacity: 1; }

/* ─── SECTION SCAFFOLD ────────────────────────────── */
.k-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(10, 31, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 51, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.k-section--thesis { background-color: var(--sand); }
.k-section--portfolio { background-color: var(--cream); }
.k-section--invite { background-color: var(--sand); }

.k-section-inner { position: relative; max-width: 72rem; margin: 0 auto; }
.k-section-inner--narrow { max-width: 64rem; }

.k-section-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 2px solid var(--steel);
  padding-bottom: 2rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) { .k-section-header { flex-direction: row; align-items: flex-end; } }

.k-section-header .kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
}
.kicker--teal { color: var(--teal); }
.kicker--rose { color: var(--rose); }

.k-section-header h2 {
  margin: 0;
  line-height: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.k-section-header h2 .accent--teal { color: var(--teal); }
.k-section-header h2 .accent--rose { color: var(--rose); }

.k-section-header .aside {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  color: var(--steel);
  font-size: 1.05rem;
  max-width: 320px;
  font-weight: 300;
  line-height: 1.9;
  font-style: italic;
}
@media (min-width: 768px) { .k-section-header .aside { margin-left: auto; padding-bottom: 0.5rem; } }

/* ─── THESIS ──────────────────────────────────────── */
.k-thesis-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .k-thesis-cols { grid-template-columns: 1fr 1fr; } }

.k-stack { display: flex; flex-direction: column; gap: 1.5rem; }

.k-thesis-card {
  padding: 2rem;
  background: rgba(253, 252, 245, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 4px double var(--steel);
}
.k-thesis-card h3 {
  margin: 0 0 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.k-thesis-card h3 span { color: var(--teal); }
.k-thesis-card p {
  margin: 0 0 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--steel);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
}
.k-thesis-card p:last-child { margin-bottom: 0; color: var(--muted); font-size: 1rem; }

.k-steps { display: grid; grid-template-columns: repeat(3, 1fr); }
.k-step {
  padding: 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 4px double var(--steel);
}
.k-step--1 { background: rgba(230, 244, 241, 0.7); }
.k-step--2 { background: rgba(253, 252, 245, 0.8); }
.k-step--3 { background: rgba(184, 59, 94, 0.05); }
.k-step .num {
  margin: 0 0 0.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--teal);
}
.k-step--3 .num { color: var(--rose); }
.k-step .title {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Barlow', sans-serif;
}
.k-step p {
  margin: 0;
  color: var(--steel);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

.k-thesis-side { display: flex; flex-direction: column; gap: 1.5rem; }
.k-frame-double { border: 4px double var(--steel); }
.k-frame-double img { display: block; width: 100%; object-fit: cover; max-height: 240px; }

.k-watercolor {
  position: relative;
  padding: 2.5rem;
  overflow: hidden;
  border: 4px double var(--steel);
  background-image: url('images/colorful-dreamer.png');
  background-size: cover;
  background-position: center;
}
.k-watercolor .wash {
  position: absolute;
  inset: 0;
  background: rgba(253, 252, 245, 0.85);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.k-watercolor .content { position: relative; z-index: 10; }
.k-watercolor h3 {
  margin: 0 0 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--rose);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.k-watercolor p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  color: var(--steel);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
}

/* ─── PORTFOLIO ───────────────────────────────────── */
.k-panorama { position: relative; margin-bottom: 2.5rem; border: 4px double var(--steel); }
.k-panorama img {
  display: block;
  width: 100%;
  object-fit: cover;
  max-height: 280px;
  opacity: 0.9;
}
.k-panorama .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(253, 252, 245, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.k-panorama .overlay p {
  margin: 0;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.06em;
}

.k-cards { display: grid; grid-template-columns: 1fr; }
@media (min-width: 640px) { .k-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .k-cards { grid-template-columns: 1fr 1fr 1fr; } }

.k-venture {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 4px double var(--steel);
  transition: transform 0.3s, box-shadow 0.3s;
}
.k-venture:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(10, 31, 51, 0.06); }
.k-venture--cream { background: rgba(253, 252, 245, 0.7); }
.k-venture--teal { background: rgba(230, 244, 241, 0.45); }
.k-venture--rose { background: rgba(184, 59, 94, 0.04); }

.k-venture-top { display: flex; align-items: center; justify-content: space-between; }
.k-venture-tag {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: 'Barlow', sans-serif;
}
.k-venture-tag--rose { background: rgba(184, 59, 94, 0.08); color: var(--rose); border: 1px solid rgba(184, 59, 94, 0.35); }
.k-venture-tag--teal { background: rgba(0, 139, 139, 0.1); color: var(--teal); border: 1px solid rgba(0, 139, 139, 0.4); }
.k-venture-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(10, 31, 51, 0.08);
  line-height: 1;
}
.k-venture-title {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}
.k-venture-title .accent--rose { color: var(--rose); }
.k-venture-title .accent--teal { color: var(--teal); }
.k-venture-desc {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  color: var(--steel);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.8;
}
.k-venture-link {
  margin-top: auto;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--steel);
  font-family: 'Barlow', sans-serif;
  text-decoration: none;
  transition: color 0.2s;
}
.k-venture-link:hover { color: var(--teal); }
.k-venture-link--rose:hover { color: var(--rose); }

/* ─── QUICK CTA ───────────────────────────────────── */
.k-quick-cta { padding: 5rem 2rem; background: var(--navy); color: var(--cream); }
.k-quick-cta-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) { .k-quick-cta-inner { flex-direction: row; } }
.k-quick-cta-copy { max-width: 28rem; }
.k-quick-cta h2 {
  margin: 0 0 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
}
.k-quick-cta .lead {
  margin: 0 0 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-style: italic;
  opacity: 0.7;
  line-height: 1.7;
}
.k-social-row { display: flex; gap: 1rem; }
.k-social-square {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(253, 252, 245, 0.3);
  transition: background 0.3s, border-color 0.3s;
}
.k-social-square svg { width: 1.25rem; height: 1.25rem; fill: var(--cream); transition: fill 0.3s; }
.k-social-square--fb:hover { background: var(--rose); border-color: var(--rose); }
.k-social-square--yt:hover { background: #d1c791; border-color: #d1c791; }
.k-social-square--yt:hover svg { fill: var(--navy); }
.k-quick-cta-media { width: 100%; display: flex; align-items: center; justify-content: center; }
@media (min-width: 768px) { .k-quick-cta-media { width: 50%; } }
.k-quick-cta-frame {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border: 4px double rgba(253, 252, 245, 0.3);
}
.k-quick-cta-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  filter: grayscale(30%);
}
.k-quick-cta-frame .shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(10, 31, 51, 0.5), rgba(10, 31, 51, 0.2));
  mix-blend-mode: multiply;
}

/* ─── INVITE ──────────────────────────────────────── */
.k-invite-header { text-align: center; margin-bottom: 3.5rem; }
.k-invite-header .kicker {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-weight: 700;
  color: var(--rose);
  font-family: 'Barlow', sans-serif;
}
.k-invite-header h2 {
  margin: 0 0 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.k-invite-header h2 span { color: var(--rose); }
.k-invite-header .rule { width: 4rem; height: 0.125rem; background: var(--teal); margin: 0 auto 1.5rem; }
.k-invite-header p {
  max-width: 36rem;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  color: var(--steel);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
}

.k-invite-split { display: flex; flex-direction: column; align-items: stretch; overflow: hidden; }
@media (min-width: 1024px) { .k-invite-split { flex-direction: row; } }

.k-invite-form {
  padding: 2.5rem;
  background: rgba(253, 252, 245, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 4px double var(--steel);
}
@media (min-width: 1024px) { .k-invite-form { flex-basis: 50%; } }
.k-invite-form h3 {
  margin: 0 0 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.k-invite-form .lead {
  margin: 0 0 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--steel);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
}
.k-form-fields { display: flex; flex-direction: column; gap: 1rem; }
.k-form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--teal);
  font-family: 'Barlow', sans-serif;
}
.k-form-field input,
.k-form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  outline: none;
  font-size: 0.875rem;
  background: rgba(245, 241, 230, 0.8);
  border: 2px solid var(--line);
  border-radius: 0;
  color: var(--navy);
  font-family: 'Barlow', sans-serif;
}
.k-form-field textarea { resize: none; }
.k-form-field input::placeholder,
.k-form-field textarea::placeholder { color: rgba(74, 91, 106, 0.55); }

.k-btn-submit {
  display: block;
  width: 100%;
  padding: 1rem 0;
  margin-top: 0.5rem;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  background: var(--rose);
  color: var(--cream);
  border: 2px solid var(--rose);
  border-radius: 0;
  transition: background 0.3s, border-color 0.3s;
}
.k-btn-submit:hover { background: var(--navy); border-color: var(--navy); }
.k-btn-submit .cta-label { display: inline-block; transition: transform 0.3s; }
.k-btn-submit:hover .cta-label { transform: translateX(8px); }
.k-btn-submit .arrow { opacity: 0.8; transition: opacity 0.3s; }
.k-btn-submit:hover .arrow { opacity: 1; }

.k-fb-wrap { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.k-fb-wrap .or {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.1em;
}
.k-btn-fb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(24, 119, 242, 0.08);
  border: 2px solid rgba(74, 91, 106, 0.35);
  border-radius: 0;
  color: var(--steel);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.k-btn-fb:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.k-btn-fb svg { width: 1rem; height: 1rem; fill: var(--steel); transition: fill 0.3s; }
.k-btn-fb:hover svg { fill: var(--cream); }
.k-btn-fb span { transition: transform 0.3s; }
.k-btn-fb:hover span { transform: translateX(4px); }

.k-invite-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  border: 4px double var(--steel);
  border-left: none;
}
@media (min-width: 1024px) { .k-invite-media { flex-basis: 50%; } }
.k-invite-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  filter: grayscale(20%);
}
.k-invite-media .shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(10, 31, 51, 0.4), rgba(10, 31, 51, 0.1));
  mix-blend-mode: multiply;
}

.k-quote-band {
  padding: 3rem;
  border-left: 4px double var(--steel);
  border-right: 4px double var(--steel);
  border-bottom: 4px double var(--steel);
  background: rgba(230, 244, 241, 0.4);
}
.k-quote-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .k-quote-inner { flex-direction: row; align-items: center; text-align: left; }
}
.k-quote-main { flex: 1; }
.k-quote-main blockquote {
  margin: 0 0 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
}
.k-quote-main blockquote span { color: var(--rose); }
.k-quote-main p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  color: var(--steel);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
}
.k-quote-host { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) {
  .k-quote-host { align-items: flex-start; padding-left: 2rem; border-left: 1px solid var(--line); }
}
.k-owner { position: relative; margin-bottom: 0.5rem; }
.k-owner .halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--rose);
  transform: translate(4px, 4px);
}
.k-owner img {
  position: relative;
  z-index: 10;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--steel);
  filter: grayscale(20%);
}
.k-owner-id { display: flex; align-items: center; gap: 1rem; }
.k-owner-id .rule-v {
  width: 0.25rem;
  height: 2.5rem;
  flex-shrink: 0;
  background: var(--rose);
  display: none;
}
@media (min-width: 768px) { .k-owner-id .rule-v { display: block; } }
.k-owner-id .text { text-align: center; }
@media (min-width: 768px) { .k-owner-id .text { text-align: left; } }
.k-owner-id .names {
  margin: 0 0 0.25rem;
  line-height: 1.6;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--navy);
  font-family: 'Barlow', sans-serif;
}
.k-owner-id .role {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  color: var(--steel);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   SHARED FOOTER — KRM / CCC / K2BC
   Source of truth: KRM.css · KRM leads, others mirror verbatim.
   Edit KRM.css first, then paste this block into k2bc.css
   and ccc.css identically. Do not hand-edit here.
   ═══════════════════════════════════════════════════ */

/* ── Blob base (needed by footer blobs — copied from KRM.css) ── */
.blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.blob-teal { background: radial-gradient(circle, #5bbcbf, transparent 70%); }
.blob-rose { background: radial-gradient(circle, #d4848a, transparent 70%); }

/* ── Footer (universal: KRM / CCC / K2BC) ── */
.site-footer { position: relative; padding: 4rem 1.5rem 2.5rem; overflow: hidden; background: linear-gradient(160deg, #1a2e44 0%, #152539 100%); }
.footer-topline { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #5bbcbf, #d4848a, #c8a882, #5bbcbf); }
.footer-blob-teal { top: 2.5rem; right: 5rem; width: 14rem; height: 14rem; opacity: .05; }
.footer-blob-rose { bottom: 2.5rem; left: 2.5rem; width: 10rem; height: 10rem; opacity: .05; }
.footer-inner { position: relative; z-index: 1; max-width: 72rem; margin: 0 auto; }
.footer-brand { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; padding-bottom: 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-kicker { font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #5bbcbf; margin-bottom: .5rem; }
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.footer-brand p { max-width: 36rem; color: #6a8fa0; font-size: 1rem; line-height: 1.7; }
.footer-cta { display: inline-flex; align-items: center; gap: .5rem; padding: .875rem 1.75rem; border-radius: 999px; background: rgba(91,188,191,.15); border: 1px solid rgba(91,188,191,.35); color: #5bbcbf; font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; transition: background .3s ease, color .3s ease, transform .3s ease; }
.footer-cta:hover { background: #5bbcbf; color: #1a2e44; transform: scale(1.03); }
.footer-cols { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #c8a882; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { font-family: 'Montserrat', sans-serif; font-size: .85rem; color: #6a8fa0; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-direction: column; gap: .75rem; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06); }
.footer-bottom p { font-family: 'Montserrat', sans-serif; font-size: .75rem; letter-spacing: .08em; color: #4a6070; }
.footer-bottom nav { display: flex; gap: 1.5rem; }
.footer-bottom nav a { font-family: 'Montserrat', sans-serif; font-size: .75rem; letter-spacing: .08em; color: #4a6070; transition: color .2s ease; }
.footer-bottom nav a:hover { color: #fff; }

/* ── Footer responsive (matches KRM exactly) ── */
@media (min-width: 768px) {
    .footer-brand { flex-direction: row; align-items: center; justify-content: space-between; }
    .footer-cols { grid-template-columns: repeat(3, 1fr); }
    .footer-bottom { flex-direction: row; }
}
