/* ============================================================
   Produced By Patrick — The LVB
   All rules scoped under #pbp-page so they are safe to paste
   into Squarespace Custom CSS without leaking site-wide.
   Style: black bg, white type, amber stage-light accent.
   ============================================================ */

/* The deployed page is embedded in a Squarespace iframe — keep the document
   itself flush and dark so there is no white gutter around the embed. */
html,
body {
  margin: 0;
  background: #0a0a0b;
}

#pbp-page {
  /* Palette */
  --pbp-bg: #0a0a0b;
  --pbp-surface: #141414;
  --pbp-raised: #1b1b1c;
  --pbp-white: #fbfaf7;
  --pbp-ink: #f5f3ee;
  --pbp-ink-soft: rgba(245, 243, 238, 0.66);
  --pbp-ink-faint: rgba(245, 243, 238, 0.44);
  --pbp-amber: #e6a23c;
  --pbp-amber-hi: #f2b75a;
  --pbp-ember: #c2502a;
  --pbp-line: rgba(245, 243, 238, 0.14);
  --pbp-line-strong: rgba(245, 243, 238, 0.28);

  /* Type */
  --pbp-display: "Fraunces", Georgia, "Times New Roman", serif;
  --pbp-ui: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  /* Block sans to match the "THE LVB" lockup on patricksieben.com */
  --pbp-block: "Montserrat", "Inter", system-ui, sans-serif;

  /* Layout */
  --pbp-shell: 1180px;
  --pbp-gutter: clamp(20px, 5vw, 48px);
  --pbp-section-y: clamp(72px, 12vw, 140px);

  background: var(--pbp-bg);
  color: var(--pbp-ink);
  font-family: var(--pbp-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#pbp-page *,
#pbp-page *::before,
#pbp-page *::after {
  box-sizing: border-box;
}

#pbp-page img,
#pbp-page video {
  display: block;
  max-width: 100%;
}

#pbp-page a {
  color: inherit;
  text-decoration: none;
}

#pbp-page h1,
#pbp-page h2,
#pbp-page h3 {
  margin: 0;
  color: var(--pbp-white);
  font-weight: 700;
}

#pbp-page p {
  margin: 0;
}

/* ---------------------------------------------------------- Layout helpers */
#pbp-page .shell {
  width: 100%;
  max-width: var(--pbp-shell);
  margin-inline: auto;
  padding-inline: var(--pbp-gutter);
}

#pbp-page .section {
  padding-block: var(--pbp-section-y);
  border-top: 1px solid var(--pbp-line);
}

#pbp-page .section__head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

#pbp-page .section__title {
  font-family: var(--pbp-block);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.6vw, 2.8rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

#pbp-page .section__lede {
  margin-top: 20px;
  color: var(--pbp-ink-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

#pbp-page .section__lede--center {
  margin-inline: auto;
  max-width: 620px;
}

/* ---------------------------------------------------------- Eyebrow / labels */
#pbp-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--pbp-amber);
}

#pbp-page .section__head .eyebrow {
  justify-content: center;
}

#pbp-page .eyebrow__index {
  font-variant-numeric: tabular-nums;
  color: var(--pbp-ink-faint);
}

/* ---------------------------------------------------------- Buttons */
#pbp-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--pbp-ui);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}

#pbp-page .btn--lg {
  padding: 22px 52px;
  font-size: 0.84rem;
}

#pbp-page .btn--block {
  width: 100%;
}

#pbp-page .btn--primary {
  background: transparent;
  border-color: rgba(251, 250, 247, 0.85);
  color: var(--pbp-white);
}

#pbp-page .btn--primary:hover {
  background: var(--pbp-white);
  border-color: var(--pbp-white);
  color: #0a0a0b;
  transform: translateY(-2px);
}

#pbp-page .btn--ghost {
  border-color: var(--pbp-line-strong);
  color: var(--pbp-white);
}

#pbp-page .btn--ghost:hover {
  border-color: var(--pbp-white);
  background: rgba(251, 250, 247, 0.08);
}

/* ---------------------------------------------------------- Hero */
#pbp-page .hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

#pbp-page .hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(1.02) contrast(1.02);
}

