*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #fafaf8;
  --bg2:      rgb(255 250 243);
  --ink:      #0d0d0d;
  --muted:    #888;
  --border:   rgba(13,13,13,0.08);
  --yellow:   #f5c518;
  --green:    #00c896;
  --coral:    #ff5c3a;
  --pill-bg:  #0d0d0d;
  --white:   #ffffff;
}

body { background: var(--bg2); font-family: 'Syne', sans-serif; }

/* ══ SHELL ══════════════════════════════════════════════ */
footer.kf {
  background: var(--bg2);
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

/* ══ NOISE TEXTURE ═══════════════════════════════════════ */
footer.kf::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ══ COLOURED ACCENT RULE AT TOP ════════════════════════ */
.kf-accent-bar {
  display: flex;
  height: 4px;
  width: 100%;
}
.kf-accent-bar span {
  flex: 1;
  display: block;
}
.kf-accent-bar span:nth-child(1) { background: var(--yellow); }
.kf-accent-bar span:nth-child(2) { background: var(--green); }
.kf-accent-bar span:nth-child(3) { background: var(--coral); }
.kf-accent-bar span:nth-child(4) { background: var(--ink); }

/* ══ INNER ═══════════════════════════════════════════════ */
.kf-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
  position: relative;
  z-index: 1;
}


/* ══ MAIN GRID ════════════════════════════════════════════ */
.kf-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  color: var(--white);
  padding: 62px 0 24px;
  border-bottom: 1px solid var(--border);
}

.kf-second {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.kf-col-divider {
  background: linear-gradient(to bottom, transparent, var(--border) 15%, var(--border) 85%, transparent);
  margin: 6 72px;
  width: 1px;
  height: 250px;
  background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent);
  
}

    

/* ══ LEFT COL ════════════════════════════════════════════ */
.kf-left {}

/* Brand row */
.kf-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

/* Logomark — overlapping rounded shapes, structured but playful */
.kf-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  position: relative;
}
.kf-mark svg { width: 100%; height: 100%; overflow: visible; }

.max-w-\[180px\] {
  max-width: 480px;
}

.kf-name {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.kf-name .accent-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  margin-left: 3px;
  vertical-align: super;
  animation: dotpop 3s ease-in-out infinite;
}
@keyframes dotpop {
  0%,100% { transform: scale(1); background: var(--yellow); }
  33%      { transform: scale(1.5); background: var(--green); }
  66%      { transform: scale(1.2); background: var(--coral); }
}

.kf-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  padding-left: 68px; /* align under wordmark */
}

/* Big italic quote / descriptor */
.kf-descriptor {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
  max-width: 480px;
}
.kf-descriptor .highlight {
  display: inline-block;
  background: var(--yellow);
  border-radius: 8px;
  padding: 0 10px 2px;
  font-style: normal;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.72em;
  letter-spacing: -0.02em;
  vertical-align: middle;
  line-height: 1.3;
  color: var(--ink);
  transform: rotate(-1.5deg);
  display: inline-block;
}

/* Floating pill tags */
.kf-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kf-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  transition: all 0.25s;
  cursor: default;
}
.kf-pill:hover { border-color: var(--ink); color: var(--ink); }
.kf-pill .pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══ RIGHT COL ════════════════════════════════════════════ */
.kf-right {
  display: flex;
  flex-direction: column;
}

a .kf-middle .kf-right  {
color: var(--white);
}
/* Section eyebrow */
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ── Phone block ── */
.kf-phone-block {
  margin-bottom: 44px;
}

.kf-phone-list { list-style: none; }

.kf-phone-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: padding-left 0.3s ease;
}
.kf-phone-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--yellow);
  opacity: 0.12;
  transition: width 0.3s ease;
}
.kf-phone-item:first-child { border-top: 1px solid var(--border); }
.kf-phone-item:hover { padding-left: 10px; }
.kf-phone-item:hover::before { width: 100%; }
.kf-phone-item:hover .ph-num { color: var(--ink); }
.kf-phone-item:hover .ph-arrow { transform: translateX(4px); opacity: 1; }

.ph-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ph-idx {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  width: 20px;
}
.ph-num {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.ph-arrow {
  font-size: 18px;
  opacity: 0.2;
  transition: opacity 0.25s, transform 0.25s;
}

/* ── Instagram block ── */
.kf-ig-block {}

.kf-ig-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: var(--ink);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  max-width: 300px;
}
.kf-ig-card:hover { transform: translateY(-4px); }

