/*
Theme Name: General Homepage
Theme URI: https://generalhomepage.com
Author: General Homepage
Author URI: https://generalhomepage.com
Description: 
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gh
*/

/* ==========================================================================
   General Homepage - Design System Stylesheet
   Prefix: bk-
   ========================================================================== */

:root {
  /* Colors - 진하고 또렷한 고대비 컬러 팔레트 */
  --ink: #111115;          /* 매우 진한 딥 블랙 (본문/타이틀) */
  --ink-80: #2C2C38;       /* 또렷한 차콜 그레이 */
  --ink-60: #484856;       /* 선명한 본문 보조/설명문 텍스트 */
  --ink-30: #767686;       /* 구분선 및 비활성/플레이스홀더 */
  --ink-15: #BCBCC8;       /* 연한 경계선 */
  --paper: #FFFFFF;
  --mist: #F2F2F5;
  --line: #E2E2E8;
  --honey: #AEBA5E;
  --mint: #7ED0C8;
  --sky: #A8B8D8;
  --coral: #F2544B;

  /* Typography - 정돈된 한글 폰트 시스템 */
  --font-sans: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  --font-serif: 'Pretendard', 'Noto Sans KR', 'Lora', serif;

  /* Layout */
  --container-max: 1300px;
  --container-pad: 60px;
}

/* Reset & Baseline */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 350;
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-x: hidden;
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

a:hover {
  color: var(--ink-60);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

input, textarea, button {
  font-family: inherit;
}

::placeholder {
  color: var(--ink-30);
}

/* Shared Utilities & Typography Classes */
.bk-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.bk-text-center { text-align: center; }
.bk-text-left { text-align: left; }
.bk-text-right { text-align: right; }

.bk-kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.bk-divider-line {
  width: 50px;
  height: 3px;
  background: var(--honey);
  margin: 16px auto 40px;
}

.bk-divider-line-left {
  width: 50px;
  height: 3px;
  background: var(--honey);
  margin: 16px 0 28px;
}

.bk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
  white-space: nowrap;
  text-decoration: none;
}

.bk-btn-honey {
  background: var(--honey);
  color: var(--paper);
}

.bk-btn-honey:hover {
  background: var(--ink);
  color: var(--paper);
}

.bk-btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.bk-btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.bk-btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.bk-btn-dark:hover {
  background: var(--paper);
  color: var(--ink);
}

.bk-btn-white {
  background: #FFFFFF;
  color: var(--ink);
  border: 1px solid #FFFFFF;
}

.bk-btn-white:hover {
  background: var(--ink);
  color: #FFFFFF;
  border-color: var(--ink);
}

.bk-btn-full {
  width: 100%;
}

.bk-btn-underline {
  border-bottom: 2px solid var(--honey);
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  color: var(--ink);
}

.bk-btn-underline:hover {
  color: var(--ink-60);
}

/* Topbar */
.bk-topbar {
  border-bottom: 1px solid var(--line);
}

.bk-topbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: var(--ink-60);
}

.bk-topbar-tel {
  white-space: nowrap;
}

.bk-topbar-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bk-topbar-socials a {
  color: var(--ink-60);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 200ms ease;
}

.bk-topbar-socials a:hover {
  color: var(--honey);
}

/* Header & Navigation */
.bk-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.bk-header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.bk-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--ink);
}

.bk-logo-box {
  width: 36px;
  height: 40px;
  background: var(--honey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: 700;
  color: var(--ink);
}

/* PC 네비게이션: 오른쪽 정렬, 20px 크기, 매우 진한 색상 */
.bk-nav-main {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 32px);
  margin-left: auto;
}

.bk-nav-item {
  position: relative;
  padding: 30px 0;
  white-space: nowrap;
}

.bk-nav-link {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 3px solid transparent;
  padding-bottom: 4px;
  transition: color 200ms ease, border-color 200ms ease;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}

.bk-nav-item:hover .bk-nav-link,
.bk-nav-item.active .bk-nav-link {
  color: var(--ink);
  border-bottom-color: var(--honey);
}

.bk-nav-item:has(.bk-dropdown) .bk-nav-link::after {
  content: " ▾";
  font-size: 13px;
  margin-left: 4px;
  display: inline-block;
  opacity: 0.75;
}

