/* ---------- Rentals page: catalog of rentable props ---------- */

/* Hero: paper background, text left, image right */
.rent-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(48px, 6vw, 88px);
}
.rent-hero__crumb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.rent-hero__crumb a { color: inherit; }
.rent-hero__crumb a:hover { color: var(--ink); }
.rent-hero__crumb span { margin: 0 10px; opacity: 0.5; }

.rent-hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.rent-hero__eye {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--lalu-red);
  margin-bottom: 20px;
}
.rent-hero__headline {
  font-family: var(--f-sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(40px, 5vw, 80px);
  margin: 0 0 24px;
  max-width: min(92%, 900px);
}
.rent-hero__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 54ch;
  margin: 0 0 24px;
}
.rent-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rent-hero__bullets li {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
}
.rent-hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lalu-red);
}
.rent-hero__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-2);
}
.rent-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .rent-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .rent-hero__img { aspect-ratio: 3/2; max-height: 480px; }
}

/* ---------- Filter strip ---------- */

.rent-filter {
  position: sticky;
  top: 64px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.rent-filter__row {
  display: flex;
  gap: 0;
  padding: 14px 0;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.rent-filter__row::-webkit-scrollbar { display: none; }
.rent-filter__lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 24px;
  white-space: nowrap;
}
.rent-tab {
  position: relative;
  padding: 10px 0;
  margin-right: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: none;
  border: 0;
}
.rent-tab:hover { color: var(--ink); }
.rent-tab.is-active { color: var(--ink); }
.rent-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
}
.rent-tab__count {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  opacity: 0.6;
}
.rent-tab.is-active .rent-tab__count { color: var(--lalu-red); opacity: 1; }

/* ---------- Rental grid ---------- */

.rent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 2.5vw, 40px) 24px;
}
.rent-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  animation: rentCardIn .45s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes rentCardIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.rent-card__img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--paper-2);
}
.rent-card__img .ph { position: absolute; inset: 0; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.rent-card:hover .rent-card__img .ph { transform: scale(1.04); }

.rent-card__cat {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 7px;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  line-height: 1;
}

.rent-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.rent-card__name {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}
.rent-card__name::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -3px;
  height: 1px;
  background: var(--ink);
  transition: right .4s cubic-bezier(.2,.7,.2,1);
}
.rent-card:hover .rent-card__name::after { right: 0; }
.rent-card__arrow {
  color: var(--muted);
  font-size: 14px;
  transition: transform .35s, color .35s;
  flex: 0 0 auto;
}
.rent-card:hover .rent-card__arrow { color: var(--ink); transform: translate(3px, -3px); }

.rent-card__tag {
  margin: 6px 0 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  max-width: 32ch;
}
.rent-card__quote {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lalu-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
}
.rent-card:hover .rent-card__quote { color: var(--lalu-red-deep, #B3303E); }

@media (max-width: 1024px) {
  .rent-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .rent-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .rent-grid { grid-template-columns: 1fr; }
}

.rent-empty {
  padding: 80px 0;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.rent-empty a { color: var(--lalu-red); border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* ---------- How it works ---------- */

.rent-how {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.rent-how__head {
  margin-bottom: clamp(32px, 4vw, 56px);
  max-width: 48ch;
}
.rent-how__eye {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lalu-red);
  margin-bottom: 16px;
}
.rent-how__headline {
  font-family: var(--f-sans);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
}
.rent-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.rent-how__step {
  border-top: 1px solid var(--ink);
  padding-top: 20px;
}
.rent-how__n {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lalu-red);
  margin-bottom: 12px;
}
.rent-how__h {
  font-family: var(--f-sans);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.rent-how__t {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 34ch;
}
.rent-how__t a {
  color: var(--lalu-red);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.rent-how__t a:hover { color: var(--ink); }

@media (max-width: 800px) {
  .rent-how__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Pair with a service ---------- */

.rent-pair {
  background: var(--paper);
}
.rent-pair__head {
  margin-bottom: clamp(28px, 3.5vw, 48px);
  max-width: 52ch;
}
.rent-pair__headline {
  font-family: var(--f-sans);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.rent-pair__sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.rent-pair__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.rent-pair__card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(16px, 2vw, 28px);
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.rent-pair__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14,14,14,0.08);
}
.rent-pair__img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.rent-pair__img .ph { position: absolute; inset: 0; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.rent-pair__card:hover .rent-pair__img .ph { transform: scale(1.04); }
.rent-pair__body {
  padding: clamp(20px, 2.4vw, 32px) clamp(20px, 2.4vw, 32px) clamp(20px, 2.4vw, 32px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.rent-pair__title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.rent-pair__arrow {
  color: var(--muted);
  transition: transform .35s, color .35s;
}
.rent-pair__card:hover .rent-pair__arrow {
  color: var(--lalu-red);
  transform: translate(3px, -3px);
}
.rent-pair__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 34ch;
}

@media (max-width: 900px) {
  .rent-pair__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .rent-pair__card { grid-template-columns: 1fr; }
  .rent-pair__body {
    padding: 0 20px 24px;
  }
  .rent-pair__img { aspect-ratio: 3/2; }
}
