:root {
  /* EarlyLarks platform */
  --bg: #ffffff;
  --topbar: #f4f8ff;
  --ink: #303048;
  --ink-soft: #6b6b7a;
  --muted: #8a8a8a;
  --line: #e8eaf0;
  --card: #f4f8ff;
  --cyan: #35dcea;
  --cyan-deep: #1fc8d8;
  --brand: #5aa8b4;
  --brand-dark: #2f7f88;
  --footer: #303048;
  --radius: 16px;
  --radius-sm: 10px;
  --shell: 1288px;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --header-offset: 16px;

  /* bbday product */
  --bbday-orange: #fd752e;
  --bbday-coral: #fd5636;
  --bbday-pink: #fd1b78;
  --bbday-gradient: linear-gradient(110deg, #fd752e 0%, #fd5636 48%, #fd1b78 100%);
  --bbday-ink: #1a1a24;
  --bbday-body: #4a4a58;
  --batch-pct: 0%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--bbday-coral);
  outline-offset: 3px;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

/* ========== EarlyLarks chrome ========== */
.topbar {
  background: var(--topbar);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 48px;
  font-size: 13px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar__item svg {
  width: 14px;
  height: 14px;
  color: var(--brand);
  flex-shrink: 0;
}

.topbar__item span {
  color: var(--muted);
}

.topbar__item strong {
  font-weight: 600;
  color: var(--ink);
}

.site-header {
  background: #fff;
  position: relative;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 104px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__logo {
  display: block;
  height: 80px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav .chev {
  font-size: 10px;
  opacity: 0.55;
}

.nav__auth {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__bars {
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.page {
  padding: 28px 0 0;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 36px;
  align-items: start;
}

.content-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ========== Shared bbday primitives ========== */
.bb-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--bbday-gradient);
  margin-bottom: 22px;
}

.bb-lead {
  margin: 0 0 18px;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--bbday-body);
  max-width: 42rem;
}

.bb-body {
  margin: 0 0 16px;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.6;
  color: var(--bbday-body);
  max-width: 40rem;
}

.bb-body-sm {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--bbday-body);
  max-width: 36rem;
}

.bb-micro {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.bb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: var(--bbday-gradient);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.bb-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.bb-btn--light {
  background: #fff;
  color: var(--bbday-ink);
}

.bb-btn--compact {
  padding: 12px 18px;
  font-size: 14px;
}

.bb-outline-card {
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--bbday-gradient) border-box;
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 28px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-inview,
.js-ready [data-reveal].is-inview {
  opacity: 1;
  transform: none;
}

/* ========== 1. Hero ========== */
.bb-hero {
  padding: 8px 0 64px;
}

.bb-video {
  margin-bottom: 36px;
}

.bb-video__frame {
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(253, 117, 46, 0.88), rgba(253, 27, 120, 0.88)),
    url("assets/bbday-kit.png") center / cover no-repeat;
}

.bb-video__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 6px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  font-size: 22px;
}

.bb-video__frame strong {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
}

.bb-video__frame small {
  font-size: 14px;
  opacity: 0.9;
}

.bb-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--bbday-ink);
  max-width: 12ch;
}

.bb-bundle-line {
  margin: 28px 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: var(--bbday-ink);
}

.bb-reassure {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.bb-hero__proof {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--bbday-body);
}

/* Shared lifestyle shots between sections */
.bb-placeholder {
  width: 100%;
  margin: 8px 0 40px;
  display: block;
}

.bb-placeholder img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.bb-placeholder--trust {
  margin: 28px 0 8px;
}

.bb-reassure li {
  font-size: 15px;
  font-weight: 600;
  color: var(--bbday-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bb-reassure li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bbday-gradient);
}

/* ========== 2. Problem ========== */
.bb-problem {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.bb-problem h2 {
  margin: 0 0 24px;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--bbday-ink);
}

.bb-problem h2 span {
  display: block;
}

.bb-problem__visual {
  margin: 40px 0 0;
  position: relative;
}

.bb-problem__visual img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 28px;
}

