/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Ki Interiors — Main Stylesheet
   v1.0.0
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ── Design Tokens ── */
:root {
  --white:      #FAFAF8;
  --cream:      #F4F1EC;
  --sand:       #E8E2D9;
  --stone:      #C8BFB2;
  --warm-gray:  #8C8278;
  --charcoal:   #2C2825;
  --black:      #1A1714;
  --accent:     #B8956A;
  --accent-l:   #D4B896;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --ease-out:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━
   CURSOR
━━━━━━━━━━━━━━━━━━━━ */
.cursor {
  width: 8px; height: 8px;
  background: var(--charcoal); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--charcoal); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.18s ease; opacity: 0.5;
}
.cursor-ring.expand { transform: translate(-50%, -50%) scale(2.2); opacity: 0.25; }
@media (pointer: coarse) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } }

/* ━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
━━━━━━━━━━━━━━━━━━━━ */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 10px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background 0.4s, padding 0.4s;
}
#site-nav.scrolled {
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 48px;
  border-bottom: 1px solid var(--sand);
}
.logo {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 300; letter-spacing: 0.15em;
  color: var(--black); text-decoration: none;
}
.logo-img { height: 80px; width: auto; display: block; }
/* Hide default WP custom logo image — use text logo instead */
.logo .custom-logo-link { display: none; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a, .nav-links .nav-item > a {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm-gray); text-decoration: none;
  transition: color 0.25s; font-weight: 500;
}
.nav-links a:hover, .nav-links .nav-item > a:hover,
.nav-links .current-menu-item > a { color: var(--black); }
.nav-cta {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--warm-gray); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.nav-cta:hover { color: var(--accent); }

/* ━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 64px 120px;
  overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img-main {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: zoomOut 10s ease forwards;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,16,12,0.88) 0%,
    rgba(20,16,12,0.45) 50%,
    rgba(20,16,12,0.12) 100%
  );
}

.hero-bottom-right { display: none; }
.hero-badge { display: none; }

/* Top row — eyebrow + badge */
.hero-top {
  display: none;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
color: rgba(255,255,255,0.6); font-weight: 500; margin-bottom: 28px; margin-top: 50px;
}
.hero-badge {
  text-align: right;
}
.hero-badge-num {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 300; line-height: 1;
  color: var(--white);
}
.hero-badge-label {
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500;
}

/* Bottom row — title + desc */
.hero-bottom {
  position: relative; z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.hero-bottom-left {
  flex: 0 0 auto;
  max-width: 62%;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(50px, 7.5vw, 90px);
  font-weight: 300; line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent-l);
}
.hero-actions {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--charcoal);
  padding: 14px 28px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-hero-primary:hover {
  background: var(--cream); transform: translateY(-1px);
}
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 400; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s, gap 0.25s;
}
.btn-hero-ghost:hover {
  color: var(--white); border-color: rgba(255,255,255,0.6); gap: 16px;
}

.hero-bottom-right {
  flex: 0 0 280px;
  text-align: right;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}
.hero-desc {
  font-size: 13px; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  font-weight: 300; margin-bottom: 32px;
}
.hero-scroll {
  display: inline-flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
.scroll-text {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 900px) {
  .hero { padding: 0 24px 40px; }
  .hero-top { padding-top: 90px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-bottom-left { max-width: 100%; }
  .hero-bottom-right { flex: none; text-align: left; }
  .hero-title { font-size: clamp(44px, 10vw, 72px); }
  .hero-badge { display: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━
   TICKER
━━━━━━━━━━━━━━━━━━━━ */
.ticker { background: var(--charcoal); padding: 14px 0; overflow: hidden; }
.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 32px;
  padding: 0 32px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--stone); font-weight: 500;
}
.ticker-dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }

/* ━━━━━━━━━━━━━━━━━━━━
   ABOUT STRIP
━━━━━━━━━━━━━━━━━━━━ */
.about-strip {
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  padding: 100px 80px; gap: 60px; align-items: center;
}
.strip-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone); font-weight: 500;
  writing-mode: vertical-rl; transform: rotate(180deg); justify-self: center;
}
.strip-text {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 300;
  line-height: 1.45; color: var(--black); letter-spacing: -0.01em;
}
.strip-text em { font-style: italic; color: var(--accent); }
.strip-link {
  justify-self: end; align-self: end;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--sand); padding-bottom: 4px;
  transition: border-color 0.25s, color 0.25s; white-space: nowrap;
}
.strip-link:hover { border-color: var(--accent); color: var(--accent); }

/* ━━━━━━━━━━━━━━━━━━━━
   SERVICES
━━━━━━━━━━━━━━━━━━━━ */
.services { background: var(--cream); padding: 100px 80px; }
.services-cta {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 56px;
}
.btn-services-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; text-decoration: none; white-space: nowrap;
  color: var(--white); background: var(--charcoal);
  padding: 14px 28px;
  transition: background 0.25s, transform 0.2s;
}
.btn-services-cta:hover {
  background: var(--accent); transform: translateY(-1px);
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 60px;
}
.section-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 56px); font-weight: 300;
  color: var(--black); letter-spacing: -0.01em; line-height: 1.1;
}
.section-title em { font-style: italic; }
.section-count {
  font-family: var(--font-serif); font-size: 80px; font-weight: 300;
  color: var(--sand); line-height: 1; user-select: none;
}
.section-watermark {
  user-select: none;
  pointer-events: none;
}
.section-watermark img {
  width: auto;
  height: 120px;
  object-fit: contain;
  opacity: 0.06;
}
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--sand); }.service-card {
  display: block; text-decoration: none;
  background: var(--cream); padding: 28px 28px;
  position: relative; overflow: hidden;
  min-height: 340px;
  border-radius: 4px;
  transition: background 0.35s, box-shadow 0.4s ease, transform 0.4s ease;
}
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--sand); }
.service-card {
  background: var(--cream); padding: 48px 40px;
  transition: background 0.35s; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--accent); transition: width 0.4s ease;
}
.service-card:hover::after { width: 100%; }
.service-card:hover { background: var(--white); }
.service-num {
  font-family: var(--font-serif); font-size: 13px; font-weight: 400;
  color: var(--stone); margin-bottom: 32px; letter-spacing: 0.05em;
}
.service-icon { font-size: 28px; margin-bottom: 20px; display: block; color: var(--accent); }
.service-name {
  font-family: var(--font-serif); font-size: 26px; font-weight: 400;
  color: var(--black); margin-bottom: 16px; line-height: 1.2;
}
.service-desc { font-size: 14px; line-height: 1.7; color: var(--warm-gray); font-weight: 300; }
.service-desc { font-size: 14px; line-height: 1.7; color: var(--warm-gray); font-weight: 300; }

.service-points {
  list-style: none !important;
  margin: 20px 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(180,160,130,0.25);
}
.service-points li {
  list-style: none !important;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--warm-gray) !important;
  line-height: 1.5;
  padding: 6px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid rgba(180,160,130,0.12);
}
.service-points li::before {
  content: '—';
  font-size: 10px;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}
.service-points li::marker { content: ''; }

/* ━━━━━━━━━━━━━━━━━━━━
   STATS
━━━━━━━━━━━━━━━━━━━━ */
.stats {
  background: var(--charcoal); padding: 80px;
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; overflow: hidden;
}
.stats::before {
  content: 'Ki'; position: absolute;
  font-family: var(--font-serif); font-size: 260px; font-weight: 300;
  color: rgba(255,255,255,0.03);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; user-select: none; letter-spacing: -0.05em;
}
.stat-item { padding: 40px 48px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif); font-size: 64px; font-weight: 300;
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.stat-num span { color: var(--accent); }
.stat-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--stone); font-weight: 500; line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━
   PHILOSOPHY
━━━━━━━━━━━━━━━━━━━━ */
.philosophy { padding: 120px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.phil-visual { position: relative; }
.phil-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.phil-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.phil-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.phil-img-overlay {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.phil-img-wrap:hover .phil-img { transform: scale(1.04); }
.phil-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 180px; height: 180px; border: 1px solid var(--accent); opacity: 0.4; z-index: -1;
}
.phil-tag {
  position: absolute; top: 32px; right: -16px;
  background: var(--white); padding: 16px 20px;
  border-left: 3px solid var(--accent); box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.phil-tag-text {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--warm-gray); font-weight: 500; line-height: 1.6; white-space: pre-line;
}
.phil-content { padding-right: 20px; }
.phil-quote {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px); font-weight: 300;
  line-height: 1.35; color: var(--black); letter-spacing: -0.01em;
  margin-bottom: 32px; font-style: normal;
}
.phil-quote em { font-style: italic; color: var(--accent); }
.phil-text { font-size: 15px; line-height: 1.8; color: var(--warm-gray); font-weight: 300; margin-bottom: 20px; }
.phil-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.value-item { padding: 20px; background: var(--cream); border-top: 2px solid var(--sand); transition: border-color 0.25s; cursor: default; }
.value-item:hover { border-color: var(--accent); }
.value-name { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--accent); margin-bottom: 6px; }
.value-desc { font-size: 14px; color: var(--warm-grey); line-height: 1.5; font-weight: 300; }

