/* ============================================================
   PODRZIKLUB THEME — vanilla CSS port of the Tailwind UI
   Brand: deep navy ink + electric flame orange
   ============================================================ */

:root {
  --radius: 0.75rem;

  --ink: oklch(0.18 0.04 255);
  --ink-soft: oklch(0.26 0.045 255);
  --flame: oklch(0.72 0.22 45);
  --flame-soft: oklch(0.82 0.16 60);
  --pitch: oklch(0.96 0.01 90);

  --background: oklch(0.99 0.005 90);
  --foreground: oklch(0.18 0.04 255);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.18 0.04 255);
  --secondary: oklch(0.95 0.012 90);
  --muted: oklch(0.95 0.012 90);
  --muted-foreground: oklch(0.45 0.02 255);
  --border: oklch(0.9 0.01 255);
  --input: oklch(0.92 0.01 255);
  --ring: oklch(0.72 0.22 45);
  --destructive: oklch(0.577 0.245 27.325);

  --font-display: "Anton", "Bebas Neue", "Impact", sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --shadow-glow: 0 20px 60px -20px color-mix(in oklab, var(--flame) 50%, transparent);
  --shadow-card: 0 1px 0 0 color-mix(in oklab, var(--foreground) 6%, transparent),
                 0 24px 48px -28px color-mix(in oklab, var(--ink) 35%, transparent);
}

* { box-sizing: border-box; border-color: var(--border); }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; color: inherit; background: none; border: none; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, .font-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
}
h4, h5, h6 { font-family: var(--font-sans); margin: 0; }

/* ----------- Helpers ----------- */
.container-wide { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 768px) { .container-wide { padding-inline: 2rem; } }

.flame { color: var(--flame); }
.pk-relative { position: relative; }
.pk-center { text-align: center; }
.pk-mt { margin-top: 2rem; }
.pk-muted { color: var(--muted-foreground); }
.pk-lead { margin-top: 1.5rem; max-width: 42rem; font-size: 1.125rem; color: var(--muted-foreground); }
.pk-dim { color: rgba(255,255,255,0.6); }

.pk-display-xl { font-size: clamp(3rem, 9vw, 6rem); }
.pk-display-lg { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.pk-display-md { font-size: clamp(2.25rem, 5vw, 3.75rem); }
.pk-display-sm { font-size: clamp(1.75rem, 3vw, 2.25rem); }

.pk-section { padding-block: 6rem; }
@media (min-width: 768px) { .pk-section { padding-block: 8rem; } }
.pk-section-tight { padding-block: 3rem; }

.pk-main { display: block; }

/* dark / flame surfaces */
.pk-dark { background: var(--ink); color: var(--pitch); }
.pk-flame { background: var(--flame); color: var(--ink); }
.pk-on-dark { color: #fff; }
.pk-on-dark-muted { color: rgba(255,255,255,0.7); }
.pk-on-flame { color: var(--ink); }
.pk-on-flame-muted { color: color-mix(in oklab, var(--ink) 75%, transparent); }

/* ----------- Buttons ----------- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem; border-radius: 999px;
  background: var(--flame); color: var(--ink);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  transition: transform .2s ease, background .2s ease;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--flame-soft); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.875rem; box-shadow: none; }
.btn-block { display: flex; width: 100%; margin-top: 0.75rem; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem; border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--foreground) 18%, transparent);
  color: var(--foreground); font-weight: 600;
  transition: background .2s ease, border-color .2s ease;
}
.btn-ghost:hover { background: color-mix(in oklab, var(--foreground) 6%, transparent); }
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); }

.btn-on-flame {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border-radius: 999px;
  background: var(--ink); color: var(--pitch); font-weight: 700;
  transition: transform .2s ease;
}
.btn-on-flame:hover { transform: translateY(-2px); }

/* ----------- Pills ----------- */
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  background: color-mix(in oklab, var(--flame) 14%, transparent);
  color: var(--flame); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.pill-dark { background: color-mix(in oklab, white 8%, transparent); color: var(--flame-soft); }

/* ----------- Marquee ----------- */
.pk-marquee-wrap { border-block: 1px solid var(--border); padding-block: 1.5rem; overflow: hidden; background: var(--secondary); }
.marquee { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: pk-marquee 30s linear infinite; }
.pk-marquee-item { font-family: var(--font-display); font-size: 1.5rem; color: color-mix(in oklab, var(--muted-foreground) 70%, transparent); text-transform: uppercase; }
@keyframes pk-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ----------- Stat number gradient ----------- */
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  background: linear-gradient(180deg, var(--flame-soft), var(--flame));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ----------- Grid background ----------- */
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in oklab, white 6%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, white 6%, transparent) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4; pointer-events: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.pk-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px); background: color-mix(in oklab, var(--background) 80%, transparent); border-bottom: 1px solid var(--border); }
.pk-header-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; gap: 1rem; }