.bb-problem__visual figcaption {
  margin-top: 22px;
  max-width: 28rem;
}

.bb-problem__visual strong {
  display: block;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--bbday-ink);
  margin-bottom: 8px;
}

.bb-problem__visual span {
  font-size: 18px;
  color: var(--bbday-body);
}

/* ========== 3. Product reveal ========== */
.bb-reveal {
  margin: 24px 0;
  padding: 56px 40px 48px;
  border-radius: 28px;
  color: #fff;
  background: var(--bbday-gradient);
}

.bb-reveal h2 {
  margin: 0 0 10px;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.bb-reveal__sub {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.bb-reveal__copy {
  margin: 0 0 28px;
  font-size: 19px;
  max-width: 34rem;
  opacity: 0.95;
}

.bb-reveal__media {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.12);
}

.bb-reveal__media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.bb-reveal__words {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

/* ========== 4. Steps ========== */
.bb-steps {
  padding: 72px 0;
}

.bb-steps > h2 {
  margin: 0 0 48px;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--bbday-ink);
  max-width: 14ch;
}

.bb-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 64px;
}

.bb-step--flip .bb-step__copy {
  order: 2;
}

.bb-step--flip .bb-phone,
.bb-step--flip .bb-step__print-grid,
.bb-step--flip .bb-step__print {
  order: 1;
}

.bb-step__num {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--bbday-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.bb-step h3 {
  margin: 0 0 14px;
  font-size: clamp(36px, 4vw, 48px);
  letter-spacing: -0.04em;
  color: var(--bbday-ink);
}

.bb-step p {
  margin: 0 0 12px;
  font-size: 19px;
  color: var(--bbday-body);
  max-width: 28rem;
}

.bb-step__print {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
}

.bb-step__print img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.bb-step__print-grid {
  display: grid;
  gap: 14px;
}

.bb-step__print-grid figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
}

.bb-step__print-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.bb-steps__end {
  margin: 8px 0 0;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--bbday-ink);
}

/* Phone frames */
.bb-phone {
  width: min(100%, 280px);
  margin-inline: auto;
  padding: 12px;
  border-radius: 32px;
  background: #111118;
  box-shadow: 0 24px 50px rgba(26, 26, 36, 0.18);
}

.bb-phone--lg {
  width: min(100%, 240px);
}

.bb-app__card--stroke .bb-phone {
  background:
    linear-gradient(#111118, #111118) padding-box,
    var(--bbday-gradient) border-box;
  border: 2px solid transparent;
}

.bb-phone__screen {
  aspect-ratio: 9 / 19;
  border-radius: 24px;
  overflow: hidden;
  background: #f4f4f7;
}

.bb-phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.bb-phone__screen--placeholder {
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  padding: 20px;
  color: #fff;
  background: linear-gradient(160deg, #2a2a36, #15151c);
}

.bb-phone__screen--placeholder span {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.bb-phone__screen--placeholder small {
  font-size: 12px;
  opacity: 0.7;
}

/* ========== 5. App ========== */
.bb-app {
  padding: 56px 40px 64px;
  background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
  border-radius: 28px;
}

.bb-app h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.5vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--bbday-ink);
}

.bb-app h2 span {
  display: block;
}

.bb-app__showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
  align-items: start;
}

.bb-app__card {
  grid-column: span 1;
  margin: 0;
  text-align: center;
}

.bb-app__card--hero {
  grid-column: span 1;
}

.bb-app__card .bb-phone {
  width: min(100%, 220px);
  margin-inline: auto;
}

.bb-phone--xl,
.bb-phone--lg {
  width: min(100%, 220px);
}

.bb-app__card figcaption {
  margin-top: 14px;
  display: grid;
  gap: 4px;
}

.bb-app__card figcaption strong {
  font-size: 16px;
  color: var(--bbday-ink);
}

.bb-app__card figcaption span {
  font-size: 14px;
  font-weight: 500;
  color: var(--bbday-body);
}

/* ========== 6. Why ========== */
.bb-why {
  padding: 72px 0;
}

.bb-why h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.5vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--bbday-ink);
}

