/* ─── MARQUEE BAND ────────────────────────────────────────── */
.marquee-band {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track { overflow: hidden; white-space: nowrap; }
.marquee-inner {
  display: inline-block;
  animation: marqueeScroll 28s linear infinite;
  font-family: var(--font-secondary);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}

/* ─── OUR STORIES ────────────────────────────────────────── */
#stories { background: #000; padding: 80px 0 0; }

/* Top band: 2-col split — header left, featured video right */
.stories-top {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  height: clamp(340px, 36vw, 500px);
  gap: 2px;
  background: #111;
  margin-bottom: 2px;
}
.stories-header {
  margin-bottom: 0;
  padding: 40px 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #000;
}
.stories-eyebrow {
  font-family: var(--font-secondary);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.stories-eyebrow.revealed { opacity: 1; transform: translateY(0); }
.stories-header h2 {
  font-family: var(--font-main); font-weight: 700;
  font-size: clamp(48px, 9vw, 130px);
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--red); line-height: 0.9;
  margin-bottom: 28px;
}
/* Per-word wipe reveal */
.stories-word {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.stories-space { display: inline-block; }
.stories-word:nth-child(3) { transition-delay: 0.18s; }
.stories-header h2.revealed .stories-word { clip-path: inset(0 0% 0 0); }

.stories-header p {
  font-family: var(--font-secondary);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.08em; line-height: 1.8;
  color: #666; max-width: 460px;
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.9s ease 0.55s, transform 0.9s cubic-bezier(0.22,1,0.36,1) 0.55s;
}
.stories-header p.revealed { opacity: 1; transform: translateX(0); }

/* Featured card fills its container in .stories-top */
#stories-featured {
  height: 100%;
  background: var(--gray);
  overflow: hidden;
}
#stories-featured .video-card {
  height: 100%;
  aspect-ratio: unset;
  width: 100%;
}

/* ─── VIDEO GRID — 3×2 ───────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #111;
}
.video-card { aspect-ratio: 16/9; }

/* ─── VIDEO CARD BASE ────────────────────────────────────── */
.video-card {
  position: relative;
  background: var(--gray); overflow: hidden;
  display: block; text-decoration: none; cursor: pointer;
  opacity: 0;
  transform: perspective(800px) rotateX(-18deg) translateY(50px);
  transition:
    opacity   0.8s cubic-bezier(0.22,1,0.36,1),
    transform 0.9s cubic-bezier(0.22,1,0.36,1);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}
.video-card.visible {
  opacity: 1;
  transform: perspective(800px) rotateX(0deg) translateY(0);
}

.video-thumb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--gray);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 0.4s;
}
.video-card:hover .video-thumb { transform: scale(1.04); filter: brightness(1.1); }

.video-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  transition: background 0.4s;
}
.video-card:hover .video-card-overlay {
  background: linear-gradient(to top, rgba(192,0,0,0.18) 0%, rgba(0,0,0,0.12) 100%);
}

/* ─── CARD INDEX NUMBER ──────────────────────────────────── */
.video-index {
  position: absolute; top: 14px; left: 16px;
  font-family: var(--font-main);
  font-weight: 700; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); z-index: 2;
  transition: color 0.3s;
}
.video-card:hover .video-index { color: rgba(255,255,255,0.7); }

.video-label {
  position: absolute; bottom: 16px; left: 18px;
  font-family: var(--font-main);
  font-weight: 700; font-size: clamp(12px, 1.4vw, 16px);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red); z-index: 2;
  transition: color 0.3s, transform 0.4s cubic-bezier(0.22,1,0.36,1);
  transform: translateY(4px);
}
.video-card:hover .video-label { color: #fff; transform: translateY(0); }

.play-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px; height: 50px;
  border: 1.5px solid rgba(255,255,255,0.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s, transform 0.3s; z-index: 2;
}
.play-icon svg { width: 16px; height: 16px; fill: #fff; margin-left: 3px; }
.video-card:hover .play-icon {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
  animation: pulseIcon 0.5s ease-out;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
#about {
  background: #000;
  position: relative; overflow: hidden;
}
#about::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 1.4s cubic-bezier(0.22,1,0.36,1);
}
#about.anim-in::before { width: 100%; }

.about-inner { max-width: none; }

.about-label {
  font-family: var(--font-secondary);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  padding: 56px 64px 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
#about.anim-in .about-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── Split layout ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  height: clamp(440px, 52vw, 660px);
}

.about-text-col {
  padding: 48px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 36px;
}

.about-inner h2 {
  font-family: var(--font-main); font-weight: 700;
  font-size: clamp(56px, 7.5vw, 116px);
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--white); line-height: 0.9;
  margin: 0;
}
.about-inner h2 em { color: var(--red); font-style: normal; }

