/* ============================================================
   Baby Tarot. Soft-luxe wellness.
   Palette: cream, sky-aqua, gilded gold, lilac, dusty-blue ink.
   Type: Cormorant Garamond (display) + Jost (body).
   ============================================================ */

:root {
  --cream: #FFFBF4;
  --sky: #EEF7FC;
  --sky-deep: #DFF0FA;
  --aqua: #A0D8D8;
  --aqua-deep: #7ECECE;
  --blue: #90C8E0;
  --gold: #D4A94A;
  --gold-deep: #B98A2E;
  --lilac: #C4B8E8;
  --ink: #2F3E4A;
  --ink-soft: #56697A;
  --mute: #8A97A1;
  --white: #FFFFFF;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1240px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --r: 6px;
  --shadow: 0 24px 60px -28px rgba(47, 62, 74, 0.28);
  --shadow-soft: 0 14px 40px -24px rgba(47, 62, 74, 0.30);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.7;
  background: #FBF8F1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.012em;
}
em, .bt-it { font-style: italic; }
p { margin: 0 0 1.1em; }
a { color: var(--gold-deep); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.bt-wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.bt-narrow { max-width: 760px; margin-inline: auto; }

.bt-kicker {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.1rem;
}
.bt-kicker--aqua { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.bt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.2em 2.4em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.45s ease, color 0.45s ease, border-color 0.45s ease;
}
/* Primary: a flat ink slab with a trailing rule; gold takes over on hover */
.bt-btn--gold {
  background: var(--ink);
  color: #FBF8F1;
  border-color: var(--ink);
}
.bt-btn--gold::after {
  content: "";
  width: 1.4em;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  transition: width 0.45s ease;
}
.bt-btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.bt-btn--gold:hover::after { width: 2.2em; opacity: 1; }
.bt-btn--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.bt-btn--ink:hover { background: transparent; color: var(--ink); }
/* Secondary: hairline outline, inverts to ink on hover */
.bt-btn--ghost {
  background: transparent;
  border-color: rgba(47,62,74,0.4);
  color: var(--ink);
}
.bt-btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #FBF8F1; }
/* Primary sitting on a dark band or photo: flip to a cream slab */
.bt-cta .bt-btn--gold, .bt-imgcta .bt-btn--gold {
  background: #FBF8F1; color: var(--ink); border-color: #FBF8F1;
}
.bt-cta .bt-btn--gold:hover, .bt-imgcta .bt-btn--gold:hover {
  background: var(--gold-deep); border-color: var(--gold-deep); color: #fff;
}

/* ---------- Header ---------- */
.bt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 251, 244, 0.72);
  border-bottom: 1px solid rgba(47, 62, 74, 0.07);
}
.bt-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.85rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.bt-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-family: var(--serif);
}
.bt-wordmark__mark { color: var(--gold); display: inline-flex; align-items: center; }
.bt-logob { position: relative; font-family: var(--serif); font-weight: 600; font-size: 1.85rem; line-height: 1; display: inline-block; }
.bt-logob__bloom { position: absolute; left: 54%; bottom: 0.17em; width: 0.34em; height: 0.34em; color: currentColor; }
.bt-logob__bloom svg { width: 100%; height: 100%; display: block; }
.bt-wordmark__text {
  font-size: 1.6rem;
  letter-spacing: 0.015em;
  font-weight: 400;
  text-transform: lowercase;
}
.bt-wordmark__text::after { content: "."; color: var(--gold); }
.bt-wordmark--light { color: var(--cream); }
.bt-wordmark--light .bt-wordmark__mark { color: var(--gold); }