#pbp-page .hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      180deg,
      rgba(10, 10, 11, 0.62) 0%,
      rgba(10, 10, 11, 0.42) 38%,
      rgba(10, 10, 11, 0.86) 100%
    ),
    radial-gradient(
      120% 90% at 18% 30%,
      rgba(10, 10, 11, 0.2) 0%,
      rgba(10, 10, 11, 0.78) 100%
    );
}

#pbp-page .hero__inner {
  padding-block: clamp(120px, 18vh, 200px) 120px;
  max-width: 880px;
}

#pbp-page .hero__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 26px;
}

#pbp-page .hero__brand-mark {
  width: auto;
  height: clamp(34px, 5vw, 52px);
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.55));
}

#pbp-page .hero__brand-presents {
  font-family: var(--pbp-block);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--pbp-amber-hi);
  padding-left: 18px;
  border-left: 1px solid var(--pbp-line-strong);
}

#pbp-page .hero__title {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.4vw, 14px);
  color: var(--pbp-white);
}

#pbp-page .hero__title-lockup {
  width: clamp(300px, 50vw, 640px);
  height: auto;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.5));
}

#pbp-page .hero__lede {
  margin-top: 28px;
  max-width: 620px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: var(--pbp-ink);
}

#pbp-page .hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#pbp-page .hero__cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--pbp-ink-faint);
}

#pbp-page .hero__cue-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--pbp-amber), transparent);
}

/* ---------------------------------------------------------- The Standard */
#pbp-page .standard__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

#pbp-page .pillars {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

#pbp-page .pillar__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--pbp-line-strong);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--pbp-amber);
  margin-bottom: 14px;
}

#pbp-page .pillar h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
}

#pbp-page .pillar p {
  font-size: 0.95rem;
  color: var(--pbp-ink-soft);
  line-height: 1.6;
}

#pbp-page .standard__figure {
  margin: 0;
  border: 1px solid var(--pbp-line);
}

#pbp-page .standard__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

#pbp-page .standard__figure figcaption {
  padding: 14px 18px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pbp-ink-faint);
  border-top: 1px solid var(--pbp-line);
  background: var(--pbp-surface);
}

/* ---------------------------------------------------------- Featured Lineups */
#pbp-page .lineups__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 36px);
}

#pbp-page .lineup {
  display: flex;
  flex-direction: column;
  background: var(--pbp-surface);
  border: 1px solid var(--pbp-line);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

#pbp-page .lineup:hover {
  border-color: var(--pbp-line-strong);
  transform: translateY(-3px);
}

/* Video facade (click-to-play) */
#pbp-page .video {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--pbp-line);
  background: #000;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

#pbp-page .video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

#pbp-page .video:hover img {
  transform: scale(1.04);
  opacity: 0.88;
}

#pbp-page .video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(10, 10, 11, 0.45);
  border: 1.5px solid rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(3px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#pbp-page .video__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--pbp-white);
}

#pbp-page .video:hover .video__play {
  background: var(--pbp-amber);
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(230, 162, 60, 0.35);
}

#pbp-page .video:hover .video__play::after {
  border-left-color: #1a1206;
}

#pbp-page .video__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pbp-white);
  background: rgba(10, 10, 11, 0.55);
  border: 1px solid var(--pbp-line);
}

#pbp-page .video iframe,
#pbp-page .video video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

#pbp-page .video video {
  object-fit: contain;
  background: #000;
}

#pbp-page .lineup__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(22px, 2.4vw, 30px);
}

#pbp-page .lineup__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pbp-amber);
  margin-bottom: 12px;
}

#pbp-page .lineup__name {
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

#pbp-page .lineup__logo {
  display: block;
  width: auto;
  max-width: min(280px, 80%);
  height: auto;
  margin: 2px 0 4px;
}

#pbp-page .lineup__copy {
  color: var(--pbp-ink-soft);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

#pbp-page .lineup__cta {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------------------------------------------------------- Formats */
#pbp-page .formats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--pbp-line);
}

#pbp-page .format {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  align-items: baseline;
  padding: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--pbp-line);
  transition: background-color 0.2s ease;
}

#pbp-page .format:last-child {
  border-bottom: 0;
}

#pbp-page .format:hover {
  background: var(--pbp-surface);
}

#pbp-page .format__index {
  font-size: 0.82rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--pbp-amber);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

#pbp-page .format h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 8px;
}

#pbp-page .format p {
  color: var(--pbp-ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 720px;
}

