/* ═══════════════════════════════════════════════════════════════
   KALA BASH — Version 4: Larger Body Text (120% increase)
   Stylesheet for version-3-dynamic-dark.html with enlarged typography
   ═══════════════════════════════════════════════════════════════ */

/* ── Roboto Slab Extra Bold (local, for logo) ─────────────────── */
@font-face {
  font-family: 'Roboto Slab';
  src: url('fonts/RobotoSlab-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ── Space Grotesk (local, body font) ─────────────────────────── */
/* Note: 300-weight removed — not referenced anywhere in this stylesheet */
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/space-grotesk-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/space-grotesk-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/space-grotesk-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/space-grotesk-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Syne (local, heading font) ───────────────────────────────── */
@font-face {
  font-family: 'Syne';
  src: url('fonts/syne-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('fonts/syne-latin-800-normal.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

/* ── Design Tokens ────────────────────────────────────────────── */
:root {
  --bg:      #000000;
  --bg2:     #141414;
  --bg3:     #1A1A1A;
  --amber:   #F0A500;
  --amber2:  #FFD166;
  --green:   #2ECC71;
  --white:   #FFFFFF;
  --muted:   rgba(255,255,255,0.5);
  --line:    rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #272727;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s;
}
nav.scrolled {
  border-color: var(--line);
}

/* Logo — Roboto Slab Extra Bold, same color scheme */
.nav-logo {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 800;
  font-size: 1.56rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--amber); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.936rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-pill {
  background: var(--amber);
  color: var(--bg);
  font-size: 0.864rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-pill:hover { background: var(--amber2); transform: scale(1.04); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-bookstack {
  display: flex;
  align-items: center;
  color: var(--amber);
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-bookstack:hover { opacity: 1; transform: scale(1.1); }

/* ══════════════════════════════════════
   HERO — full viewport, split 2fr / 3fr
   Text left (narrower), image right (wider)
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 6rem 3rem 4rem;
  background: var(--bg);
  overflow: hidden;
}

/* Ambient glow removed — pure black background for clean image compositing */

/* Scan line removed — sits behind the opaque magazine cover */

/* Hero grid: text col narrower (2fr), image col wider (3fr) */
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

/* Left: text block */
.hero-left { /* inherits grid cell */ }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero h1 .line-accent {
  color: var(--amber);
  display: block;
}

.hero-meta {
  color: var(--muted);
  font-size: 0.984rem;
  font-weight: 400;
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Buttons */
.btn-amber {
  background: var(--amber);
  color: var(--bg);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-amber:hover { background: var(--amber2); transform: translateY(-2px); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* Right: magazine cover + issue card */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.hero-featured-mag {
  display: block;
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  transform: perspective(1100px) rotateY(6deg) rotate(4deg);
  /* box-shadow removed: black shadows are invisible with screen blend mode,
     and the amber ring outlined the image rectangle visibly on hover */
  transition: transform 0.5s ease;
  will-change: transform;
}
.hero-featured-mag:hover {
  /* rotation kept identical to resting state — only scale changes,
     so the edge angle never shifts and fringe stays hidden */
  transform: perspective(1100px) rotateY(6deg) rotate(4deg) scale(1.03);
}

.hero-screen-notice {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
  margin: 0 0 0.5rem 0;
  padding: 0;
  opacity: 0.9;
}

.hero-issue-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.75rem;
  text-align: center;
  min-width: 160px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.hero-issue-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
}
.issue-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  display: block;
  flex-shrink: 0;
}
.issue-label {
  font-size: 0.744rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.5rem;
}
.issue-free-tag {
  display: inline-block;
  background: var(--green);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
  overflow: hidden;
}
.ticker-track {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.816rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker-item::before { content: '◆'; color: var(--amber); font-size: 0.5rem; }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-left {
  background: var(--bg2);
  padding: 5rem 3rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-tag::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.about-left h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.1rem, 3.6vw, 3.3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-left p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.08rem;
  margin-bottom: 0.9rem;
}
.about-right {
  background: var(--bg2);
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}
.stat-box {
  background: var(--bg3);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--amber);
}
.stat-box-n {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-box-l {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-box-sub { font-size: 0.936rem; color: rgba(255,255,255,0.35); margin-top: 0.25rem; }

/* ══════════════════════════════════════
   CATEGORIES (Coverage)
══════════════════════════════════════ */
.categories { padding: 6rem 3rem; background: var(--bg); }
.sec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.sec-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--line);
}
.cat-card {
  background: var(--bg);
  padding: 2.5rem 1.5rem;
  cursor: default;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.cat-card:hover { background: var(--bg3); }
.cat-card:hover .cat-arrow { opacity: 1; transform: translate(0); }
.cat-card:hover .cat-line { background: var(--amber); }
.cat-line {
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: rgba(240,165,0,0.3);  /* visible at rest, bright amber on hover */
  transition: background 0.3s ease;
}
.cat-icon-w {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.44rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}
.cat-card:hover .cat-icon-w { border-color: var(--amber); }
.cat-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.056rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.cat-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.cat-arrow {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--amber);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}

/* ══════════════════════════════════════
   FEATURES (Why Partner)
══════════════════════════════════════ */
.features { background: var(--bg2); padding: 6rem 3rem; border-top: 1px solid var(--line); }
.features-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg3);
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: rgba(240,165,0,0.35); }
.feature-card.large { grid-row: 1 / 3; }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(240,165,0,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.75rem;
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.feature-card p { font-size: 0.984rem; color: var(--muted); line-height: 1.75; }

/* Feature badges — now <a> links to mailto */
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  transition: color 0.2s;
}
.feature-badge::before { content: '→'; }
.feature-badge:hover { color: var(--amber2); }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cta { background: var(--amber); padding: 7rem 3rem; position: relative; overflow: hidden; }
.cta::before {
  content: 'KALA BASH';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: clamp(7.2rem, 16.8vw, 21.6rem);
  font-weight: 800;
  color: rgba(0,0,0,0.06);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.cta-inner { position: relative; text-align: center; max-width: 680px; margin: 0 auto; }
.cta h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  color: var(--bg);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.cta p { color: rgba(13,13,13,0.65); font-size: 1.2rem; line-height: 1.75; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-dark-pill {
  background: var(--bg);
  color: var(--white);
  font-size: 0.936rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.9rem 2.25rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-dark-pill:hover { background: #222; }

.btn-outline-dark {
  border: 2px solid rgba(13,13,13,0.3);
  color: var(--bg);
  font-size: 0.936rem;
  font-weight: 600;
  padding: 0.9rem 2.25rem;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-outline-dark:hover { border-color: var(--bg); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--bg); border-top: 1px solid var(--line); padding: 4rem 3rem 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

/* Footer logo — Roboto Slab Extra Bold, same colors */
.footer-logo {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--amber); }

.footer-desc { font-size: 0.984rem; color: var(--muted); line-height: 1.8; max-width: 260px; }
.footer-col-h {
  font-size: 0.744rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E29B00;
  margin-bottom: 1.25rem;
}
.footer-col a, .footer-col span {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.984rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.864rem;
  color: rgba(255,255,255,0.25);
}
.social-btns { display: flex; gap: 1rem; }
.social-btns a {
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.social-btns a:hover { border-color: var(--amber); color: var(--amber); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.large { grid-row: auto; }
}

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }

  /* MOBILE HERO: single column, image ABOVE text — tight, no forced height */
  .hero {
    height: auto;
    min-height: 0;
    padding: 4rem 1.5rem 1.5rem;   /* 4rem clears the mobile nav; less bottom */
    align-items: flex-start;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;                   /* tighter gap between image block and text */
  }
  /* Image above text via order */
  .hero-right {
    order: -1;
    display: block;                 /* block (not flex) so children naturally fill width */
    width: 100%;
  }
  /* The <a> wrapping the image must fill full width so img 100% resolves correctly */
  .hero-right > a {
    display: block;
    width: 100%;
  }
  .hero-featured-mag {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    transform: none;
    object-fit: fill;               /* respect intrinsic aspect ratio, fill full width */
  }
  /* Keep notice visible on mobile; hide issue card (desktop-only detail) */
  .hero-screen-notice { display: block; margin-top: 0.75rem; }
  .hero-issue-card    { display: none; }

  /* Hero text block: centre-aligned on mobile */
  .hero-left {
    text-align: center;
  }
  .hero-tag {
    justify-content: center;
  }
  .hero-meta {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }

  /* Ticker → About: extra breathing room */
  .ticker { margin-bottom: 1.5rem; }

  .about { grid-template-columns: 1fr; }
  /* About Kala Bash text block: centre-aligned on mobile */
  .about-left {
    text-align: center;
    padding: 3rem 1.5rem;
  }
  .about-left .section-tag {
    justify-content: center;
  }
  .about-left .section-tag::after {
    display: none;
  }
  .about-right {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 1.5rem;
  }
  .stat-box { text-align: center; }

  /* Categories (Coverage): centre-aligned on mobile */
  .categories, .features, .cta, footer { padding: 4rem 1.5rem; }
  .categories .sec-header,
  .features   .sec-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  .categories .section-tag,
  .features   .section-tag {
    justify-content: center;
  }
  .categories .section-tag::after,
  .features   .section-tag::after {
    display: none;
  }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card { text-align: center; }
  .cat-icon-w { margin: 0 auto 1.25rem; }

  /* Features (Why Partner): centre-aligned on mobile */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { text-align: center; }
  .feature-icon { margin-left: auto; margin-right: auto; }
  .feature-badge { justify-content: center; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-featured-mag { width: 100%; max-width: 100%; }
  .hero h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .footer-top { grid-template-columns: 1fr; }
}

/* ── Contact Forms (CTA section — amber background) ─────────────── */
.kb-tabs { margin: 2rem 0 0; text-align: left; }

.kb-tab-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.kb-tab-btn {
  background: rgba(0,0,0,0.1);
  border: 1.5px solid rgba(0,0,0,0.22);
  color: var(--bg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}
.kb-tab-btn.active,
.kb-tab-btn:hover {
  background: var(--bg);
  color: var(--amber);
  border-color: var(--bg);
}

.kb-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.kb-form input,
.kb-form textarea,
.kb-form select {
  background: rgba(255,255,255,0.35);
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 0.4rem;
  color: var(--bg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.kb-form input::placeholder,
.kb-form textarea::placeholder { color: rgba(0,0,0,0.4); }
.kb-form input:focus,
.kb-form textarea:focus,
.kb-form select:focus { outline: none; border-color: rgba(0,0,0,0.55); }
.kb-form textarea { min-height: 110px; resize: vertical; }
.kb-form select { appearance: none; -webkit-appearance: none; cursor: pointer; }

.kb-form button[type=submit] {
  align-self: center;
  background: var(--bg);
  color: var(--amber);
  border: none;
  border-radius: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.8rem 2.5rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.2s;
}
.kb-form button[type=submit]:hover { background: #222; transform: translateY(-1px); }
.kb-form button[type=submit]:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.kb-form-msg {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}