/* ━━━━━━━━━━━━━━━━━━━━
   PROCESS
━━━━━━━━━━━━━━━━━━━━ */
.process {
  padding: 100px 80px; background: var(--charcoal);
  position: relative; overflow: hidden;
}
.process .section-eyebrow { color: var(--accent); }
.process .section-title { color: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 60px; position: relative; z-index: 1;
}
.process-steps::after {
  content: ''; position: absolute; top: 30px;
  left: calc(12.5%); right: calc(12.5%);
  height: 1px; background: rgba(255,255,255,0.08); z-index: 0;
}
.step { padding: 0 32px; text-align: center; position: relative; z-index: 1; }
.step-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--charcoal); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: var(--white);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.step:hover .step-dot { background: var(--accent); border-color: var(--accent); color: var(--white); }
.step-name { font-family: var(--font-serif); font-size: 21px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--stone); line-height: 1.65; font-weight: 300; }

/* ━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━ */
.testimonials { background: var(--cream); padding: 80px 80px; }

.testi-controls { display: flex; gap: 12px; }
.testi-prev, .testi-next {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--sand); background: transparent;
  font-size: 16px; color: var(--charcoal); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.testi-prev:hover, .testi-next:hover {
  background: var(--charcoal); color: var(--white); border-color: var(--charcoal);
}

.testi-carousel { position: relative; margin-top: 48px; }

.testi-track {
  position: relative;
  height: 320px;
}

.testi-card {
  position: absolute; inset: 0;
  background: var(--white);
  padding: 48px 56px;
  border: 1px solid var(--sand);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.testi-card.active {
  opacity: 1; pointer-events: auto;
  transform: translateX(0);
}

.testi-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 24px; }

.testi-text {
  font-family: var(--font-serif); font-size: 19px; font-weight: 300;
  line-height: 1.65; color: var(--charcoal); font-style: italic;
  flex: 1; overflow-y: auto;
  margin-bottom: 32px;
  scrollbar-width: none;
}
.testi-text::-webkit-scrollbar { display: none; }
.testi-text p { margin-bottom: 1em; }
.testi-text p:last-child { margin-bottom: 0; }

.testi-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--sand); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 18px; color: var(--warm-gray);
}
.testi-name { font-size: 13px; font-weight: 500; color: var(--black); }
.testi-role { font-size: 11px; color: var(--stone); letter-spacing: 0.08em; }

.testi-dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 32px;
}
.testi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sand); border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.testi-dot.active { background: var(--accent); transform: scale(1.4); }

@media (max-width: 900px) {
  .testimonials { padding: 60px 24px; }
  .testi-track { height: auto; min-height: 360px; }
  .testi-card { padding: 36px 28px; }
  .testi-text { font-size: 17px; }
}

/* ━━━━━━━━━━━━━━━━━━━━
   CTA BANNER
━━━━━━━━━━━━━━━━━━━━ */
.cta-banner {
  margin: 80px 80px 100px;
  background: var(--black); padding: 80px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,106,0.15) 0%, transparent 70%);
}
.cta-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 16px;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px); font-weight: 300;
  color: var(--white); line-height: 1.2; letter-spacing: -0.01em;
}
.cta-title em { font-style: italic; color: var(--accent-l); }
.cta-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; flex-shrink: 0; }

/* ━━━━━━━━━━━━━━━━━━━━
   JOURNAL
━━━━━━━━━━━━━━━━━━━━ */
.journal { padding: 0 80px 100px; }
.journal-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; margin-top: 60px; }
.journal-item { position: relative; overflow: hidden; }
.journal-img-wrap { overflow: hidden; display: block; }
.journal-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  display: block; transition: transform 0.5s ease;
}
.journal-img--placeholder { background: var(--sand); aspect-ratio: 4/3; }
.journal-item:hover .journal-img { transform: scale(1.04); }
.journal-body { padding: 20px 0; }
.journal-cat {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 10px;
}
.journal-title {
  font-family: var(--font-serif); font-size: 22px; font-weight: 400;
  line-height: 1.3; color: var(--black); margin-bottom: 10px;
  text-decoration: none; display: block; transition: color 0.25s;
}
.journal-title:hover { color: var(--accent); }
.journal-meta { font-size: 11px; color: var(--stone); letter-spacing: 0.05em; }

/* ━━━━━━━━━━━━━━━━━━━━
   BUTTONS
━━━━━━━━━━━━━━━━━━━━ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--charcoal); color: var(--white);
  padding: 16px 32px; text-decoration: none;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  transition: background 0.3s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--black); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--charcoal); text-decoration: none;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  transition: gap 0.25s; background: none; border: none; cursor: pointer;
}
.btn-ghost:hover { gap: 16px; }
.btn-light {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white); color: var(--charcoal);
  padding: 16px 32px; text-decoration: none;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  transition: background 0.3s, transform 0.2s; white-space: nowrap;
}
.btn-light:hover { background: var(--cream); transform: translateY(-1px); }
.btn-outline-light {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--stone); text-decoration: none; font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s; white-space: nowrap;
}
.btn-outline-light:hover { color: var(--white); border-color: var(--stone); }
.arrow { font-size: 16px; }

/* ━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━ */
.site-footer { background: var(--black); padding: 20px; }
.footer-top {
display: grid; grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-img {
  width: 300px;
  display: block;
  opacity: 0.85;
  transition: opacity 0.25s;
  margin-bottom: 0;
  align-self: center;
}
.footer-logo-img:hover { opacity: 1; }
.footer-logo {
  font-family: var(--font-serif); font-size: 28px; font-weight: 300;
  letter-spacing: 0.1em; color: var(--white); margin-bottom: 20px;
  display: block; text-decoration: none;
}
.footer-tagline { font-size: 14px; line-height: 1.7; color: var(--stone); font-weight: 300; max-width: 330px; margin-bottom: 0; margin-top: -10px; text-align: center; }
.footer-brand { padding-top: 0; }
.footer-social { display: flex; flex-direction: column; gap: 12px; margin-top: 0; }
.social-link {
  display: flex; align-items: center; gap: 14px;
  color: var(--stone); text-decoration: none;
  transition: color 0.25s;
  border: none; width: auto; height: auto;
}
.social-link:hover { color: var(--white); }
.social-icon {
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
  transition: border-color 0.25s, color 0.25s;
}
.social-link:hover .social-icon { border-color: var(--accent); color: var(--accent); }
.social-label {
  font-size: 12px; font-weight: 300; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col-title {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm-gray); font-weight: 500; margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
/* WP nav_menu wraps in <ul class="footer-links menu">  */
.footer-links.menu { list-style: none; margin: 0; padding: 0; }
.footer-links li a, .footer-links.menu li a {
  font-size: 14px; color: var(--stone); text-decoration: none;
  font-weight: 300; transition: color 0.25s;
}
.footer-links li a:hover, .footer-links.menu li a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.contact-item { font-size: 13px; color: var(--stone); font-weight: 300; line-height: 1.5; }
.contact-item a { color: var(--stone); text-decoration: none; transition: color .25s; }
.contact-item a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; }
.footer-copy { font-size: 12px; color: rgba(200,191,178,0.4); font-weight: 300; letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.footer-legal a, .footer-legal ul li a {
  font-size: 11px; color: rgba(200,191,178,0.4); text-decoration: none; transition: color 0.25s;
}
.footer-legal a:hover, .footer-legal ul li a:hover { color: var(--stone); }

/* ━━━━━━━━━━━━━━━━━━━━
   CONTACT FORM MODAL
━━━━━━━━━━━━━━━━━━━━ */
.contact-modal {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(26,23,20,0.7);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.contact-modal:not([hidden]) { opacity: 1; pointer-events: auto; }
.contact-modal-inner {
  background: var(--white); max-width: 600px; width: 100%;
  padding: 56px 52px; max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.45s var(--ease-out);
}
.contact-modal:not([hidden]) .contact-modal-inner { transform: translateY(0); }
.contact-modal-close {
  position: absolute; top: 18px; right: 24px;
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--stone); transition: color 0.2s; line-height: 1;
}
.contact-modal-close:hover { color: var(--charcoal); }
.ki-form { margin-top: 8px; }
.ki-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.ki-form-group { display: flex; flex-direction: column; gap: 8px; }
.ki-form-group--full { margin-bottom: 20px; }
.ki-form-group label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; color: var(--warm-gray); }
.ki-form-group label span { color: var(--accent); }
.ki-form-group input,
.ki-form-group select,
.ki-form-group textarea {
  padding: 12px 16px; border: 1px solid var(--sand);
  background: var(--cream); font-size: 14px; color: var(--charcoal);
  outline: none; transition: border-color 0.2s; font-family: var(--font-sans);
  appearance: none; -webkit-appearance: none; border-radius: 0;
}
.ki-form-group input:focus,
.ki-form-group select:focus,
.ki-form-group textarea:focus { border-color: var(--accent); }
.ki-form-group textarea { resize: vertical; min-height: 120px; }
.ki-form-footer { display: flex; align-items: center; gap: 24px; margin-top: 28px; }
.ki-form-note { font-size: 11px; color: var(--stone); font-weight: 300; }
.ki-form-message { margin-top: 16px; font-size: 13px; font-weight: 300; min-height: 20px; }
.ki-form-message.success { color: #4a7c3f; }
.ki-form-message.error { color: #c0392b; }

/* ━━━━━━━━━━━━━━━━━━━━
   SINGLE POST / PAGE
━━━━━━━━━━━━━━━━━━━━ */
.container { max-width: 1440px; margin: 0 auto; padding: 0 80px; }
.ki-page { padding: 140px 0 80px; }
.page-header { margin-bottom: 48px; }
.page-content { max-width: 760px; }
.entry-content h2,
.entry-content h3 { font-family: var(--font-serif); font-weight: 300; margin: 32px 0 16px; line-height: 1.3; }
.entry-content h2 { font-size: clamp(28px, 3vw, 40px); }
.entry-content h3 { font-size: clamp(22px, 2.5vw, 32px); }
.entry-content p { font-size: 15px; line-height: 1.85; color: var(--warm-gray); font-weight: 300; margin-bottom: 24px; }
.entry-content a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(184,149,106,0.3); padding-bottom: 1px; transition: border-color 0.2s; }
.entry-content a:hover { border-color: var(--accent); }
.entry-content blockquote {
  border-left: 3px solid var(--accent); margin: 40px 0;
  padding: 20px 32px; background: var(--cream);
  font-family: var(--font-serif); font-size: 24px; font-weight: 300;
  font-style: italic; line-height: 1.5; color: var(--charcoal);
}
.entry-content img { margin: 40px 0; border: none; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 24px; }
.entry-content li { font-size: 15px; line-height: 1.85; color: var(--warm-gray); font-weight: 300; margin-bottom: 8px; }

/* Single hero */
.single-hero { position: relative; height: 65vh; overflow: hidden; margin-bottom: 0; }
.single-hero-img-wrap { width: 100%; height: 100%; }
.single-hero-img { width: 100%; height: 100%; object-fit: cover; }
.single-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(26,23,20,0.55)); }
.single-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 0; }
.single-hero-content.has-image { position: absolute; }
.single-title {
  font-family: var(--font-serif); font-size: clamp(36px, 5vw, 68px);
  font-weight: 300; color: var(--white); line-height: 1.1; margin: 12px 0 16px;
}
.single-meta { font-size: 12px; color: rgba(250,250,248,0.65); letter-spacing: 0.06em; }
.single-content-wrap { display: grid; grid-template-columns: 1fr 220px; gap: 80px; padding: 80px 0 80px; }
.single-content { }
.single-sidebar { }
.sidebar-sticky { position: sticky; top: 100px; }
.share-links { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.share-link {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm-gray); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--sand); padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.share-link:hover { color: var(--accent); border-color: var(--accent); }
.single-tags p { font-size: 11px; color: var(--stone); margin-top: 40px; }
.single-tags a { color: var(--stone); text-decoration: none; border-bottom: 1px solid var(--sand); padding-bottom: 1px; margin-right: 6px; }