/* Word-by-word clip reveal */
.anim-w {
  display: inline-block;
  clip-path: inset(0 0 110% 0);
  transition: clip-path 1s cubic-bezier(0.22,1,0.36,1);
}
.anim-w:nth-child(2) { transition-delay: 0.1s; }
.anim-w:nth-child(3) { transition-delay: 0.22s; }
.about-inner.anim-in .anim-w { clip-path: inset(0 0 0% 0); }

.about-inner p {
  font-family: var(--font-secondary);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 400; line-height: 1.95;
  color: #777; max-width: 52ch;
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.9s ease 0.4s, transform 1s cubic-bezier(0.22,1,0.36,1) 0.4s;
}
.about-inner.anim-in p { opacity: 1; transform: translateX(0); }

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-secondary);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  position: relative;
  width: fit-content;
  opacity: 0;
  transition: opacity 0.6s ease 0.65s, color 0.25s;
}
.about-inner.anim-in .about-cta { opacity: 1; }
.about-cta::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: calc(100% - 26px);
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.about-cta:hover::after { transform: scaleX(1); }
.about-cta:hover { color: var(--red); }
.about-cta svg { flex-shrink: 0; transition: transform 0.25s; }
.about-cta:hover svg { transform: translateX(4px); }

/* ── Visual column ── */
.about-visual-col {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.22,1,0.36,1) 0.18s;
}
#about.anim-in .about-visual-col {
  clip-path: inset(0 0% 0 0);
}

.about-visual-frame {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
/* Film-frame corner brackets — animate in after visual column reveals */
.about-visual-frame::before,
.about-visual-frame::after {
  content: '';
  position: absolute;
  width: 30px; height: 30px;
  z-index: 3; pointer-events: none;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.about-visual-frame::before {
  top: 22px; right: 22px;
  border-top: 1px solid rgba(192,0,0,0.55);
  border-right: 1px solid rgba(192,0,0,0.55);
  transform-origin: top right;
  transition-delay: 0.85s;
}
.about-visual-frame::after {
  bottom: 22px; left: 22px;
  border-bottom: 1px solid rgba(192,0,0,0.55);
  border-left: 1px solid rgba(192,0,0,0.55);
  transform-origin: bottom left;
  transition-delay: 1.0s;
}
#about.anim-in .about-visual-frame::before,
#about.anim-in .about-visual-frame::after { transform: scale(1); }

.about-frame-brackets {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.about-frame-brackets::before,
.about-frame-brackets::after {
  content: '';
  position: absolute;
  width: 30px; height: 30px;
  z-index: 3; pointer-events: none;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.about-frame-brackets::before {
  top: 22px; left: 22px;
  border-top: 1px solid rgba(192,0,0,0.55);
  border-left: 1px solid rgba(192,0,0,0.55);
  transform-origin: top left;
  transition-delay: 0.92s;
}
.about-frame-brackets::after {
  bottom: 22px; right: 22px;
  border-bottom: 1px solid rgba(192,0,0,0.55);
  border-right: 1px solid rgba(192,0,0,0.55);
  transform-origin: bottom right;
  transition-delay: 1.07s;
}
#about.anim-in .about-frame-brackets::before,
#about.anim-in .about-frame-brackets::after { transform: scale(1); }

.about-visual-inner {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #0b0b0b;
  font-family: var(--font-secondary);
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(192,0,0,0.3);
  position: relative; overflow: hidden;
}
/* Subtle scanline texture on placeholder */
.about-visual-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
}

/* ── Stats strip ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #141414;
}
.stat {
  padding: 44px 64px;
  border-right: 1px solid #141414;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.stat:last-child { border-right: none; }
.stat.visible { opacity: 1; transform: translateY(0); }
.stat-number {
  font-family: var(--font-main); font-weight: 700;
  font-size: clamp(36px, 4vw, 62px);
  color: var(--red); letter-spacing: 0.01em; line-height: 1;
}
.stat-label {
  font-family: var(--font-secondary);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-top: 10px;
}

/* ─── CONTACT + BOOKING (combined) ──────────────────────── */
#contact { background: #000; border-top: 1px solid #111; }
.contact-inner { padding: 0; }

.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px 64px 72px;
  gap: 80px;
  align-items: end;
}

.contact-heading-col h2 {
  font-family: var(--font-main); font-weight: 700;
  font-size: clamp(44px, 6vw, 80px);
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--red); line-height: 0.95;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s cubic-bezier(0.22,1,0.36,1);
}
.contact-inner.anim-in .contact-heading-col h2 { clip-path: inset(0 0 0% 0); }

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-col p {
  font-family: var(--font-secondary);
  font-size: 13px; line-height: 1.85;
  color: #666; max-width: 46ch;
  opacity: 0; transform: translateX(-14px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s;
}
.contact-inner.anim-in .contact-info-col p { opacity: 1; transform: translateX(0); }

.contact-email {
  font-family: var(--font-secondary);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  position: relative; width: fit-content;
  opacity: 0; transform: translateX(-14px);
  transition: opacity 0.8s ease 0.32s, transform 0.8s cubic-bezier(0.22,1,0.36,1) 0.32s, color 0.25s;
}
.contact-inner.anim-in .contact-email { opacity: 1; transform: translateX(0); }
.contact-email::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.contact-email:hover::after { transform: scaleX(1); }
.contact-email:hover { color: var(--red); }

/* ── Book session button ── */
.book-session-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: 1px solid rgba(192,0,0,0.55);
  border-radius: 100px;
  padding: 15px 28px 15px 32px;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  position: relative; overflow: hidden;
  opacity: 0; transform: translateX(-14px);
  transition: opacity 0.8s ease 0.45s, transform 0.8s cubic-bezier(0.22,1,0.36,1) 0.45s,
              border-color 0.3s, color 0.3s;
}
.contact-inner.anim-in .book-session-btn { opacity: 1; transform: translateX(0); }
.book-session-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--red);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  z-index: 0;
}
.book-session-btn:hover::before { transform: scaleX(1); }
.book-session-btn:hover { color: var(--white); border-color: var(--red); }
.book-session-btn.active { color: var(--white); border-color: var(--red); }
.book-session-btn.active::before { transform: scaleX(1); }
.book-btn-text, .book-btn-arrow { position: relative; z-index: 1; }
.book-btn-arrow svg { display: block; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1); }
.book-session-btn.active .book-btn-arrow svg { transform: rotate(45deg); }