.bt-nav { display: flex; align-items: center; gap: 1.7rem; }
.bt-nav a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
}
.bt-nav a:not(.bt-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.bt-nav a:not(.bt-nav__cta):hover { color: var(--gold-deep); }
.bt-nav a:not(.bt-nav__cta):hover::after { width: 100%; }
.bt-nav__cta {
  background: var(--ink);
  color: #FBF8F1 !important;
  padding: 0.85em 1.4em;
  border-radius: 2px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.4s;
}
.bt-nav__cta:hover { background: var(--gold-deep); }
.bt-nav__cta::after { display: none; }

.bt-burger { display: none; background: none; border: 0; width: 30px; height: 22px; position: relative; cursor: pointer; }
.bt-burger span { position: absolute; left: 0; width: 100%; height: 1.6px; background: var(--ink); transition: 0.3s; }
.bt-burger span:nth-child(1) { top: 2px; }
.bt-burger span:nth-child(2) { top: 10px; }
.bt-burger span:nth-child(3) { top: 18px; }
.bt-burger.is-open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.bt-burger.is-open span:nth-child(2) { opacity: 0; }
.bt-burger.is-open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ---------- Sections ---------- */
.bt-section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.bt-section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.bt-center { text-align: center; }
.bt-eyebrow-line { width: 46px; height: 1px; background: var(--gold); margin: 0 auto 1.4rem; opacity: 0.7; }

/* ---------- Hero ---------- */
.bt-hero { position: relative; padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.bt-hero__inner { max-width: 920px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.bt-hero h1 {
  font-size: clamp(2.8rem, 8.5vw, 6rem);
  line-height: 1.02;
  font-weight: 400;
  margin: 0 0 1.1rem;
}
.bt-hero h1 em { color: var(--gold-deep); }
.bt-hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 auto 2.2rem;
  font-weight: 300;
}
.bt-hero__cta { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* floating celestial motifs */
.bt-orbit { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.bt-star {
  position: absolute;
  color: var(--gold);
  opacity: 0.55;
  animation: bt-float 7s ease-in-out infinite;
}
.bt-star svg { display: block; }
.bt-star--1 { top: 14%; left: 9%; width: 26px; animation-delay: 0s; }
.bt-star--2 { top: 22%; right: 11%; width: 18px; color: var(--aqua-deep); animation-delay: 1.5s; }
.bt-star--3 { bottom: 18%; left: 16%; width: 14px; color: var(--lilac); animation-delay: 0.8s; }
.bt-star--4 { bottom: 26%; right: 18%; width: 22px; animation-delay: 2.2s; }
.bt-star--5 { top: 46%; left: 4%; width: 12px; color: var(--aqua-deep); animation-delay: 1.1s; }
@keyframes bt-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-14px) rotate(8deg); opacity: 0.75; }
}

/* ---------- Pull-a-card moment ---------- */
.bt-draw { text-align: center; }
.bt-draw__cards {
  display: flex;
  gap: clamp(0.8rem, 3vw, 2rem);
  justify-content: center;
  margin: 2.5rem 0 1.5rem;
  perspective: 1400px;
  flex-wrap: wrap;
}
.bt-card {
  width: clamp(118px, 22vw, 168px);
  aspect-ratio: 2 / 3.3;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
  border: 0;
  background: none;
  padding: 0;
}
.bt-card.is-flipped { transform: rotateY(180deg); }
.bt-card__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}
.bt-card__back {
  background: #2F3E4A;
  border: 1px solid rgba(212, 169, 74, 0.5);
  color: var(--gold);
}
.bt-card__back svg { width: 54%; opacity: 0.9; }
.bt-card__back small { font-family: var(--sans); font-weight: 300; font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; margin-top: 0.9rem; color: rgba(231,194,106,0.85); }
.bt-card__front {
  transform: rotateY(180deg);
  background: #FFFFFF;
  border: 1px solid rgba(212, 169, 74, 0.4);
  text-align: center;
}
.bt-card__name { font-family: var(--serif); font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: var(--ink); margin: 0.6rem 0 0.3rem; }
.bt-card__sym { font-size: 1.7rem; color: var(--gold-deep); }
.bt-card__meaning { font-family: var(--sans); font-weight: 300; font-size: 0.82rem; color: var(--ink-soft); line-height: 1.45; margin: 0; }
.bt-draw__hint { font-size: 0.9rem; color: var(--mute); letter-spacing: 0.04em; }

/* ---------- Generic cards / grids ---------- */
.bt-grid { display: grid; gap: clamp(1.2rem, 3vw, 2rem); }
.bt-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bt-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bt-tile {
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(47,62,74,0.07);
  border-radius: var(--r);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(4px);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
}
.bt-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bt-tile__icon { width: 42px; height: 42px; color: var(--gold-deep); margin-bottom: 1.1rem; }
.bt-tile__icon svg { width: 100%; height: 100%; }
.bt-tile h3 { font-size: 1.55rem; margin-bottom: 0.45rem; }
.bt-tile p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* steps */
.bt-steps { counter-reset: step; }
.bt-step__n {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}
.bt-step h3 { font-size: 1.4rem; margin-bottom: 0.35rem; }
.bt-step p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }

/* ---------- Reading / price cards ---------- */
.bt-read {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(47,62,74,0.08);
  border-radius: var(--r);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.bt-read:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(212,169,74,0.45); }
.bt-read--feature { background: #FFFFFF; border-color: rgba(212,169,74,0.55); }
.bt-read__tag { align-self: flex-start; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); background: rgba(212,169,74,0.14); padding: 0.35em 0.9em; border-radius: 999px; margin-bottom: 1rem; }
.bt-read h3 { font-size: 1.85rem; margin-bottom: 0.3rem; }
.bt-read__dur { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--mute); margin-bottom: 1.1rem; }
.bt-read__price { font-family: var(--serif); font-size: 2.4rem; color: var(--gold-deep); line-height: 1; margin-bottom: 1.1rem; }
.bt-read__price span { font-family: var(--sans); font-size: 0.85rem; color: var(--mute); }
.bt-read p { font-size: 0.93rem; color: var(--ink-soft); }
.bt-read ul { list-style: none; padding: 0; margin: 0.4rem 0 1.6rem; }
.bt-read li { font-size: 0.9rem; color: var(--ink-soft); padding: 0.4em 0 0.4em 1.6em; position: relative; border-top: 1px solid rgba(47,62,74,0.06); }
.bt-read li::before { content: ""; position: absolute; left: 0; top: 1.05em; width: 14px; height: 1px; background: var(--gold); }
.bt-read .bt-btn { margin-top: auto; justify-content: center; }

/* ---------- Quote / testimonial ---------- */
.bt-quote { text-align: center; max-width: 760px; margin: 0 auto; }
.bt-quote__mark { font-family: var(--serif); font-size: 4rem; color: var(--aqua-deep); line-height: 0.6; }
.bt-quote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 3.4vw, 2.2rem); color: var(--ink); line-height: 1.3; }
.bt-quote cite { font-family: var(--sans); font-style: normal; font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }

.bt-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.bt-testi { background: rgba(255,255,255,0.66); border-radius: var(--r); padding: 1.8rem; box-shadow: var(--shadow-soft); border: 1px solid rgba(47,62,74,0.06); }
.bt-testi p { font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--ink); line-height: 1.4; }
.bt-testi cite { font-family: var(--sans); font-style: normal; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.bt-stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.8rem; margin-bottom: 0.7rem; }

/* ---------- About ---------- */
.bt-about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.bt-about__photo { position: relative; }
.bt-about__photo img { border-radius: 4px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.bt-about__photo--ph {
  border-radius: 4px;
  aspect-ratio: 4/5;
  background: #E7EFF2;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  color: rgba(47,62,74,0.4); font-family: var(--serif); font-size: 1.1rem; text-align: center; padding: 2rem;
}
.bt-about dl { display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 1.6rem; margin-top: 1.6rem; }
.bt-about dt { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); padding-top: 0.45rem; border-top: 1px solid rgba(47,62,74,0.08); }
.bt-about dd { margin: 0; font-size: 0.98rem; color: var(--ink-soft); padding-top: 0.45rem; border-top: 1px solid rgba(47,62,74,0.08); }

/* ---------- Page head ---------- */
.bt-pagehead { text-align: center; padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(1.5rem, 4vw, 3rem); }
.bt-pagehead h1 { font-size: clamp(2.4rem, 6.5vw, 4.4rem); font-weight: 400; }
.bt-pagehead p { color: var(--ink-soft); max-width: 44ch; margin: 0.6rem auto 0; }

/* ---------- FAQ ---------- */
.bt-faq { max-width: 760px; margin: 0 auto; }
.bt-faq__item { border-bottom: 1px solid rgba(47,62,74,0.12); }
.bt-faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 1.4rem 2.5rem 1.4rem 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  color: var(--ink);
  position: relative;
}
.bt-faq__q::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-weight: 300; font-size: 1.6rem; color: var(--gold-deep); transition: transform 0.35s; }
.bt-faq__item.is-open .bt-faq__q::after { transform: translateY(-50%) rotate(45deg); }
.bt-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.bt-faq__a p { color: var(--ink-soft); font-size: 0.98rem; padding-bottom: 1.4rem; margin: 0; }