/* ━━━━━━━━━━━━━━━━━━━━
   PORTFOLIO SINGLE
━━━━━━━━━━━━━━━━━━━━ */
.project-hero { height: 75vh; overflow: hidden; position: relative; }
.project-hero-img-wrap { width: 100%; height: 100%; }
.project-hero-img { width: 100%; height: 100%; object-fit: cover; }
.project-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(26,23,20,0.4)); }
.project-header { padding: 80px 0 40px; }
.project-meta-row { display: flex; gap: 48px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--sand); }
.project-meta-item { display: flex; flex-direction: column; gap: 4px; }
.project-meta-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); font-weight: 500; }
.project-meta-val { font-family: var(--font-serif); font-size: 22px; font-weight: 300; color: var(--charcoal); }
.project-content { max-width: 720px; padding: 40px 0 60px; }
.project-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 0 80px 80px; }
.project-gallery-item { overflow: hidden; cursor: zoom-in; }
.project-gallery-item--wide { grid-column: span 1; }
.project-gallery-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.7s ease; }
.project-gallery-item:hover .project-gallery-img { transform: scale(1.04); }
.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 80px 80px;
}
.project-gallery-grid .pgallery-item { overflow: hidden; cursor: zoom-in; grid-column: span 1 !important; }
.project-gallery-grid .pgallery-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.7s ease; }
.project-gallery-grid .pgallery-item:hover .pgallery-img { transform: scale(1.04); }

/* ━━━━━━━━━━━━━━━━━━━━
   LIGHTBOX
━━━━━━━━━━━━━━━━━━━━ */
.pgallery-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(20, 16, 12, 0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s var(--ease-out);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pgallery-lightbox:not([hidden]) { opacity: 1; }
.pgallery-lightbox[hidden] { display: none; }

.pgallery-lb-img-wrap {
  max-width: 90vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.pgallery-lb-img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain; display: block;
  opacity: 0; transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.pgallery-lb-img.lb-loaded {
  opacity: 1; transform: scale(1);
}

.pgallery-lb-close {
  position: fixed; top: 28px; right: 36px;
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7); font-size: 18px;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  z-index: 10001;
}
.pgallery-lb-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white); border-color: rgba(255,255,255,0.5);
}

.pgallery-lb-prev,
.pgallery-lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6); font-size: 20px;
  width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
  z-index: 10001;
}
.pgallery-lb-prev { left: 28px; }
.pgallery-lb-next { right: 28px; }
.pgallery-lb-prev:hover { 
  background: rgba(255,255,255,0.1); color: var(--white);
  border-color: rgba(255,255,255,0.4); transform: translateY(-50%) translateX(-2px);
}
.pgallery-lb-next:hover {
  background: rgba(255,255,255,0.1); color: var(--white);
  border-color: rgba(255,255,255,0.4); transform: translateY(-50%) translateX(2px);
}

.pgallery-lb-counter {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); font-weight: 500;
}

@media (max-width: 600px) {
  .pgallery-lb-prev { left: 12px; width: 40px; height: 40px; }
  .pgallery-lb-next { right: 12px; width: 40px; height: 40px; }
  .pgallery-lb-close { top: 16px; right: 16px; }
}
/* ━━━━━━━━━━━━━━━━━━━━
   ARCHIVE & BLOG
━━━━━━━━━━━━━━━━━━━━ */
.ki-blog-archive { padding: 140px 0 80px; }
.archive-header { margin-bottom: 60px; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-top: 40px; }
.no-posts { font-size: 15px; color: var(--warm-gray); padding: 60px 0; }

