/* ============================================================
   KZL — kalahariben.com  |  Cloudflare Pages build
   Self-hosted. No external font or image dependencies.
   Palette: Deep teal #063840 | Accent #0a6c79 | Light #6ecfdc
            Off-white #faf8f5 | Sand #e8e0d4 | Dark #1f2933
   Typography: Playfair Display (headings) + Source Sans 3 (body)
   ============================================================ */

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1f2933;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #063840;
}
h1 { font-size: clamp(2.1rem, 4vw + 0.8rem, 3.3rem); }
h2 { font-size: clamp(1.7rem, 2.2vw + 0.9rem, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p { margin-bottom: 1rem; color: #4b5563; }
p:last-child { margin-bottom: 0; }

/* ─── Layout ────────────────────────────────────────────────── */
.kzl-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px)  { .kzl-container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .kzl-container { padding-left: 2rem;   padding-right: 2rem; } }

/* ─── Utility ───────────────────────────────────────────────── */
.kzl-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #0a6c79; display: block; margin-bottom: 0.75rem;
}
.kzl-section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #6b7280; display: block; margin-bottom: 0.75rem;
}
.kzl-check-list { list-style: none; padding: 0; }
.kzl-check-list li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.875rem; color: #374151; margin-bottom: 0.6rem;
}
.kzl-check-list li::before {
  content: ''; display: inline-block; width: 15px; height: 15px;
  min-width: 15px; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6c79' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.kzl-check-list.light li { color: rgba(255,255,255,0.85); }
.kzl-check-list.light li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236ecfdc' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
}