/* ── Collapsible booking panel ── */
.booking-panel {
  overflow: hidden;
  height: 0;
  transition: height 0.65s cubic-bezier(0.22,1,0.36,1);
}
.booking-panel-inner { }

.booking-form-wrap {
  padding: 0 64px 80px;
  border-top: 0px solid rgba(192,0,0,0);
  transition: border-top-width 0.01s, border-color 0.4s ease 0.15s, padding-top 0.4s ease 0.1s;
}
.booking-panel.open .booking-form-wrap {
  border-top: 1px solid rgba(192,0,0,0.45);
  padding-top: 52px;
}

/* Form layout */
.booking-form { display: flex; flex-direction: column; }
.form-row {
  display: flex;
  border-bottom: 1px solid rgba(192,0,0,0.28);
}
.form-row.two-col .form-field:first-child { border-right: 1px solid rgba(192,0,0,0.28); }

/* Form fields — floating label style */
.form-field {
  flex: 1;
  position: relative;
  padding: 24px 0 10px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.form-row.two-col .form-field:first-child { padding-right: 40px; }
.form-row.two-col .form-field:last-child  { padding-left: 40px; }

.booking-panel.open .form-row:nth-child(1) .form-field { opacity:1; transform:none; transition-delay: 0.22s; }
.booking-panel.open .form-row:nth-child(2) .form-field { opacity:1; transform:none; transition-delay: 0.32s; }
.booking-panel.open .form-row:nth-child(3) .form-field { opacity:1; transform:none; transition-delay: 0.42s; }
.booking-panel.open .form-actions         { opacity:1; transform:none; transition-delay: 0.50s; }

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(192,0,0,0.38);
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 14px;
  padding: 8px 0 6px;
  outline: none;
  transition: border-color 0.25s, color 0.25s;
  -webkit-appearance: none; appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--red);
  color: var(--white);
}
.form-field textarea { resize: none; line-height: 1.75; }
.form-field select { cursor: pointer; color: var(--white); }
.form-field select option { background: #0d0000; color: var(--white); }

/* Floating labels */
.form-field label {
  position: absolute;
  top: 26px; left: 0;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  pointer-events: none;
  transition: top 0.22s cubic-bezier(0.22,1,0.36,1),
              font-size 0.22s, letter-spacing 0.22s,
              text-transform 0.22s, color 0.22s;
}
.form-row.two-col .form-field:last-child label { left: 40px; }
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field select:valid ~ label,
.form-field select:focus ~ label {
  top: 0;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.form-field input:focus ~ label,
.form-field textarea:focus ~ label,
.form-field select:focus ~ label {
  color: var(--red);
}

/* Form actions */
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  row-gap: 12px;
  padding: 36px 0 0;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--red);
  border-radius: 100px;
  padding: 14px 28px;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, color 0.3s;
}
.form-submit-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--red);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  z-index: 0;
}
.form-submit-btn:hover::before { transform: scaleX(1); }
.form-submit-btn:hover { border-color: var(--red); color: var(--white); }
.form-submit-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.form-submit-btn span,
.form-submit-btn svg { position: relative; z-index: 1; }
.form-error {
  flex-basis: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--font-secondary);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--red);
}
.form-legal {
  font-family: var(--font-secondary);
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(192,0,0,0.48);
}