/* Pagination */
.pagination { margin-top: 60px; }
.pagination .nav-links { display: flex; gap: 8px; }
.pagination .page-numbers {
  padding: 10px 16px; font-size: 12px; letter-spacing: 0.1em;
  border: 1px solid var(--sand); color: var(--warm-gray); text-decoration: none;
  transition: all 0.2s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

/* ━━━━━━━━━━━━━━━━━━━━
   404
━━━━━━━━━━━━━━━━━━━━ */
.ki-404 { padding-top: 100px; }

/* ━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
━━━━━━━━━━━━━━━━━━━━ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomOut { from { transform: scale(1.05); } to { transform: scale(1); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1100px) {
  .about-strip { grid-template-columns: 1fr; text-align: center; }
  .strip-label { writing-mode: horizontal-tb; transform: none; margin-bottom: 12px; }
  .strip-link { justify-self: center; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .philosophy { grid-template-columns: 1fr; }
  .phil-content { padding-left: 0; }
}

@media (max-width: 900px) {
  nav, #site-nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 100px 24px 60px; }
  .hero-right { height: 50vh; }
  .hero-badge { display: none; }
  .about-strip, .services, .portfolio, .process, .testimonials, .journal,
  .cta-banner, .philosophy, .stats, .site-footer,
  .ki-blog-archive .container, .container { padding-left: 24px; padding-right: 24px; }
  .cta-banner { grid-template-columns: 1fr; margin: 0 0 60px; }
  .cta-actions { align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid .port-item:nth-child(1),
  .portfolio-grid .port-item:nth-child(2),
  .portfolio-grid .port-item:nth-child(3),
  .portfolio-grid .port-item:nth-child(4),
  .portfolio-grid .port-item:nth-child(5) {
    grid-column: auto; grid-row: auto; aspect-ratio: 4/3;
  }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .single-content-wrap { grid-template-columns: 1fr; }
  .ki-form-row { grid-template-columns: 1fr; }
  .project-gallery { grid-template-columns: 1fr; padding: 0 24px 60px; }
  .project-gallery-item, .project-gallery-item--wide { grid-column: span 1; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(40px, 10vw, 64px); }
  .footer-top { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .phil-values { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 0; }
  .ki-form-footer { flex-direction: column; align-items: flex-start; }
}

/* ━━━━━━━━━━━━━━━━━━━━
   ADMIN BAR OFFSET
━━━━━━━━━━━━━━━━━━━━ */
.admin-bar #site-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #site-nav { top: 46px; } }

/* ━━━━━━━━━━━━━━━━━━━━
   WP ALIGNMENT CLASSES
━━━━━━━━━━━━━━━━━━━━ */
.alignleft  { float: left;  margin: 0 32px 24px 0; }
.alignright { float: right; margin: 0 0 24px 32px; }
.aligncenter { display: block; margin: 32px auto; }
.alignwide  { margin-left: -80px; margin-right: -80px; }
.alignfull  { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

/* ━━━━━━━━━━━━━━━━━━━━
   BEFORE / AFTER SLIDER
━━━━━━━━━━━━━━━━━━━━ */
.ba-section { padding: 0 80px 100px; }
.ba-header { margin-bottom: 40px; }
.ba-hint { font-size: 12px; color: var(--stone); margin-top: 10px; letter-spacing: 0.08em; font-weight: 300; }
.ba-slider {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9; cursor: ew-resize;
  user-select: none; background: var(--sand);
  touch-action: none;
}
.ba-after,
.ba-before { position: absolute; inset: 0; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-label {
  position: absolute; bottom: 20px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; padding: 6px 12px;
  background: rgba(20,16,12,0.55); color: var(--white);
}
.ba-label--before { left: 20px; }
.ba-label--after  { right: 20px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; z-index: 10;
  pointer-events: none;
}
.ba-handle-line { flex: 1; width: 2px; background: var(--white); opacity: 0.8; }
.ba-handle-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  gap: 4px; font-size: 14px; color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25); flex-shrink: 0;
}
/* ━━━━━━━━━━━━━━━━━━━━
   FOUNDER SECTION
━━━━━━━━━━━━━━━━━━━━ */
.founder-section {
display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: center;
  padding: 60px 80px;
background: var(--white);
}
.founder-text { padding-right: 40px; }
.founder-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; line-height: 1.1;
  color: var(--black); letter-spacing: -0.01em;
  margin: 12px 0 28px;
}
.founder-title em { font-style: italic; color: var(--accent); }
.founder-bio {
  font-size: 15px; line-height: 1.85;
  color: var(--warm-gray); font-weight: 300;
  margin-bottom: 20px; max-width: 520px;
}
.founder-stats {
  display: flex; gap: 40px;
  margin-top: 40px; padding-top: 40px;
  border-top: 1px solid var(--sand);
}
.founder-stat { display: flex; flex-direction: column; gap: 4px; }
.founder-stat-num {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 300;
  color: var(--charcoal); line-height: 1;
}
.founder-stat-label {
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--stone);
  font-weight: 500; line-height: 1.5;
}
.founder-img-wrap {
  position: relative;
}
.founder-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  max-height: 700px;
}
.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 13px; color: var(--stone);
  line-height: 1.6;
}
.founder-img-accent {
  position: absolute; bottom: -20px; left: -20px;
  width: 120px; height: 120px;
  border: 1px solid var(--accent); opacity: 0.3;
  z-index: -1;
}
.btn-founder-cta {
    display: inline-flex; align-items: center;
    margin-top: 40px;
    padding: 16px 32px;
    background: var(--charcoal); color: var(--white);
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    font-weight: 500; text-decoration: none;
    transition: background 0.25s, transform 0.2s;
}
.btn-founder-cta:hover { background: var(--accent); transform: translateY(-1px); }

@media (max-width: 900px) {
  .founder-section { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .founder-text { padding-right: 0; }
  .founder-img-wrap { order: -1; }
  .founder-img, .founder-img-placeholder { aspect-ratio: 4/3; object-position: top; }
  .founder-stats { flex-wrap: wrap; gap: 24px; }
}
/* ━━━━━━━━━━━━━━━━━━━━
   SERVICES PAGE
━━━━━━━━━━━━━━━━━━━━ */
.ki-services-page { padding-top: 0; }

.services-page-hero {
  padding: 160px 80px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  border-bottom: 1px solid var(--sand);
}
.services-page-title { font-size: clamp(48px, 7vw, 80px); margin-bottom: 20px; }
.services-page-intro {
  font-size: 16px; line-height: 1.8;
  color: var(--warm-gray); font-weight: 300;
  max-width: 600px; margin-top: 20px;
}

.services-anchor-nav {
  display: flex; flex-direction: column;
  gap: 6px; align-self: end; padding-bottom: 4px;
}
.anchor-link {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; color: var(--stone); text-decoration: none;
  padding: 8px 0; border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s; white-space: nowrap;
}
.anchor-link:hover { color: var(--charcoal); border-color: var(--accent); }
.anchor-num {
  font-family: var(--font-serif); font-size: 15px;
  font-weight: 300; color: var(--accent); line-height: 1;
}

.service-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh; border-bottom: 1px solid var(--sand);
}
.service-detail--reversed { direction: rtl; }
.service-detail--reversed > * { direction: ltr; }

.service-detail-img-col { position: relative; overflow: hidden; }
.service-detail-img-wrap { width: 100%; height: 100%; min-height: 560px; }
.service-detail-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.service-detail:hover .service-detail-img { transform: scale(1.04); }

.service-detail-num {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255,255,255,0.7);
  background: rgba(250,250,248,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 7px 12px;
  pointer-events: none;
  user-select: none;
}
.service-detail--reversed .service-detail-num { right: auto; left: 32px; }
.service-detail-content {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.service-detail--reversed .service-detail-content { background: var(--cream); }

.service-detail-name {
  font-family: var(--font-serif); font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300; color: var(--black); line-height: 1.1;
  margin: 12px 0 16px; letter-spacing: -0.01em;
}
.service-detail-tagline {
  font-family: var(--font-serif); font-size: 18px;
  color: var(--accent); font-style: italic;
  font-weight: 300; margin-bottom: 28px; line-height: 1.5;
}
.service-detail-desc {
  font-size: 15px; line-height: 1.85;
  color: var(--warm-gray); font-weight: 300; margin-bottom: 18px;
}

.service-includes {
  margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--sand);
}
.service-includes-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 18px;
}
.service-includes-list {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px;
}
.service-includes-list li {
  font-size: 13px; color: var(--charcoal); font-weight: 300;
  line-height: 1.5; padding-left: 16px; position: relative;
}
.service-includes-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 5px; height: 1px; background: var(--accent);
}
/* Price display */
.service-detail-price {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 300;
  color: var(--accent); letter-spacing: -0.01em;
  margin-bottom: 20px; line-height: 1;
}

/* CTA button spacing */
.service-detail-cta {
  margin-top: 40px;
  align-self: flex-start;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .services-page-hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px; gap: 40px;
  }
  .services-anchor-nav { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .service-detail { grid-template-columns: 1fr; direction: ltr; min-height: auto; }
  .service-detail--reversed { direction: ltr; }
  .service-detail-img-wrap { min-height: 360px; max-height: 420px; }
  .service-detail-content { padding: 48px 24px; }
  .service-detail-num { font-size: 72px; bottom: 20px; right: 20px; }
  .service-includes-list { grid-template-columns: 1fr; }
}
/* ━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE
━━━━━━━━━━━━━━━━━━━━ */
.ki-about-page { padding-top: 0; }

/* ① CINEMATIC HERO */
.ab-hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 80px 100px 64px; overflow: hidden;
}
.ab-hero-bg { position: absolute; inset: 0; z-index: 0; }
.ab-hero-img { width: 100%; height: 100%; object-fit: cover; }
.ab-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(20,16,12,0.82) 0%,rgba(20,16,12,0.4) 50%,rgba(20,16,12,0.25) 100%);
}
.ab-hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  height: 100%; padding-top: 140px; padding-bottom: 60px;
}
.ab-hero-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 500;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}
.ab-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8vw, 116px); font-weight: 300; line-height: 1.2;
  color: var(--white); letter-spacing: -0.04em; margin: 12px 0 0;
  opacity: 0; animation: fadeUp 0.9s ease 0.35s forwards;
	padding-top: 10px; padding-bottom: 20px;
}
.ab-hero-title em { font-style: italic; color: var(--accent-l); }

.ab-hero-desc {
  font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.5);
  font-weight: 300; max-width: 600px;
	padding-top: 10px; padding-bottom: 50px;

}
.ab-hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
  opacity: 0; animation: fadeIn 1s ease 1s forwards;
}

/* ② WHAT IS KI */
.ab-ki-concept {
  background: var(--black); padding: 120px 80px;
  position: relative; overflow: hidden;
}
.ab-ki-concept::before {
  content: '気'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-serif); font-size: 480px; font-weight: 300; line-height: 1;
  color: rgba(255,255,255,0.03); pointer-events: none; user-select: none;
}
.ab-ki-inner { max-width: 800px; }
.ab-ki-wordmark {
  font-family: var(--font-serif); font-size: 80px; font-weight: 300;
  color: var(--accent); line-height: 1; margin-bottom: 40px; letter-spacing: -0.02em;
}
.ab-ki-quote {
  font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300; line-height: 1.3; color: var(--white); letter-spacing: -0.01em;
  margin-bottom: 40px; font-style: normal; border: none; padding: 0; background: none;
}
.ab-ki-quote em { font-style: italic; color: var(--accent-l); }
.ab-ki-body {
  font-size: 15px; line-height: 1.9; color: rgba(250,250,248,0.5);
  font-weight: 300; margin-bottom: 20px; max-width: 680px;
}
.ab-ki-body em { color: rgba(250,250,248,0.8); font-style: italic; }

