@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Bebas+Neue&display=swap');

:root {
  --kf-red: #E31E24;
  --kf-red-dark: #B71C1C;
  --kf-black: #1A1A1A;
  --kf-white: #FFFFFF;
  --kf-gray: #F5F5F5;
  --kf-gray-dark: #666666;
  --gradient-red: linear-gradient(135deg, #E31E24 0%, #B71C1C 100%);
}

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

a { color: inherit; }

/* Top bar */
.pp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}
.pp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pp-nav-inner img { height: 38px; }
.pp-back {
  font-size: 0.875rem;
  color: var(--kf-gray-dark);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.pp-back:hover { color: var(--kf-red); }
.pp-cta {
  background: var(--kf-red);
  color: white;
  padding: 0.65rem 1.25rem;
  border-radius: 0.45rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.pp-cta:hover { background: var(--kf-red-dark); }

/* Hero */
.pp-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  color: white;
  overflow: hidden;
}
.pp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}
.pp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
}
.pp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  width: 100%;
}
.pp-hero-eyebrow {
  display: inline-block;
  background: var(--kf-red);
  color: white;
  padding: 0.45rem 1rem;
  border-radius: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pp-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.pp-hero-tag {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* Body sections */
.pp-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
}
.pp-section.alt {
  max-width: none;
  background: var(--kf-gray);
}
.pp-section.alt > .pp-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
}

.pp-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kf-red);
  margin-bottom: 0.875rem;
}
.pp-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--kf-black);
}

.pp-lead {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--kf-black);
  max-width: 800px;
}
.pp-lead + p {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--kf-gray-dark);
  max-width: 800px;
}

/* Two-col detail */
.pp-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 850px) {
  .pp-cols { grid-template-columns: 1fr; gap: 2.5rem; }
}
.pp-col h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  color: var(--kf-black);
}
.pp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.pp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--kf-black);
}
.pp-list li::before {
  content: '';
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--kf-red);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* Meta panel */
.pp-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: white;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .pp-meta { grid-template-columns: 1fr; }
}
.pp-meta-item {
  text-align: center;
  padding: 0.5rem;
}
.pp-meta-item:not(:last-child) { border-right: 1px solid #eee; }
@media (max-width: 700px) {
  .pp-meta-item:not(:last-child) { border-right: none; border-bottom: 1px solid #eee; padding-bottom: 1rem; }
}
.pp-meta-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--kf-red);
  margin-bottom: 0.45rem;
}
.pp-meta-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--kf-black);
}
.pp-meta-sub {
  font-size: 0.8rem;
  color: var(--kf-gray-dark);
  margin-top: 0.2rem;
}

/* Schedule highlight chips */
.pp-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.pp-times span {
  background: white;
  border: 1px solid #e5e5e5;
  padding: 0.55rem 1rem;
  border-radius: 0.45rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--kf-black);
}

/* Structured schedule block */
.pp-schedule { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.pp-schedule-row {
  display: grid;
  grid-template-columns: 160px 1fr 1.4fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.25rem;
  background: var(--kf-gray);
  border-radius: 0.85rem;
  border: 1px solid #ececec;
}
.pp-schedule-row:nth-child(2) {
  grid-template-columns: 160px 1fr;
}
.pp-schedule-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  color: var(--kf-black);
  line-height: 1;
  padding-top: 0.2rem;
}
.pp-schedule-block { display: flex; flex-direction: column; gap: 0.55rem; }
.pp-schedule-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kf-red);
}
.pp-schedule-block .pp-times { margin-top: 0; }
@media (max-width: 800px) {
  .pp-schedule-row,
  .pp-schedule-row:nth-child(2) { grid-template-columns: 1fr; gap: 1rem; }
  .pp-schedule-day { font-size: 1.5rem; }
}

/* Big CTA */
.pp-cta-block {
  background: var(--kf-black);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}
