@font-face {
  font-family: "adventureregular";
  src: url("/assets/fonts/adventure-webfont.woff2") format("woff2"),
       url("/assets/fonts/adventure-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #f58c21;
  --teal: #48b3b0;
  --teal-deep: #68c7c4;
  --purple: #621c7c;
  --text: #222222;
  --white: #ffffff;
  --muted: #555;
  --container: 1140px;
  --font-ui: "Open Sans", sans-serif;
  --font-display: "adventureregular", "Open Sans", sans-serif;
  --font-serif: "Merriweather", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
  padding-top: 96px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: var(--orange); }
.container { width: min(100% - 32px, var(--container)); margin: 0 auto; }
.adventure { font-family: var(--font-display); line-height: 1.1; }
/* The Adventure webfont sits high in its em box; pull inline uses onto the body baseline. */
span.adventure,
.brand {
  vertical-align: -0.16em;
}
.text-purple { color: var(--purple); }
.text-orange { color: var(--orange); }
.text-teal { color: var(--teal); }
.skip-link {
  position: absolute; left: -999px; top: 0;
}
.skip-link:focus { left: 8px; z-index: 9999; background: #fff; padding: 8px; }

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #f9f9f9;
  font-family: var(--font-display);
}
.nav-inner { display: flex; align-items: center; justify-content: flex-start; min-height: 88px; gap: 16px; }
.logo { margin-right: auto; }
.logo img { display: block; width: 160px; height: auto; }
.nav-desktop { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav-desktop a {
  display: block; padding: 12px 10px; text-decoration: none;
  color: var(--teal); font-family: var(--font-display); font-weight: 400;
  font-size: 16px; line-height: 1;
}
.nav-desktop a:hover { color: var(--purple); }
.nav-end { display: flex; align-items: center; gap: 10px; }
.book-now {
  background: var(--orange); color: var(--white) !important;
  border-radius: 10px 0 10px 0; padding: 13px 18px 10px;
  text-decoration: none; font-family: var(--font-display); font-weight: 400;
  font-size: 16px; line-height: 1; white-space: nowrap;
}
.nav-toggle {
  display: none; background: none; border: 0; font-size: 28px;
  color: var(--teal); cursor: pointer;
}
.nav-takeover {
  position: fixed; inset: 0; z-index: 40;
  background: var(--teal-deep) url("/assets/images/nav-mobile.png") bottom left / 100% no-repeat;
  font-family: var(--font-display);
  text-align: center;
  padding-top: 120px;
}
.nav-takeover ul { list-style: none; font-size: 24px; }
.nav-takeover a { color: var(--purple); text-decoration: none; display: block; padding: 10px; }
body.nav-open { overflow: hidden; }

@media (max-width: 960px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

#hero { padding: 24px 0 48px; }
#hero .row { display: grid; grid-template-columns: 5fr 7fr; gap: 24px; align-items: center; }
#hero h1 { font-size: 28px; font-weight: 400; }
@media (max-width: 700px) {
  #hero .row { grid-template-columns: 1fr; }
  #hero .hero-media { order: 1; }
  #hero .hero-copy { order: 2; }
}

.btn {
  display: inline-block; border-radius: 10px 0 10px 0; min-width: 120px;
  color: var(--white); background: var(--orange); text-decoration: none;
  font-family: var(--font-display); line-height: 1;
  padding: 13px 20px 11px; text-align: center;
  border: 2px solid transparent;
}
.btn.lg { font-size: 18px; padding: 15px 24px 13px; }
.btn.outline { background: transparent; border-color: currentColor; }

#learn-more { margin: 48px 0 24px; }
.learn-grid {
  display: grid;
  grid-template-columns: 1fr 3fr 6fr 2fr;
  align-items: stretch;
}
.learn-media {
  grid-column: 2;
  height: 0;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.learn-media img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 83%;
}
.learn-copy { grid-column: 3; padding-left: 16px; }
.learn-copy p { margin-bottom: 14px; }
.learn-copy p:last-child { margin-bottom: 0; }
#learn-more h1 { color: var(--orange); margin-bottom: 12px; }
@media (max-width: 700px) {
  .learn-grid { grid-template-columns: 1fr; justify-items: center; }
  .learn-media {
    grid-column: auto;
    height: auto;
    min-height: 0;
    max-width: 140px;
  }
  .learn-media img { height: auto; width: 100%; max-width: 100%; }
  .learn-copy { grid-column: auto; padding-left: 0; }
}

.section-title { text-align: center; color: var(--orange); margin: 48px 0 16px; }

.party-hero {
  position: relative; width: 100%;
  background-size: contain; background-position: bottom center; background-repeat: no-repeat;
  padding: 48px 0 120px;
}
.party-hero .hero-title {
  text-align: center; margin-bottom: 24px;
}
.party-hero .hero-title h2 {
  display: inline-block; font-size: 12px; text-transform: uppercase; font-weight: 700;
  border-radius: 10px; padding: 6px 12px;
}
.adventure-logo { max-width: 320px; display: block; margin-bottom: 16px; }
.party-hero .lockup { max-width: 420px; }
.party-hero .tagline { opacity: .85; margin-bottom: 16px; }
.party-hero .actions { display: flex; flex-wrap: wrap; gap: 8px; }
.suitable-for { margin-top: 32px; font-size: 13px; letter-spacing: .04em; }
.suitable-for-head { display: flex; align-items: center; gap: 6px; }
.age-tip {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; padding: 0;
  border: 1.5px solid currentColor; border-radius: 50%;
  background: transparent; color: inherit;
  font: 700 11px/1 var(--font-ui);
  letter-spacing: 0; cursor: help; opacity: .9;
}
.age-tip-bubble {
  position: absolute; left: 50%; bottom: calc(100% + 10px);
  transform: translateX(-50%);
  width: max-content; max-width: 240px;
  padding: 8px 10px; border-radius: 6px;
  background: #222; color: #fff;
  font: 400 13px/1.4 var(--font-ui);
  letter-spacing: 0; text-transform: none; text-align: left;
  opacity: 0; visibility: hidden; pointer-events: none; z-index: 6;
}
.age-tip-bubble::after {
  content: "";
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: #222;
}
.age-tip:hover .age-tip-bubble,
.age-tip:focus .age-tip-bubble,
.age-tip.is-open .age-tip-bubble {
  opacity: 1; visibility: visible;
}
.badge {
  display: inline-block; border-radius: 10px; padding: 4px 10px;
  font-size: 12px; font-weight: 700; margin: 4px 4px 0 0;
}

.prose { max-width: 720px; margin: 0 auto; padding: 24px 0 64px; }
.prose h1 { margin-bottom: 16px; color: var(--orange); font-family: var(--font-display); }
.prose p, .prose ul { margin-bottom: 14px; }
.prose ul { padding-left: 22px; }

.footer-chevron {
  position: relative; z-index: 1;
  height: 90px; margin-top: -40px;
}
.footer-chevron::before,
.footer-chevron::after {
  content: "";
  position: absolute; top: 0; height: 100%;
  background: var(--teal);
}
.footer-chevron::before {
  left: 0; width: 51%;
  transform: skew(0deg, 6deg);
}
.footer-chevron::after {
  right: 0; width: 50%;
  transform: skew(0deg, -6deg);
}
.site-footer {
  position: relative; z-index: 2;
  background: var(--teal); color: var(--white);
  margin-top: -65px; padding: 8px 0 24px;
}
.site-footer a { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, .55fr);
  gap: 28px 48px;
  align-items: start;
}
.footer-lede {
  font-size: 18px; font-weight: 400; line-height: 1.4;
  max-width: 22em; margin-bottom: 14px;
}
.footer-sub { font-size: 16px; font-weight: 400; margin-bottom: 8px; }
.footer-addr { font-size: 13px; line-height: 1.45; margin-bottom: 20px; }
.footer-links { text-align: right; }
.footer-links .social {
  display: flex; justify-content: flex-end; align-items: center;
  gap: 10px; margin-bottom: 14px;
}
.footer-links .social a { display: inline-flex; line-height: 0; }
.footer-links .social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 3px; }
.footer-links a { text-decoration: none; }
.copyright { font-size: 13px; }
.copyright a { text-decoration: underline; }
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
  .footer-links .social { justify-content: flex-start; }
}