.bk-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--paper);
  border-top: 3px solid var(--honey);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  min-width: 240px;
  padding: 14px 0;
  display: grid;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 70;
  box-shadow: 0 10px 30px rgba(17, 17, 21, 0.08);
}

.bk-nav-item:hover .bk-dropdown,
.bk-nav-item.is-open .bk-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bk-dropdown-link {
  padding: 10px 24px;
  color: var(--ink-80);
  font-size: 15px;
  font-weight: 400;
  display: block;
}

.bk-dropdown-link:hover {
  color: var(--ink);
  background: var(--mist);
  font-weight: 600;
}

/* Mobile-only accordion buttons — hover already reveals dropdowns on desktop. */
.bk-nav-toggle,
.bk-dropdown-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  color: var(--ink);
  cursor: pointer;
}

.bk-dropdown-item {
  position: relative;
}

.bk-dropdown-item.has-sub > .bk-dropdown-link::after {
  content: " ▸";
  float: right;
  font-size: 12px;
  opacity: 0.6;
}

.bk-dropdown-sub {
  position: absolute;
  top: -14px;
  left: 100%;
  background: var(--paper);
  border-top: 3px solid var(--honey);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  min-width: 220px;
  padding: 14px 0;
  display: grid;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 71;
  box-shadow: 0 10px 30px rgba(17, 17, 21, 0.08);
}

.bk-dropdown-item.has-sub:hover > .bk-dropdown-sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Flipped by theme.js when the flyout would overflow the viewport's right edge. */
.bk-dropdown-item.has-sub.flip-left > .bk-dropdown-link::after {
  content: " ◂";
  float: left;
}

.bk-dropdown-item.has-sub.flip-left > .bk-dropdown-sub {
  left: auto;
  right: 100%;
  transform: translateX(-8px);
}

.bk-dropdown-item.has-sub.flip-left:hover > .bk-dropdown-sub {
  transform: translateX(0);
}

/* PC에서 헤더 우측 검색/사이드바 제거 */
.bk-header-actions {
  display: none !important;
}

.bk-side-trigger {
  cursor: pointer;
  display: grid;
  gap: 5px;
  flex: none;
  align-content: center;
}

.bk-side-line {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
}

.bk-side-line-accent {
  display: block;
  width: 14px;
  height: 1px;
  background: var(--honey);
}

/* Mobile Toggle */
.bk-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.bk-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

/* Side Drawer (Offcanvas) */
.bk-side-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 21, 0.4);
  z-index: 85;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms;
}

.bk-side-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.bk-side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 88vw;
  background: var(--paper);
  border-left: 1px solid var(--line);
  z-index: 90;
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

.bk-side-drawer.is-active {
  transform: translateX(0);
}

.bk-side-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.bk-side-title {
  font-size: 20px;
  font-weight: 700;
}

.bk-side-close {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.bk-side-desc {
  margin: 0;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.bk-side-info {
  display: grid;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--ink-60);
}

.bk-side-info a {
  color: var(--ink);
  border-bottom: 1px solid var(--honey);
  justify-self: start;
  padding-bottom: 2px;
}

.bk-side-social-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 14px;
}

.bk-side-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 500;
}

/* Hero Slider */
.bk-hero-slider {
  position: relative;
  height: 471px;
  overflow: hidden;
  background: #F5F5F3;
}

.bk-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
  background-size: cover;
  background-position: center;
}

.bk-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.bk-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(17, 17, 21, 0.45);
  pointer-events: none;
}

.bk-slide-inner {
  position: relative;
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
}

.bk-slide-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.bk-slide-kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-60);
  margin-bottom: 14px;
}

.bk-slide-title {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
  white-space: nowrap;
}

.bk-slide-rule {
  height: 2px;
  width: 82px;
  margin-top: 34px;
  background: currentColor;
}

.bk-slide-tag {
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 30px;
  color: var(--ink-60);
}

.bk-slide .bk-slide-kicker,
.bk-slide .bk-slide-tag {
  color: #FFFFFF;
}

.bk-hero-slider .bk-slider-arrow {
  color: #FFFFFF;
}

.bk-hero-slider .bk-dot {
  border-color: #FFFFFF;
}

.bk-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  transition: background-color 200ms ease;
}

.bk-slider-arrow:hover {
  background: var(--honey);
}

.bk-slider-arrow-prev { left: 24px; }
.bk-slider-arrow-next { right: 24px; }

