
/* ===================================================================
   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; }
}

/* Equipment page now embeds the hosted Booqable shop in a near-full-
   screen iframe. The Valley nav stays pinned via position: fixed; we
   reserve room for it with margin-top so the shop's own header isn't
   clipped underneath, then let the iframe fill the rest of the viewport
   so visitors get the real booking flow without leaving valley.film. */
.rentals-shop-embed {
  padding: 0;
  background: var(--vf-cream, #f7f8fa);
}
.rentals-shop-embed iframe {
  display: block;
  width: 100%;
  height: calc(100vh - 76px);
  margin-top: 76px;
  border: 0;
}
.rentals-shop-embed .booqable-fallback {
  text-align: center;
  font-size: 12px;
  color: rgba(10, 15, 26, 0.5);
  padding: 10px 24px;
  margin: 0;
}
@media (max-width: 760px) {
  .rentals-shop-embed iframe {
    height: calc(100vh - 64px);
    margin-top: 64px;
  }
}

/* ===================================================================
   RENTALS LANDING — light-mode additions
   Hero gets a cycling photo behind a cream/white veil so each shot reads
   as soft ambient texture instead of a backdrop demanding attention.
   The shelf section is a stacked layout (headline above, photo strip
   below) rather than the films home's 50/50 split — keeps the rentals
   landing on its own visual rhythm.
   =================================================================== */

/* Photo-cycle hero — two-layer cross-fade. All slides are mounted; only
   the slide with .is-current sits at opacity 1, the rest fade to 0 with
   a long ease so transitions feel gentle, not chopped. */
.rentals-hero-cycle .rentals-hero-photos {
  position: absolute; inset: 0;
  overflow: hidden;
}
.rentals-hero-cycle .rhp-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1400ms ease, transform 9000ms ease-out;
}
.rentals-hero-cycle .rhp-slide.is-current {
  opacity: 0.78;
  transform: scale(1);
}
/* Cream veil — keeps text contrast on the left where the headline sits,
   but the right side stays clearer so the photo reads as a real photo,
   not just texture. Bottom fades all the way to the *next* section's
   colour (vf-bg-tint) over the final 18%, so the hard line where the
   photo would otherwise butt against the next section disappears. */
.rentals-hero-cycle .rentals-hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(247,248,250,0.0) 0%, rgba(247,248,250,0.0) 38%, rgba(239,241,245,0.78) 82%, rgba(239,241,245,1) 100%),
    linear-gradient(90deg, rgba(247,248,250,0.92) 0%, rgba(247,248,250,0.78) 36%, rgba(247,248,250,0.32) 65%, rgba(247,248,250,0.05) 100%);
}
.rentals-hero-cycle .container { position: relative; }

/* Shelf section — stacked, magazine-style. Headline+copy at the top sit
   on a two-column grid (eyebrow + h2 on the left, copy + CTA on the
   right) for a more editorial feel. Below that, a full-width photo strip
   that breaks out of the container to bleed to the page edges. Sits on
   vf-bg-tint so the boundary with the hero reads as an intentional band
   rather than an accidental seam. */
.rentals-shelf {
  padding: 120px 0 80px;
  background: var(--vf-bg-tint, #EFF1F5);
}
.rentals-shelf-head { margin-bottom: 64px; }
.rentals-shelf-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
  margin-top: 20px;
}
.rentals-shelf-grid > * { min-width: 0; }
.rentals-shelf-grid h2 {
  font-size: clamp(40px, 5.2vw, 80px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--vf-ink);
  text-wrap: balance;
}
.rentals-shelf-grid h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--vf-blue);
}
.rentals-shelf-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--vf-ink-2);
  margin-bottom: 16px;
  max-width: 460px;
}
.rentals-shelf-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 14px 22px;
  background: var(--vf-ink);
  color: white;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background 220ms var(--ease-out, ease), transform 220ms var(--ease-out, ease);
}
.rentals-shelf-cta:hover { background: var(--vf-blue); transform: translateY(-1px); }

/* Photo strip — four thumbnails in a row, centred and constrained so the
   shelf section reads as "supporting visuals", not a gallery. Click any
   photo to open the lightbox (see .rentals-lightbox below). */
.rentals-shelf-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}
.rss-card {
  margin: 0;
  background: none;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  font-family: inherit;
}
.rss-photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}
.rss-card:hover .rss-photo,
.rss-card:focus-visible .rss-photo {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 10px 28px rgba(10, 15, 26, 0.12);
}
.rss-card:focus-visible { outline: none; }
.rss-card:focus-visible .rss-photo {
  outline: 2px solid var(--vf-blue);
  outline-offset: 3px;
}
@media (max-width: 1100px) {
  .rentals-shelf-grid { grid-template-columns: 1fr; gap: 28px; }
  .rentals-shelf-strip { grid-template-columns: repeat(4, 1fr); padding: 0 24px; }
}
@media (max-width: 760px) {
  .rentals-shelf { padding: 80px 0 56px; }
  .rentals-shelf-head { margin-bottom: 40px; }
  .rentals-shelf-strip { grid-template-columns: repeat(2, 1fr); padding: 0 16px; gap: 10px; }
  .rss-photo { border-radius: 12px; }
}

/* Lightbox — appears when a shelf thumbnail is clicked. Centered image
   over a dark scrim; click anywhere on the scrim (or Escape) to dismiss.
   Image is `object-fit: contain` so the full frame is always visible. */
.rentals-lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(7, 8, 12, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4vw;
  cursor: zoom-out;
  animation: rl-fade 200ms ease;
}
@keyframes rl-fade { from { opacity: 0; } to { opacity: 1; } }
.rentals-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.rentals-lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: background 200ms ease, border-color 200ms ease;
}
.rentals-lightbox-close:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.32); }

/* 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; }

/* Rich FAQ content — bullet list and cancellation table styling.
   List is plain (not the default disc) so it reads as a compact set of
   facts rather than a marketing bullet-list. Table is borderless inside
   with a subtle hairline between rows. */
.faq-a > p + p { margin-top: 10px; }
.faq-a .faq-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-a .faq-list li {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--vf-ink-2);
}
.faq-a .faq-table {
  width: 100%;
  max-width: 520px;
  margin: 10px 0 0;
  border-collapse: collapse;
  font-size: 14px;
  color: var(--vf-ink);
}
.faq-a .faq-table th,
.faq-a .faq-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--vf-line);
  vertical-align: top;
}
.faq-a .faq-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vf-ink-3);
  padding-bottom: 6px;
}
.faq-a .faq-table tbody tr:last-child td { border-bottom: 0; }
.faq-a .faq-table td:last-child {
  white-space: nowrap;
  font-weight: 600;
}

/* 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; }
}
