:root {
  --bk-white:     #FFFFFF;
  --bk-cream:     #F7F7F7;
  --bk-cream-dk:  #EFEFEF;
  --bk-gold:      #EF7170;
  --bk-gold-lt:   #F3908F;
  --bk-ink:       #010101;
  --bk-ink-2:     #2B2B2B;
  --bk-muted:     #767676;
  --bk-border:    #E5E5E5;
  --bk-border-dk: #C7C7C7;
  --bk-h:         78px;
  --bk-h-sm:      60px;
  --bk-ease:      cubic-bezier(0.4,0,0.2,1);
}
#bk-ann, #bk-hdr, .bk-ov, .bk-drw { box-sizing: border-box; }
#bk-ann *, #bk-hdr *, .bk-ov *, .bk-drw * { box-sizing: border-box; }

#bk-ann {
  height: 34px;
  background: var(--bk-cream-dk);
  border-bottom: 1px solid var(--bk-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bk-tick { display: flex; white-space: nowrap; animation: bk-tick 32s linear infinite; will-change: transform; }
.bk-tick span {
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--bk-ink-2); padding: 0 3rem;
}
.bk-tick span strong { font-weight: 700; color: var(--bk-gold); }
@keyframes bk-tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

#bk-hdr {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bk-white);
  border-bottom: 1px solid var(--bk-border);
  transition: box-shadow 0.3s var(--bk-ease), border-color 0.3s var(--bk-ease);
  font-family: 'Poppins', sans-serif;
}
#bk-hdr.scrolled { box-shadow: 0 2px 24px rgba(28,18,10,0.09); border-color: var(--bk-border-dk); }
.bk-line {
  position: absolute; bottom: -1px; left: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--bk-gold) 30%, var(--bk-gold-lt) 50%, var(--bk-gold) 70%, transparent 100%);
  width: 0; transition: width 0s;
}
#bk-hdr.scrolled .bk-line { width: 100%; transition: width 1.3s var(--bk-ease); }

.bk-wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 36px; height: var(--bk-h);
  display: flex; align-items: center; justify-content: space-between;
  transition: height 0.3s var(--bk-ease);
}
#bk-hdr.scrolled .bk-wrap { height: var(--bk-h-sm); }

.bk-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; margin-right: 20px; }
.bk-logo img { height: 52px !important; width: auto !important; max-width: none !important; object-fit: contain; transition: height 0.3s var(--bk-ease), opacity 0.2s var(--bk-ease); }
#bk-hdr.scrolled .bk-logo img { height: 40px !important; }
.bk-logo:hover img { opacity: 0.8; }

/* Location pill — now a single <button>, so it is natively clickable and
   keyboard-focusable everywhere inside it. No child element can be "dead
   space" the way a wrapper <div> around a separate inner button could be. */