.pk-brand { display: inline-flex; align-items: center; gap: 0.5rem; }
.pk-brand img { max-height: 40px; width: auto; }
.pk-brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 0.75rem; background: linear-gradient(135deg, var(--flame), var(--flame-soft)); color: var(--ink); }
.pk-brand-name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.01em; color: var(--foreground); }
.pk-brand-name .dot { color: var(--flame); }
.pk-brand-light .pk-brand-name { color: var(--pitch); }

.pk-nav { display: none; }
@media (min-width: 768px) { .pk-nav { display: block; } }
.pk-menu { display: flex; align-items: center; gap: 2rem; }
.pk-menu a { font-size: 0.875rem; font-weight: 600; color: var(--muted-foreground); transition: color .15s ease; }
.pk-menu a:hover, .pk-menu .current-menu-item a { color: var(--foreground); }

.pk-nav-cta { display: none; }
@media (min-width: 768px) { .pk-nav-cta { display: flex; align-items: center; gap: 0.75rem; } }

.pk-burger { display: inline-flex; padding: 0.5rem; margin-right: -0.5rem; }
@media (min-width: 768px) { .pk-burger { display: none; } }

.pk-mobile-menu { display: none; border-top: 1px solid var(--border); background: var(--background); }
.pk-mobile-menu.open { display: block; }
.pk-mobile-menu .container-wide { padding-block: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.pk-mobile-menu ul { display: flex; flex-direction: column; }
.pk-mobile-menu a { padding-block: 0.75rem; font-size: 1rem; font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.pk-footer { margin-top: 6rem; background: var(--ink); color: var(--pitch); }
.pk-footer-grid { display: grid; gap: 3rem; padding-block: 4rem; }
@media (min-width: 768px) { .pk-footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.pk-footer-brand { }
.pk-footer-blurb { margin-top: 1rem; max-width: 24rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.pk-footer h4 { font-family: var(--font-display); font-size: 0.875rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.pk-footer ul { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.pk-footer ul a { color: var(--pitch); transition: color .15s ease; }
.pk-footer ul a:hover { color: var(--flame); }
.pk-footer-muted { color: rgba(255,255,255,0.7); }
.pk-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.pk-footer-bottom-inner { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: space-between; padding-block: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.5); }
@media (min-width: 640px) { .pk-footer-bottom-inner { flex-direction: row; } }

/* ============================================================
   HERO
   ============================================================ */
.pk-hero { position: relative; overflow: hidden; background: var(--ink); color: var(--pitch); }
.pk-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.pk-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, color-mix(in oklab, var(--ink) 30%, transparent) 0%, var(--ink) 92%); }
.pk-hero-inner { position: relative; padding-top: 5rem; padding-bottom: 7rem; }
@media (min-width: 768px) { .pk-hero-inner { padding-top: 8rem; padding-bottom: 10rem; } }
.pk-hero-title { margin-top: 1.5rem; font-size: clamp(3.5rem, 14vw, 8.5rem); line-height: 0.85; color: #fff; }
.pk-hero-lead { margin-top: 1.5rem; max-width: 36rem; font-size: 1.125rem; color: rgba(255,255,255,0.8); }
.pk-hero-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.pk-hero-stats { margin-top: 4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 36rem; }
.pk-stat-label { margin-top: 0.25rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); }

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.pk-section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; }
.pk-section-head h2 { margin-top: 1rem; }
.pk-section-head > p { max-width: 28rem; }

/* ----------- How it works ----------- */
.pk-steps-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .pk-steps-grid { grid-template-columns: repeat(3, 1fr); } }
.pk-step-card { background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 2rem; box-shadow: var(--shadow-card); }
.pk-step-num { font-family: var(--font-display); font-size: 3.75rem; line-height: 1; }
.pk-step-card h3 { margin-top: 1rem; font-size: 1.5rem; }
.pk-step-card p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ============================================================
   FEATURES (dark)
   ============================================================ */
.pk-features { position: relative; overflow: hidden; padding-block: 6rem; background: var(--ink); color: var(--pitch); }
@media (min-width: 768px) { .pk-features { padding-block: 8rem; } }
.pk-features h2 { margin-top: 1rem; max-width: 48rem; }
.pk-features-grid { margin-top: 3.5rem; display: grid; gap: 1px; background: rgba(255,255,255,0.1); border-radius: 1.25rem; overflow: hidden; }
@media (min-width: 768px) { .pk-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pk-features-grid { grid-template-columns: repeat(3, 1fr); } }
.pk-feature-cell { padding: 2rem; background: var(--ink); }
.pk-feature-cell h3 { margin-top: 1.25rem; font-size: 1.5rem; color: #fff; }
.pk-feature-cell p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ============================================================
   SPLIT sections (for-clubs, diaspora, za-klubove needs)
   ============================================================ */
.pk-split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .pk-split { grid-template-columns: 1fr 1fr; } }
.pk-split-media { position: relative; }
.pk-split-media img { border-radius: 1.5rem; width: 100%; object-fit: cover; }
.pk-split-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.25rem; max-width: 220px; box-shadow: var(--shadow-card); display: none; }
@media (min-width: 768px) { .pk-split-badge { display: block; } }
.pk-split-badge-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-foreground); }
.pk-split-badge-num { font-family: var(--font-display); font-size: 1.875rem; margin-top: 0.25rem; }
.pk-split-badge-sub { font-size: 0.75rem; margin-top: 0.5rem; }
.pk-split-body h2 { margin-top: 1rem; }
.pk-split-body > p { margin-top: 1.25rem; line-height: 1.6; }

