/*
Theme Name: Butt Karahi
Theme URI: https://buttkarahi.com
Author: Butt Karahi
Description: Custom WooCommerce-ready theme for Butt Karahi — Devon Ave Diner. Converted from the standalone diner design with Customizer-editable content.
Version: 1.3.4
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: butt-karahi
Tags: e-commerce, custom-logo, custom-menu, featured-images, theme-options, translation-ready
*/

/* Design tokens — single source of truth */
:root {
  --bk-ink: #150C0B;
  --bk-ink-deep: #151011;
  --bk-burgundy: #7A1620;
  --bk-gold: #E3A712;
  --bk-cream: #F4EAD8;
  --bk-neon: #F7E7B0;
  --bk-soft-gold: #E8C98C;
  --bk-muted: #5C4A42;
  --bk-label: #8A7268;
  --bk-white: #FFFFFF;
  --bk-font-display: "Alfa Slab One", cursive;
  --bk-font-body: "Work Sans", sans-serif;
  --bk-radius-sm: 4px;
  --bk-radius: 6px;
  --bk-radius-lg: 10px;
  --bk-border: 3px solid var(--bk-ink);
  --bk-max: 1160px;
  --bk-section-pad: 70px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--bk-font-body);
  color: #221512;
  background: var(--bk-cream);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ——— Animations (ported 1:1) ——— */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 6px var(--bk-gold),
      0 0 18px #E3A71299,
      0 0 32px #7A162066,
      0 0 48px #E3A71255;
  }
  50% {
    text-shadow:
      0 0 12px var(--bk-gold),
      0 0 28px #E3A712cc,
      0 0 50px #7A1620aa,
      0 0 70px #E3A71266;
  }
}

@keyframes pop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes orderPulse {
  0%, 100% { box-shadow: 0 0 0 0 #7A162066; }
  50% { box-shadow: 0 0 0 8px #7A162000; }
}

@keyframes underlineDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes neonFlickerOn {
  0% { opacity: 0.2; filter: brightness(0.4); }
  6% { opacity: 1; filter: brightness(1.3); }
  8% { opacity: 0.25; filter: brightness(0.4); }
  12% { opacity: 1; filter: brightness(1.2); }
  14% { opacity: 0.3; filter: brightness(0.5); }
  18% { opacity: 1; filter: brightness(1.1); }
  21% { opacity: 0.5; }
  24% { opacity: 1; filter: brightness(1); }
  100% { opacity: 1; filter: brightness(1); }
}

@keyframes neonGlowPulse {
  0%, 100% {
    box-shadow: 0 0 20px 4px #E3A71299, 0 0 42px 10px #7A162055;
  }
  50% {
    box-shadow: 0 0 30px 8px #E3A712cc, 0 0 58px 16px #7A162088;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bk-card,
  .bk-feature,
  .bk-ticket,
  .bk-faq__item,
  .bk-about-badge,
  .bk-about-pass__card {
    animation: none !important;
    transition: none !important;
  }
}

/* ——— Utility strips ——— */
.bk-checker {
  height: 14px;
  width: 100%;
  background-image: repeating-linear-gradient(90deg, var(--bk-gold) 0 14px, var(--bk-ink) 14px 28px);
}

.bk-checker--burgundy {
  height: 14px;
  background-image: repeating-linear-gradient(90deg, var(--bk-burgundy) 0 14px, var(--bk-cream) 14px 28px);
}

.bk-checker--sm {
  height: 10px;
}

.bk-wrap {
  max-width: var(--bk-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.bk-section-title {
  text-align: center;
  font-family: var(--bk-font-display);
  font-size: 34px;
  color: var(--bk-burgundy);
  margin: 0;
  font-weight: 400;
}

.bk-section-title--left {
  text-align: left;
  font-size: 32px;
}

.bk-underline {
  height: 4px;
  width: 100%;
  background: var(--bk-gold);
  border-radius: 2px;
  transform-origin: left;
  animation: underlineDraw 0.5s 0.35s ease both;
}

/* ——— Buttons ——— */
.bk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--bk-font-body);
  font-weight: 800;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: var(--bk-radius);
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease;
  text-align: center;
  line-height: 1.2;
}

.bk-btn:hover,
.bk-btn:focus-visible {
  transform: scale(1.05);
}

.bk-btn--burgundy {
  background: var(--bk-burgundy);
  color: var(--bk-white);
  border: 3px solid var(--bk-neon);
}

.bk-btn--burgundy-ink {
  background: var(--bk-burgundy);
  color: var(--bk-white);
  border: 3px solid var(--bk-ink);
}

.bk-btn--gold {
  background: var(--bk-gold);
  color: var(--bk-ink);
  border: 2px solid transparent;
}

.bk-btn--gold-border {
  background: var(--bk-gold);
  color: var(--bk-ink);
  border: 2px solid var(--bk-ink);
}

.bk-btn--sm {
  padding: 10px 16px;
  font-size: 14px;
  white-space: nowrap;
}

.bk-btn--block {
  width: 100%;
  padding: 14px;
  font-size: 14px;
}

/* ——— Header / Nav ——— */
.bk-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bk-ink);
}

.bk-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  row-gap: 10px;
  gap: 16px;
  padding: clamp(10px, 2vw, 14px) clamp(16px, 4vw, 40px);
}