/* ③ PHILOSOPHY MOMENT */
.ab-philosophy-moment {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh;
  border-bottom: 1px solid var(--sand);
}
.ab-phil-image-col { position: relative; overflow: hidden; }
.ab-phil-img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease;
}
.ab-philosophy-moment:hover .ab-phil-img { transform: scale(1.04); }
.ab-phil-tag {
  position: absolute; bottom: 40px; right: -1px; background: var(--white);
  padding: 20px 24px; border-left: 3px solid var(--accent);
  box-shadow: -4px 4px 24px rgba(0,0,0,0.08); display: flex; flex-direction: column; gap: 2px;
}
.ab-phil-tag span {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm-gray); font-weight: 500; line-height: 1.6;
}
.ab-phil-text-col {
  padding: 80px 72px; display: flex; flex-direction: column;
  justify-content: center; background: var(--cream);
}
.ab-phil-quote {
  font-family: var(--font-serif); font-size: clamp(28px, 3vw, 44px);
  font-weight: 300; line-height: 1.3; color: var(--black); letter-spacing: -0.01em;
  margin: 16px 0 28px; font-style: normal; border: none; padding: 0; background: none;
}
.ab-phil-quote em { font-style: italic; color: var(--accent); }
.ab-phil-body {
  font-size: 15px; line-height: 1.85; color: var(--warm-gray);
  font-weight: 300; margin-bottom: 40px;
}
.ab-values-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding-top: 32px; border-top: 1px solid var(--sand);
}
.ab-value {
  padding: 16px; background: var(--white);
  border-top: 2px solid var(--sand); transition: border-color 0.25s;
}
.ab-value:hover { border-color: var(--accent); }
.ab-value-name {
  font-family: var(--font-serif); font-size: 20px;
  font-weight: 400; color: var(--accent); margin-bottom: 4px;
}
.ab-value-desc { font-size: 14px; color: var(--warm-grey); font-weight: 300; }

/* ④ FOUNDER — content LEFT, image RIGHT */
.ab-founder {
  display: grid; grid-template-columns: 1fr 1fr; padding: 0; min-height: 100vh;
}
.ab-founder-content { order: 1; display: flex; flex-direction: column; background: var(--white); justify-content: center; }
.ab-founder-sticky  { order: 2; position: sticky; top: 0; height: 100vh; overflow: hidden; align-self: start; }
.ab-founder-img-wrap { width: 100%; height: 100%; }
.ab-founder-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ab-founder-img-badge {
  position: absolute; bottom: 48px; right: 48px;
  background: var(--white); padding: 20px 28px;
  border-left: 3px solid var(--accent); box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  display: flex; flex-direction: column; gap: 4px;
}
.ab-founder-badge-name {
  font-family: var(--font-serif); font-size: 22px; font-weight: 300; color: var(--black);
}
.ab-founder-badge-role {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-gray); font-weight: 500;
}
.ab-founder-block { padding: 30px 62px; border-bottom: 1px solid var(--sand); }
.ab-founder-block:first-child { padding-top: 80px; }
.ab-founder-block:last-child { padding-bottom: 80px; }
.ab-founder-block:last-child { border-bottom: none; }
.ab-founder-name {
  font-family: var(--font-serif); font-size: clamp(40px, 4.5vw, 64px); font-weight: 300;
  line-height: 1.05; color: var(--black); letter-spacing: -0.02em; margin: 12px 0 32px;
}
.ab-founder-name em { font-style: italic; color: var(--accent); }
.ab-founder-bio {
  font-size: 15px; line-height: 1.9; color: var(--warm-gray);
  font-weight: 300; margin-bottom: 18px;
}
.ab-founder-bio:last-child { margin-bottom: 0; }
.ab-founder-stats {
  display: grid; grid-template-columns: repeat(3,1fr); padding: 64px 72px; gap: 0;
  background: var(--charcoal); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ab-stat {
  display: flex; flex-direction: column; gap: 8px; padding: 0 32px 0 0;
  border-right: 1px solid rgba(255,255,255,0.08); margin-right: 32px;
}
.ab-stat:last-child { border-right: none; margin-right: 0; }
.ab-stat-num {
  font-family: var(--font-serif); font-size: 52px;
  font-weight: 300; line-height: 1; color: var(--white);
}
.ab-stat-num span { color: var(--accent); font-size: 36px; }
.ab-stat-label {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--stone); font-weight: 500;
}

/* ⑤ WHY KI — EXPANDING IMAGE PANELS */
.ab-why { padding: 100px 80px; background: var(--cream); }
.ab-why-header { margin-bottom: 48px; }

.ab-why-panels {
  display: flex; height: 580px; gap: 3px; background: var(--charcoal);
}
.ab-why-panel {
  flex: 1; position: relative; overflow: hidden; cursor: pointer;
  transition: flex 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ab-why-panels:hover .ab-why-panel { flex: 0.6; }
.ab-why-panels .ab-why-panel:hover { flex: 3.5; }

.ab-why-panel-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.25; transform: scale(1.04);
  transition: opacity 0.45s ease, transform 0.45s ease;
  will-change: opacity, transform;
}
.ab-why-panel:hover .ab-why-panel-bg { opacity: 1; transform: scale(1); }

.ab-why-panel-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top,rgba(20,16,12,0.92) 0%,rgba(20,16,12,0.55) 45%,rgba(20,16,12,0.2) 100%);
}

/* Text block pinned to bottom */
.ab-why-panel-inner {
  position: absolute; bottom: 36px; left: 28px; right: 28px; z-index: 2;
}
.ab-why-panel-text { display: flex; flex-direction: column; gap: 10px; }
.ab-why-panel-name {
  font-family: var(--font-serif); font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 300; line-height: 1.25; color: var(--white); letter-spacing: -0.01em;
}

.ab-why-panel-desc {
  font-size: 12px; line-height: 1.75; color: rgba(250,250,248,0.72);
  font-weight: 300; max-width: 320px;
  max-height: 0; overflow: hidden;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s, max-height 0.3s ease 0.2s;
  will-change: opacity, transform;
}
.ab-why-panel:hover .ab-why-panel-desc { opacity: 1; transform: translateY(0); max-height: 200px; }
.ab-why-panel-desc em { color: rgba(250,250,248,0.95); font-style: italic; }

.ab-why-panel-arrow {
  font-size: 20px; color: var(--accent); display: block;
  max-height: 0; overflow: hidden;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.3s ease 0.25s, transform 0.3s ease 0.25s, max-height 0.3s ease 0.25s;
  will-change: opacity, transform;
}
.ab-why-panel:hover .ab-why-panel-arrow { opacity: 1; transform: translateX(0); max-height: 40px; }

/* Gold top-bar sweep */
.ab-why-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease; z-index: 3;
}
.ab-why-panel:hover::before { transform: scaleX(1); }

/* ⑥ TESTIMONIALS */
.ab-testimonials { background: var(--black); padding: 100px 80px; }
.ab-testi-header { margin-bottom: 60px; }
.ab-testi-header .section-eyebrow { color: var(--accent); }
.ab-testi-header .section-title { color: var(--white); }
.ab-testi-header .section-title em { color: var(--accent-l); }
.ab-testi-grid {
  display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 24px; align-items: start;
}
.ab-testi-card {
  padding: 40px 36px; border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s, transform 0.3s;
}
.ab-testi-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.ab-testi-card--featured {
  background: rgba(184,149,106,0.08); border-color: rgba(184,149,106,0.25); padding: 52px 44px;
}
.ab-testi-stars { color: var(--accent); font-size: 12px; letter-spacing: 3px; margin-bottom: 20px; }
.ab-testi-text {
  font-family: var(--font-serif); font-size: 18px; font-weight: 300; font-style: italic;
  line-height: 1.65; color: rgba(250,250,248,0.75); margin-bottom: 28px;
}
.ab-testi-card--featured .ab-testi-text { font-size: 21px; color: rgba(250,250,248,0.9); }
.ab-testi-author { display: flex; align-items: center; gap: 14px; }
.ab-testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 16px; color: var(--accent);
}
.ab-testi-name { font-size: 13px; font-weight: 500; color: var(--white); }
.ab-testi-location { font-size: 11px; color: var(--stone); letter-spacing: 0.06em; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .ab-why-panels { height: 480px; } }