.pk-check-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pk-check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; }
.pk-check { margin-top: 2px; flex-shrink: 0; width: 1.25rem; height: 1.25rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: var(--flame); color: var(--ink); }

/* ----------- Diaspora breakdown card ----------- */
.pk-breakdown { border-radius: 1.5rem; padding: 2rem; }
@media (min-width: 768px) { .pk-breakdown { padding: 2.5rem; } }
.pk-breakdown-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); }
.pk-breakdown h3 { margin-top: 0.5rem; font-size: 1.875rem; }
.pk-breakdown-rows { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.pk-breakdown-row { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.75rem; }
.pk-breakdown-row > span:first-child { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.pk-breakdown-num { font-family: var(--font-display); font-size: 1.875rem; }
.pk-breakdown-note { margin-top: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ============================================================
   STATS band (flame)
   ============================================================ */
.pk-stats-wrap { padding-bottom: 6rem; }
@media (min-width: 768px) { .pk-stats-wrap { padding-bottom: 8rem; } }
.pk-stats-band { background: var(--flame); color: var(--ink); border-radius: 1.5rem; padding: 2.5rem; display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .pk-stats-band { grid-template-columns: repeat(3, 1fr); padding: 4rem; } }
.pk-stats-num { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1; }
.pk-stats-label { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.8; }

/* ============================================================
   CTA / panels
   ============================================================ */
.pk-cta { padding-bottom: 6rem; text-align: center; }
@media (min-width: 768px) { .pk-cta { padding-bottom: 8rem; } }
.pk-cta h2 { max-width: 48rem; margin-inline: auto; }
.pk-cta-lead { margin-top: 1.25rem; max-width: 36rem; margin-inline: auto; }

.pk-cta-panel { border-radius: 1.5rem; padding: 2.5rem; }
@media (min-width: 768px) { .pk-cta-panel { padding: 4rem; } }
.pk-cta-panel h2 { max-width: 48rem; }
.pk-cta-panel.pk-center h2 { margin-inline: auto; }
.pk-cta-panel > p { margin-top: 1.25rem; max-width: 36rem; }
.pk-cta-panel.pk-center > p { margin-inline: auto; }

/* ============================================================
   PAGE HEAD (sub-pages, blog, archive, search, 404)
   ============================================================ */
.pk-page-head { padding-top: 5rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .pk-page-head { padding-top: 7rem; } }
.pk-page-head h1 { margin-top: 1.5rem; max-width: 56rem; }

/* ----------- kako-radi two columns ----------- */
.pk-two-col { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .pk-two-col { grid-template-columns: 1fr 1fr; } }
.pk-step-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.pk-step-row { background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.5rem; display: flex; gap: 1.25rem; box-shadow: var(--shadow-card); }
.pk-step-row-num { font-family: var(--font-display); font-size: 2.25rem; line-height: 1; flex-shrink: 0; }
.pk-step-row h3 { font-size: 1.25rem; }
.pk-step-row p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ----------- za-klubove feature cards ----------- */
.pk-features-cards { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .pk-features-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pk-features-cards { grid-template-columns: repeat(3, 1fr); } }
.pk-feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.75rem; box-shadow: var(--shadow-card); }
.pk-feature-tile { display: inline-flex; width: 2.75rem; height: 2.75rem; border-radius: 0.85rem; align-items: center; justify-content: center; background: color-mix(in oklab, var(--flame) 18%, transparent); color: var(--flame); }
.pk-feature-card h3 { margin-top: 1.25rem; font-size: 1.5rem; }
.pk-feature-card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.pk-feature-icon { display: inline-flex; }

/* ----------- needs list ----------- */
.pk-needs-list { display: flex; flex-direction: column; gap: 0.75rem; }
.pk-needs-list li { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; border-radius: 0.85rem; background: var(--secondary); }
.pk-needs-list .pk-check { width: 1.75rem; height: 1.75rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.pk-contact-grid { padding-bottom: 6rem; display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .pk-contact-grid { grid-template-columns: 1.4fr 1fr; } }
.pk-form-card { background: var(--card); border: 1px solid var(--border); border-radius: 1.5rem; padding: 2rem; box-shadow: var(--shadow-card); }
@media (min-width: 768px) { .pk-form-card { padding: 2.5rem; } }
.pk-form-intro h2 { font-size: 1.75rem; }
.pk-form-intro p { margin-top: 0.5rem; }
.pk-forminator-wrap { margin-top: 1.5rem; }

.pk-form { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 0; }
.pk-form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .pk-form-grid { grid-template-columns: 1fr 1fr; } }
.pk-field { display: block; }
.pk-field > span { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.pk-field input, .pk-field textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: 0.75rem;
  background: var(--background); border: 1px solid var(--border);
  font-size: 0.95rem; color: var(--foreground); font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.pk-field textarea { resize: vertical; min-height: 120px; }
.pk-field input:focus, .pk-field textarea:focus { outline: none; border-color: var(--flame); box-shadow: 0 0 0 3px color-mix(in oklab, var(--flame) 25%, transparent); }
.pk-form-fine { font-size: 0.75rem; color: var(--muted-foreground); }
.pk-form .btn-primary { align-self: flex-start; }

.pk-form-thanks { flex-direction: column; align-items: center; text-align: center; padding: 3rem 1rem; }
.pk-thanks-icon { display: inline-flex; width: 4rem; height: 4rem; border-radius: 999px; align-items: center; justify-content: center; background: var(--flame); color: var(--ink); margin-bottom: 1.5rem; }

.pk-contact-aside { display: flex; flex-direction: column; gap: 1.5rem; }
.pk-aside-card { border-radius: 1.5rem; padding: 2rem; }
.pk-aside-card h3 { font-size: 1.5rem; }
.pk-aside-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; }
.pk-info-row { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-radius: 1.25rem; background: var(--secondary); }
.pk-info-icon { display: inline-flex; width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; align-items: center; justify-content: center; flex-shrink: 0; background: color-mix(in oklab, var(--flame) 18%, transparent); color: var(--flame); }
.pk-info-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-foreground); }
.pk-info-text { font-weight: 600; margin-top: 0.15rem; }