/* Native details-block accordion (editable, no JS) */
.bt-faq .wp-block-details { border-bottom: 1px solid rgba(47,62,74,0.12); }
.bt-faq .wp-block-details summary { cursor: pointer; list-style: none; padding: 1.4rem 2.5rem 1.4rem 0; font-family: var(--serif); font-size: clamp(1.2rem, 2.6vw, 1.55rem); color: var(--ink); position: relative; }
.bt-faq .wp-block-details summary::-webkit-details-marker { display: none; }
.bt-faq .wp-block-details summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-weight: 300; font-size: 1.6rem; color: var(--gold-deep); transition: transform 0.35s; }
.bt-faq .wp-block-details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.bt-faq .wp-block-details > *:not(summary) { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 1.4rem; }

/* ---------- Forms ---------- */
.bt-form { display: grid; gap: 1.1rem; }
.bt-form .bt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.bt-field { display: flex; flex-direction: column; gap: 0.4rem; }
.bt-field label { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.bt-field input, .bt-field select, .bt-field textarea {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid rgba(47,62,74,0.28);
  border-radius: 14px;
  padding: 0.85em 1em;
  box-shadow: inset 0 1px 2px rgba(47,62,74,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.bt-field input::placeholder, .bt-field textarea::placeholder { color: var(--mute); }
.bt-field input:focus, .bt-field select:focus, .bt-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,169,74,0.14);
}
.bt-field textarea { min-height: 130px; resize: vertical; }
.bt-form__msg { font-size: 0.95rem; min-height: 1.2em; }
.bt-form__msg.is-ok { color: #3f8d6a; }
.bt-form__msg.is-err { color: #c2603f; }

/* booking layout */
.bt-booking { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.bt-cal {
  background: rgba(255,255,255,0.6);
  border: 1px dashed rgba(47,62,74,0.22);
  border-radius: var(--r);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  color: var(--ink-soft);
}
.bt-cal__icon { width: 48px; height: 48px; color: var(--gold); margin: 0 auto 1rem; }
.bt-cal__slots { display: grid; gap: 0.6rem; margin-top: 1.4rem; text-align: left; }
.bt-cal__slot { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.7); border: 1px solid rgba(47,62,74,0.1); border-radius: 12px; padding: 0.8em 1.1em; font-size: 0.92rem; }
.bt-cal__slot span:last-child { color: var(--gold-deep); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- CTA band ---------- */
.bt-cta {
  position: relative;
  text-align: center;
  border-radius: 6px;
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
  background: #2F3E4A;
  overflow: hidden;
}
.bt-cta h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); }
.bt-cta p { color: rgba(255,251,244,0.82); max-width: 40ch; margin: 0 auto 1.8rem; }

/* contact rows */
.bt-contact { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.bt-contact dl dt { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-top: 1.4rem; }
.bt-contact dl dd { margin: 0.2rem 0 0; font-size: 1.05rem; color: var(--ink); }
.bt-contact dl dd a { color: var(--ink); }

/* ---------- Footer ---------- */
.bt-footer { background: #2F3E4A; color: rgba(255,251,244,0.85); margin-top: clamp(3rem,7vw,6rem); }
.bt-footer__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem,5vw,4.5rem) var(--pad) 2rem; display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; }
.bt-footer__brand p { color: rgba(255,251,244,0.6); max-width: 34ch; margin-top: 0.8rem; font-size: 0.95rem; }
.bt-footer__nav { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; }
.bt-footer__nav a { color: rgba(255,251,244,0.8); font-size: 0.95rem; }
.bt-footer__nav a:hover { color: var(--gold); }
.bt-footer__base { max-width: var(--maxw); margin: 0 auto; padding: 1.4rem var(--pad); border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.78rem; color: rgba(255,251,244,0.5); letter-spacing: 0.04em; }

/* ---------- Editorial / fashion imagery ---------- */
.bt-cap { font-family: var(--sans); font-weight: 400; font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mute); }
.bt-ed-img { overflow: hidden; background: #E7EFF2; }
.bt-ed-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: contrast(1.02); transition: filter 0.7s ease; }
.bt-ed-img:hover img { filter: contrast(1.03) brightness(1.02); }

/* Lookbook strip */
.bt-look { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.6rem, 1.4vw, 1.1rem); }
.bt-look figure { margin: 0; }
.bt-look .bt-ed-img { aspect-ratio: 3 / 4.3; border-radius: 4px; }
.bt-look figcaption { margin-top: 0.85rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.bt-look figcaption .t { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }

/* Editorial split (image + statement) */
.bt-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.bt-split--flip .bt-split__img { order: 2; }
.bt-split__img { aspect-ratio: 4 / 5; border-radius: 4px; box-shadow: var(--shadow-soft); }
.bt-split__body { max-width: 32rem; }
.bt-split__body h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }

/* Full-bleed image CTA */
.bt-imgcta { position: relative; min-height: clamp(440px, 62vh, 640px); display: flex; align-items: center; justify-content: center; text-align: center; border-radius: 6px; overflow: hidden; }
.bt-imgcta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) contrast(1.06); }
.bt-imgcta::after { content: ""; position: absolute; inset: 0; background: rgba(28,37,45,0.5); }
.bt-imgcta__in { position: relative; z-index: 2; padding: 2rem; }
.bt-imgcta__in .bt-kicker { color: rgba(255,251,244,0.7); }
.bt-imgcta__in h2 { color: #fff; font-size: clamp(2.2rem, 5.5vw, 4rem); }
.bt-imgcta__in p { color: rgba(255,251,244,0.9); max-width: 38ch; margin: 0 auto 1.8rem; }

/* ============================================================
   Motion. Engine-driven, class-based, compositor-only.
   Initial states gate on .bt-js so no-JS and crawlers see content.
   ============================================================ */
:root { --ease-lux: cubic-bezier(.55,0,.1,1); }

/* Section fade-rise (auto-applied by JS to .bt-section / --tight) */
.bt-js .bt-reveal,
.bt-js .bt-section,
.bt-js .bt-section--tight {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1.1s var(--ease-lux);
}
.bt-js .bt-reveal.is-in,
.bt-js .bt-section.is-in,
.bt-js .bt-section--tight.is-in { opacity: 1; transform: none; }

/* Curtain image reveal: an ink panel lifts away while the photo settles from a slow push-in */
.bt-js .bt-ed-img { position: relative; }
.bt-js .bt-ed-img::after { content: ""; position: absolute; inset: 0; background: var(--ink); transform-origin: top; transform: scaleY(1); transition: transform 1.1s var(--ease-lux); z-index: 3; pointer-events: none; }
.bt-js .bt-ed-img.is-in::after { transform: scaleY(0); }
.bt-js .bt-ed-img img { transform: scale(1.16); transition: transform 1.9s var(--ease-lux), filter 0.7s ease; }
.bt-js .bt-ed-img.is-in img { transform: scale(1); }

/* Hero intro stagger */
.bt-js .bt-hero__inner .bt-reveal:nth-child(1) { transition-delay: 0.05s; }
.bt-js .bt-hero__inner .bt-reveal:nth-child(2) { transition-delay: 0.18s; }
.bt-js .bt-hero__inner .bt-reveal:nth-child(3) { transition-delay: 0.32s; }
.bt-js .bt-hero__inner .bt-reveal:nth-child(4) { transition-delay: 0.46s; }

/* Hairline divider draw */
.bt-js .bt-eyebrow-line { transform: scaleX(0); transform-origin: center; transition: transform 1s var(--ease-lux) 0.15s; }
.bt-js .is-in .bt-eyebrow-line,
.bt-js .bt-eyebrow-line.is-in { transform: scaleX(1); }

/* Header condense on scroll */
.bt-header { transition: background 0.4s ease, box-shadow 0.4s ease; }
.bt-header__inner { transition: padding 0.4s ease; }
.bt-header.is-scrolled { background: rgba(251,248,241,0.9); box-shadow: 0 1px 0 rgba(47,62,74,0.08); }
.bt-header.is-scrolled .bt-header__inner { padding-top: 0.55rem; padding-bottom: 0.55rem; }

/* Ambient drifting line-landscape (behind the hero) */
.bt-flow { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.bt-flow svg { position: absolute; top: 0; left: 0; width: 200%; height: 100%; }
.bt-flow__rot { position: absolute; top: -65%; left: -40%; width: 180%; height: 230%; transform: rotate(210deg); transform-origin: center; }
.bt-flow path { fill: none; stroke-width: 1.1; vector-effect: non-scaling-stroke; }
.bt-flow .l-gold { stroke: var(--gold); opacity: 0.20; }
.bt-flow .l-ink { stroke: var(--ink); opacity: 0.075; }
.bt-flow__back { animation: bt-drift 64s linear infinite; }
.bt-flow__front { animation: bt-drift 44s linear infinite; }
@keyframes bt-drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* bg variant: ripples (slow expanding rings) */
.bt-rip { position: absolute; top: 50%; left: 22%; }
.bt-rip--b { left: auto; right: 16%; top: 38%; }
.bt-rip span { position: absolute; width: 40px; height: 40px; margin: -20px; border: 1px solid var(--gold); border-radius: 50%; opacity: 0; animation: bt-ripple 10s ease-out infinite; }
.bt-rip span:nth-child(2) { animation-delay: 3.3s; }
.bt-rip span:nth-child(3) { animation-delay: 6.6s; }
@keyframes bt-ripple { 0% { transform: scale(0.2); opacity: 0.26; } 100% { transform: scale(11); opacity: 0; } }

/* bg variant: orbits (drifting elliptical rings) */
.bt-orbits { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.bt-orbits .spin { animation: bt-spin 90s linear infinite; transform-box: view-box; transform-origin: 300px 200px; }
.bt-orbits ellipse { fill: none; stroke: var(--gold); stroke-width: 1; vector-effect: non-scaling-stroke; opacity: 0.16; }
@keyframes bt-spin { to { transform: rotate(360deg); } }

/* bg variant: floating circles */
.bt-orbs span { position: absolute; bottom: -30%; left: var(--x); width: var(--s); height: var(--s); border: 1px solid var(--gold); border-radius: 50%; opacity: 0.12; animation: bt-rise var(--t) linear var(--d) infinite; }
@keyframes bt-rise { from { transform: translateY(0); } to { transform: translateY(-150vh); } }

/* Marquee ticker */
.bt-marquee { overflow: hidden; border-top: 1px solid rgba(47,62,74,0.14); border-bottom: 1px solid rgba(47,62,74,0.14); padding: 1.05rem 0; }
.bt-marquee__track { display: inline-flex; align-items: center; white-space: nowrap; animation: bt-marq 34s linear infinite; }
.bt-marquee:hover .bt-marquee__track { animation-play-state: paused; }
.bt-marquee span { font-family: var(--sans); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-soft); padding: 0 1.35rem; }
.bt-marquee .sep { color: var(--gold-deep); font-weight: 400; }
@keyframes bt-marq { to { transform: translateX(-50%); } }

/* ---------- Mobile ---------- */
@media (max-width: 880px) {
  .bt-burger { display: block; z-index: 60; }
  .bt-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem 2.4rem;
    background: rgba(255, 251, 244, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: -20px 0 60px -30px rgba(47,62,74,0.5);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  }
  .bt-nav.is-open { transform: none; }
  .bt-nav a { font-size: 1.3rem; }
  .bt-grid--3, .bt-grid--2, .bt-testi-grid { grid-template-columns: 1fr; }
  .bt-about, .bt-booking, .bt-contact, .bt-split { grid-template-columns: 1fr; }
  .bt-split--flip .bt-split__img { order: 0; }
  .bt-look { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .bt-about__photo { max-width: 360px; margin: 0 auto; }
  .bt-form .bt-row { grid-template-columns: 1fr; }
}

/* Kinetic headline: each line slides up from behind its own clip */
.bt-js .bt-line-mask { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.bt-js .bt-line { display: block; transform: translateY(116%); transition: transform 1.05s var(--ease-lux); }
.bt-js .bt-mask.is-in .bt-line { transform: translateY(0); }
.bt-js .bt-mask.is-in .bt-line-mask:nth-child(2) .bt-line { transition-delay: 0.13s; }
.bt-js .bt-mask.is-in .bt-line-mask:nth-child(3) .bt-line { transition-delay: 0.26s; }

/* Magnetic buttons need a transform transition for the spring-back */
.bt-btn, .bt-nav__cta { transition: background 0.45s ease, color 0.45s ease, border-color 0.45s ease, transform 0.5s cubic-bezier(.2,.9,.3,1); }

/* Custom cursor (desktop, fine pointer only) */
@media (hover: hover) and (pointer: fine) {
  .bt-cursor-on *:not(input):not(textarea):not(select) { cursor: none !important; }
  .bt-cursor-el { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; will-change: transform; }
  .bt-cursor-dot { position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none; width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; border-radius: 50%; transition: opacity 0.3s; }
  .bt-cursor-dot.is-hover { opacity: 0; }

  /* Moon: a gold crescent (brand mark / The Moon) */
  .bt-cursor-el--moon svg { display: block; width: 30px; height: 30px; margin: -15px 0 0 -15px; color: var(--gold); filter: drop-shadow(0 2px 6px rgba(47,62,74,0.22)); transition: width 0.35s var(--ease-lux), height 0.35s var(--ease-lux), margin 0.35s var(--ease-lux); }
  .bt-cursor-el--moon.is-hover svg { width: 56px; height: 56px; margin: -28px 0 0 -28px; }
  .bt-cursor-dot--moon { background: var(--gold-deep); }

  /* Card: a tiny tarot card-back that leans as it travels */
  .bt-cursor-el--card { width: 26px; height: 38px; margin: -19px 0 0 -13px; background: var(--ink); border: 1px solid var(--gold); border-radius: 3px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px -10px rgba(0,0,0,0.45); transition: width 0.3s var(--ease-lux), height 0.3s var(--ease-lux), margin 0.3s var(--ease-lux); }
  .bt-cursor-el--card svg { width: 13px; height: 13px; color: var(--gold); }
  .bt-cursor-el--card.is-hover { width: 34px; height: 50px; margin: -25px 0 0 -17px; }

  /* Ring: the original */
  .bt-cursor-el--ring { width: 38px; height: 38px; margin: -19px 0 0 -19px; border: 1px solid #fff; border-radius: 50%; mix-blend-mode: difference; transition: width 0.35s var(--ease-lux), height 0.35s var(--ease-lux), margin 0.35s var(--ease-lux); }
  .bt-cursor-el--ring.is-hover { width: 70px; height: 70px; margin: -35px 0 0 -35px; }
  .bt-cursor-dot--ring { background: #fff; mix-blend-mode: difference; }

  /* Aura: a soft refracting energy field that breathes */
  .bt-cursor-el--aura .lens {
    display: block; width: 40px; height: 40px; margin: -20px 0 0 -20px; border-radius: 50%;
    border: 1px solid rgba(212,169,74,0.65);
    background: radial-gradient(circle at 50% 45%, rgba(212,169,74,0.14), rgba(212,169,74,0) 72%);
    backdrop-filter: saturate(1.45) brightness(1.08);
    -webkit-backdrop-filter: saturate(1.45) brightness(1.08);
    box-shadow: 0 0 26px -4px rgba(212,169,74,0.5), inset 0 0 14px -5px rgba(255,255,255,0.85);
    animation: bt-breathe 4.6s ease-in-out infinite;
    transition: width 0.4s var(--ease-lux), height 0.4s var(--ease-lux), margin 0.4s var(--ease-lux);
  }
  .bt-cursor-el--aura.is-hover .lens { width: 82px; height: 82px; margin: -41px 0 0 -41px; }
  @keyframes bt-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); } }

  /* Ripple: a calm energy pulse radiating out */
  .bt-cursor-el--ripple .core { display: block; width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; border-radius: 50%; background: var(--gold-deep); }
  .bt-cursor-el--ripple .pulse { position: absolute; top: 0; left: 0; width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 50%; border: 1px solid rgba(212,169,74,0.6); animation: bt-pulse 2.6s ease-out infinite; }
  .bt-cursor-el--ripple .pulse.p2 { animation-delay: 1.3s; }
  .bt-cursor-el--ripple.is-hover .pulse { animation-duration: 1.7s; }
  @keyframes bt-pulse { 0% { transform: scale(0.4); opacity: 0.75; } 100% { transform: scale(3.6); opacity: 0; } }

  /* Thread: a fine line of fate trailing the pointer */
  .bt-cursor-thread { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 9998; pointer-events: none; }
  .bt-cursor-thread path { fill: none; stroke: var(--gold-deep); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; opacity: 0.85; }
  .bt-cursor-el--thread .head { display: block; width: 6px; height: 6px; margin: -3px 0 0 -3px; border-radius: 50%; background: var(--gold-deep); transition: width 0.35s, height 0.35s, margin 0.35s; }
  .bt-cursor-el--thread.is-hover .head { width: 14px; height: 14px; margin: -7px 0 0 -7px; }

  .bt-cursor__label {
    position: fixed; top: 0; left: 0; z-index: 10001; pointer-events: none; margin-top: 2.4em;
    font-family: var(--sans); font-weight: 500; font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink); opacity: 0; transition: opacity 0.3s;
  }
  .bt-cursor__label.is-on { opacity: 1; }
}

/* Scroll progress bar */
.bt-progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; z-index: 9998; will-change: transform; pointer-events: none; }

/* Parallax + tilt perf hints */
.bt-parallax { will-change: transform; }
.bt-tilt { transition: transform 0.5s cubic-bezier(.2,.9,.3,1); will-change: transform; }

/* Per-word kinetic */
.bt-js .bt-words .bt-word { display: inline-block; transform: translateY(0.9em); opacity: 0; transition: transform 0.8s var(--ease-lux), opacity 0.8s ease; }
.bt-js .bt-words.is-in .bt-word { transform: none; opacity: 1; }

/* Horizontal-scroll campaign gallery */
.bt-hscroll { position: relative; }
.bt-hscroll__pin { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; }
.bt-hscroll__track { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.4rem); padding: 0 8vw; will-change: transform; }
.bt-hscroll__lead { flex: 0 0 auto; width: min(36vw, 440px); padding-right: 2vw; }
.bt-hscroll__lead h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
.bt-hscroll figure { flex: 0 0 auto; width: clamp(260px, 30vw, 440px); margin: 0; }
.bt-himg { overflow: hidden; aspect-ratio: 3 / 4; border-radius: 4px; background: #E7EFF2; }
.bt-himg img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.02); transition: filter 0.7s ease, transform 1.3s var(--ease-lux); }
.bt-hscroll figure:hover .bt-himg img { filter: contrast(1.03) brightness(1.02); transform: scale(1.05); }
.bt-hscroll figcaption { margin-top: 0.85rem; display: flex; justify-content: space-between; align-items: baseline; }
.bt-hscroll figcaption .t { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }

@media (max-width: 880px) {
  .bt-hscroll { height: auto !important; }
  .bt-hscroll__pin { position: static; height: auto; padding: 1rem 0; }
  .bt-hscroll__track { transform: none !important; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 5vw 1rem; gap: 1rem; -webkit-overflow-scrolling: touch; }
  .bt-hscroll figure { scroll-snap-align: center; width: 72vw; }
  .bt-hscroll__lead { width: 80vw; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .bt-progress { display: none !important; }
  .bt-js .bt-words .bt-word { transform: none !important; opacity: 1 !important; }
  .bt-parallax, .bt-tilt, .bt-hscroll__track { transform: none !important; }
  .bt-js .bt-mask .bt-line { transform: none !important; }
  .bt-js .bt-ed-img::after { display: none !important; }
  .bt-js .bt-ed-img img { transform: none !important; }
  .bt-cursor-el, .bt-cursor-dot, .bt-cursor__label, .bt-cursor-thread { display: none !important; }
  .bt-cursor-on *:not(input):not(textarea):not(select) { cursor: auto !important; }
  .bt-js .bt-reveal,
  .bt-js .bt-section,
  .bt-js .bt-section--tight { opacity: 1 !important; transform: none !important; transition: none; }
  .bt-js .bt-ed-img { clip-path: none !important; transition: none; }
  .bt-js .bt-eyebrow-line { transform: none !important; }
  .bt-marquee__track { transform: none !important; }
  html { scroll-behavior: auto; }
}
