
/* ===================================================================
   RENTALS PAGE — LIGHT THEME
   Wrapped in `.rentals-light` so the page can sit inside the
   normally-dark site without leaking. CTA + footer at the bottom keep
   their dark theming for visual rhythm.
   =================================================================== */

.rentals-light {
  background: var(--vf-bg);
  color: var(--vf-ink);
}

/* Headings & body resets within light context */
.rentals-light h1,
.rentals-light h2,
.rentals-light h3,
.rentals-light h4 { color: var(--vf-ink); }
.rentals-light em { color: var(--vf-blue); font-style: italic; font-weight: 500; }

/* Eyebrow override */
.rentals-light .eyebrow {
  color: var(--vf-ink-2);
}
.rentals-light .eyebrow .idx {
  color: var(--vf-blue);
  background: var(--vf-blue-100);
  border-color: rgba(9,94,223,0.15);
}

/* SectionHead title em */
.rentals-light .section-head h2 em { color: var(--vf-blue); }

/* Hero */
.rentals-hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--vf-bg) 0%, white 100%);
}
.rentals-hero-blob {
  position: absolute;
  width: 1100px; height: 1100px;
  border-radius: 50%;
  filter: blur(140px);
  background: radial-gradient(circle, rgba(9,94,223,0.18) 0%, transparent 65%);
  right: -300px; top: -400px;
  pointer-events: none;
}
.rentals-hero h1 {
  font-size: clamp(64px, 9vw, 140px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-top: 24px;
  text-wrap: balance;
  max-width: 1100px;
  color: var(--vf-ink);
}
.rentals-hero h1 em {
  font-style: italic;
  color: var(--vf-blue);
  font-weight: 500;
}
.rentals-hero .lead {
  font-size: 19px;
  color: var(--vf-ink-2);
  margin-top: 28px;
  max-width: 620px;
  line-height: 1.5;
}
.rentals-hero-stats {
  display: flex; gap: 48px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--vf-line);
  max-width: 600px;
}
.rentals-hero-stats .stat .num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--vf-blue);
  line-height: 1;
}
.rentals-hero-stats .stat .lbl {
  font-size: 12px;
  color: var(--vf-ink-3);
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

/* Slim per-page hero — used on every rentals sub-page (Equipment / FAQs /
   Contact / Open Account). Smaller than the landing hero so the page-
   specific content gets the visual weight. */
.rentals-subhero {
  padding: 140px 0 48px;
  position: relative;
}
.rentals-subhero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--vf-ink);
  text-wrap: balance;
  max-width: 18ch;
  margin: 12px 0 0;
}
.rentals-subhero h1 em {
  color: var(--vf-blue);
  font-style: italic;
  font-weight: 500;
}
.rentals-subhero .lead {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--vf-ink-2);
  max-width: 60ch;
}
.rentals-subhero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vf-ink-3);
}
.rentals-subhero .eyebrow .idx {
  color: var(--vf-blue);
  background: var(--vf-blue-100, rgba(74, 124, 255, 0.16));
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 700;
}
@media (max-width: 760px) {
  .rentals-subhero { padding: 110px 0 32px; }
  .rentals-subhero h1 { font-size: clamp(36px, 9vw, 56px); }
  .rentals-subhero .lead { font-size: 15.5px; }
}