/* ----------- Forminator brand overrides ----------- */
.pk-forminator-wrap .forminator-button-submit,
.pk-forminator-wrap button[type="submit"] {
  background: var(--flame) !important; color: var(--ink) !important;
  border-radius: 999px !important; font-weight: 700 !important; border: none !important;
}
.pk-forminator-wrap .forminator-input,
.pk-forminator-wrap textarea,
.pk-forminator-wrap input[type="text"],
.pk-forminator-wrap input[type="email"] {
  border-radius: 0.75rem !important;
}

/* ============================================================
   BLOG
   ============================================================ */
.pk-blog-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .pk-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pk-blog-grid { grid-template-columns: repeat(3, 1fr); } }

.pk-blog-card { display: block; border: 1px solid var(--border); border-radius: 1.25rem; overflow: hidden; background: var(--card); box-shadow: var(--shadow-card); transition: transform .2s ease; }
.pk-blog-card:hover { transform: translateY(-4px); }
.pk-blog-card .thumb { aspect-ratio: 16 / 10; overflow: hidden; background: color-mix(in oklab, var(--flame) 12%, transparent); display: flex; align-items: center; justify-content: center; }
.pk-blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.pk-blog-card:hover .thumb img { transform: scale(1.05); }
.pk-blog-card .thumb .label { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; color: var(--flame); }
.pk-blog-card .body { padding: 1.5rem; }
.pk-blog-card h3 { margin-top: 0.75rem; font-size: 1.5rem; }
.pk-blog-card .excerpt { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.5; }

.meta-row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-foreground); }
.meta-row .cat { font-weight: 700; }
.meta-row .pill { letter-spacing: 0.12em; }