/* Success state */
.booking-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 48px 0;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.booking-success.visible { opacity: 1; transform: translateY(0); }
.success-svg { width: 52px; height: 52px; }
.success-svg circle {
  stroke-dasharray: 163; stroke-dashoffset: 163;
}
.success-svg path {
  stroke-dasharray: 36; stroke-dashoffset: 36;
}
.booking-success.visible .success-svg circle {
  animation: drawCircle 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
}
.booking-success.visible .success-svg path {
  animation: drawCheck 0.4s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck  { to { stroke-dashoffset: 0; } }
.booking-success p {
  font-family: var(--font-secondary);
  font-size: 13px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
}

/* ─── BTS CAROUSEL ───────────────────────────────────────── */
.bts-carousel {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.bts-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  transition: transform 1.15s cubic-bezier(0.22,1,0.36,1);
  z-index: 0;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .bts-track { transition: none; }
}
.bts-slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.bts-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #080808;
  overflow: hidden;
}
.bts-placeholder span {
  font-family: var(--font-secondary);
  font-size: 9px; letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(192,0,0,0.28);
  pointer-events: none;
}
.bts-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.06);
}
.bts-controls {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  z-index: 12;
  pointer-events: none;
}
.bts-prev, .bts-next {
  background: none; border: none;
  font-family: var(--font-secondary);
  font-size: 12px; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  cursor: pointer; padding: 6px 8px;
  transition: color 0.2s;
  line-height: 1;
  pointer-events: all;
}
.bts-prev:hover, .bts-next:hover { color: rgba(255,255,255,0.9); }
.bts-dots { display: flex; gap: 7px; align-items: center; pointer-events: all; }
.bts-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.bts-dot.active { background: var(--red); transform: scale(1.5); }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #000; border-top: 1px solid #111;
  padding: 40px 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-main); font-weight: 700;
  font-size: 18px; letter-spacing: 0.3em;
  text-transform: uppercase; color: #fff;
}
.footer-copy {
  font-family: var(--font-secondary);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.22);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Stories: stack header above featured, 2-col grid */
  .stories-top {
    grid-template-columns: 1fr;
    height: auto;
  }
  .stories-header { padding: 36px 32px 32px; }
  #stories-featured { height: clamp(200px, 52vw, 360px); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }

  #contact, #appointments { padding: 72px 32px; }
  footer { padding: 32px; }
  .about-label { padding: 40px 32px 0; }
  .about-split { grid-template-columns: 1fr; min-height: auto; }
  .about-text-col { padding: 36px 32px 48px; }
  .about-split { height: auto; }
  .about-visual-col { clip-path: none; display: flex; flex-direction: column; }
  .about-visual-frame,
  .about-frame-brackets,
  .about-visual-inner {
    flex: unset;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
  }
  .about-visual-inner {
    padding: 0;
  }
  .bts-carousel {
    flex: unset;
    position: relative;
    width: 100%;
    height: clamp(220px, 56vw, 400px);
    min-height: 200px;
    margin: 0;
  }
  .bts-track {
    width: 100%;
    height: 100%;
  }
  .bts-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
  }
  .bts-placeholder {
    padding: 0;
    min-height: 100%;
  }
  .bts-placeholder img {
    object-fit: cover;
    object-position: center center;
    transform: none;
  }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .stat { padding: 36px 32px; }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid #141414; }
  .contact-top { grid-template-columns: 1fr; padding: 56px 32px 48px; gap: 40px; }
  .booking-form-wrap { padding: 0 32px 64px; }
  .form-row.two-col { flex-direction: column; }
  .form-row.two-col .form-field:first-child { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(192,0,0,0.28); }
  .form-row.two-col .form-field:last-child  { padding-left: 0; }
}
@media (max-width: 600px) {
  /* Stories: all 1 column on mobile */
  .stories-header { padding: 28px 20px 24px; }
  #stories-featured { height: 56vw; }
  .video-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 20px; }

  .bts-carousel {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: min(72vh, 420px);
    aspect-ratio: 4 / 3;
  }
  .bts-controls { padding: 14px 16px; }
}

/* Short viewports (small aspect ratio / landscape phone) */
@media (max-width: 900px) and (max-height: 520px) {
  .bts-carousel {
    aspect-ratio: 16 / 9;
    min-height: 160px;
    max-height: 48vh;
  }
}