.bk-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  gap: 14px;
}

.bk-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--ink);
  opacity: 0.85;
  transition: background-color 200ms ease;
}

.bk-dot.is-active {
  background: var(--honey);
}

/* Page Hero (Subpages) */
.bk-page-hero {
  position: relative;
  padding: 60px 0;
  background: var(--mist);
  text-align: center;
}

.bk-page-hero.has-bg {
  background-size: cover;
  background-position: center;
}

.bk-page-hero.has-bg .bk-page-hero-title,
.bk-page-hero.has-bg .bk-kicker {
  color: #FFF;
}

/* IMG-ID: IMG-PAGEHERO-ELEMENTS-BG (현재 어떤 페이지에서도 사용되지 않는 클래스) */
.bk-page-hero-elements {
  background-image: url('https://bumblebee.qodeinteractive.com/wp-content/uploads/2017/08/emenelts-background-img-11.jpg');
  background-size: cover;
  background-position: 50% 30%;
  padding: 14% 0 14% 18%;
}

/* IMG-ID: IMG-PAGEHERO-CONTACT-BG (현재 어떤 페이지에서도 사용되지 않는 클래스) */
.bk-page-hero-contact {
  background-image: url('https://bumblebee.qodeinteractive.com/wp-content/uploads/2017/08/contuct-us-img-photo-1.jpg');
  background-size: cover;
  background-position: 50% 0%;
  padding: 9% 0 8.5%;
  text-align: center;
}

.bk-page-hero-title {
  margin: 0;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFF;
}

.bk-page-hero-title-dark {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Section Containers & Spacing */
.bk-section-pad {
  padding-top: 118px;
  padding-bottom: 96px;
}

.bk-section-pad-large {
  padding-top: 130px;
  padding-bottom: 130px;
}

.bk-section-pad-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Feature Info Boxes (3 & 4 Columns) */
.bk-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.bk-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.bk-info-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.bk-info-card-media {
  position: relative;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bk-info-card-img {
  max-height: 180px;
  width: auto;
  transition: transform 500ms cubic-bezier(.2,.7,.3,1);
}

.bk-service-cards .bk-info-card-media {
  height: 8px;
}

.bk-service-cards .bk-info-card-img {
  width: 50%;
  height: 50%;
  max-height: none;
  object-fit: contain;
}

.bk-info-card:hover .bk-info-card-img {
  transform: scale(1.06);
}

.bk-info-card-panel {
  position: relative;
  height: 277px;
  background: var(--paper);
  padding: 44px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background-color 400ms ease;
}

.bk-info-card:hover .bk-info-card-panel {
  background: var(--mist);
}

.bk-info-card-title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.bk-info-card-desc {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-60);
  max-width: 340px;
  text-wrap: pretty;
}

/* Alternate 2-Column Info Row (Elements Page) */
.bk-info-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  cursor: pointer;
}

.bk-info-row-media {
  position: relative;
  height: 273px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bk-info-row-panel {
  height: 273px;
  background: var(--paper);
  transition: background-color 400ms ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 90px;
}

.bk-info-row-2col:hover .bk-info-row-panel {
  background: #FAFAFA;
}

.bk-info-row-2col:hover .bk-info-card-img {
  transform: scale(1.06);
}

/* Testimonials */
.bk-testimonials-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 130px var(--container-pad);
  text-align: center;
}

.bk-quote-mark {
  font-family: var(--font-sans);
  font-size: 64px;
  line-height: 1;
  color: var(--honey);
  font-weight: 700;
}

.bk-testi-quote {
  margin: 26px auto 0;
  max-width: 800px;
  min-height: 120px;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: opacity 400ms ease;
  text-wrap: pretty;
}

.bk-testi-author {
  margin: 26px 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-60);
  transition: opacity 400ms ease;
}

.bk-testi-dots {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

.bk-testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--ink-30);
  transition: background-color 200ms ease;
}

.bk-testi-dot.is-active {
  background: var(--honey);
  border-color: var(--ink);
}

/* Parallax Banner Section */
/* IMG-ID: IMG-PARALLAX-BG */
.bk-parallax-banner {
  position: relative;
  background-image: url('./assets/images/img-parallax-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.bk-parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 21, 0.28);
}

.bk-parallax-content {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bk-parallax-text {
  padding: 107px 19% 114px 1%;
  color: #FFFFFF;
}

.bk-parallax-text .bk-kicker,
.bk-parallax-text p {
  color: #FFFFFF !important;
}

.bk-stats-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}

.bk-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 21, 0.45);
}