.bk-nav__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex: 1;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bk-nav__menu a {
  color: var(--bk-soft-gold);
  font-family: var(--bk-font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.bk-nav__menu a:hover,
.bk-nav__menu a:focus-visible,
.bk-nav__menu .current-menu-item > a,
.bk-nav__menu .current_page_item > a,
.bk-nav__link.is-active {
  color: var(--bk-gold);
}

.bk-nav__menu .current-menu-item > a::after,
.bk-nav__menu .current_page_item > a::after,
.bk-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--bk-gold);
  transform-origin: left;
  animation: underlineDraw 0.35s ease both;
}

.bk-nav__toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--bk-gold);
  color: var(--bk-gold);
  border-radius: var(--bk-radius-sm);
  padding: 8px 12px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 1px;
}

.bk-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--bk-gold);
  color: var(--bk-ink);
  font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--bk-radius-sm);
  font-family: var(--bk-font-body);
  font-size: 14px;
  animation: orderPulse 2.2s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.bk-cart-btn:hover,
.bk-cart-btn:focus-visible {
  transform: scale(1.06);
}

.bk-cart-btn__count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--bk-burgundy);
  color: var(--bk-white);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .bk-nav__toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .bk-nav__menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0 12px;
    min-width: 0;
  }

  .bk-nav__menu.is-open {
    display: flex;
  }

  .bk-nav__cart-wrap {
    order: 3;
  }
}

/* ——— Hero ——— */
.bk-hero {
  position: relative;
  background: var(--bk-ink);
  padding: 90px 24px 70px;
  text-align: center;
  overflow: hidden;
}

.bk-hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#E3A71222 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}

/* Logo glow — no CSS border (artwork already has gold ring; avoid black edge) */
.bk-hero__logo-wrap {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow:
    0 0 18px 4px rgba(227, 167, 18, 0.75),
    0 0 42px 12px rgba(227, 167, 18, 0.45),
    0 0 70px 20px rgba(122, 22, 32, 0.35);
  animation: neonGlowPulse 2.6s ease-in-out infinite;
}

.bk-hero__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: none !important;
  outline: none;
  box-shadow: none;
  display: block;
  /* Slight scale clips any baked-in dark fringe on the asset edge */
  transform: scale(1.06);
  animation: neonFlickerOn 1.6s ease-out both;
  filter: drop-shadow(0 0 14px rgba(227, 167, 18, 0.9));
}

.bk-hero__title {
  font-family: var(--bk-font-display);
  color: var(--bk-neon);
  font-size: clamp(34px, 6vw, 64px);
  margin: 26px 0 0;
  font-weight: 400;
  position: relative;
  z-index: 1;
  /* Permanent neon — visible even if animation is blocked */
  text-shadow:
    0 0 8px #E3A712,
    0 0 20px rgba(227, 167, 18, 0.85),
    0 0 40px rgba(227, 167, 18, 0.55),
    0 0 64px rgba(122, 22, 32, 0.45);
  animation: neonPulse 2.6s ease-in-out infinite;
}