.bb-why h2 span {
  display: block;
}

.bb-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.bb-why__grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--bbday-ink);
}

.bb-why__grid p {
  margin: 0;
  font-size: 16px;
  color: var(--bbday-body);
}

/* ========== 7. Print ========== */
.bb-print {
  padding: 40px 0 72px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.bb-print h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--bbday-ink);
}

.bb-print h2 span {
  display: block;
}

.bb-print__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.bb-print__media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.bb-print__note {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ========== 8. Bundle ========== */
.bb-bundle {
  padding: 40px 0 72px;
}

.bb-bundle > h2 {
  margin: 0 0 28px;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.04em;
  color: var(--bbday-ink);
}

.bb-bundle__card {
  display: grid;
  gap: 24px;
}

.bb-bundle__visual {
  border-radius: 20px;
  overflow: hidden;
}

.bb-bundle__visual img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.bb-bundle__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.bb-bundle__list li {
  font-size: 19px;
  font-weight: 600;
  color: var(--bbday-ink);
  padding-left: 28px;
  position: relative;
}

.bb-bundle__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bbday-gradient);
}

.bb-bundle__rolls {
  margin: 4px 0 18px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--bbday-body);
}

.bb-bundle__highlight {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.bb-bundle__pay {
  margin: 0 0 6px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bbday-ink);
}

.bb-bundle__highlight p:last-child {
  margin: 0;
  color: var(--bbday-body);
  font-size: 16px;
}

/* ========== 9. Kitchens ========== */
.bb-kitchens {
  padding: 40px 0 72px;
}

.bb-kitchens h2 {
  margin: 0 0 28px;
  font-size: clamp(34px, 4.5vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--bbday-ink);
  max-width: 16ch;
}

.bb-kitchens__visual {
  margin: 0 0 28px;
}

.bb-kitchens__visual img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 28px;
}

.bb-chips {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bb-chips li {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bbday-ink);
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--bbday-gradient) border-box;
  border: 1.5px solid transparent;
}

/* ========== 10. Trust ========== */
.bb-trust {
  padding: 48px 36px;
  border-radius: 28px;
  background: var(--card);
  margin-bottom: 48px;
}

.bb-trust h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.5vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--bbday-ink);
}

.bb-trust h2 span {
  display: block;
}

.bb-trust__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.bb-trust__points article {
  padding: 20px;
  border-radius: 18px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--bbday-gradient) border-box;
  border: 2px solid transparent;
}

.bb-trust__points h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--bbday-ink);
}

.bb-trust__points p {
  margin: 0;
  font-size: 15px;
  color: var(--bbday-body);
}

.bb-batch-card {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e6e9f0;
  box-shadow: 0 10px 28px rgba(26, 26, 36, 0.04);
}

.bb-batch-card__label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-dark);
}

.bb-batch-card__count {
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bbday-ink);
}

.bb-batch-card__track,
.progress-track {
  height: 14px;
  border-radius: 999px;
  background: #e4e7ee;
  overflow: hidden;
  margin-bottom: 18px;
}

.bb-batch-card__track > span,
.progress-track > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan-deep), var(--cyan));
  border-radius: inherit;
  transition: width 0.9s ease;
}

.bb-batch-card__track.is-visible > span,
.progress-track.is-visible > span {
  width: var(--batch-pct);
}

.bb-batch-card__offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 18px;
}

.bb-batch-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bbday-gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.bb-batch-card__retail {
  font-size: 14px;
  font-weight: 600;
  color: var(--bbday-body);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal],
  .bb-batch-card__track > span,
  .progress-track > span,
  .mobile-buybar {
    transition: none !important;
  }
}

/* ========== 11. Offer ========== */
.bb-offer {
  padding: 56px 40px;
  border-radius: 28px;
  color: #fff;
  background: var(--bbday-gradient);
  margin-bottom: 64px;
}

.bb-offer__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.bb-offer h2 {
  margin: 0 0 10px;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.bb-offer__retail {
  margin: 0 0 24px;
  font-size: 18px;
  opacity: 0.92;
}

.bb-offer__list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
}