.bk-stats-section > .bk-container {
  position: relative;
  z-index: 1;
}

/* Team Grid */
.bk-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bk-team-card {
  cursor: pointer;
}

.bk-team-media {
  aspect-ratio: 1 / 1;
  background: var(--mist);
  overflow: hidden;
  position: relative;
}

.bk-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms cubic-bezier(.2,.7,.3,1);
}

.bk-team-card:hover .bk-team-img {
  transform: scale(1.05);
}

.bk-team-info {
  padding-top: 22px;
}

.bk-team-name {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.bk-team-role {
  margin: 4px 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-60);
}

.bk-team-bio {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-60);
  text-wrap: pretty;
}

.bk-team-socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.bk-team-socials a {
  color: var(--ink-60);
  transition: color 200ms ease;
}

.bk-team-card:hover .bk-team-socials a {
  color: var(--ink);
}

/* Team Overlay Card (Elements Page) */
.bk-team-overlay-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--mist);
  cursor: pointer;
}

.bk-team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244, 206, 71, 0.92);
  opacity: 0;
  transition: opacity 400ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bk-team-overlay-card:hover .bk-team-overlay {
  opacity: 1;
}

/* Portfolio Grid */
.bk-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.bk-portfolio-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bk-portfolio-item-wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.bk-portfolio-item-square {
  grid-column: span 1;
  aspect-ratio: 1 / 1;
}

.bk-portfolio-img {
  width: 78%;
  height: auto;
  transition: transform 500ms cubic-bezier(.2,.7,.3,1);
}

.bk-portfolio-item:hover .bk-portfolio-img {
  transform: perspective(900px) rotateX(4deg) rotateY(-4deg) scale(1.05);
}

.bk-portfolio-overlay-item {
  position: relative;
  overflow: hidden;
  display: block;
}

.bk-portfolio-overlay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(.2,.7,.3,1);
}

.bk-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 21, 0.6);
  opacity: 0;
  transition: opacity 380ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 34px;
  font-weight: 300;
}

.bk-portfolio-overlay-item:hover .bk-portfolio-overlay {
  opacity: 1;
}

.bk-portfolio-overlay-item:hover .bk-portfolio-overlay-img {
  transform: scale(1.05);
}

/* Portfolio Archive Grid (bkportfolios CPT archive / categories taxonomy) */
.bk-portfolio-archive-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.bk-portfolio-archive-card {
  text-align: center;
}

.bk-portfolio-archive-img {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 1px 1px 2px rgba(17, 17, 21, 0.12);
  background: var(--paper);
}

.bk-portfolio-archive-img img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  transition: transform 250ms ease;
}

.bk-portfolio-archive-img:hover img {
  transform: scale(1.025);
}

.bk-portfolio-archive-title {
  display: inline-block;
  margin-top: 9px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  text-decoration: none;
}

.bk-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 50px;
}

.bk-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--ink-60);
  text-decoration: none;
  font-size: 14px;
}

.bk-pagination .page-numbers.current {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--ink);
}

.bk-pagination .page-numbers:hover:not(.current) {
  border-color: var(--ink-30);
  color: var(--ink);
}

/* Tabs Component */
.bk-tabs-card {
  background: var(--paper);
  box-shadow: 0 6px 30px rgba(17, 17, 21, 0.07);
}

.bk-tabs-header {
  display: flex;
  border-bottom: 1px solid var(--line);
}

.bk-tab-btn {
  flex: 1;
  text-align: center;
  cursor: pointer;
  padding: 20px 10px;
  background: var(--paper);
  color: var(--ink);
  border: none;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 250ms ease, border-color 250ms ease;
}

.bk-tab-btn.is-active {
  background: var(--honey);
  border-bottom-color: var(--honey);
  color: var(--paper);
}

.bk-tab-panel {
  display: none;
  padding: 38px 40px 44px;
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--ink-80);
}

.bk-tab-panel.is-active {
  display: block;
}

/* Accordion Component */
.bk-accordion {
  background: var(--paper);
}

.bk-accordion-item {
  border-bottom: 1px solid var(--line);
}

.bk-accordion-header {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  background: var(--paper);
  color: var(--ink);
  transition: background-color 250ms ease;
}