/* ----------- Featured post ----------- */
.pk-blog-feature-wrap { padding-bottom: 4rem; }
.pk-blog-feature { display: block; border: 1px solid var(--border); border-radius: 1.5rem; overflow: hidden; background: var(--card); box-shadow: var(--shadow-card); }
.pk-blog-feature .grid, .pk-blog-feature { }
.pk-blog-feature { display: grid; }
@media (min-width: 1024px) { .pk-blog-feature { grid-template-columns: 1fr 1fr; } }
.pk-blog-feature .thumb { overflow: hidden; aspect-ratio: 4 / 3; background: color-mix(in oklab, var(--flame) 12%, transparent); display: flex; align-items: center; justify-content: center; }
.pk-blog-feature .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.pk-blog-feature:hover .thumb img { transform: scale(1.05); }
.pk-blog-feature .thumb .label { font-family: var(--font-display); font-size: 2rem; text-transform: uppercase; color: var(--flame); }
.pk-blog-feature .body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .pk-blog-feature .body { padding: 3rem; } }
.pk-blog-feature h2 { margin-top: 1.25rem; font-size: clamp(2rem, 4vw, 3rem); }
.pk-blog-feature .excerpt { margin-top: 1rem; color: var(--muted-foreground); line-height: 1.6; }
.pk-blog-feature .read-more { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; }

.pk-blog-list { padding-bottom: 6rem; }
.pk-empty { padding-block: 3rem; text-align: center; color: var(--muted-foreground); }

/* ----------- Pagination ----------- */
.pk-pagination { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.pk-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 2.5rem; height: 2.5rem; padding: 0 0.75rem; border-radius: 999px; border: 1px solid var(--border); font-weight: 600; font-size: 0.875rem; }
.pk-pagination .page-numbers.current { background: var(--flame); color: var(--ink); border-color: var(--flame); }
.pk-pagination a.page-numbers:hover { border-color: var(--flame); color: var(--flame); }

/* ============================================================
   SINGLE POST + PAGE
   ============================================================ */
.pk-single { display: block; }
.pk-single-back { padding-top: 3rem; }
.pk-back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.pk-back-link:hover { color: var(--foreground); }
.pk-single-head { padding-top: 2rem; padding-bottom: 3rem; max-width: 48rem; }
.pk-single-head h1 { margin-top: 1.25rem; font-size: clamp(2.5rem, 6vw, 4.5rem); }
.pk-single-cover { padding-bottom: 1rem; }
.pk-single-cover img { width: 100%; border-radius: 1.5rem; aspect-ratio: 16 / 9; object-fit: cover; }
.pk-single-body { padding-block: 3rem; max-width: 48rem; }
.pk-prose { font-size: 1.125rem; line-height: 1.75; color: color-mix(in oklab, var(--foreground) 90%, transparent); }
.pk-prose > * + * { margin-top: 1.5rem; }
.pk-prose h2 { font-size: 2rem; margin-top: 2.5rem; }
.pk-prose h3 { font-size: 1.5rem; margin-top: 2rem; }
.pk-prose a { color: var(--flame); text-decoration: underline; }
.pk-prose img { border-radius: 1rem; }
.pk-single-author { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); font-size: 0.875rem; color: var(--muted-foreground); }
.pk-single-nav { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-weight: 600; }
.pk-single-nav a:hover { color: var(--flame); }

/* ----------- Comments ----------- */
.pk-comments { margin-top: 3rem; }
.pk-comments-title { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; }
.pk-comment-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.pk-comment-list .comment-body { padding: 1.25rem; border: 1px solid var(--border); border-radius: 1rem; background: var(--card); }
.pk-comments input[type="text"], .pk-comments input[type="email"], .pk-comments input[type="url"], .pk-comments textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem; border: 1px solid var(--border); background: var(--background); font-family: inherit; margin-top: 0.35rem;
}

/* ============================================================
   SEARCH + 404
   ============================================================ */
.pk-searchform { display: flex; gap: 0.5rem; margin-top: 1.5rem; max-width: 28rem; }
.pk-search-input { flex: 1; padding: 0.75rem 1rem; border-radius: 999px; border: 1px solid var(--border); background: var(--background); font-family: inherit; }
.pk-search-input:focus { outline: none; border-color: var(--flame); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.pk-404 { padding-top: 6rem; padding-bottom: 8rem; text-align: center; }
.pk-404 h1 { margin-top: 1.5rem; }
.pk-404 .pk-lead { margin-inline: auto; }
.pk-404 .btn-primary { margin-top: 2rem; }