.bb-offer__list li {
  padding-left: 22px;
  position: relative;
}

.bb-offer__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

.bb-offer__note {
  margin: 16px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

/* ========== 12. FAQ ========== */
.bb-faq {
  padding: 24px 0 72px;
}

.bb-faq > h2 {
  margin: 0 0 28px;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.04em;
  color: var(--bbday-ink);
}

.bb-faq__list {
  display: grid;
  gap: 10px;
}

.bb-faq__item {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.bb-faq__trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--bbday-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.bb-faq__trigger::after {
  content: "+";
  font-weight: 400;
  font-size: 22px;
  color: var(--muted);
}

.bb-faq__item.is-open .bb-faq__trigger::after {
  content: "–";
}

.bb-faq__panel {
  display: none;
  padding: 0 20px 18px;
}

.bb-faq__item.is-open .bb-faq__panel {
  display: block;
}

.bb-faq__panel p {
  margin: 0;
  font-size: 16px;
  color: var(--bbday-body);
  max-width: 42rem;
  line-height: 1.6;
}

/* ========== Comments / reviews (EarlyLarks) ========== */
.el-comments {
  padding: 24px 0 56px;
}

.el-comments__title {
  margin: 0 0 28px;
  font-size: clamp(28px, 3.5vw, 34px);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.el-comments__list {
  display: grid;
  gap: 28px;
  margin-bottom: 28px;
}

.el-comment {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}

.el-comment__avatar {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--avatar-bg, #d7dbe5);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.el-comment__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.el-comment__photo:not([hidden]) + .el-comment__letter {
  display: none;
}

.el-comment__letter {
  font-size: 22px;
  font-weight: 700;
  color: rgba(48, 48, 72, 0.72);
  line-height: 1;
  user-select: none;
}

.el-comment__name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.el-comment__meta {
  margin: 4px 0 12px;
  font-size: 13px;
  color: #9aa0ae;
}

.el-comment__country {
  white-space: nowrap;
}

.el-comment__text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: #8a90a0;
  font-style: italic;
  max-width: 42rem;
}

.el-comment__reply {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.el-comments__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  margin-bottom: 36px;
  border: 1px solid #e4eaf3;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.el-comments__more:hover {
  background: #f4f8ff;
  border-color: #d5dde8;
}

.el-comments__more[hidden] {
  display: none;
}

.el-review {
  padding: 36px;
  border-radius: 22px;
  background: #f4f8ff;
  border: 1px solid #e4eaf3;
}

.el-review h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.5vw, 34px);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.el-review__rating {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.el-review__stars {
  display: flex;
  gap: 4px;
}

.el-review__star {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 20px;
  color: #b7b7c2;
  cursor: pointer;
  line-height: 1;
}

.el-review__star.is-active,
.el-review__star.is-hover {
  color: #f5b942;
}

.el-review__hint {
  margin: 0 0 18px;
  font-size: 13px;
  color: #9aa0ae;
}

.el-review__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.el-review input,
.el-review textarea {
  width: 100%;
  border: 1px solid #e4e7ee;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
}

.el-review input::placeholder,
.el-review textarea::placeholder {
  color: #9a9aa8;
}

.el-review textarea {
  min-height: 140px;
  resize: vertical;
  margin-bottom: 14px;
}

.el-review__save {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #6b7185;
  margin-bottom: 18px;
}

.el-review__save input {
  width: auto;
  margin-top: 3px;
}

.el-review__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 0;
  border-radius: 10px;
  background: var(--cyan);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.el-review__submit:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

/* ========== Final close ========== */
.bb-close {
  padding: 48px 0 80px;
  text-align: left;
}

.bb-close__visual {
  margin: 0 0 32px;
}

.bb-close__visual img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 28px;
}

.bb-close h2 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--bbday-ink);
}

.bb-close h2 span {
  display: inline;
}

.bb-close h2 span:not(:last-child)::after {
  content: " ";
}

.bb-close__price {
  margin: 0 0 22px;
  font-size: 18px;
  color: var(--bbday-body);
}