.bk-accordion-item.is-active .bk-accordion-header {
  background: var(--honey);
  color: var(--paper);
}

.bk-accordion-body {
  display: none;
  padding: 10px 28px 26px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-80);
}

.bk-accordion-item.is-active .bk-accordion-body {
  display: block;
}

.bk-accordion-icon {
  font-size: 18px;
  font-weight: 400;
}

/* Skill Bars */
.bk-skill-item {
  margin-bottom: 26px;
}

.bk-skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.bk-skill-track {
  height: 6px;
  background: #E5E5E5;
}

.bk-skill-fill {
  height: 6px;
  width: 0%;
  transition: width 1000ms cubic-bezier(.2,.7,.3,1);
}

.bk-skill-fill-honey { background: var(--honey); }
.bk-skill-fill-mint { background: var(--mint); }
.bk-skill-fill-sky { background: var(--sky); }

/* SVG Pie Charts / Circular Progress */
.bk-pie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.bk-pie-wrapper {
  position: relative;
  width: 165px;
  height: 165px;
  margin: 0 auto;
}

.bk-pie-svg {
  width: 165px;
  height: 165px;
  transform: rotate(-90deg);
}

.bk-pie-circle-bg {
  cx: 82.5;
  cy: 82.5;
  r: 78;
  fill: none;
  stroke: #EDEDED;
  stroke-width: 3;
}

.bk-pie-circle-val {
  cx: 82.5;
  cy: 82.5;
  r: 78;
  fill: none;
  stroke-width: 3;
  stroke-dasharray: 490;
  stroke-dashoffset: 490;
  transition: stroke-dashoffset 1100ms cubic-bezier(.2,.7,.3,1);
}

.bk-pie-percent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
}

.bk-pie-title {
  margin: 22px 0 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Counter Item */
.bk-counter-item {
  text-align: center;
}

.bk-counter-value {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
  letter-spacing: -0.02em;
}

.bk-counter-title {
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFF;
}

/* Forms */
.bk-form-notice {
  margin-bottom: 16px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  border-left: 3px solid var(--honey);
  background: var(--mist);
  color: var(--ink);
}

.bk-form-notice-error {
  border-left-color: var(--coral);
}

.bk-form {
  display: grid;
  gap: 16px;
}

.bk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bk-input, .bk-textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  padding: 17px 18px;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease;
}

.bk-input:focus, .bk-textarea:focus {
  border-color: var(--honey);
}

.bk-input-line, .bk-textarea-line {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 4px;
}

.bk-input-line:focus, .bk-textarea-line:focus {
  border-bottom-color: var(--honey);
}

/* Pricing Table */
.bk-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.bk-pricing-card {
  border: 1px solid var(--line);
  padding: 54px 40px;
  text-align: center;
  background: var(--paper);
}

.bk-pricing-card-featured {
  border: 2px solid var(--ink);
  background: var(--honey);
  padding: 70px 40px;
  text-align: center;
}

.bk-pricing-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-80);
}

.bk-pricing-price {
  margin-top: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.bk-pricing-currency {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}

.bk-pricing-amount {
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.bk-pricing-features {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-80);
}

/* Dropcaps */
.bk-dropcap-box {
  float: left;
  background: var(--honey);
  color: var(--ink);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 14px;
  margin: 4px 16px 0 0;
}

.bk-dropcap-square {
  float: left;
  width: 56px;
  height: 56px;
  background: var(--honey);
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 16px 0 0;
}

.bk-dropcap-round {
  float: left;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 16px 0 0;
}

.bk-dropcap-light {
  float: left;
  background: #F9F9F9;
  color: var(--honey);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 14px;
  margin: 4px 16px 0 0;
}

.bk-highlight {
  background: var(--honey);
  color: var(--ink);
  font-weight: 600;
  padding: 1px 4px;
}

/* Icon Feature Item (Elements Page) */
.bk-icon-feature {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.bk-icon-feature-img {
  width: 93px;
  height: 93px;
  flex: 0 0 93px;
}

/* Video Popups Banner */
.bk-video-play-btn {
  width: 70px;
  height: 70px;
  border: 1px solid #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 22px;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.bk-video-play-btn:hover {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--ink);
}

/* Footer */
.bk-footer {
  background: var(--mist);
}

.bk-footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 67px var(--container-pad);
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.bk-footer-logo {
  width: 56px;
  height: 62px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
}

.bk-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-30);
  min-width: min(560px, 100%);
  justify-content: center;
}