/* Gradient shimmer on card */
.kf-ig-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Coloured blob inside card */
.ig-blob {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #f9a825, #e91e8c, #6a1b9a, #f9a825);
  filter: blur(50px);
  opacity: 0.25;
  right: -40px;
  top: -60px;
  animation: orb-drift 6s ease-in-out infinite;
}
@keyframes orb-drift {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.ig-left {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.ig-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f9a825 0%, #e91e8c 50%, #6a1b9a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
  color: var(--white);
}
.kf-ig-card:hover .ig-icon { transform: rotate(10deg) scale(1.1); }
.ig-icon svg { width: 22px; height: 22px; color: white; }

.ig-copy {}
.ig-handle {
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
  display: block;
}
.ig-sub {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  display: block;
  margin-top: 2px;
}

.ig-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 8px 16px 8px 12px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background 0.25s;
  margin-left: 10px;
}
.kf-ig-card:hover .ig-cta { background: rgba(255,255,255,0.18); }
.ig-cta-arrow {
  font-size: 14px;
  transition: transform 0.25s;
}
.kf-ig-card:hover .ig-cta-arrow { transform: rotate(45deg); }

.kf-curve {
  width: 100%;
  height: 80px;
  background: var(--bg2);
  border-top-left-radius: 100% 80px;
  border-top-right-radius: 100% 80px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

/* ══ BOTTOM BAR ══════════════════════════════════════════ */
.kf-bottom {
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 22px 60px;
  flex-wrap: wrap;
  gap: 350px;
}

.kf-copy {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.kf-copy strong { color: var(--ink); font-weight: 700; }



/* Made with love badge */
.kf-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.kf-badge .heart {
  color: var(--coral);
  animation: heartbeat 1.8s ease-in-out infinite;
  display: inline-block;
}
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  15%      { transform: scale(1.3); }
  30%      { transform: scale(1); }
  45%      { transform: scale(1.15); }
}

/* ══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .kf-inner { padding: 0 28px; }
  .kf-main {
    grid-template-columns: 1fr;
    padding: 56px 0 48px;
  }
  .kf-col-divider { display: none; }
  .kf-right { padding-left: 0; margin-top: 48px; }
  .kf-sub { padding-left: 0; }
  .kf-left {
    text-align: center;
  }

  .kf-right {
    align-items: flex-start;
  }

	.img {
		max-width: 80px;
		height: auto;
	}
	
	.footer-logo {
		max-width: 60px;
		height: auto;
	}


}

@media (max-width: 560px) {
  .kf-ig-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 100%;
  }

  .ig-copy {
    width: 100%;
  }

  .ig-handle,
  .ig-sub {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .kf-ig-card {
    max-width: 200px; /* tablet */
  }
	
	img {
		max-width: 120px;
	}
	
	.footer-logo {
		max-width: 110px;
	}
}

@media (max-width: 480px) {
  .kf-ig-card {
    max-width: 150px; /* mobile */
  }
	
	.img {
		max-width: 90px;
	}
	
	.footer-logo {
		max-width: 80px;
	}
	
	.kf-bottom {
		gap: 10px;
	}
	
	.kf-badge {
		margin-left: 50px;
	/* ===============================
   FOOTER COLOR OVERRIDE (STRONG)
   =============================== */

/* Force ALL text inside footer to be white */
footer.kf,
footer.kf * {
    color: #fff !important;
}

/* Links specifically */
footer.kf a {
    color: #fff !important;
    text-decoration: none;
}

/* Hover effect */
footer.kf a:hover {
    color: var(--yellow) !important; /* or your accent */
}

/* Muted text override */
footer.kf .kf-copy,
footer.kf .kf-badge,
footer.kf .kf-sub,
footer.kf .eyebrow {
    color: rgba(255,255,255,0.7) !important;
}

/* Strong text (like brand name) */
footer.kf .kf-name,
footer.kf strong {
    color: #fff !important;
}
	}
}
/* ===============================
   FOOTER COLOR OVERRIDE (STRONG)
   =============================== */

/* Force ALL text inside footer to be white */
footer.kf,
footer.kf * {
    color: #fff !important;
}

/* Links specifically */
footer.kf a {
    color: #fff !important;
    text-decoration: none;
}

/* Hover effect */
footer.kf a:hover {
    color: var(--yellow) !important; /* or your accent */
}

/* Muted text override */
footer.kf .kf-copy,
footer.kf .kf-badge,
footer.kf .kf-sub,
footer.kf .eyebrow {
    color: rgba(255,255,255,0.7) !important;
}

/* Strong text (like brand name) */
footer.kf .kf-name,
footer.kf strong {
    color: #fff !important;
}