.bb-close__batch {
  margin: 22px 0 0;
  font-size: 14px;
  color: var(--muted);
}

/* ========== EarlyLarks funding sidebar (PNG-matched) ========== */
.sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: var(--header-offset);
  align-self: start;
}

.el-fund {
  background: #f4f8ff;
  border: 1px solid #e4eaf3;
  border-radius: 16px;
  padding: 24px 22px 22px;
}

.el-fund__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #9aa0ae;
  margin-bottom: 14px;
}

.el-fund__meta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.el-fund__title {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}

.el-fund__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.el-fund__stat {
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 12px;
  padding: 14px 8px 12px;
  text-align: center;
}

.el-fund__stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
  word-break: break-word;
}

.el-fund__stat span {
  font-size: 12px;
  color: #9aa0ae;
}

.el-fund__progress {
  margin-bottom: 20px;
}

.el-fund__progress-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7185;
}

.el-fund__bar {
  height: 8px;
  border-radius: 999px;
  background: #e4e7ee;
  overflow: hidden;
}

.el-fund__bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--cyan);
  border-radius: inherit;
  transition: width 0.9s ease;
}

.el-fund__bar.is-visible > span {
  width: var(--batch-pct);
}

.el-fund__tier {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.el-fund__prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.el-fund__price {
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 12px;
  padding: 14px 10px 12px;
  text-align: center;
}

.el-fund__price strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.el-fund__price--current {
  color: var(--cyan-deep);
}

.el-fund__price--future {
  color: var(--ink);
}

.el-fund__price span {
  font-size: 12px;
  color: #9aa0ae;
}

.el-fund__includes-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.el-fund__includes {
  margin: 0 0 16px;
  padding-left: 18px;
  color: #5c6378;
  font-size: 13px;
  line-height: 1.35;
  display: grid;
  gap: 7px;
}

.el-fund__trust {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e6e9f0;
  margin-bottom: 16px;
}

.el-fund__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cyan);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}

.el-fund__trust strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 4px;
}

.el-fund__trust p {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.45;
  color: #6b7185;
}

.el-fund__trust-note {
  margin-bottom: 4px !important;
  font-size: 11px !important;
  color: #8a90a0 !important;
}

.el-fund__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 14px 18px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: var(--cyan);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.el-fund__cta:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

.el-fund__cta span {
  font-size: 18px;
  line-height: 1;
}

.el-fund__founder {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0 0 16px;
  border-bottom: 1px solid #e2e6ef;
  border-top: 0;
}

.el-fund__founder img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #d8dbe3;
}

.el-fund__quote {
  margin: 0 0 4px;
  font-size: 13px;
  font-style: italic;
  color: #9aa0ae;
  line-height: 1.35;
}

.el-fund__founder strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.2;
}

.el-fund__founder span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #9aa0ae;
}

.related-card {
  background: var(--card);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e4eaf3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 10px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: var(--cyan);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

.btn--full {
  width: 100%;
}

.related-below {
  margin-top: 48px;
}

.related-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
}

.related-list {
  display: grid;
  gap: 16px;
}

.related-list--row {
  grid-template-columns: repeat(3, 1fr);
}

.related-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

.related-thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: #d0d0d8;
  overflow: hidden;
}

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

.related-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.related-item strong {
  font-size: 14px;
  line-height: 1.35;
}

/* ========== Platform CTA + footer ========== */
.funding-cta-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: -216px;
  margin-top: 48px;
}

.funding-cta-wrap--flush {
  margin-top: 0;
}

.funding-cta {
  height: 430px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 40px rgba(48, 48, 72, 0.18);
  background: #7fbdbd;
}

.funding-cta > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.funding-cta__copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
  padding: 0 8%;
}

.funding-cta__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.funding-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 10px;
  background: #35e0ea;
  color: #303048;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.funding-cta__btn:hover {
  filter: brightness(1.03);
}

.site-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.78);
  padding: 260px 0 0;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 28px;
}