.bk-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.bk-footer-socials a {
  color: var(--ink-60);
}

.bk-footer-socials a:hover {
  color: var(--ink);
}

.bk-footer-copyright {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-60);
}

/* Subpage Specific Components (Card Box, Timeline, Badges, Tables, etc.) */
.bk-card-box {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 34px 28px;
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.bk-card-box:hover {
  box-shadow: 0 8px 24px rgba(17, 17, 21, 0.05);
}

.bk-card-box-featured {
  background: #FFFDF4;
  border: 2px solid var(--honey);
  padding: 34px 28px;
  box-shadow: 0 8px 24px rgba(244, 206, 71, 0.12);
}

.bk-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 600;
  background: var(--mist);
  color: var(--ink);
  border-radius: 2px;
}

.bk-badge-honey {
  background: var(--honey);
  color: var(--ink);
}

.bk-timeline {
  position: relative;
  display: grid;
  gap: 28px;
}

.bk-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: var(--line);
}

.bk-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  align-items: flex-start;
}

.bk-timeline-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--honey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  z-index: 2;
}

.bk-timeline-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px 28px;
}

.bk-faq-list {
  display: grid;
  gap: 14px;
}

.bk-faq-item {
  border: 1px solid var(--line);
  background: var(--paper);
}

.bk-faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  transition: background-color 200ms ease;
}

.bk-faq-question:hover {
  background: var(--mist);
}

.bk-faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-60);
}

.bk-process-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bk-process-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.bk-process-step {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.bk-process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(17, 17, 21, 0.07);
  border-color: var(--honey);
}

.bk-process-num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey);
}

.bk-process-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.bk-process-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-60);
}

/* Media Queries & Responsive Design System */
.bk-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.bk-grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.bk-contact-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bk-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: flex-start;
}

.bk-spec-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid var(--line);
}

.bk-spec-row:last-child {
  border-bottom: none;
}

.bk-spec-label {
  padding: 18px 24px;
  background: var(--mist);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
}

.bk-spec-value {
  padding: 18px 24px;
  font-size: 14.5px;
  color: var(--ink-60);
  line-height: 1.8;
}

.bk-shopify-banner {
  margin-top: 40px;
  padding: 28px 34px;
  background: #FFFDF4;
  border: 1px solid var(--honey);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Service List Showcase Section */
.bk-service-list-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 70px 0;
}

.bk-service-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Intermediate screens (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
  :root {
    --container-pad: 36px;
  }
  .bk-nav-main {
    gap: 16px;
  }
  .bk-nav-link {
    font-size: 18px;
  }
}