.bk-hero__location {
  color: var(--bk-gold);
  font-family: var(--bk-font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  margin-top: 6px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.bk-hero__tagline {
  color: var(--bk-soft-gold);
  font-size: 18px;
  max-width: 600px;
  margin: 20px auto 0;
  position: relative;
  z-index: 1;
}

.bk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

/* ——— Marquee: GOLD bar + BLACK text + continuous scroll ——— */
@keyframes marqueeGlow {
  0%, 100% {
    box-shadow:
      0 0 14px rgba(227, 167, 18, 0.75),
      0 0 32px rgba(227, 167, 18, 0.45),
      0 0 56px rgba(122, 22, 32, 0.28),
      inset 0 0 18px rgba(255, 230, 140, 0.35);
  }
  50% {
    box-shadow:
      0 0 22px rgba(227, 167, 18, 0.95),
      0 0 48px rgba(227, 167, 18, 0.65),
      0 0 72px rgba(122, 22, 32, 0.4),
      inset 0 0 28px rgba(255, 240, 170, 0.5);
  }
}

.bk-site .bk-marquee,
.bk-marquee {
  position: relative;
  overflow: hidden !important;
  background: #E3A712 !important;
  background-image: linear-gradient(180deg, #F0C040 0%, #E3A712 45%, #D4920A 100%) !important;
  color: #150C0B !important;
  padding: 16px 0 !important;
  box-shadow:
    0 0 18px rgba(227, 167, 18, 0.85),
    0 0 40px rgba(227, 167, 18, 0.5),
    inset 0 0 20px rgba(255, 230, 140, 0.4);
  animation: marqueeGlow 2.4s ease-in-out infinite;
  z-index: 2;
}

.bk-marquee__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 245, 180, 0.4) 50%,
    transparent 100%
  );
  opacity: 0.5;
  z-index: 0;
}

.bk-site .bk-marquee__track,
.bk-marquee__track {
  position: relative;
  z-index: 1;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 60px;
  white-space: nowrap !important;
  will-change: transform;
  font-family: var(--bk-font-body);
  font-weight: 800 !important;
  color: #150C0B !important;
  font-size: 15px !important;
  letter-spacing: 0.4px;
  width: max-content !important;
  /* CSS fallback scroll — JS also drives transform for reliability */
  animation: marquee 18s linear infinite;
}

.bk-marquee__track.is-js-driven {
  animation: none !important;
}

.bk-marquee__group {
  display: inline-flex;
  flex: none;
  gap: 60px;
  align-items: center;
}

.bk-marquee__item {
  flex: none;
  color: #150C0B !important;
}

/* ——— Cards / products (Blue Plate Favorites) ——— */
.bk-products {
  padding: var(--bk-section-pad) 0;
  background: var(--bk-cream);
}

.bk-products__grid,
.bk-features__grid,
.bk-testimonials__grid,
.bk-faq__list {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.bk-products__grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bk-card {
  background: var(--bk-white);
  border: var(--bk-border);
  border-radius: var(--bk-radius-lg);
  overflow: hidden;
  animation: pop 0.5s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bk-card.is-featured,
.bk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 0 var(--bk-burgundy);
}

.bk-card__media {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #E8DFD0;
  display: block;
}

.bk-card__media--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--bk-label);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 20px 16px;
  background: linear-gradient(180deg, #EFE6D6 0%, #E0D4C0 100%);
  border-bottom: 2px dashed #C9A98E;
}

.bk-card__ph-icon {
  opacity: 0.75;
  line-height: 0;
}

.bk-card__ph-text {
  max-width: 90%;
}

.bk-card__body {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px dashed #D4C4B0;
}

.bk-card__name {
  font-weight: 800;
  margin: 0;
  font-size: 16px;
  color: var(--bk-ink);
}

.bk-card__price {
  color: var(--bk-burgundy);
  font-weight: 800;
  margin: 4px 0 0;
  font-size: 15px;
}

.bk-products .bk-btn--gold {
  background: var(--bk-gold);
  color: var(--bk-ink);
  border: none;
  border-radius: var(--bk-radius);
  font-weight: 800;
  padding: 10px 16px;
}

.bk-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bk-cream);
  border-radius: var(--bk-radius);
  padding: 6px 12px;
}

.bk-qty button {
  cursor: pointer;
  font-weight: 800;
  color: var(--bk-burgundy);
  background: none;
  border: none;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
}

/* ——— Features ——— */
.bk-features {
  padding: 0 0 var(--bk-section-pad);
}