/* Landing cards — four big tap-targets that link out to the sub-pages. */
.rentals-landing-cards {
  padding: 24px 0 96px;
}
.rentals-landing-cards .rl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.rentals-landing-cards .rl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  border: 1px solid var(--vf-line);
  border-radius: 24px;
  padding: 32px 32px 36px;
  transition: transform 240ms var(--ease-out, ease), border-color 240ms var(--ease-out, ease), box-shadow 240ms var(--ease-out, ease);
}
.rentals-landing-cards .rl-card:hover {
  transform: translateY(-2px);
  border-color: var(--vf-blue);
  box-shadow: 0 12px 32px rgba(10, 15, 26, 0.06);
}
.rentals-landing-cards .rl-card-label {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--vf-ink);
  line-height: 1.05;
}
.rentals-landing-cards .rl-card-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--vf-ink-2);
  max-width: 40ch;
}
.rentals-landing-cards .rl-card-arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--vf-bg, #F7F8FA);
  border: 1px solid var(--vf-line);
  color: var(--vf-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 220ms var(--ease-out, ease), color 220ms var(--ease-out, ease), border-color 220ms var(--ease-out, ease);
}
.rentals-landing-cards .rl-card:hover .rl-card-arrow {
  background: var(--vf-blue);
  border-color: var(--vf-blue);
  color: white;
}
@media (max-width: 760px) {
  .rentals-landing-cards .rl-grid { grid-template-columns: 1fr; }
  .rentals-landing-cards .rl-card { padding: 24px 22px 28px; }
}

/* Reviews — Google reviews surfaced on the rentals home page. Editorial
   header (eyebrow + heading + summary stars) above a 3-up grid of
   clickable review cards, with a "see all on Google" CTA below. Cards
   are <a> elements so the whole tile is clickable. */
.rentals-reviews {
  padding: 120px 0;
  background: white;
  border-top: 1px solid var(--vf-line);
  border-bottom: 1px solid var(--vf-line);
}
.rentals-reviews .rr-head {
  margin-bottom: 56px;
}
.rentals-reviews .rr-head h2 {
  font-size: clamp(40px, 5.2vw, 80px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  text-wrap: balance;
  margin-top: 14px;
  color: var(--vf-ink);
  max-width: 14ch;
}
.rentals-reviews .rr-head h2 em {
  font-style: italic;
  color: var(--vf-blue);
  font-weight: 500;
}
.rr-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--vf-ink-2);
}
.rr-summary-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--vf-ink);
  font-family: var(--font-display, inherit);
  letter-spacing: -0.01em;
}
.rr-summary-source {
  text-transform: uppercase;
}
.rr-stars-row {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: rgba(10, 15, 26, 0.18);
}
.rr-star.filled { color: #FFB800; }
.rr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rr-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 28px 32px;
  background: var(--vf-bg, #F7F8FA);
  border: 1px solid var(--vf-line);
  border-radius: 20px;
  transition: transform 240ms var(--ease-out, ease), border-color 240ms var(--ease-out, ease), box-shadow 240ms var(--ease-out, ease);
}
.rr-card:hover {
  transform: translateY(-2px);
  border-color: var(--vf-blue);
  box-shadow: 0 12px 32px rgba(10, 15, 26, 0.06);
}
.rr-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--vf-ink-2);
  flex: 1;
  text-wrap: pretty;
}
.rr-author-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.rr-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--vf-ink);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.rr-date {
  font-size: 12px;
  color: var(--vf-ink-3);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.rr-cta {
  margin-top: 36px;
  text-align: center;
}
.rr-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: transparent;
  border: 1px solid var(--vf-line-strong, rgba(10, 15, 26, 0.14));
  border-radius: 999px;
  color: var(--vf-ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 220ms var(--ease-out, ease);
}
.rr-cta-link:hover {
  background: var(--vf-ink);
  color: white;
  border-color: var(--vf-ink);
}
@media (max-width: 900px) {
  .rentals-reviews { padding: 80px 0; }
  .rr-grid { grid-template-columns: 1fr; }
  .rentals-reviews .rr-head h2 { max-width: 18ch; }
}

/* Studio hours block — used on the rentals contact page next to the
   contact info column. */
.rentals-hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--vf-line);
}
.rentals-hours h3 {
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vf-ink-3);
  font-weight: 700;
  margin-bottom: 6px;
}
.rentals-hours-sub {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--vf-ink-3);
  margin: 0 0 14px;
  max-width: 44ch;
}
.rentals-hours dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 24px;
  row-gap: 6px;
  margin: 0;
}
.rentals-hours dl > div {
  display: contents;
}
.rentals-hours dt {
  font-size: 14px;
  font-weight: 600;
  color: var(--vf-ink);
}
.rentals-hours dd {
  font-size: 14px;
  color: var(--vf-ink-2);
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.rentals-hours-note {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--vf-ink-3);
  max-width: 44ch;
}