@media (max-width: 900px) {
  .ab-hero { padding: 0 24px 48px; }
  .ab-hero-title { font-size: clamp(44px, 10vw, 72px); }
  .ab-hero-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ab-ki-concept { padding: 80px 24px; }
  .ab-ki-concept::before { display: none; }
  .ab-ki-wordmark { font-size: 56px; }
  .ab-philosophy-moment { grid-template-columns: 1fr; }
  .ab-phil-image-col { min-height: 380px; }
  .ab-phil-text-col { padding: 48px 24px; }
  .ab-phil-tag { display: none; }
  .ab-values-row { grid-template-columns: 1fr 1fr; }
  /* Founder: stack, image top */
  .ab-founder { grid-template-columns: 1fr; }
  .ab-founder-content { order: 2; }
  .ab-founder-sticky  { order: 1; position: relative; height: 60vw; max-height: 480px; }
  .ab-founder-block { padding: 48px 24px; }
  .ab-founder-stats { padding: 48px 24px; }
  /* Why panels: vertical stack */
  .ab-why { padding: 60px 24px; }
  .ab-why-panels { flex-direction: column; height: auto; gap: 2px; }
  .ab-why-panel { flex: none; height: 260px; }
  .ab-why-panels:hover .ab-why-panel,
  .ab-why-panels .ab-why-panel:hover { flex: none; }
  .ab-why-panel-bg { opacity: 0.55; transform: scale(1); }
  .ab-why-panel-desc { opacity: 1; transform: none; }
  .ab-why-panel-arrow { opacity: 1; transform: none; }
  .ab-why-panel-name { white-space: normal; }
  .ab-testimonials { padding: 60px 24px; }
  .ab-testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ab-values-row { grid-template-columns: 1fr; }
  .ab-founder-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ab-stat { border-right: none; margin-right: 0; padding-right: 0; }
  .ab-why-panel { height: 220px; }
}
.ki-about-page .cta-banner {
  margin-top: 80px;
  background: var(--accent);
}
.ki-about-page .cta-banner::before {
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}
.ki-about-page .cta-eyebrow { color: var(--white); }
.ki-about-page .cta-title { color: var(--white); }
.ki-about-page .cta-title em { color: var(--white); }
.ki-about-page .btn-light { background: var(--accent-l); color: var(--white); }
.ki-about-page .btn-outline-light { color: var(--white); border-color: rgba(255,255,255,0.4); }
.ki-about-page .btn-outline-light:hover { color: var(--stone); border-color: var(--stone); }

/* Calendly badge hidden since we use our own buttons */
.calendly-badge-widget { display: none !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PORTFOLIO MOODBOARD
   Paste at the bottom of ki-main.css
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Page background — warm linen ── */
.ki-moodboard {
  background: var(--cream);
  min-height: 100vh;
}

/* ── Header ── */
.mb-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 160px 80px 60px;
  border-bottom: 1px solid var(--sand);
  gap: 40px;
}
.mb-header-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 300; line-height: 0.95;
  color: var(--black); letter-spacing: -0.02em;
  margin: 12px 0 20px;
}
.mb-header-title em { font-style: italic; color: var(--accent); }
.mb-header-desc {
  font-size: 15px; line-height: 1.8;
  color: var(--warm-gray); font-weight: 300;
  max-width: 420px;
}
.mb-header-right {
  display: flex; gap: 48px;
  align-items: flex-end; flex-shrink: 0;
}
.mb-header-stat {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 6px;
}
.mb-header-stat-num {
  font-family: var(--font-serif);
  font-size: 48px; font-weight: 300;
  color: var(--accent); line-height: 1;
}
.mb-header-stat-label {
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--stone);
  font-weight: 500; text-align: right; line-height: 1.5;
}

/* ── Filter ── */
.mb-filter {
  display: flex; align-items: center; gap: 8px;
  padding: 20px 80px;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  position: sticky; top: 72px; z-index: 50;
  backdrop-filter: blur(12px);
  overflow-x: auto; scrollbar-width: none;
}
.mb-filter::-webkit-scrollbar { display: none; }
.mb-filter-label {
  font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--stone);
  font-weight: 600; margin-right: 8px; white-space: nowrap;
}
.mb-filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 18px;
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  color: var(--warm-gray); background: transparent;
  border: 1px solid var(--sand); border-radius: 100px;
  cursor: pointer; white-space: nowrap;
  transition: all 0.25s ease;
  font-family: var(--font-sans);
}
.mb-filter-btn:hover { color: var(--charcoal); border-color: var(--stone); }
.mb-filter-btn.active {
  background: var(--charcoal); color: var(--white);
  border-color: var(--charcoal);
}
.mb-filter-count {
  font-size: 9px; opacity: 0.55;
  font-weight: 400; letter-spacing: 0;
}

/* ── Board ── */
/* ── Board — CSS Grid replaces columns (fixes rotation bugs) ── */
.mb-board {
  padding: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  align-items: start;
}

/* ── Pin (each project card) ── */
.mb-pin {
  position: relative;
  display: block;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 0.4s ease;
  cursor: pointer;
}

/* Rotations */
.rot-n2 { transform: rotate(-2deg); }
.rot-n1 { transform: rotate(-1deg); }
.rot-0  { transform: rotate(0deg);  }
.rot-p1 { transform: rotate(1deg);  }
.rot-p2 { transform: rotate(2deg);  }

/* Hover — straighten and lift */
.mb-pin:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.02) !important;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.18));
  z-index: 10;
}

/* Size classes — no longer needed for layout but kept for image height variation */
.mb-lg { }
.mb-md { }
.mb-sm { }

/* ── Tape strip ── */
.mb-tape {
  position: absolute; z-index: 4;
  width: 52px; height: 18px;
  background: rgba(214,196,166,0.65);
  backdrop-filter: blur(2px);
  border-radius: 2px;
  left: 50%; transform: translateX(-50%);
  top: -9px;
}
.mb-tape.tape-tl { left: 22%; transform: translateX(-50%) rotate(-12deg); }
.mb-tape.tape-tc { left: 50%; transform: translateX(-50%) rotate(0deg); }
.mb-tape.tape-tr { left: 78%; transform: translateX(-50%) rotate(10deg); }

/* ── Card ── */
.mb-card {
  display: block; text-decoration: none;
  background: var(--white);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.06),
    0 8px 24px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* ── Photo ── */
.mb-photo {
  position: relative;
  overflow: hidden;
  padding: 10px 10px 0;
  background: var(--white);
}
.mb-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
/* Vary image heights by size class */
.mb-lg .mb-img  { height: 340px; }
.mb-md .mb-img  { height: 260px; }
.mb-sm .mb-img  { height: 200px; }
.mb-img--placeholder { background: var(--sand); }

.mb-pin:hover .mb-img { transform: scale(1.04); }

/* ── Type tag — always visible ── */
.mb-type-tag {
  position: absolute; bottom: 10px; left: 18px; z-index: 3;
  background: rgba(26,23,20,0.78);
  backdrop-filter: blur(6px);
  color: var(--accent-l);
  font-size: 8px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600;
  padding: 5px 12px; border-radius: 100px;
  pointer-events: none;
}

/* ── Hover overlay ── */
.mb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,16,12,0.82) 0%,
    rgba(20,16,12,0.3)  50%,
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 18px 18px 18px;
  pointer-events: none;
}
.mb-pin:hover .mb-overlay { opacity: 1; }
.mb-overlay-loc {
  font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-l);
  font-weight: 500; margin-bottom: 6px;
}
.mb-overlay-cta {
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white);
  font-weight: 500; opacity: 0.8;
}

/* ── Caption ── */
.mb-caption {
  padding: 14px 16px 16px;
  background: var(--white);
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 8px;
}
.mb-caption-title {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 400;
  color: var(--charcoal); line-height: 1.3;
  transition: color 0.25s;
}
.mb-pin:hover .mb-caption-title { color: var(--accent); }
.mb-caption-detail {
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--stone); white-space: nowrap;
  font-weight: 400;
}

/* ── Hidden items (filter) ── */
.mb-pin[aria-hidden="true"] { display: none; }