.bk-features__grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.bk-feature {
  background: var(--bk-white);
  border: var(--bk-border);
  border-radius: var(--bk-radius-lg);
  padding: 22px 20px;
  text-align: center;
  animation: pop 0.5s ease both;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bk-feature:hover {
  transform: translateY(-6px) rotate(-1.5deg);
  box-shadow: 0 10px 0 var(--bk-burgundy);
}

.bk-feature:nth-child(even):hover {
  transform: translateY(-6px) rotate(1.5deg);
}

.bk-feature__icon {
  font-size: 28px;
  line-height: 1;
}

.bk-feature__title {
  font-family: var(--bk-font-display);
  color: var(--bk-burgundy);
  font-size: 22px;
  margin: 8px 0 4px;
  font-weight: 400;
}

.bk-feature__text {
  color: var(--bk-label);
  font-size: 12px;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ——— Testimonials ——— */
.bk-testimonials {
  background: var(--bk-ink);
  padding: var(--bk-section-pad) 0;
  position: relative;
}

.bk-testimonials .bk-section-title {
  color: var(--bk-neon);
}

.bk-testimonials__grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.bk-ticket {
  background: var(--bk-cream);
  border: var(--bk-border);
  border-radius: var(--bk-radius-lg);
  padding: 22px 22px 18px;
  position: relative;
  animation: pop 0.5s ease both;
  transition: transform 0.25s ease;
}

.bk-ticket:hover {
  transform: rotate(-0.5deg) scale(1.02);
}

.bk-ticket__stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--bk-font-display);
  font-size: 11px;
  color: var(--bk-burgundy);
  border: 2px solid var(--bk-burgundy);
  padding: 4px 8px;
  border-radius: 2px;
  transform: rotate(8deg);
  opacity: 0.85;
  letter-spacing: 1px;
}

.bk-ticket__quote {
  margin: 0;
  color: var(--bk-muted);
  font-size: 16px;
  line-height: 1.65;
  font-style: italic;
}

.bk-ticket__meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 2px dashed #C9A98E;
  font-weight: 800;
  color: var(--bk-ink);
  font-size: 14px;
}

.bk-ticket__meta span {
  display: block;
  font-weight: 600;
  color: var(--bk-label);
  font-size: 12px;
  margin-top: 2px;
}

/* ——— Visit CTA ——— */
.bk-visit {
  background: var(--bk-ink);
  padding: 56px 24px;
  text-align: center;
  border-top: 4px solid var(--bk-gold);
}

.bk-visit__title {
  font-family: var(--bk-font-display);
  color: var(--bk-gold);
  font-size: clamp(28px, 4vw, 36px);
  margin: 0;
  font-weight: 400;
}

.bk-visit__details {
  color: var(--bk-cream);
  margin: 18px auto 0;
  max-width: 640px;
  line-height: 1.9;
  font-size: 16px;
}

.bk-visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

/* ——— FAQ ——— */
.bk-faq {
  padding: var(--bk-section-pad) 0;
}

.bk-faq__list {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  gap: 14px;
}

.bk-faq__item {
  background: var(--bk-white);
  border: var(--bk-border);
  border-radius: var(--bk-radius-lg);
  overflow: hidden;
  animation: pop 0.5s ease both;
}

.bk-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 20px;
  font-family: var(--bk-font-body);
  font-weight: 800;
  font-size: 15px;
  color: var(--bk-ink);
  cursor: pointer;
}

.bk-faq__question:hover,
.bk-faq__question:focus-visible {
  color: var(--bk-burgundy);
}

.bk-faq__icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: var(--bk-radius-sm);
  background: var(--bk-gold);
  color: var(--bk-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.bk-faq__item.is-open .bk-faq__icon {
  transform: rotate(45deg);
  background: var(--bk-burgundy);
  color: var(--bk-white);
}

.bk-faq__answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--bk-muted);
  font-size: 15px;
  line-height: 1.7;
}

.bk-faq__item.is-open .bk-faq__answer {
  display: block;
}

/* ——— Footer ——— */
.bk-footer {
  background: var(--bk-ink);
  color: var(--bk-soft-gold);
  padding: 36px 24px;
  text-align: center;
}