/* Rentals contact page — the slim subhero already provides the page-
   level intro, so the .contact section's stock 140px top padding plus
   the meta-block's 48px margin-top stack into a 200px+ dead zone
   between the hero copy and the first contact row. Tighten both. */
.contact.rentals-contact { padding-top: 32px; }
.contact.rentals-contact .meta-block { margin-top: 0; }

/* Categories grid */
.rentals-categories { padding: 96px 0; background: white; }
.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.kit-card {
  background: var(--vf-bg);
  border: 1px solid var(--vf-line);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms var(--ease-out), border-color 220ms, box-shadow 220ms;
}
.kit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(9,94,223,0.3);
  box-shadow: 0 24px 48px rgba(10,15,26,0.06);
}
.kit-card.is-featured {
  border-color: rgba(9,94,223,0.3);
  background: linear-gradient(180deg, var(--vf-blue-100) 0%, white 60%);
}
.kit-card-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--vf-blue-900);
  position: relative;
}
.kit-card-corner {
  position: absolute;
  left: 16px; top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: white;
  background: rgba(7,8,12,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 4px 8px;
  border-radius: 999px;
}
.kit-featured-tag {
  position: absolute;
  right: 16px; top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: var(--vf-blue);
  padding: 5px 10px;
  border-radius: 999px;
}
.kit-card-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.kit-card-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  margin-bottom: 10px;
}
.kit-card-head h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--vf-ink);
}
.kit-card-rate {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--vf-blue);
  white-space: nowrap;
}
.kit-card-body p {
  font-size: 14px;
  color: var(--vf-ink-2);
  line-height: 1.55;
  margin-bottom: 16px;
}
.kit-card-body ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--vf-line);
  margin-top: auto;
}
.kit-card-body ul li {
  font-size: 13px;
  color: var(--vf-ink-2);
  display: flex; align-items: center; gap: 10px;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px dashed var(--vf-line);
}
.kit-card-body ul li:first-child { border-top: none; }
.kit-item-label { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.kit-item-cta { flex: 0 0 auto; }
.kit-item-cta:empty::before {
  content: 'Reserve \\2192';
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vf-ink-3, rgba(0,0,0,0.45));
  padding: 4px 8px;
  border: 1px solid var(--vf-line);
  border-radius: 999px;
}
.kit-card-body ul li .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--vf-blue);
  flex-shrink: 0;
}