.pp-cta-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.pp-cta-block p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.pp-cta-big {
  display: inline-block;
  background: var(--kf-red);
  color: white;
  padding: 1.15rem 2.5rem;
  border-radius: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: all 0.25s;
}
.pp-cta-big:hover {
  background: var(--kf-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(227,30,36,0.4);
}
.pp-cta-fine {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.25rem;
}

/* Footer link strip */
.pp-foot {
  background: var(--kf-black);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2rem;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pp-foot a { color: white; text-decoration: none; }
.pp-foot a:hover { color: var(--kf-red); }

/* Other-programs strip */
.pp-others {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .pp-others { grid-template-columns: 1fr; }
}
.pp-other {
  display: block;
  background: white;
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-decoration: none;
  color: var(--kf-black);
  border: 1px solid #eee;
  transition: all 0.2s;
}
.pp-other:hover {
  border-color: var(--kf-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.pp-other-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--kf-red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}
.pp-other-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}
.pp-other-arrow {
  font-size: 0.85rem;
  color: var(--kf-gray-dark);
}
.pp-other:hover .pp-other-arrow { color: var(--kf-red); }

/* === IS THIS FOR ME CHECKLIST === */
.pp-fit { background: var(--kf-gray); }
.pp-fit-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; margin-top: 1.5rem; max-width: 900px; }
@media (max-width: 700px) { .pp-fit-grid { grid-template-columns: 1fr; } }
.pp-fit-item { display:flex; gap:0.85rem; align-items:flex-start; background:white; padding:1.1rem 1.25rem; border-radius:0.65rem; border:1px solid #eee; }
.pp-fit-check { flex:none; width:28px; height:28px; border-radius:50%; background:var(--kf-red); display:flex; align-items:center; justify-content:center; color:white; font-weight:900; font-size:0.95rem; }
.pp-fit-text { font-size:0.98rem; line-height:1.45; color:var(--kf-black); padding-top:0.15rem; }
.pp-fit-foot { margin-top:1.5rem; font-size:0.95rem; color:var(--kf-gray-dark); }
.pp-fit-foot strong { color:var(--kf-black); }

/* === SAMPLE WEEK === */
.pp-week { display:grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
@media (max-width: 850px) { .pp-week { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pp-week { grid-template-columns: 1fr; } }
.pp-week-day { background:white; border:1px solid #eee; border-radius:0.65rem; padding:1.1rem; }
.pp-week-day.rest { background:var(--kf-gray); border-style:dashed; }
.pp-week-label { font-family:'Bebas Neue',sans-serif; font-size:1.15rem; letter-spacing:0.05em; color:var(--kf-red); margin-bottom:0.45rem; }
.pp-week-focus { font-weight:900; font-size:0.92rem; margin-bottom:0.35rem; color:var(--kf-black); }
.pp-week-detail { font-size:0.82rem; color:var(--kf-gray-dark); line-height:1.45; }

/* === SAMPLE SESSION TIMELINE === */
.pp-session { background: var(--kf-gray); }
.pp-session-grid { max-width:850px; margin-top:1.5rem; position:relative; padding-left:2rem; }
.pp-session-grid::before { content:''; position:absolute; left:0.7rem; top:0.4rem; bottom:0.4rem; width:2px; background:linear-gradient(180deg, var(--kf-red), rgba(227,30,36,0.15)); }
.pp-session-step { position:relative; padding:0 0 1.5rem 1.75rem; }
.pp-session-step:last-child { padding-bottom:0; }
.pp-session-step::before { content:''; position:absolute; left:-1.6rem; top:0.4rem; width:0.8rem; height:0.8rem; border-radius:50%; background:var(--kf-red); box-shadow:0 0 0 4px var(--kf-gray), 0 0 0 6px var(--kf-red); }
.pp-session-time { font-family:'Bebas Neue',sans-serif; font-size:1.35rem; color:var(--kf-red); letter-spacing:0.04em; }
.pp-session-title { font-weight:900; font-size:1rem; margin:0.1rem 0 0.3rem; }
.pp-session-body { font-size:0.92rem; color:var(--kf-gray-dark); line-height:1.55; }

/* === COACHES === */
.pp-coaches { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:1rem; margin-top:1.5rem; }
.pp-coach { background:white; border:1px solid #eee; border-radius:0.75rem; overflow:hidden; }
.pp-coach-photo { aspect-ratio:1/1; background:var(--kf-black); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.7); font-family:'Bebas Neue',sans-serif; font-size:3rem; letter-spacing:0.05em; }
.pp-coach-info { padding:1rem 1.1rem 1.25rem; }
.pp-coach-role { font-size:0.7rem; font-weight:700; color:var(--kf-red); letter-spacing:0.13em; text-transform:uppercase; margin-bottom:0.3rem; }
.pp-coach-name { font-family:'Bebas Neue',sans-serif; font-size:1.3rem; letter-spacing:0.04em; margin-bottom:0.4rem; }
.pp-coach-bio { font-size:0.85rem; color:var(--kf-gray-dark); line-height:1.5; }

/* === TESTIMONIALS === */
.pp-testimonials { background:var(--kf-black); color:white; padding:5rem 2rem; }
.pp-testimonials-inner { max-width:1100px; margin:0 auto; }
.pp-testimonials h2 { font-family:'Bebas Neue',sans-serif; font-weight:400; font-size:clamp(2rem,4vw,3.25rem); line-height:1; letter-spacing:0.02em; color:white; margin-bottom:0.5rem; }
.pp-testimonials .pp-eyebrow { color:var(--kf-red); }
.pp-testimonials-sub { color:rgba(255,255,255,0.6); margin-bottom:2.5rem; max-width:600px; }
.pp-testimonials-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:1.25rem; }
@media (max-width: 900px) { .pp-testimonials-grid { grid-template-columns:1fr; } }
.pp-quote { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08); border-radius:0.85rem; padding:1.75rem 1.5rem; }
.pp-quote-stars { color:#FBBC05; letter-spacing:0.15em; margin-bottom:0.85rem; font-size:0.95rem; }
.pp-quote-text { font-size:0.95rem; line-height:1.6; color:rgba(255,255,255,0.88); margin-bottom:1.25rem; }
.pp-quote-author { display:flex; align-items:center; gap:0.75rem; padding-top:1rem; border-top:1px solid rgba(255,255,255,0.1); }
.pp-quote-avatar { width:38px; height:38px; border-radius:50%; background:var(--kf-red); display:flex; align-items:center; justify-content:center; font-weight:900; font-size:0.85rem; flex:none; }
.pp-quote-name { font-weight:700; font-size:0.92rem; }
.pp-quote-meta { font-size:0.76rem; color:rgba(255,255,255,0.5); }
.pp-quote-foot { margin-top: 2rem; text-align: center; }
.pp-quote-foot a { color: white; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.05em; text-decoration: none; border-bottom: 2px solid var(--kf-red); padding-bottom: 0.25rem; transition: color 0.2s; }
.pp-quote-foot a:hover { color: var(--kf-red); }

/* === RESULTS BOARD (whiteboard photo wall) === */
.pp-results { background: var(--kf-black); color: white; padding: 5rem 2rem 4rem; }
.pp-results-inner { max-width: 1200px; margin: 0 auto; }
.pp-results .pp-eyebrow { color: var(--kf-red); }
.pp-results h2 { font-family:'Bebas Neue',sans-serif; font-weight:400; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1; letter-spacing: 0.02em; color: white; margin-bottom: 0.5rem; }
.pp-results-sub { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; max-width: 620px; font-size: 1rem; line-height: 1.55; }

.pp-results-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.pp-result-card {
  position: relative;
  background: white;
  border-radius: 0.65rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.pp-result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === INSIDE THE ROOM (community photo strip) === */
.pp-room { padding: 4.5rem 2rem; background: var(--kf-white); }
.pp-room-inner { max-width: 1200px; margin: 0 auto; }
.pp-room-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.pp-room-head h2 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1; letter-spacing: 0.02em; margin: 0; }
.pp-room-head p { color: var(--kf-gray-dark); font-size: 1rem; max-width: 360px; margin: 0; }
.pp-room-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 1rem; }
.pp-room-grid figure { margin: 0; border-radius: 0.85rem; overflow: hidden; aspect-ratio: 3 / 4; background: var(--kf-gray); box-shadow: 0 14px 32px rgba(0,0,0,0.12); }
.pp-room-grid figure:first-child { aspect-ratio: 4 / 5; }
.pp-room-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 850px) {
  .pp-room-grid { grid-template-columns: 1fr 1fr; }
  .pp-room-grid figure:first-child { grid-column: span 2; aspect-ratio: 16 / 10; }
}
@media (max-width: 520px) {
  .pp-room-grid { grid-template-columns: 1fr; }
  .pp-room-grid figure,
  .pp-room-grid figure:first-child { grid-column: auto; aspect-ratio: 4 / 5; }
}

/* layout — 7 cards in a 12-col grid */
.pp-result-card.r-feature { grid-column: span 6; aspect-ratio: 5 / 4; }
.pp-result-card.r-tall    { grid-column: span 3; }
.pp-result-card.r-std     { grid-column: span 3; }
.pp-result-card.r-half    { grid-column: span 3; }

@media (max-width: 950px) {
  .pp-result-card.r-feature { grid-column: span 12; aspect-ratio: 5 / 4; }
  .pp-result-card.r-tall    { grid-column: span 6; }
  .pp-result-card.r-std     { grid-column: span 6; }
  .pp-result-card.r-half    { grid-column: span 6; }
}
@media (max-width: 560px) {
  .pp-results-grid { gap: 0.75rem; }
  .pp-result-card.r-feature,
  .pp-result-card.r-tall,
  .pp-result-card.r-std,
  .pp-result-card.r-half { grid-column: span 12; aspect-ratio: 4 / 5; }
}

.pp-results-tally {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pp-results-tally-item .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--kf-red);
  letter-spacing: 0.02em;
}
.pp-results-tally-item .lbl {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
}

/* === IS NOT === */
.pp-isnot-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:1rem; margin-top:1.5rem; }
@media (max-width: 800px) { .pp-isnot-grid { grid-template-columns:1fr; } }
.pp-isnot-card { background:white; border:1px solid #eee; border-radius:0.75rem; padding:1.5rem 1.4rem; position:relative; }
.pp-isnot-x { position:absolute; top:1rem; right:1rem; width:28px; height:28px; border-radius:50%; background:#fef0f0; color:var(--kf-red); display:flex; align-items:center; justify-content:center; font-weight:900; }
.pp-isnot-title { font-family:'Bebas Neue',sans-serif; font-size:1.3rem; letter-spacing:0.03em; margin-bottom:0.5rem; padding-right:2.5rem; }
.pp-isnot-body { font-size:0.92rem; line-height:1.55; color:var(--kf-gray-dark); }

/* ─────────────────────────────────────────────────────────
   Site nav — matches the main site header (Programs dropdown
   + mobile drawer). Rendered solid + sticky so it sits in the
   layout flow on every program page regardless of the hero.
   ───────────────────────────────────────────────────────── */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: inline-flex; }
.nav-logo .logo { height: 44px; display: block; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links > a {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--kf-black);
  transition: color 0.2s;
}
.nav-links > a:hover { color: var(--kf-red); }
.nav-cta {
  background: var(--kf-red);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.nav-cta:hover { background: var(--kf-red-dark); transform: translateY(-2px); }

/* Programs dropdown (desktop) */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-trigger {
  display: inline-flex !important; align-items: center; gap: 0.32rem;
  font-size: 0.9375rem; font-weight: 700; color: var(--kf-black);
  text-decoration: none; cursor: pointer;
}
.nav-dropdown-trigger:hover { color: var(--kf-red); }
.nav-chevron { transition: transform 0.2s ease; margin-top: 1px; }
.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
.nav-dropdown::after { content: ""; position: absolute; top: 100%; left: -0.75rem; right: -0.75rem; height: 18px; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 212px;
  background: #fff;
  border-radius: 0.7rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  padding: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 120;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
  content: ""; position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff; border-radius: 2px;
}
.nav-dropdown-menu a {
  color: var(--kf-black) !important;
  font-size: 0.9rem; font-weight: 700;
  padding: 0.62rem 0.85rem; border-radius: 0.45rem;
  white-space: nowrap; position: relative; z-index: 1;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-dropdown-menu a:hover { background: var(--kf-gray); color: var(--kf-red) !important; }
.nav-dropdown-all {
  margin-top: 0.25rem; padding-top: 0.7rem !important;
  border-top: 1px solid #eee; border-radius: 0 !important;
  font-size: 0.78rem !important; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--kf-red) !important;
}
.nav-dropdown-all:hover { background: transparent !important; }

/* Hamburger toggle */
.nav-toggle {
  display: none; width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
  padding: 10px 8px; flex-direction: column;
  justify-content: space-between; align-items: stretch; z-index: 110;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%;
  background: var(--kf-black); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s;
}
.nav-toggle[aria-expanded="true"] span { background: #fff !important; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px); z-index: 105;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(86%, 340px); background: #1a1a1a;
  padding: 6rem 1.75rem 2rem; display: flex; flex-direction: column;
  gap: 0.25rem; transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.4);
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-panel a {
  color: #fff; text-decoration: none; font-weight: 700;
  font-size: 1.05rem; padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-panel a:hover { color: var(--kf-red); padding-left: 6px; }
.mobile-nav-panel .nav-cta {
  margin-top: 1.25rem; padding: 0.95rem 1.25rem; font-size: 1rem;
  color: #fff !important; border-bottom: none; text-align: center;
}
.mobile-subnav { display: flex; flex-direction: column; margin: 0.1rem 0 0.35rem 0.4rem; }
.mobile-subnav a {
  font-size: 1rem !important; font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  padding: 0.6rem 0 0.6rem 1rem !important;
  border-bottom: none !important;
  border-left: 2px solid rgba(255, 255, 255, 0.18);
}
.mobile-subnav a:hover { color: var(--kf-red) !important; border-left-color: var(--kf-red); padding-left: 1.15rem !important; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none !important; }
  .nav-logo .logo { height: 38px; }
}