.bk-footer__social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.bk-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--bk-radius);
  background: var(--bk-gold);
  color: var(--bk-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.bk-footer__social a:hover,
.bk-footer__social a:focus-visible {
  transform: scale(1.08);
}

.bk-footer__meta {
  font-size: 14px;
  line-height: 1.7;
}

.bk-footer__copy {
  margin-top: 14px;
  font-size: 12px;
  color: var(--bk-label);
}

/* ——— Generic page shell (for later templates) ——— */
.bk-page-hero {
  background: var(--bk-ink);
  padding: 56px 24px 48px;
  text-align: center;
}

.bk-page-hero h1 {
  margin: 0;
  font-family: var(--bk-font-display);
  color: var(--bk-neon);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  animation: neonPulse 2.6s ease-in-out infinite;
}

.bk-page-hero__sub {
  color: var(--bk-soft-gold);
  max-width: 560px;
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.6;
}

.bk-page-content--narrow {
  max-width: 760px;
}

.bk-page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 40px;
}

.bk-page-content .entry-content {
  color: var(--bk-muted);
  line-height: 1.7;
  font-size: 16px;
}

/* ——— Forms (shared with Contact later) ——— */
.bk-field {
  padding: 12px 14px;
  border: 2px solid var(--bk-ink);
  border-radius: var(--bk-radius);
  font-size: 15px;
  width: 100%;
  background: var(--bk-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bk-field:focus {
  outline: none;
  border-color: var(--bk-gold);
  box-shadow: 0 0 0 3px #E3A71233;
}

/* ——— WooCommerce light skin (base; expanded later) ——— */
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--bk-gold) !important;
  color: var(--bk-ink) !important;
  font-weight: 800 !important;
  border-radius: var(--bk-radius) !important;
  border: 2px solid var(--bk-ink) !important;
}

.woocommerce .button.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: var(--bk-burgundy) !important;
  color: var(--bk-white) !important;
  border-color: var(--bk-ink) !important;
}

.woocommerce ul.products li.product {
  border: var(--bk-border);
  border-radius: var(--bk-radius-lg);
  overflow: hidden;
  background: var(--bk-white);
  padding-bottom: 16px !important;
}

/* ——— About page ——— */
.bk-about-story {
  position: relative;
  overflow: hidden;
  padding: 56px 24px 40px;
}

.bk-about-story__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 44px;
  align-items: center;
}

.bk-about-story__heading {
  display: inline-block;
}

.bk-about-story__title {
  animation: pop 0.5s ease both;
  margin-bottom: 0;
}

.bk-about-story__p {
  color: var(--bk-muted);
  margin: 16px 0 0;
  line-height: 1.7;
  font-size: 16px;
  animation: pop 0.5s ease both;
}

.bk-about-quote {
  margin-top: 24px;
  background: var(--bk-gold);
  color: var(--bk-ink);
  border: var(--bk-border);
  border-radius: 8px;
  padding: 18px 22px;
  font-family: var(--bk-font-display);
  font-size: 14px;
  transform: rotate(-1deg);
  animation: pop 0.5s 0.3s ease both;
  transition: transform 0.25s ease;
}

.bk-about-quote:hover {
  transform: rotate(0deg) scale(1.02);
}

.bk-about-badges {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.bk-about-badge {
  background: var(--bk-white);
  border: var(--bk-border);
  border-radius: var(--bk-radius-lg);
  padding: 14px 20px;
  text-align: center;
  min-width: 100px;
  animation: pop 0.5s ease both;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bk-about-badge:hover {
  transform: translateY(-6px) rotate(-2deg);
  box-shadow: 0 10px 0 var(--bk-burgundy);
}

.bk-about-badge:nth-child(even):hover {
  transform: translateY(-6px) rotate(2deg);
}

.bk-about-badge__icon {
  font-size: 20px;
  line-height: 1;
}

.bk-about-badge__title {
  font-family: var(--bk-font-display);
  color: var(--bk-burgundy);
  font-size: 18px;
  margin-top: 4px;
}

.bk-about-badge__text {
  color: var(--bk-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.bk-about-story__actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bk-about-story__img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--bk-radius-lg);
  border: var(--bk-border);
  animation: pop 0.5s 0.15s ease both;
  transition: transform 0.3s ease;
}

.bk-about-story__img:hover {
  transform: scale(1.03) rotate(-1deg);
}

.bk-about-story__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2A1C17, #4A2B26);
  color: var(--bk-soft-gold);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  padding: 24px;
}

.bk-about-pass {
  padding: var(--bk-section-pad) 0;
}

.bk-about-pass__intro {
  text-align: center;
  color: var(--bk-muted);
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 16px;
}

.bk-about-pass__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.bk-about-pass__card {
  background: var(--bk-white);
  border: var(--bk-border);
  border-radius: var(--bk-radius-lg);
  padding: 22px 20px 20px;
  position: relative;
  animation: pop 0.5s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bk-about-pass__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 0 var(--bk-burgundy);
}

.bk-about-pass__ticket {
  display: inline-block;
  font-family: var(--bk-font-display);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--bk-ink);
  background: var(--bk-gold);
  border: 2px solid var(--bk-ink);
  border-radius: 2px;
  padding: 4px 8px;
  margin-bottom: 14px;
}