/* Booqable widget frame */
.rentals-shop {
  padding: 96px 0;
  background: var(--vf-bg);
}
.booqable-frame {
  margin-top: 32px;
  background: white;
  border: 1px solid var(--vf-line);
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 1px 0 rgba(10,15,26,0.04), 0 24px 48px rgba(10,15,26,0.04);
}
.booqable-frame-head {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.bf-step { display: flex; align-items: center; gap: 14px; }
.bf-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--vf-blue);
  background: var(--vf-blue-100);
  border: 1px solid rgba(9,94,223,0.2);
  padding: 6px 10px;
  border-radius: 999px;
}
.bf-step-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--vf-ink);
  letter-spacing: -0.01em;
}
.booqable-datepicker { min-height: 60px; flex: 1; }
.booqable-product-list {
  margin-top: 12px;
  padding: 8px 0;
  min-height: 200px;
}
.booqable-frame-spotlight {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--vf-line);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
.bf-spot-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vf-ink-3);
  margin-bottom: 12px;
}
.bf-spot-meta h4 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--vf-ink);
  margin-bottom: 12px;
}
.bf-spot-meta p {
  font-size: 15px;
  color: var(--vf-ink-2);
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 460px;
}
.bf-spot-product {
  background: var(--vf-bg);
  border: 1px solid var(--vf-line);
  border-radius: 20px;
  padding: 20px;
  min-height: 160px;
}
.booqable-fallback {
  margin-top: 24px;
  font-size: 13px;
  color: var(--vf-ink-3);
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.booqable-fallback a { color: var(--vf-blue); text-decoration: underline; text-underline-offset: 3px; }

/* Prominent error variant — used when the Booqable script fails to
   load (`bqStatus === 'error'`). Reads as a real alert rather than
   editorial fine-print: framed card, amber accent, mixed-case copy. */
.booqable-fallback.booqable-error {
  margin: 32px auto 0;
  max-width: 640px;
  text-align: left;
  font-family: inherit;
  letter-spacing: normal;
  font-size: 15px;
  line-height: 1.6;
  color: var(--vf-ink);
  background: #FFF8EB;
  border: 1px solid #F4B940;
  border-left: 4px solid #F4B940;
  border-radius: 12px;
  padding: 20px 22px;
}
.booqable-fallback.booqable-error .bf-error-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 8px;
}
.booqable-fallback.booqable-error .bf-error-head svg {
  color: #C77F00;
  stroke-width: 2;
}
.booqable-fallback.booqable-error p { margin: 6px 0 0; }
.booqable-fallback.booqable-error a {
  color: var(--vf-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.booqable-fallback.booqable-error .bf-retry { font-size: 13.5px; color: var(--vf-ink-2); }
.bf-retry-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--vf-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  font: inherit;
  cursor: pointer;
}
.bf-retry-link:hover { opacity: 0.8; }

/* Per-category iframe panels on the equipment page. Hosted shop fits
   tall — give it real estate so users can scroll inside without
   double-scrollbars. The wrapper inherits `.rentals-shop-full` for the
   full-width band; the iframe fills it. */
.rentals-shop-iframe {
  padding-top: 0;
}
.rentals-shop-iframe iframe {
  width: 100%;
  height: 1400px;
  border: 0;
  display: block;
  background: white;
}
@media (max-width: 760px) {
  .rentals-shop-iframe iframe { height: 1100px; }
}

/* Category tabs — flat row of pills above the Booqable product list. Visual
   echo of the home page's work filter chips, retoned for the light page.
   All 8 panels are mounted at once so the Booqable script picks them up in
   one pass; switching tabs just toggles which panel is `display: block`. */
.rentals-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--vf-line);
}
.rentals-tab {
  background: transparent;
  color: var(--vf-ink-2, rgba(10, 15, 26, 0.7));
  border: 1px solid var(--vf-line-strong, rgba(10, 15, 26, 0.14));
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  font-family: inherit;
  transition: all 200ms;
}
.rentals-tab:hover:not(.active) {
  color: var(--vf-ink);
  border-color: rgba(10, 15, 26, 0.32);
}
.rentals-tab.active {
  background: var(--vf-ink);
  color: white;
  border-color: var(--vf-ink);
}
/* Equipment full-width wrapper — escapes the 1280px container so the
   Booqable product grid uses the full viewport width with edge padding. */
.rentals-shop-full {
  padding: 24px 32px 0;
  margin-top: 24px;
}
@media (max-width: 760px) {
  .rentals-shop-full { padding: 16px 16px 0; }
}

/* FAQ — controlled accordion (open state lives in JS, not <details>) so
   the reveal can use the same grid-template-rows: 0fr → 1fr pattern as
   the films home services accordion. Animates to the actual content
   height with no max-height clipping or overshoot. */