/* ─── Buttons ───────────────────────────────────────────────── */
.kzl-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 0.9rem;
  padding: 0.8rem 1.75rem; border-radius: 9999px; border: none;
  cursor: pointer; transition: all 0.2s ease; text-decoration: none;
}
.kzl-btn-primary { background: #063840; color: #ffffff; }
.kzl-btn-primary:hover { background: #0a6c79; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(6,56,64,0.25); }
.kzl-btn-white { background: #ffffff; color: #063840; }
.kzl-btn-white:hover { background: #faf8f5; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.kzl-btn-outline-white { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border: 1.5px solid rgba(255,255,255,0.3); }
.kzl-btn-outline-white:hover { background: rgba(255,255,255,0.2); }
.kzl-btn-teal-text { background: none; color: #6ecfdc; font-weight: 700; font-size: 0.875rem; padding: 0; border-radius: 0; }
.kzl-btn-teal-text:hover { color: #ffffff; }

/* ─── Navigation ────────────────────────────────────────────── */
#kzl-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.3s ease;
}
#kzl-header.scrolled {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 #e8e0d4;
}
.kzl-nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.kzl-logo img { height: 32px; width: auto; max-width: 200px; object-fit: contain; display: block; transition: filter 0.3s; }
.kzl-logo a { display: inline-flex; align-items: center; }
#kzl-header:not(.scrolled) .kzl-logo img { filter: brightness(0) invert(1); }
.kzl-nav-links { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 1024px) { .kzl-nav-links { display: flex; } }
.kzl-nav-links a { font-size: 0.875rem; font-weight: 600; position: relative; transition: color 0.2s; }
#kzl-header:not(.scrolled) .kzl-nav-links a { color: rgba(255,255,255,0.9); }
#kzl-header.scrolled .kzl-nav-links a { color: #1f2933; }
#kzl-header:not(.scrolled) .kzl-nav-links a:hover { color: #ffffff; }
#kzl-header.scrolled .kzl-nav-links a:hover { color: #063840; }
.kzl-nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: #0a6c79; transition: width 0.2s;
}
.kzl-nav-links a:hover::after { width: 100%; }
.kzl-nav-cta { display: none; }
@media (min-width: 1024px) { .kzl-nav-cta { display: inline-flex; } }
#kzl-header:not(.scrolled) .kzl-nav-cta { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
#kzl-header:not(.scrolled) .kzl-nav-cta:hover { background: rgba(255,255,255,0.25); }
#kzl-header.scrolled .kzl-nav-cta { background: #063840; color: #fff; }
#kzl-header.scrolled .kzl-nav-cta:hover { background: #0a6c79; }
.kzl-hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
@media (min-width: 1024px) { .kzl-hamburger { display: none; } }
.kzl-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
#kzl-header.scrolled .kzl-hamburger span { background: #063840; }
.kzl-mobile-nav { display: none; background: #fff; border-top: 1px solid #e8e0d4; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.kzl-mobile-nav.open { display: block; }
.kzl-mobile-nav-inner { padding: 1rem 1rem 1.5rem; display: flex; flex-direction: column; gap: 0; }
.kzl-mobile-nav a { display: block; font-weight: 600; color: #1f2933; padding: 0.75rem 0; border-bottom: 1px solid #e8e0d4; font-size: 0.95rem; }
.kzl-mobile-nav a:last-child { border-bottom: none; }
.kzl-mobile-nav a:hover { color: #063840; }
.kzl-mobile-cta { margin-top: 1rem; background: #063840; color: #fff !important; text-align: center; padding: 0.85rem !important; border-radius: 9999px; border-bottom: none !important; }

/* ─── Hero ──────────────────────────────────────────────────── */
#kzl-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.kzl-hero-bg { position: absolute; inset: 0; }
.kzl-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.kzl-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(6,56,64,0.93) 0%, rgba(6,56,64,0.80) 50%, rgba(6,56,64,0.50) 100%); }
.kzl-hero-overlay-bottom { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,56,64,0.55) 0%, transparent 50%); }
.kzl-hero-content { position: relative; width: 100%; padding-top: 6rem; padding-bottom: 5rem; }
.kzl-hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .kzl-hero-grid { grid-template-columns: 3fr 2fr; } }
.kzl-hero-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #6ecfdc; display: block; margin-bottom: 1rem; }
.kzl-hero-title { color: #ffffff; margin-bottom: 1.25rem; }
.kzl-hero-subtitle { color: rgba(255,255,255,0.82); font-size: 1.1rem; line-height: 1.65; max-width: 36rem; margin-bottom: 2rem; }
.kzl-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 1.75rem; }
.kzl-hero-note { color: rgba(255,255,255,0.55); font-size: 0.875rem; }
.kzl-hero-note strong { color: rgba(255,255,255,0.8); }
.kzl-hero-card { display: none; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); border-radius: 1rem; padding: 1.75rem; }
@media (min-width: 1024px) { .kzl-hero-card { display: block; } }
.kzl-hero-card-logo { height: 56px; margin: 0 auto 1.25rem; filter: brightness(0) invert(1); }
.kzl-hero-card h3 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.75rem; }
.kzl-hero-card p { color: rgba(255,255,255,0.72); font-size: 0.875rem; margin-bottom: 1.25rem; }
.kzl-hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.kzl-hero-tag { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.25); border-radius: 9999px; padding: 0.25rem 0.75rem; }
.kzl-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.25rem; color: rgba(255,255,255,0.45); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; }
.kzl-scroll-hint svg { animation: bounce 1.8s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ─── Services ──────────────────────────────────────────────── */
#kzl-services { padding: 5rem 0; background: #faf8f5; }
@media (min-width: 1024px) { #kzl-services { padding: 7rem 0; } }
.kzl-services-header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3.5rem; }
@media (min-width: 1024px) { .kzl-services-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.kzl-services-header h2 { max-width: 32rem; }
.kzl-services-header p { color: #6b7280; max-width: 22rem; font-size: 0.95rem; }
@media (min-width: 1024px) { .kzl-services-header p { text-align: right; } }
.kzl-services-grid { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .kzl-services-grid { grid-template-columns: 1fr 1fr; } }
.kzl-service-card { background: #ffffff; border: 1px solid #e8e0d4; border-radius: 1rem; padding: 1.75rem 2rem; transition: all 0.3s ease; }
.kzl-service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(6,56,64,0.1); border-color: rgba(10,108,121,0.3); }
.kzl-service-card-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.kzl-service-icon { width: 40px; height: 40px; background: rgba(6,56,64,0.08); border-radius: 0.625rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kzl-service-icon svg { width: 20px; height: 20px; stroke: #063840; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.kzl-service-card h3 { color: #063840; font-size: 1.15rem; margin-bottom: 0.2rem; }
.kzl-service-tagline { color: #0a6c79; font-size: 0.8rem; font-weight: 600; }
.kzl-service-desc { font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; color: #4b5563; }
.kzl-service-note { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #e8e0d4; color: #6b7280; font-size: 0.75rem; }
.kzl-service-featured { background: #063840; border-color: #063840; border-radius: 1rem; padding: 2.5rem; }
.kzl-service-featured:hover { transform: none; box-shadow: none; border-color: #063840; }
.kzl-service-featured-inner { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .kzl-service-featured-inner { grid-template-columns: 1fr 1fr; } }
.kzl-service-featured .kzl-service-icon { background: rgba(255,255,255,0.15); }
.kzl-service-featured .kzl-service-icon svg { stroke: #6ecfdc; }
.kzl-service-featured h3 { color: #ffffff; }
.kzl-service-featured .kzl-service-tagline { color: #6ecfdc; }
.kzl-service-featured .kzl-service-desc { color: rgba(255,255,255,0.78); }
.kzl-service-featured .kzl-service-note { border-top: none; padding-top: 0; margin-top: 0.75rem; color: rgba(255,255,255,0.5); border-left: 3px solid #0a6c79; padding-left: 0.75rem; }

/* ─── Why KZL ────────────────────────────────────────────────── */
#kzl-why { padding: 5rem 0; background: #063840; position: relative; overflow: hidden; }
@media (min-width: 1024px) { #kzl-why { padding: 7rem 0; } }
.kzl-why-bg { position: absolute; inset: 0; opacity: 0.05; }
.kzl-why-bg img { width: 100%; height: 100%; object-fit: cover; }
.kzl-why-inner { position: relative; }
.kzl-why-grid { display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .kzl-why-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.kzl-why-eyebrow { color: #6ecfdc; }
.kzl-why-title { color: #ffffff; margin-bottom: 1.25rem; }
.kzl-why-body { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.kzl-why-quote { border-left: 3px solid #0a6c79; padding-left: 1rem; color: rgba(255,255,255,0.78); font-size: 0.9rem; line-height: 1.7; font-style: italic; }
.kzl-why-points { display: flex; flex-direction: column; gap: 1.25rem; }
.kzl-why-point { display: flex; gap: 1rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 0.75rem; padding: 1.25rem; transition: background 0.2s; }
.kzl-why-point:hover { background: rgba(255,255,255,0.12); }
.kzl-why-num { width: 32px; height: 32px; min-width: 32px; border-radius: 50%; background: rgba(10,108,121,0.3); border: 1px solid rgba(10,108,121,0.5); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: #6ecfdc; margin-top: 2px; }
.kzl-why-point-title { color: #ffffff; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
.kzl-why-point-desc { color: rgba(255,255,255,0.62); font-size: 0.85rem; line-height: 1.55; }

/* ─── Commercial ─────────────────────────────────────────────── */
#kzl-commercial { padding: 5rem 0; background: #ffffff; }
@media (min-width: 1024px) { #kzl-commercial { padding: 7rem 0; } }
.kzl-commercial-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .kzl-commercial-grid { grid-template-columns: 1fr 1fr; } }
.kzl-commercial-img-wrap { position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 4/3; }
.kzl-commercial-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.kzl-commercial-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,56,64,0.6), transparent); }
.kzl-commercial-badge { position: absolute; bottom: 1.25rem; left: 1.25rem; background: #0a6c79; color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.875rem; border-radius: 9999px; }
.kzl-commercial-content h2 { margin-bottom: 1.25rem; }
.kzl-products-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #063840; margin-bottom: 0.75rem; display: block; }
.kzl-products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.kzl-product-item { display: flex; align-items: center; gap: 0.625rem; background: #faf8f5; border: 1px solid #e8e0d4; border-radius: 0.75rem; padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 600; color: #374151; }
.kzl-product-item svg { width: 15px; height: 15px; stroke: #0a6c79; fill: none; stroke-width: 2; flex-shrink: 0; }
.kzl-quotation-cta { background: #faf8f5; border: 1px solid #e8e0d4; border-radius: 0.75rem; padding: 1.5rem; margin-bottom: 1.5rem; }
.kzl-quotation-cta-inner { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.kzl-quotation-icon { width: 40px; height: 40px; min-width: 40px; background: rgba(6,56,64,0.08); border-radius: 0.625rem; display: flex; align-items: center; justify-content: center; }
.kzl-quotation-icon svg { width: 20px; height: 20px; stroke: #063840; fill: none; stroke-width: 2; }
.kzl-quotation-title { font-weight: 700; font-size: 0.95rem; color: #063840; margin-bottom: 0.25rem; }
.kzl-quotation-desc { font-size: 0.85rem; color: #6b7280; line-height: 1.55; margin-bottom: 0; }

/* ─── Clients ────────────────────────────────────────────────── */
#kzl-clients { padding: 5rem 0; background: #faf8f5; }
@media (min-width: 1024px) { #kzl-clients { padding: 7rem 0; } }
.kzl-clients-header { margin-bottom: 3.5rem; }
.kzl-clients-header h2 { max-width: 36rem; margin-bottom: 1rem; }
.kzl-clients-header p { color: #6b7280; max-width: 42rem; }
.kzl-clients-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .kzl-clients-grid { grid-template-columns: 1fr 1fr; } }
.kzl-clients-section-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #063840; margin-bottom: 1.25rem; }
.kzl-zambian-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .kzl-zambian-grid { grid-template-columns: 1fr 1fr; } }
.kzl-client-card { background: #ffffff; border: 1px solid #e8e0d4; border-radius: 0.75rem; padding: 1.25rem; transition: all 0.2s; }
.kzl-client-card:hover { border-color: rgba(10,108,121,0.4); box-shadow: 0 2px 12px rgba(6,56,64,0.06); }
.kzl-client-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.kzl-client-icon { width: 32px; height: 32px; background: rgba(6,56,64,0.08); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kzl-client-icon svg { width: 16px; height: 16px; stroke: #063840; fill: none; stroke-width: 2; }
.kzl-client-card h4 { color: #063840; font-size: 0.9rem; font-weight: 700; }
.kzl-client-card p { color: #6b7280; font-size: 0.78rem; line-height: 1.5; }
.kzl-foreign-box { background: #063840; border-radius: 1rem; padding: 1.75rem; }
.kzl-foreign-box p { color: rgba(255,255,255,0.72); font-size: 0.875rem; line-height: 1.65; margin-bottom: 1.25rem; }
.kzl-foreign-box .kzl-check-list { margin-bottom: 1.25rem; }
.kzl-foreign-footer { padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.15); }

/* ─── About ──────────────────────────────────────────────────── */
#kzl-about { padding: 5rem 0; background: #ffffff; }
@media (min-width: 1024px) { #kzl-about { padding: 7rem 0; } }
.kzl-about-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .kzl-about-grid { grid-template-columns: 3fr 2fr; } }
.kzl-about-content h2 { margin-bottom: 1.5rem; }
.kzl-about-card { background: #faf8f5; border: 1px solid #e8e0d4; border-radius: 1rem; padding: 1.75rem; }
.kzl-about-logo { height: 48px; margin-bottom: 1.5rem; }
.kzl-about-rows { display: flex; flex-direction: column; gap: 0; }
.kzl-about-row { padding: 0.875rem 0; border-bottom: 1px solid #e8e0d4; }
.kzl-about-row:last-child { border-bottom: none; padding-bottom: 0; }
.kzl-about-row-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #6b7280; display: block; margin-bottom: 0.2rem; }
.kzl-about-row-value { font-size: 0.875rem; font-weight: 600; color: #1f2933; }

/* ─── Contact ────────────────────────────────────────────────── */
#kzl-contact { padding: 5rem 0; background: #063840; }
@media (min-width: 1024px) { #kzl-contact { padding: 7rem 0; } }
.kzl-contact-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .kzl-contact-grid { grid-template-columns: 3fr 2fr; } }
.kzl-contact-eyebrow { color: #6ecfdc; }
.kzl-contact-title { color: #ffffff; margin-bottom: 1.25rem; }
.kzl-contact-body { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.kzl-contact-items { display: flex; flex-direction: column; gap: 1rem; }
.kzl-contact-item { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.kzl-contact-item:hover { color: #ffffff; }
.kzl-contact-item-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.kzl-contact-item:hover .kzl-contact-item-icon { background: #0a6c79; }
.kzl-contact-item-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.kzl-contact-item-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); display: block; margin-bottom: 0.15rem; }
.kzl-contact-item-value { font-weight: 600; font-size: 0.95rem; }
.kzl-contact-form-box { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 1rem; padding: 1.75rem; }
.kzl-contact-form-box h3 { color: #ffffff; font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 0.5rem; }
.kzl-contact-form-box > p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 1.5rem; }
.kzl-form { display: flex; flex-direction: column; gap: 0.75rem; }
.kzl-form input, .kzl-form textarea { width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 0.75rem; padding: 0.75rem 1rem; color: #ffffff; font-family: 'Source Sans 3', sans-serif; font-size: 0.9rem; transition: border-color 0.2s; outline: none; }
.kzl-form input::placeholder, .kzl-form textarea::placeholder { color: rgba(255,255,255,0.38); }
.kzl-form input:focus, .kzl-form textarea:focus { border-color: #0a6c79; }
.kzl-form textarea { resize: none; }
.kzl-form-submit { display: block; width: 100%; background: #ffffff; color: #063840; font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 0.95rem; padding: 0.9rem; border-radius: 0.75rem; border: none; cursor: pointer; transition: background 0.2s; text-align: center; }
.kzl-form-submit:hover { background: #faf8f5; }
.kzl-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.kzl-form-note { text-align: center; color: rgba(255,255,255,0.38); font-size: 0.78rem; }
.kzl-form-message { display: none; border-radius: 0.75rem; padding: 1rem; font-size: 0.875rem; text-align: center; margin-top: 0.5rem; }
.kzl-form-message.success { background: rgba(10,108,121,0.3); border: 1px solid rgba(110,207,220,0.4); color: #6ecfdc; }
.kzl-form-message.error { background: rgba(220,38,38,0.2); border: 1px solid rgba(220,38,38,0.4); color: #fca5a5; }

/* ─── Footer ─────────────────────────────────────────────────── */
#kzl-footer { background: #041f24; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.kzl-footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
@media (min-width: 768px) { .kzl-footer-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.kzl-footer-wordmark { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 1rem; color: rgba(255,255,255,0.55); }
.kzl-footer-copy { color: rgba(255,255,255,0.38); font-size: 0.8rem; }
.kzl-footer-links { display: flex; gap: 1.5rem; }
.kzl-footer-links a { color: rgba(255,255,255,0.38); font-size: 0.8rem; transition: color 0.2s; }
.kzl-footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── Animations ─────────────────────────────────────────────── */
.kzl-fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.kzl-fade-up.visible { opacity: 1; transform: translateY(0); }
.kzl-fade-up-delay-1 { transition-delay: 0.08s; }
.kzl-fade-up-delay-2 { transition-delay: 0.16s; }
.kzl-fade-up-delay-3 { transition-delay: 0.24s; }
.kzl-fade-up-delay-4 { transition-delay: 0.32s; }