.footer-brand__logo {
  display: block;
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.footer-top p {
  margin: 0;
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.6;
}

.footer-top strong {
  color: #fff;
}

.footer-aside {
  display: flex;
  justify-content: flex-end;
  gap: 64px;
}

.footer-aside h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
}

.footer-aside .email-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.footer-aside a {
  color: #fff;
  font-size: 14px;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.social a svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-rule {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.to-top {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--cyan);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0;
  font-size: 13px;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ========== Mobile sticky CTA ========== */
.mobile-buybar {
  display: none;
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .page-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    order: 2;
  }

  .content-column {
    order: 1;
  }

  .el-fund__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .el-fund__prices {
    grid-template-columns: 1fr 1fr;
  }

  .bb-step,
  .bb-step--flip,
  .bb-print,
  .bb-why__grid,
  .bb-trust__points,
  .related-list--row {
    grid-template-columns: 1fr;
  }

  .bb-step--flip .bb-step__copy,
  .bb-step--flip .bb-phone,
  .bb-step--flip .bb-step__print-grid,
  .bb-step--flip .bb-step__print {
    order: initial;
  }

  .bb-app__showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    overflow: visible;
  }

  .bb-app__card,
  .bb-app__card--hero {
    flex: none;
    grid-column: auto;
  }

  .bb-app__card .bb-phone {
    width: min(100%, 200px);
  }
}

@media (max-width: 768px) {
  .shell {
    width: min(var(--shell), calc(100% - 32px));
  }

  /* 1. Hide utility topbar */
  .topbar {
    display: none;
  }

  /* 2. Compact one-row header + hamburger */
  .site-header {
    position: relative;
    z-index: 50;
    border-bottom: 1px solid var(--line);
  }

  .site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 60px;
    padding-block: 8px;
    position: static;
  }

  .brand__logo {
    height: 36px;
  }

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

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 12px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 28px rgba(26, 26, 36, 0.08);
    z-index: 60;
  }

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

  .nav a {
    padding: 14px 16px;
    font-size: 15px;
    border-top: 1px solid #f0f2f6;
  }

  .nav .chev {
    display: none;
  }

  .nav__auth {
    display: flex;
    font-weight: 600;
    color: var(--brand-dark);
  }

  .page {
    padding-top: 16px;
  }

  /* Full-width mobile content feel */
  .page-grid {
    gap: 28px;
  }

  .el-fund,
  .bb-reveal,
  .bb-offer,
  .bb-trust,
  .bb-app {
    border-radius: 20px;
  }

  /* 3–6. Hero mobile: tighter + reordered */
  .bb-hero {
    display: flex;
    flex-direction: column;
    padding: 0 0 36px;
  }

  .bb-pill {
    order: 1;
    margin-bottom: 14px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .bb-hero h1 {
    order: 2;
    margin: 0 0 12px;
    font-size: clamp(32px, 8.8vw, 36px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    max-width: 11.5ch;
  }

  .bb-hero > .bb-lead {
    order: 3;
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .bb-video {
    order: 4;
    margin: 0 0 22px;
  }

  .bb-video__frame {
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  .bb-video__play {
    width: 52px;
    height: 52px;
    font-size: 18px;
  }

  .bb-video__frame strong {
    font-size: 18px;
  }

  .bb-video__frame small {
    font-size: 12px;
  }

  .bb-bundle-line {
    order: 5;
    margin: 0 0 12px;
    font-size: 17px;
  }

  .bb-reassure {
    order: 6;
    margin: 0 0 12px;
    gap: 8px 14px;
  }

  .bb-reassure li {
    font-size: 14px;
  }

  .bb-hero__proof {
    order: 7;
    margin: 0 0 20px;
    font-size: 13px;
  }

  .bb-hero__cta {
    order: 8;
  }

  .bb-hero__cta .bb-btn {
    width: 100%;
    justify-content: center;
  }

  /* Section spacing + type */
  .bb-reveal,
  .bb-offer,
  .bb-trust,
  .bb-app {
    padding: 28px 18px;
  }

  .bb-problem,
  .bb-steps,
  .bb-app,
  .bb-why,
  .bb-print,
  .bb-bundle,
  .bb-kitchens,
  .bb-faq,
  .bb-close,
  .el-comments {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .bb-body,
  .bb-lead,
  .bb-reveal__copy,
  .el-comment__text {
    font-size: 16px;
  }

  .bb-body-sm,
  .bb-micro,
  .bb-hero__proof {
    font-size: 13px;
  }

  .footer-top,
  .footer-aside {
    flex-direction: column;
    align-items: flex-start;
  }

  .el-review__grid {
    grid-template-columns: 1fr;
  }

  .el-review {
    padding: 24px;
  }

  .funding-cta-wrap {
    margin-bottom: -140px;
  }

  .funding-cta {
    height: 320px;
  }

  .footer-brand {
    margin-bottom: 22px;
  }

  .footer-brand__logo {
    height: 44px;
  }

  .site-footer {
    padding-top: 180px;
  }

  /* 7–18. Sticky commerce bar */
  .mobile-buybar {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    max-height: 90px;
    padding: 7px 14px calc(7px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(26, 26, 36, 0.08);
    transition: transform 0.25s ease;
  }

  .mobile-buybar.is-hidden {
    transform: translateY(110%);
    pointer-events: none;
  }

  .mobile-buybar__status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 14px;
  }

  .mobile-buybar__claimed,
  .mobile-buybar__days {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink-soft);
    white-space: nowrap;
  }

  .mobile-buybar__days-short {
    display: none;
  }

  .mobile-buybar__track {
    height: 3px;
    border-radius: 999px;
    background: #e4e7ee;
    overflow: hidden;
    margin: 0;
  }

  .mobile-buybar__track > span {
    display: block;
    height: 100%;
    width: var(--batch-pct, 0%);
    background: linear-gradient(90deg, var(--cyan-deep), var(--cyan));
    border-radius: inherit;
    transition: width 0.6s ease;
  }

  .mobile-buybar.is-batch-fallback .mobile-buybar__track {
    display: none;
  }

  .mobile-buybar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-buybar__price {
    flex: 0 1 38%;
    min-width: 0;
    line-height: 1.1;
  }

  .mobile-buybar__price strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bbday-ink);
  }

  .mobile-buybar__price span {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-soft);
  }

  .mobile-buybar__cta {
    flex: 1 1 58%;
    min-height: 46px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    text-align: center;
  }

  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  .content-column,
  .sidebar,
  .related-below {
    padding-bottom: 12px;
  }

  .bb-placeholder {
    margin: 4px 0 32px;
  }

  .bb-placeholder img {
    max-height: 360px;
  }

  .bb-batch-card {
    padding: 22px;
  }

  .bb-batch-card__count {
    font-size: 24px;
  }
}

