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

:root {
  --black:      rgb(0, 0, 0);
  --black-soft: rgb(20, 20, 20);
  --black-warm: rgb(27, 26, 26);
  --white:      rgb(255, 255, 255);
  --dark:       rgb(33, 33, 33);
  --mid-gray:   rgb(99, 99, 99);
  --light-gray: rgb(241, 241, 241);
  --gray:       rgb(132, 132, 132);
  --blue:       rgb(51, 116, 255);
  --overlay:    rgba(0, 0, 0, 0.9);
  --font:       'Inter', Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 20px 0 16px;
  height: 72px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 88px;
  width: auto;
  display: block;
}

.nav-logo-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.nav-logo-circle .the       { font-size: 7px; letter-spacing: 3px; color: var(--white); font-weight: 300; text-transform: uppercase; }
.nav-logo-circle .urban     { font-size: 11px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }
.nav-logo-circle .collective{ font-family: Georgia, serif; font-style: italic; font-size: 9px; color: var(--white); }
.nav-logo-circle .tagline   { font-size: 5px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.9;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.25s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-search {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 4px;
}
.nav-search svg { display: block; }

/* ── HERO ── */
.hero {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  text-align: center;
  padding: 12px 40px;
}

.hero-logo {
  max-width: min(680px, 85vw);
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-the {
  display: block;
  font-size: clamp(28px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.15;
}

.hero-urban {
  display: block;
  font-size: clamp(64px, 18vw, 220px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 0.85;
  opacity: 0.18;
}

.hero-collective {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(48px, 12vw, 160px);
  color: var(--white);
  line-height: 1;
  opacity: 0.18;
}

.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.hero-tagline span {
  font-size: clamp(9px, 1.5vw, 13px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.5;
  font-weight: 400;
}

.hero-dot {
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.3;
}

/* ── SECTIONS SHARED ── */
.section {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-img {
  width: 100%;
  max-width: 480px;
  border-radius: 4px;
  display: block;
  margin: 0 auto 36px;
  background: var(--light-gray);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.section h2 {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: var(--black-warm);
  margin-bottom: 16px;
}

.section p {
  font-size: 15px;
  color: var(--mid-gray);
  margin-bottom: 12px;
  line-height: 1.7;
}

.section ul {
  list-style: disc;
  padding-left: 32px;
  margin-bottom: 12px;
}

.section ul li {
  font-size: 15px;
  color: var(--mid-gray);
  margin-bottom: 4px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-dark {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  background: var(--black-warm);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--dark); }

.btn-outline {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* ── ABOUT BAND ── */
.about-band {
  background: var(--black);
  padding: 80px 24px;
  text-align: center;
}

.about-band h2 {
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.about-band p {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.8;
  opacity: 0.88;
}

/* ── GALLERY ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 840px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--light-gray);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.04); }

/* placeholder tint for images we don't have */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d0cfc8 0%, #b8b5ad 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ── SWEET MONDAYS LOGO BLOCK ── */
.logo-block {
  background: var(--black);
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  margin: 0 auto 36px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sm-script {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(36px, 8vw, 64px);
  color: var(--white);
  font-weight: 400;
  line-height: 1;
}

.sm-sub {
  font-size: clamp(10px, 1.5vw, 14px);
  letter-spacing: 0.3em;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.8;
}

/* ── DIVIDER ── */
hr.section-divider {
  border: none;
  border-top: 1px solid var(--light-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid #ddd;
  padding: 40px 32px 24px;
}

.footer-inner {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.footer-brand {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.footer-icons {
  display: flex;
  gap: 10px;
}

.footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-icon:hover { opacity: 0.7; }
.footer-icon svg { width: 18px; height: 18px; display: block; }

.footer-icon-email { background: #333; color: var(--white); }
.footer-icon-insta { background: #e1306c; color: var(--white); }

.footer-copy {
  max-width: 840px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--gray);
  text-align: right;
}

/* ── HOME SPLIT SECTIONS ── */
.home-split-stack {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
}

.home-split-img-wrap {
  overflow: hidden;
  position: relative;
  height: 500px;
}

.home-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-split-text {
  padding: 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-split-text h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--black-warm);
  margin-bottom: 16px;
}

.home-split-text p {
  font-size: 15px;
  color: var(--mid-gray);
  margin-bottom: 12px;
  line-height: 1.7;
}

.home-split-text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.home-split-text ul li {
  font-size: 15px;
  color: var(--mid-gray);
  margin-bottom: 4px;
  line-height: 1.7;
}

/* ── ABOUT PAGE ── */
.about-split {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.about-split-img-wrap {
  overflow: hidden;
  border-radius: 4px;
}

.about-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 480px;
  background: var(--light-gray);
}

.about-split-text h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--black-warm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.about-split-text p {
  font-size: 15px;
  color: var(--mid-gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-split-text p strong {
  color: var(--dark);
}

.about-split-text p em {
  font-style: italic;
  color: var(--mid-gray);
}

/* ── COLLAB BAND (replaced by two-col layout in new CSS below) ── */

/* ── CART SERVICES PAGE ── */
.cs-hero-split {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 56px 40px;
  align-items: start;
}

.cs-hero-col {
  padding: 0 24px;
}
.cs-hero-col:first-child {
  padding-left: 0;
  border-right: 1px solid var(--light-gray);
  padding-right: 48px;
}
.cs-hero-col:last-child {
  padding-left: 48px;
  padding-right: 0;
}

.cs-col-heading {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 700;
  color: var(--black-warm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cs-img-wrap {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
}

.cs-img-dark {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%) !important;
  color: var(--gray) !important;
  min-height: 380px;
}

.cs-img-matcha {
  background: linear-gradient(135deg, #8aac6a 0%, #5a7a40 100%) !important;
  color: rgba(255,255,255,0.6) !important;
  min-height: 380px;
}

.cs-img-bottles {
  background: linear-gradient(135deg, #7a9e55 0%, #5a7a35 100%) !important;
  color: rgba(255,255,255,0.6) !important;
  min-height: 320px;
}

.cs-img-ice {
  background: linear-gradient(135deg, #c8d8b0 0%, #9ab880 100%) !important;
  color: var(--gray) !important;
  min-height: 200px;
}

.cs-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px !important;
}

.cs-col-body p {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.cs-details p {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 20px;
}

.cs-details p strong {
  color: var(--dark);
}

/* ── BEVERAGE DROP-OFF ── */
.cs-dropoff {
  max-width: 700px;
  margin: 0 auto;
  padding: 16px 40px 80px;
}

.cs-dropoff-heading {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 700;
  color: var(--black-warm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cs-dropoff-img-wrap {
  width: 100%;
  max-height: 340px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.cs-dropoff-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.cs-dropoff-body {
  margin-top: 8px;
}

.cs-tagline {
  font-size: 15px;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 16px;
}

.cs-dropoff-body p {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.cs-list-group {
  margin-bottom: 20px;
}

.cs-list-label {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 8px;
}

.cs-list-label em {
  font-style: italic;
  color: var(--mid-gray);
}

.cs-list-group ul {
  list-style: disc;
  padding-left: 28px;
}

.cs-list-group ul li {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ── BOOK WITH US PAGE ── */
:root {
  --purple: #534AB7;
  --purple-light: #EAE9F7;
  --purple-mid: #6E66CC;
}

.bk-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}

.bk-header {
  margin-bottom: 40px;
}

.bk-header h1 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--black-warm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bk-header p {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* Legend */
.bk-legend {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.bk-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--mid-gray);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.bk-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bk-dot-available { background: #22c55e; }
.bk-dot-partial   { background: #f59e0b; }
.bk-dot-pending   { background: #f59e0b; }
.bk-dot-private   { background: #b0b0b0; }
.bk-dot-closed    { background: #d1d5db; }

.bk-cell-pending { background: #fffbeb; }
.bk-pill-pending {
  background: #fef3c7;
  color: #d97706;
}

.bk-pending-notice {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.bk-pending-disclaimer {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.5;
}

/* Calendar wrap — constrain to page width */
.bk-calendar-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Calendar nav */
.bk-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 14px 20px;
  background: var(--black);
  border-radius: 4px 4px 0 0;
  width: 100%;
  box-sizing: border-box;
}

.bk-month-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bk-nav-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.15s, border-color 0.15s;
}
.bk-nav-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }

/* Calendar grid */
.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-left: 1px solid #e8e8e8;
  border-top: 1px solid #e8e8e8;
  width: 100%;
  overflow: hidden;
}

.bk-cal-day-header {
  padding: 10px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  background: #fafafa;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.bk-cal-cell {
  min-height: 100px;
  padding: 10px 10px 8px;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  background: var(--white);
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.bk-cell-empty {
  background: #fafafa;
  pointer-events: none;
}

.bk-cell-past {
  background: #fafafa;
}
.bk-cell-past .bk-day-num { opacity: 0.3; }

.bk-cell-today {
  outline: 2px solid var(--purple);
  outline-offset: -2px;
}
.bk-cell-today .bk-day-num { color: var(--purple); font-weight: 700; }

.bk-cell-clickable {
  cursor: pointer;
  transition: background 0.15s;
}
.bk-cell-clickable:hover { background: #f5f4fc; }

.bk-day-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
}

/* Pills */
.bk-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 3px 7px;
  border-radius: 20px;
  line-height: 1.4;
  width: fit-content;
}

.bk-pill-private {
  background: #ebebeb;
  color: #777;
}

.bk-cell-closed {
  background: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.6;
}

.bk-pill-closed {
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
}

.bk-pill-owner {
  background: var(--purple-light);
  color: var(--purple);
}

.bk-cell-tours {
  background: #fff5f5;
}

.bk-pill-tours {
  background: #fde8e8;
  color: #e03030;
}

.bk-pill-soldout {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #888;
  border-radius: 3px;
  padding: 1px 5px;
  margin-top: 3px;
  width: fit-content;
  max-width: 100%;
}

.bk-avail-label {
  font-size: 11px;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.02em;
}

.bk-slots-open {
  font-size: 10px;
  color: #f59e0b;
  font-weight: 500;
}

.bk-cell-detail {
  font-size: 10px;
  color: var(--mid-gray);
  line-height: 1.4;
}

/* Modal overlay */
.bk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.bk-overlay-active {
  opacity: 1;
  pointer-events: all;
}

.bk-modal {
  background: var(--white);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 40px;
  position: relative;
}

.bk-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 18px;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.15s;
}
.bk-modal-close:hover { color: var(--dark); }

.bk-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-warm);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Form */
.bk-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.bk-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.bk-field:last-child { margin-bottom: 0; }

.bk-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bk-req { color: var(--purple); }

.bk-input {
  font-family: var(--font);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  appearance: none;
}
.bk-input:focus { border-color: var(--purple); }
.bk-input::placeholder { color: #bbb; }

.bk-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.bk-textarea {
  resize: vertical;
  min-height: 88px;
}

.bk-section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 8px;
}

/* Time slot cards */
.bk-slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 6px;
}

.bk-slot-card {
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  padding: 12px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}
.bk-slot-card:not(.bk-slot-taken):hover { border-color: var(--purple); background: var(--purple-light); }

.bk-slot-taken {
  background: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.55;
}

.bk-slot-selected {
  border-color: var(--purple) !important;
  background: var(--purple-light) !important;
}

.bk-slot-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.bk-slot-taken .bk-slot-label { color: var(--gray); }

.bk-slot-time {
  font-size: 11px;
  color: var(--mid-gray);
}

.bk-slot-unavail {
  font-size: 10px;
  color: #aaa;
  font-weight: 500;
  margin-top: 2px;
}

/* Catering cards */
.bk-catering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 4px;
}

.bk-catering-card {
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  padding: 14px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}
.bk-catering-card:hover { border-color: var(--purple); background: var(--purple-light); }

.bk-catering-selected {
  border-color: var(--purple) !important;
  background: var(--purple-light) !important;
}

.bk-catering-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  padding-top: 2px;
}

.bk-catering-sub {
  font-size: 11px;
  color: var(--mid-gray);
  line-height: 1.4;
}

.bk-popular-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--purple);
  color: var(--white);
  padding: 2px 7px;
  border-radius: 20px;
  width: fit-content;
}

/* Errors */
.bk-error {
  font-size: 12px;
  color: #d0402a;
  margin-top: 6px;
  font-weight: 500;
}

/* Submit */
.bk-submit {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 14px;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.bk-submit:hover { background: var(--purple-mid); }

.bk-submit-outline {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.bk-submit-outline:hover { background: var(--purple-light); }

/* Owner event detail modal */
.bk-event-flyer {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--light-gray);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bk-event-flyer img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.bk-event-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black-warm);
  margin-bottom: 6px;
}

.bk-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.bk-event-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--mid-gray);
}

.bk-event-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--purple);
  flex-shrink: 0;
}

.bk-event-desc {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.bk-event-tag {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* Confirmation */
.bk-confirm {
  text-align: center;
  padding: 20px 0 8px;
}

.bk-confirm-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.bk-confirm-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black-warm);
  margin-bottom: 8px;
}

.bk-confirm-msg {
  font-size: 15px;
  color: var(--mid-gray);
  margin-bottom: 24px;
}

.bk-confirm-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-light);
  border: 1px solid #c8c4ee;
  border-radius: 2px;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 8px;
}

.bk-confirm-detail strong { color: var(--purple); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 36px;
  }

  .cs-hero-split {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
  .cs-hero-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--light-gray);
    padding-right: 0;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .cs-hero-col:last-child {
    padding-left: 0;
  }
  .cs-dropoff {
    padding: 16px 24px 60px;
  }

  .home-split-stack { padding: 24px 20px 0; gap: 20px; }
  .home-split { grid-template-columns: 1fr; }
  .home-split-img-wrap { min-height: 260px; }
  .home-split-text { padding: 36px 24px; }
  .about-split-img { min-height: 300px; }
  .bk-page { padding: 32px 8px 60px; }
  .bk-cal-cell { min-height: 68px; padding: 5px 3px; }
  .bk-day-num { font-size: 11px; }
  .bk-pill { font-size: 8px; padding: 2px 3px; border-radius: 3px; letter-spacing: 0; }
  .bk-pill-soldout { font-size: 7px; padding: 1px 3px; }
  .bk-avail-label { font-size: 8px; }
  .bk-cal-day-header { font-size: 9px; padding: 8px 0; letter-spacing: 0; }
  .bk-cal-nav { padding: 10px 12px; }
  .bk-modal { padding: 28px 20px; }
  .bk-field-row { grid-template-columns: 1fr; }
  .bk-slot-grid { grid-template-columns: repeat(2, 1fr); }
  .bk-catering-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .bk-page { padding: 32px 6px 60px; }
  .bk-cal-cell { min-height: 56px; padding: 4px 2px; }
  .bk-day-num { font-size: 10px; }
  .bk-pill { font-size: 7px; padding: 1px 3px; }
  .bk-cal-day-header { font-size: 8px; }
}

/* ── HAMBURGER BUTTON (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 12px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Animate to X when open */
.nav-hamburger-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger-active span:nth-child(2) { opacity: 0; }
.nav-hamburger-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 600px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px 0 12px;
  }

  .nav-hamburger { display: flex; margin-left: auto; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 16px;
    z-index: 99;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.nav-open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 13px;
    width: 100%;
  }

  .nav-links a::after { display: none; }
}

/* ── EVENTS PAGE ── */
.ev-header {
  text-align: center;
  padding: 56px 24px 24px;
}

.ev-header h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}

.ev-header p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
}

.ev-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 24px 36px;
}

.ev-filter-btn {
  background: none;
  border: 1.5px solid var(--light-gray);
  border-radius: 999px;
  padding: 7px 20px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--mid-gray);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ev-filter-btn:hover {
  border-color: var(--black);
  color: var(--black);
}

.ev-filter-active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.ev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.ev-card {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  transition: transform 0.2s;
}

.ev-card:hover {
  transform: translateY(-4px);
}

.ev-flyer {
  aspect-ratio: 8.5 / 11;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.ev-flyer-placeholder {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ev-card-info {
  padding: 14px 4px 0;
}

.ev-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.ev-card-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-top: 4px;
  line-height: 1.3;
}

.ev-card-date {
  font-size: 13px;
  color: var(--mid-gray);
  margin-top: 4px;
}

@media (max-width: 600px) {
  .ev-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 0 20px 60px; }
}

/* ── ADMIN PAGE ── */
.adm-gate {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.adm-gate-box {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 48px 40px;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.adm-gate-box h2 {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.adm-gate-box p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 4px;
}

.adm-gate-box .bk-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}

.adm-gate-box .bk-submit {
  width: 100%;
  margin-top: 4px;
}

.adm-gate-error {
  color: #e05555;
  font-size: 13px;
}

.adm-logout-btn {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px;
  cursor: pointer;
  transition: border-color 0.15s;
}

.adm-logout-btn:hover { border-color: var(--white); }

.adm-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}

.adm-header {
  margin-bottom: 36px;
}

.adm-header h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--black);
}

.adm-header p {
  color: var(--mid-gray);
  font-size: 15px;
  margin-top: 6px;
}

.adm-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 40px;
}

.adm-tab {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  padding: 10px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
}

.adm-tab:hover { color: var(--black); }

.adm-tab-active {
  color: var(--black);
  border-bottom-color: var(--black);
}

.adm-panel-hidden { display: none; }

.adm-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.adm-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

.adm-img-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 16px;
}

.adm-img-preview-wrap {
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 4px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adm-img-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adm-img-label {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #333;
  margin: 0;
}

.adm-img-upload-btn {
  background: #111;
  color: #fff;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
}

.adm-section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
}

.adm-optional {
  font-weight: 400;
  color: var(--gray);
  font-size: 12px;
}

.adm-file-input {
  display: block;
  width: 100%;
  font-family: var(--font);
  font-size: 13px;
  color: var(--dark);
  margin-top: 6px;
}

.adm-file-note {
  display: block;
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

.adm-form-error {
  color: #e05555;
  font-size: 13px;
  margin-bottom: 8px;
}

.adm-list-note {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 20px;
}

.adm-empty {
  color: var(--gray);
  font-size: 14px;
  font-style: italic;
}

.adm-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
}

.adm-list-thumb {
  width: 40px;
  height: 52px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.adm-list-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.adm-list-info strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.adm-list-info span {
  font-size: 12px;
  color: var(--gray);
}

.adm-delete-btn {
  background: none;
  border: 1.5px solid #e0b0b0;
  border-radius: 999px;
  color: #c04040;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.adm-delete-btn:hover {
  background: #c04040;
  color: var(--white);
  border-color: #c04040;
}

@media (max-width: 768px) {
  .adm-two-col { grid-template-columns: 1fr; }
  .adm-page { padding: 40px 20px 60px; }
}

.adm-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 9999;
  white-space: nowrap;
}

.adm-toast a {
  color: #7eb8f7;
  text-decoration: underline;
  margin-left: 8px;
}

.adm-toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── ABOUT PHOTO SCROLL ── */
.about-photo-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 40px 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.about-photo-scroll::-webkit-scrollbar { display: none; }

.about-photo-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.about-photo-item {
  width: 220px;
  height: 300px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 13px;
}

/* ── COLLAB BAND TWO-COL ── */
.collab-band {
  background: var(--black);
  padding: 0;
}

.collab-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
}

.collab-band-text {
  padding: 64px 48px;
  color: var(--white);
}

.collab-band-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 12px;
}

.collab-band-text p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 8px;
}

.collab-band-text .inquire-label {
  font-weight: 600;
  color: var(--white);
  margin-top: 16px;
}

.collab-band-text ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px;
}