/* ── Pagination ── */
.mb-pagination {
  padding: 20px 80px 80px;
  background: var(--cream);
}
.mb-pagination .nav-links { display: flex; gap: 8px; }
.mb-pagination .page-numbers {
  padding: 10px 18px; font-size: 12px;
  letter-spacing: 0.1em; border: 1px solid var(--sand);
  color: var(--warm-gray); text-decoration: none;
  transition: all 0.2s;
}
.mb-pagination .page-numbers.current,
.mb-pagination .page-numbers:hover {
  background: var(--charcoal); color: var(--white);
  border-color: var(--charcoal);
}
.mb-empty {
  font-size: 15px; color: var(--warm-gray);
  padding: 80px; text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .mb-board { grid-template-columns: repeat(2, 1fr); padding: 60px; }
}
@media (max-width: 900px) {
  .mb-header { flex-direction: column; align-items: flex-start; padding: 120px 24px 48px; }
  .mb-header-right { flex-direction: row; gap: 32px; }
  .mb-header-stat { align-items: flex-start; }
  .mb-filter { padding: 16px 24px; top: 60px; }
  .mb-board { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; gap: 32px 20px; }
  .mb-pagination { padding: 20px 24px 60px; }
  /* Reduce rotations on mobile */
  .rot-n2 { transform: rotate(-1deg); }
  .rot-p2 { transform: rotate(1deg); }
}
@media (max-width: 580px) {
  .mb-board { grid-template-columns: 1fr; }
  .mb-lg .mb-img, .mb-md .mb-img, .mb-sm .mb-img { height: 240px; }
}
/* ━━━━━━━━━━━━━━━━━━━━
   PORTFOLIO SCROLL (homepage section)
━━━━━━━━━━━━━━━━━━━━ */
.portfolio-scroll-section { padding: 100px 0 80px; overflow: hidden; }
/* Portfolio section — footer CTA */
.ps-footer-cta {
  padding: 64px 80px 20px;
  display: flex;
  justify-content: center;
}
.ps-footer-cta-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 56px;
  border: 1px solid var(--sand);
  background: var(--cream);
}
.ps-footer-cta-label {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  white-space: nowrap;
}
.ps-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.ps-footer-cta-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}
.ps-footer-cta-arrow {
  transition: transform 0.2s;
}
.ps-footer-cta-btn:hover .ps-footer-cta-arrow {
  transform: translateX(4px);
}
@media (max-width: 700px) {
  .ps-footer-cta { padding: 48px 24px 16px; }
  .ps-footer-cta-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 32px 28px;
  }
  .ps-footer-cta-label { white-space: normal; }
}
.ps-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  padding: 0 80px 48px;
}
.ps-controls { display: flex; align-items: center; gap: 16px; }
.ps-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--sand); background: transparent;
  font-size: 16px; color: var(--charcoal);
  cursor: pointer; display: flex; align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.ps-arrow:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.strip-link {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  color: var(--charcoal); text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.strip-link:hover { color: var(--accent); border-color: var(--accent); }

.ps-track-wrap { position: relative; overflow: hidden; }
.ps-track {
  display: flex; gap: 24px;
  padding: 0 80px 40px;
  overflow: visible;
  width: max-content;
  cursor: grab;
  will-change: transform;
}
.ps-track.is-dragging { cursor: grabbing; user-select: none; }

.ps-card {
  flex: 0 0 380px;
}
.ps-card-link { display: block; text-decoration: none; }
.ps-card-img-wrap {
  position: relative; overflow: hidden;
  border-radius: 0;
}
.ps-card-img {
  width: 100%; height: 480px;
  object-fit: cover; display: block;
  transition: transform 0.7s var(--ease-out);
}
.ps-card-img--placeholder { background: var(--sand); }
.ps-card:hover .ps-card-img { transform: scale(1.04); }

.ps-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,0.5) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s ease;
}
.ps-card:hover .ps-card-overlay { opacity: 1; }

.ps-card-cta {
  position: absolute; bottom: 20px; left: 20px;
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500;
  color: var(--white);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.ps-card:hover .ps-card-cta { opacity: 1; transform: translateY(0); }

.ps-card-body { padding: 16px 0 0; }
.ps-card-tag {
  font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 500; margin-bottom: 6px;
}
.ps-card-name {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 300;
  color: var(--charcoal); line-height: 1.3;
  transition: color 0.25s;
}
.ps-card:hover .ps-card-name { color: var(--accent); }

/* Progress bar */
.ps-progress-wrap { padding: 0 80px; }
.ps-progress-bar {
  height: 1px; background: var(--sand);
  position: relative; overflow: hidden;
}
.ps-progress-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%; background: var(--accent);
  transition: width 0.1s linear;
}

@media (max-width: 900px) {
  .ps-header { padding: 0 24px 36px; }
  .ps-track { padding: 0 24px 32px; gap: 16px; }
  .ps-card { flex: 0 0 300px; }
  .ps-card-img { height: 360px; }
  .ps-progress-wrap { padding: 0 24px; }
}
/* ── Global image descriptor label ── */
.ki-img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 18px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.ki-img-label__type {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3px;
}

.ki-img-label__name {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}
/* ━━━━━━━━━━━━━━━━━━━━
   ABOUT — FAQS
━━━━━━━━━━━━━━━━━━━━ */
.ab-faqs {
  padding: 100px 80px;
  background: var(--white);
}
.ab-faqs-inner {
  max-width: 860px;
  margin: 0 auto;
}
.ab-faqs-header {
  margin-bottom: 64px;
}
.ab-faq-item {
  border-top: 1px solid var(--sand);
}
.ab-faq-item:last-child {
  border-bottom: 1px solid var(--sand);
}
.ab-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--black);
  text-align: left;
  transition: color 0.25s;
}
.ab-faq-question:hover {
  color: var(--accent);
}
.ab-faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
  font-family: var(--font-sans);
  line-height: 1;
}
.ab-faq-item.open .ab-faq-icon {
  transform: rotate(45deg);
}
.ab-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}
.ab-faq-answer[hidden] {
  display: block; /* override hidden so transition works */
  visibility: hidden;
}
.ab-faq-answer:not([hidden]) {
  visibility: visible;
}
.ab-faq-answer p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--warm-gray);
  font-weight: 300;
  padding-bottom: 28px;
  max-width: 720px;
}
@media (max-width: 900px) {
  .ab-faqs { padding: 80px 24px; }
  .ab-faq-question { font-size: 19px; }
}
.service-includes-list {
  list-style: none; margin: 0; padding: 0;
}
.service-includes-list li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(200,191,178,0.3);
  font-size: 14px; font-weight: 300;
  color: var(--warm-gray); line-height: 1.55;
  list-style: none !important;
  transition: color 0.2s;
}
.service-includes-list li::before {
  content: '◆';
  font-size: 7px;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.8;
  position: static;
  line-height: 1;
}
.service-includes-list li::after { display: none; }
.ab-hero-anchor {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.ab-hero-anchor:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}
/* ━━━━━━━━━━━━━━━━━━━━
   SERVICES — WHY SECTION (dark accordion)
━━━━━━━━━━━━━━━━━━━━ */
.sv-why {
  background: var(--charcoal);
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.sv-why::before {
  content: '?';
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(200px, 25vw, 360px);
  font-weight: 300;
  color: rgba(255,255,255,0.02);
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}
.sv-why-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}
.sv-why-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-top: 12px;
}
.sv-why-title em {
  font-style: italic;
  color: var(--accent-l);
}
.sv-why-accordion {
  display: flex;
  flex-direction: column;
}
.sv-why-item {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sv-why-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sv-why-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s;
  text-align: left;
}
.sv-why-trigger:hover {
  opacity: 0.8;
}
.sv-why-num {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 24px;
}
.sv-why-label {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  flex: 1;
}
.sv-why-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
  line-height: 1;
}
.sv-why-item.active .sv-why-icon {
  transform: rotate(45deg);
}
.sv-why-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-out), padding 0.45s var(--ease-out);
  padding: 0 0 0 44px;
}
.sv-why-item.active .sv-why-body {
  max-height: 300px;
  padding: 0 0 28px 44px;
}
.sv-why-body p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(250,250,248,0.5);
  font-weight: 300;
  margin-bottom: 12px;
}
.sv-why-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .sv-why { padding: 60px 24px; }
  .sv-why-inner { grid-template-columns: 1fr; gap: 40px; }
  .sv-why-label { font-size: 20px; }
}
.service-includes-list li {
  padding-left: 0 !important;
  position: static !important;
}
.service-includes-list li::before {
  content: '◆' !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  font-size: 7px;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.8;
  line-height: 1;
}
/* ─── Why Choose Ki ─────────────────────────────────────────── */
.wck-section {
    position: relative;
    background: var(--charcoal);
    padding: 140px 80px;
    overflow: hidden;
}

/* Background watermark word */
.wck-bg-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: clamp(280px, 38vw, 520px);
    font-weight: 300;
    color: rgba(184, 149, 106, 0.045);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
    line-height: 1;
    white-space: nowrap;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Inner layout */
.wck-inner {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
}

/* Header */
.wck-header { margin-bottom: 88px; }

.wck-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin: 0 0 28px;
}

/* Headline clip reveal */
.wck-headline-wrap { overflow: hidden; margin-bottom: 48px; }