.bk-location-wrapper {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--bk-cream);
  border: 1px solid var(--bk-border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s var(--bk-ease), background 0.2s var(--bk-ease);
  margin-right: auto;
  font: inherit;
  text-align: left;
  appearance: none;
}
.bk-location-wrapper:hover, .bk-location-wrapper:focus-visible {
  border-color: var(--bk-gold-lt);
  background: var(--bk-cream-dk);
  outline: none;
}
.bk-loc-icon { display: flex; flex-shrink: 0; color: var(--bk-gold); }
.bk-loc-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bk-loc-content { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.bk-loc-label {
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--bk-muted); line-height: 1; margin-bottom: 2px;
}
.bk-loc-shortcode {
  font-family: 'Poppins', sans-serif; font-size: 13px; color: var(--bk-ink-2);
  line-height: 1.1; letter-spacing: 0.02em; min-width: 0; display: flex; align-items: center; gap: 6px;
}
.coc-loc-bar-city { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 170px; }
.coc-loc-bar-pin { font-family: 'Poppins', sans-serif; font-size: 11px; color: var(--bk-muted); white-space: nowrap; }
.bk-loc-chev { width: 10px; height: 10px; stroke: var(--bk-muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.bk-nav { display: flex; align-items: center; }
.bk-nav ul { list-style: none; display: flex; align-items: center; }
.bk-nav > ul > li { position: relative; }
.bk-nav > ul > li > a {
  display: flex; align-items: center; gap: 4px;
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 400;
  letter-spacing: 0.04em; color: var(--bk-ink-2); text-decoration: none;
  padding: 8px 16px; position: relative; transition: color 0.22s var(--bk-ease);
}
.bk-nav > ul > li > a::after {
  content: ''; position: absolute; bottom: 1px; left: 16px; right: 16px; height: 1px;
  background: var(--bk-gold); transform: scaleX(0); transform-origin: center;
  transition: transform 0.28s var(--bk-ease);
}
.bk-nav > ul > li > a:hover { color: var(--bk-gold); }
.bk-nav > ul > li > a:hover::after, .bk-nav > ul > li > a.active::after { transform: scaleX(1); }
.bk-nav > ul > li > a.active { color: var(--bk-gold); }

.bk-chev { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform 0.22s var(--bk-ease); }
.has-dd:hover .bk-chev { transform: rotate(180deg); }

.bk-dd {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 190px; background: var(--bk-white); border: 1px solid var(--bk-border);
  box-shadow: 0 8px 28px rgba(28,18,10,0.10), 0 1px 4px rgba(28,18,10,0.05);
  padding: 6px 0; list-style: none; opacity: 0; pointer-events: none;
  transition: opacity 0.22s var(--bk-ease), transform 0.22s var(--bk-ease); border-radius: 2px;
}
.bk-dd::before {
  content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px; background: var(--bk-white);
  border-left: 1px solid var(--bk-border); border-top: 1px solid var(--bk-border);
}
.has-dd:hover .bk-dd { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.bk-dd li a {
  display: block; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 400;
  letter-spacing: 0.02em; color: var(--bk-muted); text-decoration: none; padding: 10px 18px;
  transition: color 0.18s var(--bk-ease), padding-left 0.18s var(--bk-ease), background 0.18s var(--bk-ease);
}
.bk-dd li a:hover { color: var(--bk-gold); background: #F7F7F7; padding-left: 24px; }

.bk-acts { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.bk-btn {
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer; color: var(--bk-ink-2);
  text-decoration: none; border-radius: 4px; position: relative;
  transition: color 0.2s var(--bk-ease), background 0.2s var(--bk-ease);
}
.bk-btn:hover { color: var(--bk-gold); background: rgba(160,114,42,0.07); }
.bk-btn svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.bk-badge {
  position: absolute; top: 6px; right: 6px; min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--bk-gold); color: #fff; font-size: 9px; font-weight: 600;
  border-radius: 99px; display: flex; align-items: center; justify-content: center; line-height: 1;
  opacity: 0; transform: scale(0.4); transition: opacity 0.2s var(--bk-ease), transform 0.2s var(--bk-ease);
}
.bk-badge.on { opacity: 1; transform: scale(1); }

.bk-sep { width: 1px; height: 18px; background: var(--bk-border); margin: 0 6px; }

.bk-burger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; padding: 0;
}
.bk-burger span {
  display: block; width: 22px; height: 1.5px; background: var(--bk-ink-2); border-radius: 2px;
  transition: transform 0.28s var(--bk-ease), opacity 0.28s var(--bk-ease); transform-origin: center;
}
.bk-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.bk-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.bk-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.bk-srch { overflow: hidden; max-height: 0; background: var(--bk-cream); border-top: 1px solid transparent; transition: max-height 0.3s var(--bk-ease), border-color 0.3s var(--bk-ease); }
.bk-srch.open { max-height: 68px; border-top-color: var(--bk-border); }
.bk-srch-in { max-width: 1280px; margin: 0 auto; padding: 12px 36px; display: flex; gap: 10px; align-items: center; }
.bk-srch-in input {
  flex: 1; height: 40px; padding: 0 16px; background: var(--bk-white); border: 1px solid var(--bk-border);
  border-radius: 3px; font-family: 'Poppins', sans-serif; font-size: 17px; letter-spacing: 0.02em;
  color: var(--bk-ink); outline: none; transition: border-color 0.2s var(--bk-ease);
}
.bk-srch-in input::placeholder { color: var(--bk-muted); }
.bk-srch-in input:focus { border-color: var(--bk-gold); }
.bk-srch-in button {
  height: 40px; padding: 0 22px; flex-shrink: 0; background: var(--bk-gold); color: #fff; border: none;
  border-radius: 3px; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 15px;
  letter-spacing: 0.03em; transition: background 0.2s var(--bk-ease);
}
.bk-srch-in button:hover { background: var(--bk-ink); }

.bk-ov { display: none; position: fixed; inset: 0; background: rgba(28,18,10,0.4); z-index: 149; opacity: 0; transition: opacity 0.3s var(--bk-ease); pointer-events: none; }
.bk-ov.open { opacity: 1; pointer-events: auto; }

.bk-drw {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 85vw);
  background: var(--bk-white); z-index: 150; border-left: 1px solid var(--bk-border);
  transform: translateX(100%); transition: transform 0.32s var(--bk-ease);
  display: flex; flex-direction: column; overflow-y: auto; font-family: 'Poppins', sans-serif;
}
.bk-drw.open { transform: translateX(0); }

.bk-drw-top { padding: 18px 22px; background: var(--bk-cream); border-bottom: 1px solid var(--bk-border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.bk-drw-top img { height: 36px !important; width: auto !important; max-width: none !important; object-fit: contain; }
.bk-drw-x { background: transparent; border: none; cursor: pointer; color: var(--bk-muted); display: flex; align-items: center; justify-content: center; padding: 4px; transition: color 0.2s var(--bk-ease); }
.bk-drw-x:hover { color: var(--bk-ink); }
.bk-drw-x svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }

.bk-drw-nav { flex: 1; padding: 6px 0; }
.bk-drw-nav a {
  display: block; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 400;
  letter-spacing: 0.02em; color: var(--bk-ink-2); text-decoration: none; padding: 13px 22px;
  border-bottom: 1px solid var(--bk-border);
  transition: color 0.18s var(--bk-ease), padding-left 0.18s var(--bk-ease), background 0.18s var(--bk-ease);
}
.bk-drw-nav a:hover { color: var(--bk-gold); background: var(--bk-cream); padding-left: 28px; }

.drw-par { display: flex !important; justify-content: space-between; align-items: center; cursor: pointer; }
.drw-par svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform 0.22s var(--bk-ease); }
.drw-par.exp svg { transform: rotate(180deg); }
.drw-sub-nav { display: none; }
.drw-sub-nav.open { display: block; }
.drw-sub {
  font-family: 'Poppins', sans-serif !important; font-size: 14px !important; letter-spacing: 0.01em !important;
  color: var(--bk-muted) !important; padding: 10px 22px 10px 36px !important;
  background: var(--bk-cream) !important; border-bottom: 1px solid #EDE4D8 !important;
}
.drw-sub:hover { color: var(--bk-gold) !important; padding-left: 42px !important; background: var(--bk-cream-dk) !important; }

.bk-drw-foot { padding: 16px 22px; border-top: 1px solid var(--bk-border); background: var(--bk-cream); flex-shrink: 0; }
.bk-drw-foot a {
  display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-size: 15px;
  letter-spacing: 0.01em; color: var(--bk-muted); text-decoration: none; padding: 9px 0;
  border: none !important; background: transparent !important; transition: color 0.18s var(--bk-ease);
}
.bk-drw-foot a:hover { color: var(--bk-gold); padding-left: 0 !important; background: transparent !important; }
.bk-drw-foot a svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

@media (max-width: 1024px) { .bk-logo { margin-right: 12px; } }
@media (max-width: 900px) {
  .bk-nav, .bk-sep { display: none; }
  .bk-burger { display: flex; }
  .bk-ov { display: block; }
  .bk-wrap, .bk-srch-in { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 768px) {
  .bk-wrap { flex-wrap: wrap; height: auto; padding-top: 12px; padding-bottom: 12px; }
  #bk-hdr.scrolled .bk-wrap { height: auto; padding-top: 8px; padding-bottom: 8px; }
  .bk-logo { margin-right: auto; }
  .bk-acts { order: 2; }
  .bk-location-wrapper { order: 3; width: 100%; margin-right: 0; margin-top: 12px; background: var(--bk-cream-dk); }
  .bk-loc-shortcode { max-width: none; font-size: 13px; }
}
@media (max-width: 480px) {
  :root { --bk-h: 64px; --bk-h-sm: 56px; }
  #bk-ann { height: 30px; }
  .bk-tick span { font-size: 13px; }
  .bk-wrap { padding-left: 16px; padding-right: 16px; }
  .bk-logo img { height: 34px !important; }
  #bk-hdr.scrolled .bk-logo img { height: 28px !important; }
  .bk-acts { gap: 0; }
  .bk-btn { width: 36px; height: 36px; }
}