.bk-about-pass__card-title {
  margin: 0;
  font-family: var(--bk-font-display);
  color: var(--bk-burgundy);
  font-size: 22px;
  font-weight: 400;
}

.bk-about-pass__card-text {
  margin: 10px 0 0;
  color: var(--bk-muted);
  font-size: 15px;
  line-height: 1.65;
}

.bk-about-band {
  background: var(--bk-ink);
  text-align: center;
  padding: 56px 24px;
  border-top: 4px solid var(--bk-gold);
}

.bk-about-band__title {
  margin: 0;
  font-family: var(--bk-font-display);
  color: var(--bk-gold);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
}

.bk-about-band__text {
  color: var(--bk-cream);
  margin: 14px auto 28px;
  max-width: 480px;
  font-size: 16px;
}

/* ——— Contact page ——— */
.bk-contact {
  padding: 56px 24px 40px;
}

.bk-contact__wrap {
  max-width: 1100px;
}

.bk-contact__title {
  margin-bottom: 32px;
  animation: pop 0.5s ease both;
}

.bk-contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.bk-contact-form-card {
  background: var(--bk-white);
  border: var(--bk-border);
  border-radius: var(--bk-radius-lg);
  overflow: hidden;
  animation: pop 0.5s 0.1s ease both;
}

.bk-contact-form-card__head {
  background: var(--bk-ink);
  color: var(--bk-gold);
  font-family: var(--bk-font-display);
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 14px 20px;
}

.bk-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.bk-field--area {
  min-height: 100px;
  resize: vertical;
}

.bk-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.bk-contact-side {
  animation: pop 0.5s 0.2s ease both;
}

.bk-contact-visit {
  background: var(--bk-ink);
  color: var(--bk-neon);
  border-radius: var(--bk-radius-lg);
  padding: 26px;
  margin-bottom: 18px;
  border-top: 4px solid var(--bk-gold);
}

.bk-contact-visit__title {
  font-family: var(--bk-font-display);
  color: var(--bk-gold);
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.bk-contact-visit__details {
  line-height: 2;
  color: var(--bk-cream);
  font-size: 15px;
}

.bk-contact-visit__details a {
  color: var(--bk-cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bk-contact-visit__details a:hover,
.bk-contact-visit__details a:focus-visible {
  color: var(--bk-gold);
}

.bk-contact-map__img,
.bk-contact-map__embed iframe {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border: var(--bk-border);
  border-radius: var(--bk-radius-lg);
  display: block;
  transition: transform 0.3s ease;
}

.bk-contact-map__embed iframe {
  border: var(--bk-border);
}

.bk-contact-map a:hover .bk-contact-map__img,
.bk-contact-map__img:hover {
  transform: scale(1.02);
}

.bk-contact-map__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2A1C17, #4A2B26);
  color: var(--bk-soft-gold);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  padding: 24px;
  text-decoration: none;
}

.bk-notice {
  border: var(--bk-border);
  border-radius: var(--bk-radius-lg);
  padding: 14px 18px;
  margin: 0 0 24px;
  font-weight: 700;
  font-size: 14px;
  animation: pop 0.4s ease both;
}

.bk-notice--success {
  background: var(--bk-gold);
  color: var(--bk-ink);
}

.bk-notice--error {
  background: var(--bk-burgundy);
  color: var(--bk-white);
}

.bk-contact-band {
  background: var(--bk-ink);
  text-align: center;
  padding: 56px 24px;
  border-top: 4px solid var(--bk-gold);
}

.bk-contact-band__title {
  margin: 0;
  font-family: var(--bk-font-display);
  color: var(--bk-gold);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
}

.bk-contact-band__text {
  color: var(--bk-cream);
  margin: 14px auto 28px;
  max-width: 480px;
  font-size: 16px;
}

/* ——— Blog / archives / comments ——— */
.bk-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.bk-post-card {
  background: var(--bk-white);
  border: var(--bk-border);
  border-radius: var(--bk-radius-lg);
  overflow: hidden;
  animation: pop .5s ease both;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.bk-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 0 var(--bk-burgundy);
}

.bk-post-card__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.bk-post-card__body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bk-post-card__meta {
  font-size: 12px;
  font-weight: 700;
  color: var(--bk-label);
  text-transform: uppercase;
  letter-spacing: .4px;
}

.bk-post-card__title {
  margin: 0;
  font-family: var(--bk-font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--bk-burgundy);
  line-height: 1.25;
}

.bk-post-card__title a:hover { color: var(--bk-ink); }

.bk-post-card__excerpt {
  color: var(--bk-muted);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.bk-post-card__excerpt p { margin: 0; }

.bk-pagination { margin-top: 40px; display: flex; justify-content: center; }

.bk-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.bk-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 2px solid var(--bk-ink);
  border-radius: var(--bk-radius-sm);
  font-weight: 800;
  background: var(--bk-white);
  color: var(--bk-ink);
}

.bk-pagination .page-numbers.current,
.bk-pagination .page-numbers:hover { background: var(--bk-gold); }

.bk-author-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--bk-white);
  border: var(--bk-border);
  border-radius: var(--bk-radius-lg);
  padding: 22px;
  margin-bottom: 32px;
}