.page-hero-simple { padding: 24px 0 8px; }
.page-hero-simple h1 { font-family: var(--font-display); color: var(--orange); }

.note {
  background: #fff6ea; border-left: 4px solid var(--orange);
  padding: 16px; margin: 24px 0;
}

.party-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .7fr);
  gap: 40px;
  align-items: start;
  padding: 48px 0 24px;
}
.party-main h1 { font-size: 32px; margin-bottom: 8px; }
.party-line {
  border-left: 4px solid;
  padding-left: 15px;
  line-height: 1.5;
  margin: 16px 0 20px;
  font-size: 18px;
  font-weight: 400;
}
.intro { overflow: hidden; }
.firstcharacter {
  float: left;
  font-family: Georgia, serif;
  font-size: 75px;
  line-height: 60px;
  padding: 4px 8px 0 3px;
}
.kicker {
  text-transform: uppercase;
  opacity: .7;
  font-size: 14px;
  letter-spacing: .04em;
  margin: 32px 0 8px;
  font-weight: 700;
}
.age-row { margin: 8px 0; }
.small { font-size: 13px; }
.details-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  position: sticky;
  top: 108px;
}
.details-card img { width: 100%; display: block; }
.details-card .card-text { padding: 20px 22px 24px; }
.details-card .kicker { margin-top: 0; }
.price-note { color: #198754; font-size: 13px; margin: 0 0 4px; }
.price-row { margin: 0 0 12px; }
.price-was { color: #dc3545; text-decoration: line-through; font-size: 22px; margin-right: 10px; }
.price-now { color: #198754; font-size: 28px; font-weight: 700; }
.detail-list { list-style: none; padding: 0 0 0 22px; margin: 12px 0 20px; }
.detail-list li { position: relative; margin-bottom: 8px; line-height: 1.35; }
.detail-list .check { position: absolute; left: -20px; color: #3c763d; font-weight: 700; }
.detail-list .travel { opacity: .7; font-size: 13px; margin-top: 12px; }
.more-wrap { padding: 32px 0 80px; }
.more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.more-card {
  display: flex; flex-direction: column;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  background: var(--white);
}
.more-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.more-body { padding: 12px 14px; flex: 1; font-size: 14px; }
.more-footer { padding: 0 14px 16px; text-align: center; }

@media (max-width: 960px) {
  .party-layout { grid-template-columns: 1fr; }
  .details-card { position: static; max-width: 420px; }
  .more-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .more-grid { grid-template-columns: 1fr; }
}

.secondary { opacity: .7; font-weight: 400; margin: 0 0 16px; }
.brand { font-family: var(--font-display); }
.brand .goin { color: var(--teal); }
.brand .adv { color: var(--purple); }

.about-page { padding: 48px 0 80px; }
.about-page h1 {
  font-family: var(--font-display);
  color: var(--purple);
  font-size: 32px;
  margin-bottom: 4px;
}
.about-page p { margin-bottom: 14px; }
.about-row {
  display: grid;
  gap: 32px 40px;
  align-items: start;
  margin-bottom: 64px;
}
.about-do { grid-template-columns: minmax(0, 1.35fr) minmax(0, .9fr); }
.about-do .photo { text-align: center; padding-top: 24px; }
.about-how { max-width: 640px; margin: 0 auto 64px; }
.about-who { grid-template-columns: minmax(0, 1.4fr) minmax(0, .85fr); }
.about-who .photo { text-align: center; }
.about-list {
  font-family: var(--font-serif);
  color: var(--orange);
  padding: 0 0 0 25px;
  font-size: 24px;
  line-height: 24px;
  margin: 16px 0 24px;
}
.about-list li { margin-bottom: 10px; }
.about-list .list-content {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
.signoff { font-family: var(--font-display); color: var(--purple); display: block; margin-top: 8px; }

@media (max-width: 768px) {
  .about-do, .about-who { grid-template-columns: 1fr; }
  .about-do .photo { padding-top: 0; max-width: 320px; margin: 0 auto; }
  .about-who .photo { order: -1; max-width: 320px; margin: 0 auto 8px; }
}

.page-intro, .locations-page, .location-page, .faq-page, .philosophy-page,
.contact-page, .book-page, .blog-index, .blog-post, .team-page, .referral-page {
  padding: 48px 0 64px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: start;
}
.intro-grid h1 { font-size: 32px; margin-bottom: 12px; }
.intro-art { text-align: center; padding-top: 8px; }
.testimonial-row { padding: 48px 0 24px; }
.corner-border {
  border: 2px solid var(--orange);
  border-radius: 0 24px;
  padding: 20px 24px;
  margin: 0 auto;
  max-width: 640px;
}
.quote-attr { text-align: right; color: var(--orange); margin: 8px 0 0; }
.page-kicker { max-width: 720px; margin-bottom: 32px; }
.page-kicker h1 { font-size: 32px; }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loc-card {
  display: flex; flex-direction: column;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  background: var(--white);
}
.loc-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
.loc-body { padding: 16px 18px; flex: 1; }
.loc-body h1 { font-size: 26px; font-family: var(--font-display); color: var(--orange); margin-bottom: 4px; }
.loc-body h2 { font-size: 16px; }
.loc-footer { padding: 0 18px 18px; text-align: center; }

.location-top {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 32px;
  margin-bottom: 24px;
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: 12px; margin-bottom: 12px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a { color: var(--muted); text-decoration: none; }
.location-lead { font-size: 22px; font-weight: 400; margin: 20px 0; }
.keep-scroll { font-family: var(--font-display); color: var(--orange); margin: 16px 0; }
.recaps-heading { font-size: 22px; font-weight: 700; margin: 24px 0 8px; }
.recap-link { text-decoration: none; color: var(--text); }
.recap-link h2 { font-size: 20px; font-weight: 400; margin: 8px 0; }
.recap-arrow { color: var(--orange); margin-right: 6px; }
.card-town {
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border-radius: 8px; overflow: hidden; margin-bottom: 12px;
  background: var(--white);
}
.card-town img { width: 140px; height: 100px; object-fit: cover; }
.card-town-body { padding: 12px; }
.card-town-body h2 { font-size: 20px; margin: 0; }
.card-town .state { font-size: 14px; }

.faq-page h1 { font-family: var(--font-display); color: var(--orange); margin-bottom: 16px; }
.accordion-item { border-bottom: 1px solid #eee; }
.accordion-button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-size: 18px; font-weight: 700; color: var(--orange); padding: 14px 8px;
  font-family: var(--font-ui);
}
.accordion-button.collapsed { color: var(--orange); }
.accordion-body { padding: 0 8px 16px; }
.accordion-body p, .accordion-body ul { margin-bottom: 10px; }
.accordion-body ul { padding-left: 22px; }

.modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; }
.modal[hidden] { display: none !important; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.modal-dialog { position: relative; z-index: 1; width: min(640px, calc(100% - 32px)); max-height: 90vh; }
.modal-content { background: #fff; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; max-height: 90vh; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; }
.modal-header.fill-purple { background: var(--purple); color: #fff; }
.modal-body { padding: 16px; overflow: auto; }
.modal-footer { padding: 12px 16px; text-align: right; }
.modal-close { background: #fff; border: 0; font-size: 24px; line-height: 1; cursor: pointer; width: 32px; height: 32px; border-radius: 4px; }
.fill-teal { background: var(--teal); }
body.modal-open { overflow: hidden; }

.philosophy-page .phil-hero {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center;
}
.philosophy-page h1 { font-size: 32px; margin-bottom: 12px; }
.philosophy-page .large { font-size: 18px; }
.phil-art { text-align: center; }
.phil-art img { width: 50%; max-width: 280px; }
.phil-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.phil-cta { text-align: center; margin-top: 48px; }
.phil-cta h2 { margin-bottom: 12px; font-size: 18px; }
.text-grey { color: #666; }

.contact-page h1 { text-align: center; }
.contact-page .book-intro { margin-top: 24px; }
.book-page .bk-h { text-align: left; }
.contact-grid {
  display: grid; grid-template-columns: .7fr 1.1fr; gap: 32px; margin-top: 24px;
  max-width: 960px; margin-left: auto; margin-right: auto;
}
.book-intro { max-width: 640px; margin: 0 auto 32px; text-align: center; }
.book-intro h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}
.book-intro p { margin-bottom: 14px; color: var(--text); }
.bk-col .book-intro {
  max-width: none;
  margin: 0;
  padding: 24px 12px 0;
}
.book-intro-cta { margin-top: 24px; }
.book-intro .btn {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  min-width: 220px;
}
.bk-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.bk:not(.is-flow) .bk-col { justify-content: center; min-height: 420px; }
.center { text-align: center; }
.book-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: start;
}
.alert-info, .alert-success {
  padding: 12px 16px; border-radius: 6px; margin-bottom: 16px;
}
.alert-info { background: #d9edf7; color: #31708f; }
.alert-success { background: #dff0d8; color: #3c763d; text-align: center; }
.thank-deposit p { margin-bottom: 6px; }
.thank-deposit .small { margin: 0; font-size: 14px; }

body.thanks-page {
  padding: 40px 16px 48px;
  min-height: 100vh;
  background: #f3eee6;
}
.thanks-wrap {
  width: min(100%, 760px);
  margin: 0 auto;
}
.thanks-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(44, 36, 49, .14);
}
.thanks-page .thanks-card.prose {
  max-width: none;
  padding: 48px 44px 40px;
}
.thanks-page .thanks-card h1 { margin-top: 0; }
.thanks-page .thanks-card ul { padding-left: 28px; }
.thanks-page .thank-deposit { padding: 16px 18px; }
.thanks-close { margin: 32px 0 0; }
.thanks-close .btn { min-width: 160px; }
@media (max-width: 600px) {
  .thanks-page .thanks-card.prose { padding: 32px 24px 28px; }
}

body.agree-page { padding-top: 32px; padding-bottom: 48px; }
.agree-contract { margin: 0 0 28px; }
.agree-contract p, .agree-contract li { margin: 0 0 14px; }
.agree-contract ol { padding-left: 22px; }
.agree-contract ol.agree-alpha { list-style: lower-alpha; margin: 10px 0 0; }
.agree-table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 14px; }
.agree-table th, .agree-table td { border: 1px solid #ddd; padding: 8px 10px; text-align: left; }
.agree-table th { background: #f6f3ee; color: var(--purple); }
.agree-form { margin: 8px 0 28px; padding: 16px 0 0; border-top: 1px solid #eee; }
.agree-name, .agree-check { display: block; margin: 0 0 14px; }
.agree-name span { display: block; font-weight: 700; margin-bottom: 6px; }
.agree-name input { width: 100%; max-width: 420px; padding: 10px 12px; border: 1px solid #ccc; border-radius: 8px; font: inherit; }
.agree-check { display: flex; gap: 10px; align-items: flex-start; }
.agree-check input { margin-top: 4px; }
.agree-error { color: #96342c; }
.agree-form .btn { border: 0; cursor: pointer; font-size: 16px; }
.agree-form .btn:disabled { opacity: .6; cursor: wait; }

.goaa-form label, .goaa-form legend { display: block; font-weight: 700; margin: 0 0 14px; }
.goaa-form input, .goaa-form select, .goaa-form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 10px 12px;
  border: 1px solid #ccc; border-radius: 4px; font: inherit; font-weight: 400;
}
.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.req { color: #c00; }
.hint { display: block; font-weight: 400; font-size: 13px; opacity: .7; }
.radio-set, .check-set { border: 0; padding: 0; margin: 0 0 14px; }
.radio, .check-row { font-weight: 400; display: flex; gap: 8px; align-items: center; margin: 6px 0; }
.radio input, .check-row input { width: auto; margin: 0; }
.form-nav { display: flex; gap: 8px; }
.form-progress { font-size: 13px; opacity: .7; margin-bottom: 12px; }
.form-status { margin-top: 12px; color: #3c763d; }

.blog-hero { width: 100%; display: block; margin-bottom: 24px; }
.blog-index h1 { font-size: 32px; margin-bottom: 4px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.blog-card {
  display: flex; flex-direction: column;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08); background: #fff;
}
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-card-body { padding: 12px 14px; flex: 1; }
.blog-card-body h2 { font-size: 16px; font-weight: 700; }
.blog-card-footer { padding: 0 14px 16px; text-align: center; }
.card-link { color: var(--orange); font-weight: 700; text-decoration: none; }

.blog-post { max-width: 760px; }
.blog-post h1 { font-size: 32px; margin-bottom: 12px; }
.byline { display: flex; gap: 12px; align-items: center; margin: 12px 0 20px; }
.byline img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.post-hero { width: 100%; margin: 8px 0 24px; display: block; }
.blog-article p, .blog-article h2, .blog-article ul, .blog-article figure { margin-bottom: 16px; }
.blog-article h2 { font-size: 24px; }
.blog-article figure img, .blog-article img { width: 100%; height: auto; }
.wp-block-gallery, .blocks-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.wp-block-gallery.columns-3, .wp-block-gallery.columns-3 .blocks-gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}
.blocks-gallery-item, .wp-block-gallery figure { margin: 0; }
.blog-article figcaption {
  font-size: 13px; opacity: .75; margin-top: 6px; font-style: italic;
}
@media (max-width: 640px) {
  .wp-block-gallery, .blocks-gallery-grid, .wp-block-gallery.columns-3,
  .wp-block-gallery.columns-3 .blocks-gallery-grid { grid-template-columns: 1fr; }
}
.signoff-block { text-align: center; padding: 16px 0 32px; }

.team-intro {
  display: grid; grid-template-columns: 1.3fr .9fr; gap: 32px; margin-bottom: 32px;
}
.team-intro h1 { font-size: 32px; }
.quotes-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 24px 0 48px;
}
.quotes-row .corner-border { max-width: none; }
.team-member {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start;
  margin-bottom: 48px;
}
.team-member img { width: 100%; }
.team-member p { margin-bottom: 14px; }
.team-close { margin-bottom: 32px; }

.referral-layout {
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 32px;
}
.referral-how { grid-column: 1; }
.referral-card { align-self: start; }

@media (max-width: 960px) {
  .intro-grid, .location-top, .phil-hero, .contact-grid, .book-grid,
  .team-intro, .referral-layout, .team-member { grid-template-columns: 1fr; }
  .loc-grid, .phil-cols, .quotes-row { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .d-desktop { display: none; }
  .phil-art img { width: 40%; }
}
@media (max-width: 640px) {
  .loc-grid, .phil-cols, .quotes-row, .blog-grid { grid-template-columns: 1fr; }
  .name-row { grid-template-columns: 1fr; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ── Booking form ─────────────────────────────────────────────────────────
   Landing is the original two-column page. The six-step flow opens as a
   bottom sheet over the whole viewport, leaving a sliver of the nav.
                                                                            */

body.is-booking { padding-bottom: 0; }
.bk-flow, .bk-sheet {
  --bk-line: #e6e2ea;
  --bk-soft: #f7f5f9;
  --bk-ink: #2c2431;
  --bk-dim: #6b6472;
  --bk-ok: #1c7a52;
  --bk-ok-bg: #e8f6ef;
  --bk-warn: #8a5a12;
  --bk-warn-bg: #fff4e2;
  --bk-bad: #9a3128;
  --bk-bad-bg: #fdecea;
  --bk-pad: 20px;
  --bk-warm: #fff7ee;
}
.bk { background: #fff; }
.bk .book-page { padding-bottom: 48px; }

.bk-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.bk-layout .details-card { top: 112px; }

html.is-flow, body.is-flow { overflow: hidden; height: 100%; }
.bk-flow {
  position: fixed; inset: 0; z-index: 55;
  display: flex; align-items: flex-end; justify-content: center;
}
.bk-flow[hidden] { display: none; }
.bk-flow::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(44, 36, 49, .42);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  animation: bk-fade .25s ease both;
  opacity: var(--bk-scrim, 1);
}
.bk-flow-panel {
  position: relative; z-index: 1;
  width: 100%;
  height: calc(100dvh - 12px);
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -12px 48px rgba(44, 36, 49, .28);
  display: flex; flex-direction: column;
  animation: bk-rise .4s cubic-bezier(.2, .85, .25, 1) both;
  will-change: transform;
}
.bk-flow-panel.is-drag { transition: none; animation: none; }
.bk-flow-panel.is-min {
  transform: translateY(110%);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}
.bk-top { touch-action: none; }
.bk-top > .bk-grab {
  position: relative;
  margin: 10px auto 6px; width: 48px; height: 5px;
}
.bk-top > .bk-grab::before {
  content: ""; position: absolute; inset: -16px -48px;
}

@media (prefers-reduced-motion: reduce) {
  .bk-flow::before, .bk-flow-panel { animation: none; }
}

/* ── progress ─────────────────────────────────────────────────────────── */

.bk-top {
  flex-shrink: 0; z-index: 2;
  background: var(--bk-warm);
  border-bottom: 1px solid #f0e0d0;
  border-radius: 20px 20px 0 0;
}
.bk-top-inner {
  display: flex; align-items: center; gap: 12px;
  padding: 6px var(--bk-pad) 10px;
  max-width: 640px; margin: 0 auto; width: 100%;
}
.bk-back {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--bk-line); background: #fff; cursor: pointer;
  display: grid; place-items: center; padding: 0;
  transition: background .15s ease;
}
.bk-back:hover { background: var(--bk-soft); }
.bk-back[hidden] { display: none; }
.bk-back svg { width: 17px; height: 17px; fill: none; stroke: var(--purple); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.bk-x {
  display: none;
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--bk-line); background: #fff; cursor: pointer;
  font-size: 22px; line-height: 1; color: var(--purple); padding: 0;
  transition: background .15s ease;
}
.bk-x:hover { background: var(--bk-soft); }
.bk-top-text { flex: 1; min-width: 0; line-height: 1.25; }
.bk-step-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  min-height: 16px; margin-bottom: 2px;
}
.bk-step-count { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--bk-dim); }
.bk-step-name {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.15;
  color: var(--purple);
  white-space: nowrap;
}

.bk-hold {
  flex-shrink: 0; display: inline-flex; flex-direction: row; align-items: center; gap: 6px;
  padding: 1px 7px; border-radius: 99px;
  background: var(--bk-warn-bg); border: 1px solid #f6d9ac; line-height: 1.2;
}
.bk-hold[hidden] { display: none; }
.bk-hold-label { font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--bk-warn); }
.bk-hold-clock { font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--bk-warn); }
.bk-hold.is-low { background: var(--bk-bad-bg); border-color: #f3c2bd; }
.bk-hold.is-low .bk-hold-label, .bk-hold.is-low .bk-hold-clock { color: var(--bk-bad); }
.bk-hold.is-done { background: var(--bk-ok-bg); border-color: #b7e3cd; }
.bk-hold.is-done .bk-hold-label, .bk-hold.is-done .bk-hold-clock { color: var(--bk-ok); }

.bk-bar { height: 3px; background: var(--bk-line); }
.bk-bar-fill {
  display: block; height: 100%; width: 16.66%;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transition: width .4s cubic-bezier(.2, .8, .2, 1);
}

/* ── steps ────────────────────────────────────────────────────────────── */

.bk-stage {
  position: relative; flex: 1; min-height: 0; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column;
  box-sizing: border-box;
  padding-bottom: 10px;
  scroll-padding-bottom: 10px;
}
.bk-stage:has([data-step="when"].is-on) { overflow-x: hidden; overflow-y: auto; }

.bk-transit {
  position: absolute; inset: 0; z-index: 4;
  display: grid; place-items: center;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}
.bk-transit[hidden] { display: none; }
.bk-transit.is-on {
  pointer-events: auto;
  animation: bk-transit-fade .7s ease both;
}
.bk-mtn { width: 92px; height: 68px; overflow: visible; }
.bk-mtn-base path, .bk-mtn-base circle {
  fill: none;
  stroke: #a8ddd9;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bk-mtn-draw path, .bk-mtn-draw circle {
  fill: none;
  stroke: #1f7a74;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.bk-transit.is-on .bk-mtn-draw path:nth-child(1) {
  animation: bk-mtn-draw .48s cubic-bezier(.4, 0, .15, 1) .06s forwards;
}
.bk-transit.is-on .bk-mtn-draw path:nth-child(2) {
  animation: bk-mtn-draw .28s cubic-bezier(.4, 0, .15, 1) .32s forwards;
}
.bk-transit.is-on .bk-mtn-draw circle {
  animation: bk-mtn-draw .28s cubic-bezier(.4, 0, .15, 1) .46s forwards;
}
@keyframes bk-mtn-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes bk-transit-fade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  78% { opacity: 1; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .bk-transit { display: none !important; }
}
.bk-form {
  max-width: 640px; margin: 0 auto; padding: 24px var(--bk-pad) 10px;
  width: 100%; box-sizing: border-box;
  display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0;
}
.bk-form:has([data-step="when"].is-on) {
  padding-bottom: 0;
  height: auto;
  min-height: 100%;
}

.bk-step { display: none; }
.bk-step.is-on { display: block; }
.bk-step.is-on[data-step="when"] {
  display: flex; flex-direction: column; flex: 1 1 auto;
  min-height: 100%; height: auto;
}
.bk-step.is-on[data-step="when"] > .bk-lede { flex-shrink: 0; }
.bk-flow:has(#bk-err:not([hidden])) .bk-step.is-on[data-step="when"] > .bk-lede { display: none; }
.bk-step[hidden] { display: none !important; }
.bk-step.is-in { animation: bk-in .32s cubic-bezier(.2, .8, .2, 1) both; }
.bk-step.is-back { animation: bk-back .32s cubic-bezier(.2, .8, .2, 1) both; }
@keyframes bk-in { from { opacity: 0; transform: translate3d(18px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes bk-back { from { opacity: 0; transform: translate3d(-18px, 0, 0); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .bk-step.is-in, .bk-step.is-back { animation: none; }
  .bk-bar-fill { transition: none; }
  .bk-cal, .bk-slots { transition: none; }
}

.bk-h {
  font-family: var(--font-display); font-weight: 400;
  font-size: 30px; line-height: 1.12; color: var(--purple); margin-bottom: 10px;
}
.bk-lede { color: var(--bk-dim); font-size: 15px; line-height: 1.55; margin-bottom: 22px; }

.bk-field { position: relative; margin-top: 18px; }
.bk-step > .bk-field:first-of-type,
.bk-step > .bk-row2:first-of-type { margin-top: 0; }

.bk-input {
  width: 100%; padding: 16px; font: inherit; font-size: 16px; /* 16px stops iOS zoom */
  color: var(--bk-ink); background: #fff;
  border: 1.5px solid var(--bk-line); border-radius: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none; appearance: none;
}
.bk-input::placeholder { color: transparent; }
.bk-input:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(72, 179, 176, .18);
}
.bk-input.is-bad { border-color: #e0a49d; }
@keyframes bk-on-autofill { from { opacity: 1; } to { opacity: 1; } }
.bk-input:-webkit-autofill { animation-name: bk-on-autofill; }

.bk-float {
  position: absolute; left: 12px; top: 50%; z-index: 2;
  transform: translateY(-50%);
  max-width: calc(100% - 48px);
  padding: 0 6px; margin: 0;
  font-size: 16px; font-weight: 400; line-height: 1; letter-spacing: .01em;
  color: #a9a2b0; background: #fff; pointer-events: none; white-space: nowrap;
  transition: top .18s ease, transform .18s ease, font-size .18s ease, color .18s ease, font-weight .18s ease;
}
.bk-field:focus-within .bk-float,
.bk-field.is-filled .bk-float {
  top: 0; font-size: 12px; font-weight: 700; color: var(--purple);
}
.bk-field:focus-within .bk-float { color: var(--teal); }
.bk-field:has(.bk-input.is-bad) .bk-float { color: #c44; }

.bk-hint { font-size: 13px; color: var(--bk-dim); margin-top: 8px; line-height: 1.45; }
.bk-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.bk-row2 .bk-field { margin-top: 0; }
.bk-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.bk-check { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; cursor: pointer; }
.bk-check input { width: 20px; height: 20px; margin-top: 1px; flex-shrink: 0; accent-color: var(--teal); }
.bk-check span { font-size: 14px; color: var(--bk-dim); line-height: 1.45; }

.bk-radios {
  margin: 18px 0 0; padding: 0; border: 0; min-width: 0;
}
.bk-radios-q {
  padding: 0; font-size: 13px; font-weight: 700; color: var(--bk-ink);
  line-height: 1.45; letter-spacing: .01em;
}
.bk-req { color: #c44; }
.bk-radios .bk-check { margin-top: 12px; }
.bk-radios .bk-check input { accent-color: var(--teal); }

.bk-select { position: relative; }
.bk-select-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  text-align: left; cursor: pointer;
}
.bk-select-btn.is-empty #theme-btn-text { visibility: hidden; }
.bk-select-btn[aria-expanded="true"] {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(72, 179, 176, .18);
}
.bk-select-btn[aria-expanded="true"] .bk-select-chev { transform: rotate(180deg); }
.bk-select-chev {
  flex-shrink: 0; width: 18px; height: 18px;
  fill: none; stroke: var(--bk-dim); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s ease;
}
.bk-select-list {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 16;
  list-style: none; margin: 0; padding: 6px 0; max-height: 280px; overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff; border: 1.5px solid var(--bk-line); border-radius: 12px;
  box-shadow: 0 10px 30px rgba(44, 36, 49, .13);
}
.bk-step[data-step="theme"] .bk-lede { margin-top: 18px; margin-bottom: 0; }
.bk-lede.is-party { color: var(--bk-ink); }
.bk-lede.is-party strong { display: block; margin-bottom: 8px; color: var(--purple); font-weight: 700; }
.bk-theme-ages { display: block; margin-top: 12px; }
.bk-select-list[hidden] { display: none; }
.bk-select-list li {
  padding: 12px 16px; font-size: 16px; color: var(--bk-ink); cursor: pointer;
}
.bk-select-list li:hover, .bk-select-list li[aria-selected="true"] { background: var(--bk-soft); }
.bk-select-list li[aria-selected="true"] { color: var(--purple); font-weight: 700; }
.bk-theme-note {
  margin-top: 16px; padding: 14px 16px; border-radius: 12px;
  background: var(--bk-soft); border: 1px solid var(--bk-line);
  font-size: 14px; line-height: 1.5; color: var(--bk-ink);
  animation: bk-pop .28s cubic-bezier(.2, .8, .2, 1) both;
}
.bk-theme-note em { color: var(--bk-dim); }
@keyframes bk-pop { from { opacity: 0; transform: translate3d(0, 6px, 0); } to { opacity: 1; transform: none; } }

/* ── address + verdict ────────────────────────────────────────────────── */

.bk-address { position: relative; }
.bk-suggest {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 15;
  background: #fff; border: 1px solid var(--bk-line); border-radius: 12px;
  box-shadow: 0 10px 30px rgba(44, 36, 49, .13); overflow: hidden;
}
.bk-suggest[hidden] { display: none; }
.bk-suggest button {
  display: block; width: 100%; text-align: left; border: 0; background: none;
  padding: 12px 16px; font: inherit; font-size: 15px; cursor: pointer;
  border-bottom: 1px solid var(--bk-soft); color: var(--bk-ink);
}
.bk-suggest button:last-child { border-bottom: 0; }
.bk-suggest button:hover, .bk-suggest button[aria-selected="true"] { background: var(--bk-soft); }

.bk-verdict {
  margin-top: 18px; padding: 14px 16px; border-radius: 12px;
  font-size: 15px; line-height: 1.5;
  animation: bk-pop .3s cubic-bezier(.2, .8, .2, 1) both;
}
.bk-verdict[hidden] { display: none; }
.bk-verdict strong { display: block; margin-bottom: 3px; }
.bk-verdict.is-ok { background: var(--bk-ok-bg); border: 1px solid #b7e3cd; color: var(--bk-ok); }
.bk-verdict.is-fee { background: var(--bk-warn-bg); border: 1px solid #f6d9ac; color: var(--bk-warn); }
.bk-verdict.is-far { background: var(--bk-bad-bg); border: 1px solid #f3c2bd; color: var(--bk-bad); }
.bk-verdict.is-busy {
  display: flex; align-items: center; gap: 12px;
  background: var(--bk-soft); border: 1px solid var(--bk-line); color: var(--bk-dim);
}
.bk-spin {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2.5px solid #ddd6e4;
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: bk-spin .7s linear infinite;
}
.bk-spin-lg { width: 38px; height: 38px; border-width: 3.5px; }
@keyframes bk-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .bk-spin { animation: none; border-top-color: var(--purple); opacity: .7; }
}

/* ── calendar ─────────────────────────────────────────────────────────── */

.bk-when {
  position: relative; overflow: hidden;
  flex: 1 1 auto; min-height: 320px; display: flex; flex-direction: column;
}
.bk-when-wait {
  position: absolute; inset: 0; z-index: 12;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 24px;
  background: rgba(255, 255, 255, .94);
  border-radius: 14px;
  text-align: center;
}
.bk-when-wait[hidden] { display: none !important; }
.bk-when-wait p {
  margin: 0; font-size: 16px; font-weight: 700; color: var(--purple); line-height: 1.3;
}
.bk-when.is-day .bk-cal {
  opacity: 0; transform: scale(.92) translateY(-18px);
  pointer-events: none;
}
.bk-cal {
  width: 100%; max-width: none; margin: 0;
  flex: 1 1 auto; min-height: 320px; align-self: stretch;
  display: flex; flex-direction: column;
  box-sizing: border-box;
  border: 1px solid var(--bk-line); border-radius: 14px; padding: 8px 10px 10px;
  transition: opacity .34s ease, transform .38s cubic-bezier(.2, .8, .2, 1);
}
.bk-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; flex-shrink: 0; }
.bk-cal-title { font-family: var(--font-display); font-size: 17px; color: var(--purple); }
.bk-cal-nav {
  width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--bk-line);
  background: #fff; cursor: pointer; display: grid; place-items: center; padding: 0;
}
.bk-cal-nav:hover:not(:disabled) { background: var(--bk-soft); }
.bk-cal-nav:disabled { opacity: .35; cursor: default; }
.bk-cal-nav svg { width: 16px; height: 16px; fill: none; stroke: var(--purple); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.bk-cal-dow, .bk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.bk-cal-dow { margin-bottom: 2px; flex-shrink: 0; }
.bk-cal-grid {
  flex: 1 1 auto; min-height: 216px;
  grid-template-rows: repeat(var(--cal-rows, 6), minmax(36px, 1fr));
}
.bk-cal-dow span { text-align: center; font-size: 11px; font-weight: 700; color: var(--bk-dim); padding: 2px 0; }

.bk-day {
  position: relative; height: 100%; min-height: 36px; align-self: stretch;
  border: 0; background: none; border-radius: 8px; cursor: pointer;
  font: inherit; font-size: 14px; color: var(--bk-ink);
  display: grid; place-items: center;
  transition: background .14s ease, color .14s ease, transform .14s ease;
}
.bk-day.is-blank { pointer-events: none; }
.bk-day:disabled { color: #c9c3ce; cursor: default; }
.bk-day.is-open { font-weight: 700; }
.bk-day.is-open::after {
  content: ""; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--teal);
}
.bk-day.is-open:hover { background: #e9f7f6; }
.bk-day.is-full { color: #c0b9c6; text-decoration: line-through; }
.bk-day.is-full:hover { background: #f4f2f6; color: #8e8796; }
.bk-day.is-on { background: var(--purple); color: #fff; transform: scale(1.04); }
.bk-day.is-on::after { background: #fff; }
.bk-day:focus-visible { outline: 2px solid var(--teal); outline-offset: 1px; }

.bk-cal-key { display: flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 12px; color: var(--bk-dim); flex-shrink: 0; }
.bk-cal-key .k { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.bk-cal-key .k-open { background: var(--teal); }
.bk-cal-key .k-full { background: #c0b9c6; margin-left: 10px; }

/* ── time slots ───────────────────────────────────────────────────────── */

.bk-slots {
  position: absolute; inset: 0;
  border: 1px solid var(--bk-line); border-radius: 14px; padding: 14px 16px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  background: transparent;
  opacity: 0; transform: translateY(28px);
  pointer-events: none;
  transition: opacity .34s ease, transform .38s cubic-bezier(.2, .8, .2, 1);
}
.bk-when.is-day .bk-slots {
  opacity: 1; transform: none; pointer-events: auto;
}
.bk-slots[hidden] { display: none; }
.bk-slots h2 { font-family: var(--font-display); font-size: 22px; color: var(--purple); margin: 8px 0 4px; font-weight: 400; }
.bk-slots .sub { font-size: 14px; color: var(--bk-dim); margin-bottom: 14px; }
.bk-day-back {
  display: inline-flex; align-items: center; gap: 6px;
  border: 0; background: none; padding: 0; cursor: pointer;
  font: inherit; font-size: 13px; font-weight: 700; color: var(--teal);
}
.bk-day-back svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.bk-slot-grid { display: flex; flex-direction: column; gap: 8px; }
.bk-slot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; border: 1.5px solid var(--bk-line); border-radius: 12px;
  background: #fff; cursor: pointer; font: inherit; font-size: 16px; color: var(--bk-ink);
  text-align: left; width: 100%;
  transition: border-color .15s ease, background .15s ease, transform .12s ease;
}
.bk-slot-status {
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--bk-ok); flex-shrink: 0;
}
.bk-step.is-zoomed > .bk-lede { display: none; }
.bk-slot:hover { border-color: var(--teal); }
.bk-slot:active { transform: scale(.97); }
.bk-slot.is-on { border-color: var(--orange); background: #fff7ee; color: #b4640b; font-weight: 700; }
.bk-slot.is-on .bk-slot-status { color: var(--bk-ok); }
.bk-alt-grid { display: flex; flex-direction: column; gap: 8px; }
.bk-alt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 16px; border: 1.5px solid var(--bk-line); border-radius: 12px;
  background: #fff; cursor: pointer; font: inherit; text-align: left; width: 100%;
}
.bk-alt:hover { border-color: var(--teal); }
.bk-alt strong { font-size: 15px; color: var(--bk-ink); white-space: nowrap; flex: 1; min-width: 0; }

/* ── review ───────────────────────────────────────────────────────────── */

.bk-summary {
  border: 1px solid var(--bk-line); border-radius: 14px; overflow: hidden; margin-bottom: 16px;
}
.bk-summary-row {
  display: flex; align-items: baseline; gap: 12px; padding: 12px 16px;
  border-bottom: 1px solid var(--bk-soft); font-size: 15px;
}
.bk-summary-row:last-child { border-bottom: 0; }
.bk-summary-row dt { flex-shrink: 0; width: 78px; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--bk-dim); }
.bk-summary-row dd { margin: 0; color: var(--bk-ink); flex: 1; }
.bk-summary-row .edit { border: 0; background: none; color: var(--teal); font: inherit; font-size: 13px; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; padding: 0; flex-shrink: 0; }

.bk-price { border: 1px solid var(--bk-line); border-radius: 14px; padding: 16px; margin-bottom: 16px; }
.bk-price dl { display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; margin: 0; font-size: 15px; }
.bk-price dt { color: var(--bk-dim); }
.bk-price dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; color: var(--bk-ink); }
.bk-price .was { color: #b3aeb8; text-decoration: line-through; margin-right: 8px; font-size: 14px; }
.bk-price .save { color: var(--bk-ok); font-size: 13px; }
.bk-price .rule { grid-column: 1 / -1; height: 1px; background: var(--bk-line); margin: 4px 0; }
.bk-price .big { font-size: 17px; font-weight: 700; color: var(--bk-ink); }
.bk-price .due { color: var(--orange); font-weight: 700; font-size: 17px; }
.bk-price .bal { font-size: 13px; }
.bk-save {
  margin: 12px 0 0; padding-top: 12px; border-top: 1px solid var(--bk-line);
  font-size: 13px; color: var(--bk-ok); text-align: center;
}
.bk-deposit {
  margin: 8px 0 0; font-size: 13px; color: var(--bk-dim); text-align: center; line-height: 1.45;
}

.bk-know-lead { font-size: 13px; color: var(--bk-dim); margin: 0 0 10px; }
.bk-know { display: flex; flex-direction: column; gap: 1px; background: var(--bk-line); border: 1px solid var(--bk-line); border-radius: 14px; overflow: hidden; }
.bk-ack {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff; padding: 14px 16px; cursor: pointer;
}
.bk-ack input {
  width: 20px; height: 20px; margin: 2px 0 0; flex-shrink: 0; accent-color: var(--teal);
}
.bk-ack.is-on { background: #f3fbfa; }
.bk-ack h3 { font-size: 13px; font-weight: 700; color: var(--purple); margin: 0 0 4px; text-transform: uppercase; letter-spacing: .04em; }
.bk-ack p { font-size: 14px; line-height: 1.5; color: var(--bk-dim); margin: 0; }
.bk-step.is-pay .bk-know,
.bk-step.is-pay .bk-know-lead { display: none; }
.bk-pay {
  margin: 8px 0 4px; padding: 16px;
  border: 1px solid var(--bk-line); border-radius: 14px; background: #fff;
}
.bk-pay[hidden] { display: none; }
.bk-pay-lead { font-size: 14px; color: var(--bk-dim); line-height: 1.45; margin: 0 0 14px; }
.bk-pay-wallets { min-height: 0; }
.bk-pay-wallets:empty { display: none; }
.bk-pay-or {
  display: flex; align-items: center; gap: 12px;
  margin: 16px 0 12px; color: var(--bk-dim);
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
}
.bk-pay-or[hidden] { display: none; }
.bk-pay-or::before, .bk-pay-or::after {
  content: ""; flex: 1; height: 1px; background: var(--bk-line);
}
.bk-pay-card { min-height: 48px; }

/* ── sticky action ────────────────────────────────────────────────────── */

.bk-foot {
  flex-shrink: 0;
  background: var(--bk-warm);
  border-top: 1px solid #f0e0d0;
  padding: 12px var(--bk-pad) calc(12px + env(safe-area-inset-bottom));
}
.bk-foot > * { max-width: 640px; margin-left: auto; margin-right: auto; }
.bk-foot .bk-cta { max-width: none; }
.bk-cta {
  display: block; width: 100%; padding: 16px 20px;
  font-family: var(--font-display); font-size: 19px; color: #fff;
  background: var(--orange); border: 0; border-radius: 12px 0 12px 0;
  cursor: pointer; transition: background .15s ease, transform .12s ease, opacity .15s ease;
}
.bk-cta:hover:not(:disabled) { background: #e07d10; }
.bk-cta:active:not(:disabled) { transform: scale(.985); }
.bk-cta:disabled { opacity: .4; cursor: default; }
.bk-cta.is-busy { opacity: .7; cursor: progress; }
.bk-err {
  margin: 0 0 10px; padding: 10px 12px; border-radius: 10px;
  background: var(--bk-bad-bg); border: 1px solid #f3c2bd;
  color: var(--bk-bad); font-size: 14px; line-height: 1.45; text-align: left;
}
.bk-err[hidden] { display: none; }
.bk-foot-note { font-size: 12px; color: var(--bk-dim); text-align: center; margin-top: 8px; }
.bk-foot-note[hidden] { display: none; }

/* ── assistant ────────────────────────────────────────────────────────── */

.bk-foot-row { display: flex; gap: 10px; align-items: stretch; }
.bk-foot-row .bk-cta { flex: 1; }
.bk-fab {
  position: relative; flex-shrink: 0;
  width: 56px; border-radius: 50%; border: 1.5px solid var(--teal); cursor: pointer;
  background: #e8f4f8; color: var(--teal); overflow: hidden;
  display: grid; place-items: center; padding: 0;
  transition: box-shadow .15s ease;
  transform-origin: 50% 100%;
}
.bk-fab.is-hey {
  animation: bk-ginny-hey 5.2s ease-in-out 1s infinite;
}
.bk-fab:hover,
.bk-fab:focus-visible,
.bk-fab:active { animation: none; }
.bk-fab:hover,
.bk-fab:focus-visible { transform: scale(1.05); box-shadow: 0 4px 12px rgba(72, 179, 176, .28); }
.bk-fab:active { transform: scale(.98); }
.bk-fab-img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes bk-ginny-hey {
  0%, 68%, 100% { transform: translate3d(0, 0, 0) scale(1, 1) rotate(0deg); }
  72% { transform: translate3d(0, 3px, 0) scale(1.1, .86) rotate(0deg); }
  78% { transform: translate3d(0, -12px, 0) scale(.94, 1.1) rotate(-7deg); }
  84% { transform: translate3d(0, 0, 0) scale(1.08, .9) rotate(0deg); }
  90% { transform: translate3d(0, -6px, 0) scale(.97, 1.06) rotate(5deg); }
  95% { transform: translate3d(0, 0, 0) scale(1, 1) rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .bk-fab.is-hey { animation: none; }
}
.bk-fab-dot {
  position: absolute; top: 6px; right: 6px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--orange); border: 2px solid #fff;
}
.bk-fab-dot[hidden] { display: none; }

.bk-sheet { position: fixed; inset: 0; z-index: 60; display: flex; align-items: flex-end; justify-content: center; }
.bk-sheet[hidden] { display: none; }
.bk-sheet-scrim {
  position: absolute; inset: 0; border: 0; padding: 0; cursor: pointer;
  background: rgba(44, 36, 49, .38);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  animation: bk-fade .25s ease both;
}
@keyframes bk-fade { from { opacity: 0; } to { opacity: 1; } }
.bk-sheet-panel {
  position: relative; z-index: 1; width: 100%;
  height: calc(100dvh - 12px);
  background: #fff;
  border-radius: 20px 20px 0 0; display: flex; flex-direction: column;
  box-shadow: 0 -10px 40px rgba(44, 36, 49, .2);
  animation: bk-rise .34s cubic-bezier(.2, .85, .25, 1) both;
}
@keyframes bk-rise { from { transform: translate3d(0, 100%, 0); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .bk-sheet-scrim, .bk-sheet-panel { animation: none; }
}
.bk-sheet-head { padding: 10px 16px 8px; border-bottom: 1px solid var(--bk-line); flex-shrink: 0; position: relative; }
.bk-grab { display: block; width: 40px; height: 4px; border-radius: 99px; background: var(--bk-line); margin: 0 auto 10px; }
.bk-sheet-who { display: flex; align-items: center; gap: 10px; padding-right: 40px; }
.bk-sheet-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; background: #e8f4f8;
}
.bk-sheet-h { font-family: var(--font-display); font-size: 20px; color: var(--purple); font-weight: 400; }
.bk-sheet-role {
  display: block; margin-top: 2px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--bk-dim);
}
.bk-sheet-x {
  position: absolute; right: 12px; top: 18px; width: 32px; height: 32px;
  border: 0; border-radius: 50%; background: var(--bk-soft); color: var(--purple);
  font-size: 21px; line-height: 1; cursor: pointer;
}
.bk-sheet-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.bk-q, .bk-a {
  padding: 11px 14px; border-radius: 14px; font-size: 15px; line-height: 1.5; max-width: 88%;
  animation: bk-pop .26s cubic-bezier(.2, .8, .2, 1) both;
}
.bk-q { background: var(--purple); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 700; }
.bk-a { background: var(--bk-soft); color: var(--bk-ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.bk-a a { color: var(--teal); font-weight: 700; text-underline-offset: 2px; }
.bk-a.is-wait { color: var(--bk-dim); }
.bk-dots { display: inline-flex; gap: 4px; }
.bk-dots i { width: 6px; height: 6px; border-radius: 50%; background: #b9b2c0; animation: bk-blink 1.1s infinite; }
.bk-dots i:nth-child(2) { animation-delay: .15s; }
.bk-dots i:nth-child(3) { animation-delay: .3s; }
@keyframes bk-blink { 0%, 80%, 100% { opacity: .3; } 40% { opacity: 1; } }

.bk-sheet-starters {
  display: flex; flex-wrap: wrap; align-items: flex-start; gap: 8px;
  padding: 4px 0 8px; max-width: 100%;
}
.bk-sheet-starters[hidden] { display: none; }
.bk-sheet-more {
  flex: 1 0 100%;
  margin: 4px 0 2px;
  font-size: 14px; font-weight: 700; color: var(--purple); line-height: 1.35;
}
.bk-sheet-starters button {
  border: 1.5px solid var(--teal); background: #fff; color: var(--teal);
  border-radius: 999px; padding: 9px 16px; font: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; text-align: left; line-height: 1.3;
  animation: bk-pop .28s cubic-bezier(.2, .8, .2, 1) both;
}
.bk-sheet-starters button:hover { background: #e9f7f6; }
.bk-sheet-ask-wrap { position: relative; flex-shrink: 0; }
.bk-sheet-suggest {
  position: absolute; left: 16px; right: 16px; bottom: 100%;
  margin-bottom: 6px; max-height: 240px; overflow-y: auto; z-index: 2;
  background: #fff; border: 1px solid var(--bk-line); border-radius: 12px;
  box-shadow: 0 10px 30px rgba(44, 36, 49, .13);
}
.bk-sheet-suggest[hidden] { display: none; }
.bk-sheet-suggest button {
  display: block; width: 100%; text-align: left; border: 0; background: none;
  padding: 11px 14px; font: inherit; font-size: 14px; font-weight: 700; cursor: pointer;
  border-bottom: 1px solid var(--bk-soft); color: var(--bk-ink);
}
.bk-sheet-suggest button:last-child { border-bottom: 0; }
.bk-sheet-suggest button:hover, .bk-sheet-suggest button[aria-selected="true"] { background: var(--bk-soft); }
.bk-sheet-miss {
  margin: 0; padding: 12px 14px;
  font-size: 14px; line-height: 1.45; color: var(--bk-dim);
}
.bk-sheet-contact {
  display: inline; padding: 0; border: 0; background: none;
  color: var(--teal); font: inherit; font-weight: 700; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.bk-contact-card { max-width: 100%; width: 100%; padding: 14px; }
.bk-contact .bk-row2 { margin-top: 0; }
.bk-contact .bk-field { margin-top: 12px; }
.bk-contact .bk-row2 .bk-field { margin-top: 0; }
.bk-contact-msg {
  display: block; margin-top: 12px;
  font-size: 12px; font-weight: 700; color: var(--purple);
}
.bk-contact-msg .bk-input {
  margin-top: 6px; min-height: 96px; resize: vertical;
  font-size: 16px; line-height: 1.4;
}
.bk-contact-err {
  margin: 10px 0 0; font-size: 13px; line-height: 1.4; color: var(--bk-bad);
}
.bk-contact-err[hidden] { display: none; }
.bk-contact .bk-cta {
  width: 100%; margin-top: 14px; padding: 13px 16px; font-size: 17px;
}
.bk-sheet-ask {
  display: flex; gap: 8px; padding: 10px 16px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--bk-line);
}
.bk-sheet-ask input {
  flex: 1; min-width: 0; padding: 12px 15px; font: inherit; font-size: 16px;
  border: 1.5px solid var(--bk-line); border-radius: 999px;
}
.bk-sheet-ask input:focus { outline: none; border-color: var(--teal); }
.bk-sheet-send {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: var(--orange); cursor: pointer; display: grid; place-items: center;
}
.bk-sheet-send:disabled { opacity: .4; cursor: default; }
.bk-sheet-send svg { width: 19px; height: 19px; fill: #fff; }

/* ── desktop ──────────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .bk-layout { grid-template-columns: 1fr; }
  .bk-layout .details-card {
    position: static;
    max-width: 380px;
    margin: 0 auto 8px;
  }
}

@media (min-width: 780px) {
  .bk { --bk-pad: 28px; }
  .bk-form { padding-top: 28px; }
  .bk-h { font-size: 32px; }
  .bk-foot { padding-bottom: 16px; }
  .bk-x { display: grid; place-items: center; }
  .bk-sheet { align-items: flex-end; }
  .bk-sheet-panel { height: calc(100dvh - 12px); animation-name: bk-rise; }
}