/* ---------------------------------------------------------- Proof */
#pbp-page .proof__line {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--pbp-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: var(--pbp-white);
}

#pbp-page .proof__links {
  margin-top: clamp(32px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ---------------------------------------------------------- Inquiry */
#pbp-page .inquiry__cta {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

#pbp-page .inquiry__cta .eyebrow {
  justify-content: center;
}

#pbp-page .inquiry__pick {
  max-width: 420px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  text-align: left;
}

#pbp-page .inquiry__actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

#pbp-page .field {
  display: grid;
  gap: 8px;
}

#pbp-page .field--split {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#pbp-page .field--split > div {
  display: grid;
  gap: 8px;
}

#pbp-page .field label,
#pbp-page .field > div > label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pbp-ink-soft);
}

#pbp-page .field input,
#pbp-page .field select,
#pbp-page .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--pbp-bg);
  border: 1px solid var(--pbp-line-strong);
  border-radius: 4px;
  color: var(--pbp-ink);
  font-family: var(--pbp-ui);
  font-size: 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

#pbp-page .field input::placeholder,
#pbp-page .field textarea::placeholder {
  color: var(--pbp-ink-faint);
}

#pbp-page .field input:focus,
#pbp-page .field select:focus,
#pbp-page .field textarea:focus {
  outline: none;
  border-color: var(--pbp-amber);
  box-shadow: 0 0 0 3px rgba(230, 162, 60, 0.16);
}

#pbp-page .field textarea {
  resize: vertical;
  min-height: 84px;
}

/* ---------------------------------------------------------- Handoff appendix */
#pbp-page .handoff {
  border-top: 4px solid var(--pbp-amber);
  background: #060607;
  padding-block: var(--pbp-section-y);
}

#pbp-page .handoff .section__title {
  margin-top: 8px;
}

#pbp-page .handoff .section__lede {
  max-width: 760px;
}

#pbp-page .handoff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

#pbp-page .handoff__card {
  min-width: 0;
  padding: 24px;
  background: var(--pbp-surface);
  border: 1px solid var(--pbp-line);
}

#pbp-page .handoff__card h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--pbp-amber);
  margin-bottom: 16px;
}

#pbp-page .tokens {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

#pbp-page .tokens li {
  font-size: 0.84rem;
  color: var(--pbp-ink-soft);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

#pbp-page .tokens li:has(.swatch) {
  display: flex;
  align-items: center;
  gap: 10px;
}

#pbp-page .tokens li strong {
  color: var(--pbp-ink);
  font-weight: 600;
}

#pbp-page .swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid var(--pbp-line-strong);
  flex-shrink: 0;
}

#pbp-page .handoff code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.82em;
  color: var(--pbp-amber-hi);
}

#pbp-page .handoff__notes {
  margin-top: 48px;
}

#pbp-page .handoff__notes h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

#pbp-page .handoff__notes h4 {
  margin: 24px 0 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--pbp-amber);
}

#pbp-page .handoff__notes ul {
  margin: 0;
  padding-left: 20px;
  color: var(--pbp-ink-soft);
  line-height: 1.7;
  font-size: 0.92rem;
}

#pbp-page .handoff__notes pre {
  margin-top: 14px;
  padding: 16px;
  background: var(--pbp-bg);
  border: 1px solid var(--pbp-line);
  overflow-x: auto;
}

#pbp-page .handoff__notes pre code {
  color: var(--pbp-ink-soft);
  line-height: 1.6;
}

/* ---------------------------------------------------------- Reveal */
#pbp-page .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#pbp-page .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------------------------------------------------------- Responsive */
@media (max-width: 920px) {
  #pbp-page .standard__grid {
    grid-template-columns: 1fr;
  }
  #pbp-page .standard__figure {
    order: -1;
  }
}

@media (max-width: 760px) {
  #pbp-page .lineups__grid {
    grid-template-columns: 1fr;
  }
  #pbp-page .pillars {
    grid-template-columns: 1fr;
  }
  #pbp-page .hero__actions .btn {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  #pbp-page * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  #pbp-page .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================ Site header (mirrors patricksieben.com) */
#pbp-page .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}
#pbp-page .site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.92);
  border-bottom-color: var(--pbp-line);
  padding: 8px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#pbp-page .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