.collab-band-text ul li {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.collab-band-side {
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  border-left: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.collab-band-side-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.collab-side-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.collab-side-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 280px;
}

@media (max-width: 768px) {
  .collab-band-inner { grid-template-columns: 1fr; }
  .collab-band-side { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .about-photo-scroll { padding: 0 20px 32px; }
}

/* ── COLLAB SLIDESHOW ── */
/* ── COLLAB HORIZONTAL SCROLL ── */
.collab-hscroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
  padding-bottom: 8px;
}

.collab-hscroll::-webkit-scrollbar {
  height: 4px;
}
.collab-hscroll::-webkit-scrollbar-track { background: transparent; }
.collab-hscroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 2px; }

.collab-hscroll-track {
  display: flex;
  gap: 12px;
  width: max-content;
}

.collab-hscroll-item {
  width: 200px;
  height: 280px;
  flex-shrink: 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.4);
  font-size: 12px;
  overflow: hidden;
}

.collab-hscroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* kept for reference — no longer used */
.collab-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

/* ── MEET THE OWNER SECTION ── */
.meet-owner-section {
  background: var(--off-white, #f8f6f2);
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.meet-owner-img-wrap {
  overflow: hidden;
  border-radius: 4px;
}

.meet-owner-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.meet-owner-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.meet-owner-inner h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--black-warm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.meet-owner-inner p {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.85;
  margin-bottom: 18px;
}

.owner-quote {
  margin: 32px 0 0;
  padding: 20px 24px;
  border-left: 3px solid var(--black-warm, #1a1a1a);
  font-size: 15px;
  font-style: italic;
  color: var(--dark, #2a2a2a);
  line-height: 1.75;
  background: rgba(0,0,0,0.03);
  border-radius: 0 4px 4px 0;
}

@media (max-width: 768px) {
  .meet-owner-section {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 60px;
  }
  .meet-owner-img-wrap {
    border-radius: 0;
  }
  .meet-owner-img {
    min-height: 320px;
    max-height: 400px;
    height: 55vw;
    object-position: center 20%;
  }
  .meet-owner-inner {
    padding: 36px 24px 0;
  }
  .meet-owner-inner h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/* ── BOOKING FORM RADIO GROUPS ── */
.bk-radio-group {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.bk-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--dark);
  cursor: pointer;
  font-weight: 500;
}

.bk-radio-label input[type="radio"] {
  accent-color: var(--black-warm, #1a1a1a);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.collab-dot-active { background: #fff; }

/* ── Book page CTA + Instagram promo ── */
.bk-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 48px 24px 80px;
}

.bk-main-cta-btn {
  display: inline-block;
  padding: 18px 48px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background-color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.bk-main-cta-btn:hover {
  background-color: var(--purple-mid);
  border-color: var(--purple-mid);
  transform: translateY(-2px);
}

.bk-ig-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  max-width: 420px;
}

.bk-ig-tagline {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary, #1a1a1a);
  letter-spacing: 0.01em;
}

.bk-ig-sub {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary, #666);
  line-height: 1.6;
}

.bk-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 11px 26px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.bk-ig-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ── Inquiry form ── */
.bk-inquiry-section {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.bk-inquiry-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
  color: var(--text-primary, #1a1a1a);
}

.bk-inquiry-sub {
  font-size: 13px;
  color: var(--text-secondary, #666);
  margin: 0 0 24px;
  line-height: 1.6;
}

.bk-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.bk-inq-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bk-inq-submit {
  margin-top: 4px;
  padding: 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.bk-inq-submit:hover {
  background-color: var(--purple-mid);
  border-color: var(--purple-mid);
  transform: translateY(-1px);
}

.bk-inq-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 0;
  font-size: 15px;
  color: var(--text-primary, #1a1a1a);
  font-weight: 500;
}

.bk-inq-success:not([hidden]) {
  display: flex;
}