.wck-headline {
    font-family: var(--font-serif);
    font-size: clamp(56px, 7.5vw, 104px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.02;
    margin: 0;
}

.wck-hl-line {
    display: block;
    transform: translateY(110%);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.wck-hl-italic {
    font-style: italic;
    color: var(--accent-l);
}

.wck-headline-wrap.wck-in .wck-hl-line:nth-child(1) { transform: translateY(0); }
.wck-headline-wrap.wck-in .wck-hl-line:nth-child(2) { transform: translateY(0); transition-delay: 0.1s; }

/* Rule */
.wck-rule {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.wck-rule span {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
    transition: left 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.wck-rule.wck-in span { left: 100%; }

/* Body grid */
.wck-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

/* Lead text */
.wck-lead-p {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(250, 250, 248, 0.55);
    margin: 0 0 28px;
}

.wck-lead-statement {
    font-family: var(--font-serif);
    font-size: 24px;
    font-style: italic;
    color: var(--accent-l);
    line-height: 1.5;
    margin: 16px 0 0;
}

/* Base animation state */
.wck-anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.wck-anim.wck-in {
    opacity: 1;
    transform: translateY(0);
}

.wck-delay-1 { transition-delay: 0.15s; }
.wck-delay-2 { transition-delay: 0.3s; }

/* Pillars */
.wck-pillars {
    display: flex;
    flex-direction: column;
}

.wck-pillar {
    position: relative;
    padding: 36px 0 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    align-items: start;
    cursor: default;
    transition-delay: var(--wck-delay, 0s);
}

.wck-pillar:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }

/* Subtle hover glow */
.wck-pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(184, 149, 106, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.wck-pillar:hover::before { opacity: 1; }

.wck-pillar-num {
    font-family: var(--font-serif);
    font-size: 13px;
    letter-spacing: 0.14em;
    color: var(--accent);
    padding-top: 4px;
    transition: color 0.4s ease;
}

.wck-pillar:hover .wck-pillar-num { color: var(--accent-l); }

.wck-pillar-title {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 400;
    color: var(--white);
    margin: 0 0 0;
    line-height: 1.3;
    transition: color 0.4s ease;
    /* Collapse desc by default */
}

.wck-pillar:hover .wck-pillar-title { color: var(--accent-l); }

.wck-pillar-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(250, 250, 248, 0.5);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.45s ease 0.05s,
                margin 0.45s ease;
}

.wck-pillar:hover .wck-pillar-desc,
.wck-pillar.wck-open .wck-pillar-desc {
    max-height: 140px;
    opacity: 1;
    margin-top: 12px;
}

/* Animated bottom bar on hover */
.wck-pillar-bar {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.wck-pillar:hover .wck-pillar-bar { width: 100%; }

/* Responsive */
@media (max-width: 1100px) {
    .wck-section { padding: 100px 48px; }
    .wck-body { grid-template-columns: 1fr; gap: 64px; }
}

@media (max-width: 600px) {
    .wck-section { padding: 80px 24px; }
    .wck-body { gap: 48px; }
}
/* ━━━━━━━━━━━━━━━━━━━━
   HAMBURGER BUTTON
━━━━━━━━━━━━━━━━━━━━ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  z-index: 200;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ━━━━━━━━━━━━━━━━━━━━
   MOBILE MENU PANEL
━━━━━━━━━━━━━━━━━━━━ */
.nav-mobile-panel {
  display: none;
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 150;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-mobile-panel.is-open { transform: translateX(0); }
.nav-mobile-inner {
  display: flex; flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 100px 40px 60px;
}
.nav-mobile-links { list-style: none; margin: 0 0 48px; padding: 0; }
.nav-mobile-links li { border-bottom: 1px solid var(--sand); }
.nav-mobile-links a {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 300; color: var(--warm-gray);
  text-decoration: none;
  padding: 16px 0;
  letter-spacing: -0.01em; line-height: 1.1;
  transition: color 0.2s;
}
.nav-mobile-links a:hover,
.nav-mobile-links .current-menu-item > a { color: var(--accent); }
.nav-mobile-cta {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px; line-height: 1.6;
  transition: color 0.25s;
  align-self: flex-start;
}
.nav-mobile-cta span {
  display: block;
  font-size: 9px; letter-spacing: 0.18em;
  color: var(--accent); margin-top: 1px;
}
.nav-mobile-cta:hover { color: var(--accent); }

/* ━━━━━━━━━━━━━━━━━━━━
   MOBILE BREAKPOINT
━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 860px) {
  #site-nav { padding: 14px 24px; }
  #site-nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex; }
  .logo-img { height: 56px; width: auto; }
  .nav-mobile-panel { display: block; }
.nav-cta {
    font-size: 8px;
    letter-spacing: 0.08em;
    white-space: normal;
    text-align: center;
    line-height: 1.5;
    border: 1px solid var(--accent);
    padding: 5px 10px;
    color: var(--warm-gray);
    max-width: 160px;
  }
}
@media (max-width: 860px) {
  #site-nav {
    z-index: 200;
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE FIXES — Services & About pages
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── 1. Consistent full-width sections — no white gaps ── */
@media (max-width: 900px) {
  .ki-services-page,
  .ki-about-page,
  .ki-services-page > *,
  .ki-about-page > * {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* Services hero — stack vertically, consistent padding */
  .services-page-hero {
    display: flex;
    flex-direction: column;
    padding: 120px 24px 48px;
    gap: 32px;
  }
  .services-anchor-nav {
    flex-direction: column;
    gap: 4px;
  }
  .anchor-link {
    padding: 10px 0;
    border-bottom: 1px solid var(--sand);
  }

  /* Service detail sections — consistent width */
  .service-detail {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .service-detail--reversed {
    direction: ltr;
  }
  .service-detail-img-col {
    width: 100%;
  }
  .service-detail-img-wrap {
    min-height: 280px;
    max-height: 360px;
    width: 100%;
  }
  .service-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .service-detail-content {
    padding: 40px 24px;
    width: 100%;
  }

  /* ── 2. Image tag labels — shrink on mobile ── */
  .service-detail-num {
    font-size: 9px;
    padding: 5px 10px;
    bottom: 12px;
    right: 12px;
    letter-spacing: 0.1em;
  }

  /* sv-why section */
  .sv-why {
    padding: 60px 24px;
    width: 100%;
  }
  .sv-why-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* wck section */
  .wck-section {
    padding: 80px 24px;
    width: 100%;
  }

  /* Philosophy section */
  .philosophy {
    padding: 60px 24px;
    width: 100%;
  }

  /* ── 3. Founder image — show face not forehead ── */
  .ab-founder-img {
    object-position: center 15%;
  }
  .ab-founder-sticky {
    height: 70vw;
    max-height: 420px;
  }

  /* About sections — consistent width */
  .ab-ki-concept,
  .ab-philosophy-moment,
  .ab-why,
  .ab-testimonials,
  .ab-faqs {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .ab-phil-text-col {
    padding: 40px 24px;
  }
  .ab-founder-block {
    padding: 40px 24px;
  }
  .ab-founder-stats {
    padding: 40px 24px;
  }
}

/* ── 4. Founder image face fix — also on larger mobile ── */
@media (max-width: 1100px) {
  .ab-founder-img {
    object-position: center 15%;
  }
}
@media (max-width: 900px) {
  .service-detail-cta {
    white-space: normal;
    width: 100%;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }
}
@media (max-width: 900px) {
  .cta-banner {
    margin: 0 0 0;
  }
}
@media (max-width: 900px) {
  /* Push badge to bottom left, away from face */
  .ab-founder-img-badge {
    bottom: 16px;
    right: auto;
    left: 16px;
  }

  /* Show face — crop from top rather than center */
  .ab-founder-img {
    object-position: top center;
  }

  /* Taller image so more of the photo is visible */
  .ab-founder-sticky {
    height: 90vw;
    max-height: 520px;
  }
}
@media (max-width: 900px) {
  .services-anchor-nav {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .anchor-link {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .process {
    padding-top: 60px;
  }
  .process-steps {
    margin-top: 40px;
  }
  .step {
    padding: 0 16px;
  }
  .step-dot {
    margin-bottom: 16px;
  }
}
@media (max-width: 900px) {
  .journal {
    padding-top: 60px;
  }
}
@media (max-width: 900px) {
  /* Native scroll fallback for any horizontal track */
  .ps-track,
  .testi-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: default;
  }
  .ps-track::-webkit-scrollbar,
  .testi-track::-webkit-scrollbar {
    display: none;
  }

  /* Each card snaps into place */
  .ps-card,
  .testi-card {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BOOK PAGE — /book
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.ki-book-page {
  padding-top: 160px;
  padding-bottom: 0;
}

/* ── Hero ── */
.book-hero {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.book-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}
.book-hero-title em {
  font-style: italic;
  color: var(--accent);
}
.book-hero-sub {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Calendly Embed ── */
.book-calendly .calendly-inline-widget {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sand);
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.02);
}
.book-calendly .calendly-inline-widget iframe {
  cursor: auto !important;
}
.book-calendly:hover ~ .cursor,
.book-calendly:hover ~ .cursor-ring {
  display: none;
}

/* ── What to Expect ── */
.book-expect {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  border-top: 1px solid var(--sand);
}
.book-expect-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 36px;
  font-weight: 500;
  text-align: center;
}
.book-expect-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.book-expect-step {
  text-align: center;
  padding: 0 12px;
}
.book-expect-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 400;
}
.book-expect-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}
.book-expect-desc {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* ── Book Page Responsive ── */
@media (max-width: 900px) {
  .book-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .ki-book-page {
    padding-top: 120px;
  }
  .book-hero {
    margin-bottom: 40px;
  }
.book-calendly .calendly-inline-widget {
    height: 1000px !important;
  }
  .book-expect-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}