#pbp-page .site-header__brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}
#pbp-page .site-header__brand img {
  height: 40px;
  width: auto;
  transition: height 0.3s ease;
}
#pbp-page .site-header.is-scrolled .site-header__brand img { height: 32px; }
#pbp-page .site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
}
#pbp-page .site-nav a {
  font-family: var(--pbp-block);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pbp-ink-soft);
  white-space: nowrap;
  transition: color 0.18s ease;
}
#pbp-page .site-nav a:hover,
#pbp-page .site-nav a:focus-visible { color: var(--pbp-white); }
#pbp-page .site-nav__cta {
  border: 1px solid var(--pbp-line-strong);
  padding: 9px 16px;
  color: var(--pbp-white) !important;
  transition: background-color 0.18s ease, color 0.18s ease;
}
#pbp-page .site-nav__cta:hover {
  background: var(--pbp-white);
  color: #0a0a0b !important;
}
#pbp-page .site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(10, 10, 11, 0.45);
  border: 1px solid var(--pbp-line);
  border-radius: 6px;
  cursor: pointer;
}
#pbp-page .site-header__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--pbp-white);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
@media (max-width: 1024px) {
  #pbp-page .site-header__toggle { display: flex; }
  #pbp-page .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0;
    background: rgba(10, 10, 11, 0.97);
    border-bottom: 1px solid var(--pbp-line);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.32s ease, opacity 0.25s ease, visibility 0.32s ease;
  }
  #pbp-page .site-header.nav-open .site-nav {
    max-height: 82vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #pbp-page .site-nav a { padding: 13px var(--pbp-gutter); font-size: 13px; }
  #pbp-page .site-nav__cta { border: 0; color: var(--pbp-amber) !important; }
  #pbp-page .site-nav__cta:hover { background: transparent; color: var(--pbp-amber-hi) !important; }
  #pbp-page .site-header.nav-open .site-header__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #pbp-page .site-header.nav-open .site-header__toggle span:nth-child(2) { opacity: 0; }
  #pbp-page .site-header.nav-open .site-header__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================ Booking CTA band */
#pbp-page .booking-cta {
  text-align: center;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(230, 162, 60, 0.12), transparent 60%),
    var(--pbp-surface);
}
#pbp-page .booking-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#pbp-page .booking-cta .section__lede { margin-top: 6px; }
#pbp-page .booking-cta .btn { margin-top: 10px; }

/* ============================================================ Site footer (mirrors patricksieben.com) */
#pbp-page .site-footer {
  background: #060607;
  border-top: 1px solid var(--pbp-line);
}
#pbp-page .site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(36px, 5vw, 56px);
}
#pbp-page .site-footer__logo { height: 56px; width: auto; }
#pbp-page .site-footer__tag {
  margin-top: 16px;
  color: var(--pbp-ink-soft);
  font-size: 14px;
  letter-spacing: 0.02em;
}
#pbp-page .site-footer__social { display: flex; gap: 12px; margin-top: 22px; }
#pbp-page .site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--pbp-line);
  border-radius: 50%;
  color: var(--pbp-ink-soft);
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
#pbp-page .site-footer__social a:hover {
  color: var(--pbp-white);
  border-color: var(--pbp-line-strong);
  transform: translateY(-2px);
}
#pbp-page .site-footer__social svg { width: 18px; height: 18px; }
#pbp-page .site-footer__head {
  font-family: var(--pbp-block);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pbp-white);
  margin: 0 0 16px;
}
#pbp-page .site-footer__head--sp { margin-top: 26px; }
#pbp-page .site-footer__links,
#pbp-page .site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
#pbp-page .site-footer__links a,
#pbp-page .site-footer__contact a,
#pbp-page .site-footer__contact li {
  color: var(--pbp-ink-soft);
  font-size: 14px;
  transition: color 0.18s ease;
}
#pbp-page .site-footer__links a:hover,
#pbp-page .site-footer__contact a:hover { color: var(--pbp-white); }
#pbp-page .site-footer__hours { color: var(--pbp-ink-soft); font-size: 14px; }
#pbp-page .site-footer__cta { margin-top: 22px; }
#pbp-page .site-footer__bar {
  border-top: 1px solid var(--pbp-line);
  padding: 20px 0;
}
#pbp-page .site-footer__bar p {
  color: var(--pbp-ink-faint);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
@media (max-width: 860px) {
  #pbp-page .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
}