/* Tablet & Smaller Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
  :root {
    --container-pad: 30px;
  }
  
  .bk-header-inner {
    padding-left: 24px;
    padding-right: 24px;
    height: 76px;
  }

  .bk-mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  .bk-header-actions {
    display: none !important;
  }

  .bk-nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0;
    border-bottom: 2px solid var(--honey);
    box-shadow: 0 14px 30px rgba(0,0,0,0.1);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 85;
    margin-left: 0;
  }

  .bk-nav-main.is-active {
    display: flex;
  }

  .bk-nav-item {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 0;
    border-bottom: 1px solid var(--mist);
    width: 100%;
  }

  .bk-nav-link {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-size: 17px;
    font-weight: 700;
  }

  /* The old hover-only decorative arrow is replaced by .bk-nav-toggle below. */
  .bk-nav-item:has(.bk-dropdown) .bk-nav-link::after {
    display: none;
  }

  .bk-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 56px;
    font-size: 24px;
  }

  .bk-nav-toggle::after {
    content: "▾";
  }

  .bk-nav-item.is-open > .bk-nav-toggle::after {
    content: "▴";
  }

  .bk-nav-item .bk-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    flex-basis: 100%;
    width: 100%;
    min-width: 100%;
    border: none;
    background: var(--mist);
    padding: 6px 0;
    margin: 0;
    box-shadow: none;
    display: none;
  }

  .bk-nav-item.is-open .bk-dropdown {
    display: grid;
  }

  .bk-dropdown-link {
    padding: 10px 32px;
    font-size: 14px;
  }

  /* No hover on touch: the label always just navigates; .bk-dropdown-toggle opens/closes. */
  .bk-dropdown-item.has-sub {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .bk-dropdown-item.has-sub > .bk-dropdown-link {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .bk-dropdown-item.has-sub > .bk-dropdown-link::after {
    display: none;
  }

  .bk-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 52px;
    font-size: 22px;
  }

  .bk-dropdown-toggle::after {
    content: "▸";
  }

  .bk-dropdown-item.has-sub.is-open > .bk-dropdown-toggle::after {
    content: "▾";
  }

  .bk-dropdown-sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    flex-basis: 100%;
    width: 100%;
    min-width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    display: none;
  }

  .bk-dropdown-item.has-sub.is-open > .bk-dropdown-sub {
    display: grid;
  }

  .bk-dropdown-sub .bk-dropdown-link {
    padding-left: 48px;
    font-size: 13px;
  }

  .bk-contact-top-grid,
  .bk-contact-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bk-grid-4col,
  .bk-grid-3col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bk-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bk-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bk-portfolio-archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bk-pie-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bk-pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bk-process-grid-4,
  .bk-process-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bk-slide-title {
    font-size: 32px;
  }

  .bk-info-row-2col {
    grid-template-columns: 1fr;
  }

  .bk-info-row-panel {
    padding: 40px 30px;
  }

  .bk-service-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
  :root {
    --container-pad: 20px;
  }

  body {
    font-size: 15.5px;
  }

  .bk-header-inner {
    padding-left: 16px;
    padding-right: 16px;
    height: 68px;
    gap: 16px;
  }

  .bk-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .bk-topbar-socials {
    gap: 12px;
  }

  .bk-logo {
    font-size: 18px;
  }

  .bk-logo-box {
    width: 30px;
    height: 34px;
    font-size: 18px;
  }

  .bk-page-hero {
    padding: 44px 0;
  }

  .bk-page-hero h1,
  .bk-page-hero-title,
  .bk-page-hero-title-dark {
    font-size: 28px !important;
  }

  h1 { font-size: 30px !important; }
  h2 { font-size: 24px !important; }
  h3 { font-size: 19px !important; }

  .bk-grid-2col,
  .bk-grid-3col,
  .bk-grid-4col,
  .bk-team-grid,
  .bk-portfolio-grid,
  .bk-pie-grid,
  .bk-process-grid-4,
  .bk-process-grid-5 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bk-portfolio-item-wide {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
  }

  .bk-portfolio-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .bk-hero-slider {
    height: 293px;
  }

  .bk-slide-title {
    font-size: 22px;
  }

  .bk-spec-row {
    grid-template-columns: 1fr;
  }

  .bk-spec-label {
    padding: 14px 18px;
  }

  .bk-spec-value {
    padding: 14px 18px;
  }

  .bk-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bk-tabs-header {
    flex-direction: column;
  }

  .bk-tab-btn {
    width: 100%;
    padding: 14px 18px !important;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .bk-tab-panel {
    padding: 24px 18px !important;
  }

  .bk-timeline::before {
    left: 20px;
  }

  .bk-timeline-item {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .bk-timeline-num {
    width: 42px;
    height: 42px;
    font-size: 14px;
    border-width: 3px;
  }

  .bk-timeline-card {
    padding: 20px 16px;
  }

  .bk-faq-question {
    padding: 18px 16px;
    font-size: 15px;
    gap: 12px;
  }

  .bk-faq-answer {
    padding: 0 16px 18px;
    font-size: 14px;
  }

  .bk-side-drawer {
    width: 100%;
    max-width: 100vw;
    padding: 30px 20px;
  }

  .bk-side-desc {
    font-size: 20px;
  }

  .bk-parallax-content {
    grid-template-columns: 1fr;
  }

  .bk-parallax-text {
    padding: 44px 0;
  }

  .bk-shopify-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px;
  }

  .bk-card-box,
  .bk-card-box-featured {
    padding: 24px 18px;
  }

  .bk-footer-inner {
    padding: 60px var(--container-pad) 30px;
  }

  .bk-footer-nav {
    gap: 14px 20px;
    padding-bottom: 24px;
  }

  .bk-footer-socials {
    font-size: 14px;
  }

  .bk-footer-copyright {
    font-size: 14px;
  }

  .bk-btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .bk-service-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
}