.rentals-faq { padding: 96px 0 120px; background: white; }
.faq-grid {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--vf-line);
}
.faq-item {
  border-bottom: 1px solid var(--vf-line);
  transition: background 320ms;
}
.faq-item.is-open { background: rgba(74, 124, 255, 0.04); }
.faq-head {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 8px;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: background 220ms;
}
.faq-item:hover .faq-head { background: rgba(10,15,26,0.02); }
.faq-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--vf-ink-3);
}
.faq-q {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--vf-ink);
}
.faq-toggle {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--vf-bg);
  border: 1px solid var(--vf-line-strong);
  color: var(--vf-ink);
  display: flex; align-items: center; justify-content: center;
  /* Match the body reveal curve so the +/× rotation lands in sync. */
  transition: background 640ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
              color 640ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 640ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.is-open .faq-toggle {
  background: var(--vf-blue);
  border-color: var(--vf-blue);
  color: white;
  transform: rotate(45deg);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 640ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-body > .faq-body-inner {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 280ms ease 120ms;
}
.faq-item.is-open .faq-body { grid-template-rows: 1fr; }
.faq-item.is-open .faq-body > .faq-body-inner { opacity: 1; }
.faq-a {
  padding: 0 8px 28px 8px;
  margin-left: 56px;
  font-size: 16px;
  color: var(--vf-ink-2);
  line-height: 1.65;
  max-width: 760px;
}
.faq-link {
  color: var(--vf-blue);
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 200ms;
}
.faq-link:hover { opacity: 0.7; }

/* Open Account — sits between FAQ and footer. Stacked: intro + checklist
   above, embedded Notion application form below in a card. The embed is
   an interim solution — long-term we'll replace it with a native form
   that mirrors the contact-page design and writes to the same Notion
   database via API. */
.rentals-open-account {
  padding: 96px 0 120px;
  background: var(--vf-bg, #F7F8FA);
  border-top: 1px solid var(--vf-line);
}
.rentals-open-account .oa-intro {
  margin-top: 32px;
  max-width: 720px;
}
.rentals-open-account .oa-intro p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--vf-ink-2);
}
.rentals-open-account .oa-intro h3 {
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vf-ink-3);
  font-weight: 700;
  margin: 36px 0 14px;
}
.rentals-open-account .oa-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rentals-open-account .oa-checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--vf-ink-2);
}
.rentals-open-account .oa-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--vf-blue-100, rgba(74, 124, 255, 0.16));
  border: 1px solid var(--vf-blue-300, rgba(74, 124, 255, 0.4));
}
.rentals-open-account .oa-time {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--vf-ink-3);
}
/* Form embed — full-width band that breaks out of the .container so the
   Notion form fills the viewport edge-to-edge with light side padding.
   Tall enough that the form doesn't scroll inside its own iframe; the
   page itself does the scrolling. */
.rentals-open-account .oa-form-full {
  margin-top: 40px;
  padding: 0 32px;
  background: var(--vf-bg, #F7F8FA);
}
.rentals-open-account .oa-form-iframe {
  display: block;
  width: 100%;
  height: 3500px;
  border: 0;
  background: white;
  border-radius: 16px;
}
.rentals-open-account .oa-alt {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--vf-ink-3);
  line-height: 1.55;
  text-align: center;
}
.rentals-open-account .oa-alt a {
  color: var(--vf-blue);
  font-weight: 600;
}
.rentals-open-account .oa-alt a:hover { opacity: 0.75; }

@media (max-width: 900px) {
  .rentals-open-account { padding: 72px 0 96px; }
  .rentals-open-account .oa-form-full { padding: 0 16px; }
  .rentals-open-account .oa-form-iframe { height: 4000px; }
}

.booqable-error {
  background: #fff7e6;
  border: 1px solid #f4d3a3;
  color: #6a4500;
  padding: 14px 18px;
  border-radius: 12px;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.55;
}
.booqable-error a { color: #6a4500; text-decoration: underline; font-weight: 600; }

/* Section head color overrides on light bg */
.rentals-light .section-head h2 { color: var(--vf-ink); }
.rentals-light .section-head h2 em { color: var(--vf-blue); }

/* ===================================================================
   RENTALS — MOBILE RESPONSIVE OVERRIDES
   =================================================================== */
@media (max-width: 900px) {
  .rentals-hero { padding: 110px 0 56px; }
  .rentals-hero h1 { font-size: clamp(40px, 9vw, 72px); }
  .rentals-hero .lead { font-size: 16px; }
  .rentals-hero-stats { gap: 28px; margin-top: 36px; flex-wrap: wrap; }
  .kit-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .booqable-frame-spotlight { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 560px) {
  .kit-grid { grid-template-columns: 1fr; }
  .rentals-hero-stats { gap: 20px; }
}