.bk-author-card__avatar {
  border-radius: 50%;
  border: 3px solid var(--bk-gold);
}

.bk-author-card__name {
  margin: 0;
  font-family: var(--bk-font-display);
  color: var(--bk-burgundy);
  font-size: 24px;
  font-weight: 400;
}

.bk-author-card__bio {
  margin: 8px 0 0;
  color: var(--bk-muted);
  line-height: 1.6;
}

.bk-search,
.bk-search-wrap .bk-search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.bk-search .bk-field { flex: 1; min-width: 200px; }

.bk-empty { text-align: center; padding: 40px 16px 20px; }
.bk-empty__icon { font-size: 44px; }
.bk-empty__title {
  font-family: var(--bk-font-display);
  color: var(--bk-burgundy);
  font-size: 24px;
  font-weight: 400;
  margin: 10px 0 0;
}
.bk-empty__text { color: var(--bk-muted); max-width: 420px; margin: 10px auto 24px; }
.bk-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.bk-single__thumb { margin-bottom: 24px; }
.bk-single__thumb img {
  width: 100%;
  border-radius: var(--bk-radius-lg);
  border: var(--bk-border);
}
.bk-single__meta {
  font-size: 13px;
  font-weight: 700;
  color: var(--bk-label);
  margin-bottom: 20px;
}
.bk-single__meta a { color: var(--bk-burgundy); }
.bk-single__content { color: var(--bk-muted); line-height: 1.75; font-size: 16px; }
.bk-single__content p { margin: 0 0 1.1em; }
.bk-single__tags {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 2px dashed #C9A98E;
  font-size: 14px;
  color: var(--bk-muted);
}
.bk-single__tags-label {
  font-weight: 800;
  color: var(--bk-burgundy);
  margin-right: 8px;
}
.bk-single__tags a { color: var(--bk-ink); font-weight: 700; }

.bk-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 36px 0;
  padding-top: 20px;
  border-top: 3px solid var(--bk-gold);
  font-weight: 800;
}
.bk-post-nav a { color: var(--bk-burgundy); }

.bk-comments { margin-top: 40px; }
.bk-comments__title {
  font-family: var(--bk-font-display);
  color: var(--bk-burgundy);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 18px;
}
.bk-comments__list { list-style: none; margin: 0 0 28px; padding: 0; }
.bk-comments__list .comment {
  background: var(--bk-white);
  border: var(--bk-border);
  border-radius: var(--bk-radius-lg);
  padding: 16px 18px;
  margin-bottom: 14px;
}
.bk-comments__list .children {
  list-style: none;
  margin: 14px 0 0;
  padding: 0 0 0 18px;
}
.comment-respond { margin-top: 24px; }
.comment-form p { margin: 0 0 12px; }