@media (max-width: 360px) {
  .shell {
    width: min(var(--shell), calc(100% - 28px));
  }

  .bb-hero h1 {
    font-size: 28px;
    max-width: 12ch;
  }

  .mobile-buybar__days-full {
    display: none;
  }

  .mobile-buybar__days-short {
    display: inline;
  }

  .mobile-buybar__price strong {
    font-size: 20px;
  }

  .mobile-buybar__cta {
    min-height: 44px;
    padding: 11px 12px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-buybar__track > span,
  .nav-toggle__bars,
  .nav-toggle__bars::before,
  .nav-toggle__bars::after {
    transition: none !important;
  }
}

/* Guest reserve form (PHP) */
.el-order { margin-top: 1rem; display: grid; gap: 0.75rem; }
.el-order__field { display: grid; gap: 0.35rem; font-size: 0.85rem; }
.el-order__field span { font-weight: 600; color: #1a2b3c; }
.el-order__field input {
  width: 100%; border: 1px solid #c9d5e0; border-radius: 10px;
  padding: 0.7rem 0.85rem; font: inherit; background: #fff;
}
.el-order .el-fund__cta { width: 100%; border: 0; cursor: pointer; text-align: center; }
.el-order__note { margin: 0; font-size: 0.85rem; }
.el-order__note.is-ok { color: #1b7a3d; }
.el-order__note.is-err { color: #b42318; }
