/* ============================================================
   /rentals — page-specific styles
   Composes with styles.css. Reuses tokens defined there:
   --bg, --bg-elevated, --text, --text-muted, --text-faint,
   --accent, --rule, --display, --body, --container, --content, --ease
   ============================================================ */

/* nav active state */
.primary-nav a.is-active {
  color: var(--accent);
}

/* ============================================================
   HERO
   ============================================================ */
.rental-hero {
  position: relative;
  min-height: clamp(34rem, 78vh, 52rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.rental-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rental-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

/* Soft cream-to-transparent overlay so text reads on the studio photo */
.rental-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    oklch(98.5% 0.004 85 / 0.94) 0%,
    oklch(98.5% 0.004 85 / 0.86) 35%,
    oklch(98.5% 0.004 85 / 0.18) 80%,
    oklch(98.5% 0.004 85 / 0) 100%
  );
}

.rental-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
}

.rental-hero-text {
  max-width: 44ch;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.rental-hero-headline {
  margin-top: 1.25rem;
}

.rental-hero-sub {
  margin-top: 1.5rem;
  max-width: 40ch;
}

.rental-hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .rental-hero {
    min-height: 32rem;
  }
  .rental-hero-image::after {
    background: linear-gradient(
      180deg,
      oklch(98.5% 0.004 85 / 0.05) 0%,
      oklch(98.5% 0.004 85 / 0.6) 45%,
      oklch(98.5% 0.004 85 / 0.95) 80%
    );
  }
  .rental-hero-text {
    max-width: 100%;
    padding-top: 18rem; /* push text below the image's visual focal area */
  }
}

/* ============================================================
   LEDE
   ============================================================ */
.rental-lede-section {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
}

.rental-lede {
  max-width: 62ch;
  margin: 0 auto;
  text-align: center;
}

.rental-lede .display-md {
  margin-bottom: 1.5rem;
}

/* ============================================================
   INCLUSIONS — three-column with restrained gold icons
   ============================================================ */
.inclusions {
  background: var(--bg-elevated);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.inclusions-grid {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.inclusion-bucket {
  display: flex;
  flex-direction: column;
}

.inclusion-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 36px;
}

.inclusion-title {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text);
}

.inclusion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.inclusion-list li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.inclusion-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.4rem;
  height: 1px;
  background: var(--accent);
}

.inclusions-foot {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.85rem;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 860px) {
  .inclusions-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ============================================================
   WORK STRIP — 4 portraits in a row
   ============================================================ */
.work-strip-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.work-strip-head {
  margin-bottom: 2rem;
}

.work-strip-head .micro {
  display: block;
}

.work-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.25fr;
  gap: 0;
  width: 100%;
  aspect-ratio: 32 / 11;
}

.work-strip-figure {
  margin: 0;
  overflow: hidden;
  height: 100%;
}

.work-strip-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.work-strip-figure:nth-child(2) img {
  object-position: 25% center;
}

@media (max-width: 860px) {
  .work-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding-bottom: 0;
    aspect-ratio: auto;
    -webkit-overflow-scrolling: touch;
  }
  .work-strip-figure {
    flex: 0 0 82%;
    scroll-snap-align: start;
    aspect-ratio: 4 / 5;
    height: auto;
  }
}

/* ============================================================
   PRICING TIERS
   ============================================================ */
.rates {
  background: var(--bg);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.tiers-grid {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.tier {
  background: var(--bg-elevated);
  padding: clamp(2rem, 3.5vw, 2.75rem);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}

.tier-feature {
  background: var(--bg);
  border: 1px solid oklch(72% 0.085 78 / 0.4); /* faint accent border */
  position: relative;
}

.tier-feature::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: var(--accent);
}

.tier-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tier-num {
  font-family: var(--display);
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.tier-tag {
  display: block;
  color: var(--text-faint);
}

.tier-name {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 0.25rem 0 0;
  color: var(--text);
}

.tier-price {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.tier-amount {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
}

.tier-unit {
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.tier-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.tier-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.4rem;
  height: 1px;
  background: var(--accent);
}

.tier-list li strong {
  color: var(--text);
  font-weight: 500;
}

.tier-cta {
  margin-top: 2rem;
  align-self: stretch;
  text-align: center;
}

@media (max-width: 860px) {
  .tiers-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ADD-ONS
   ============================================================ */
.addons {
  background: var(--bg-elevated);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.addons-grid {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

.addon {
  background: var(--bg);
  padding: clamp(2rem, 3.5vw, 3rem);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}

.addon-tag {
  display: block;
  color: var(--accent);
  margin-bottom: 1rem;
}

.addon-name {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text);
}

.addon-price {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}

.addon-price strong {
  color: var(--text);
  font-weight: 500;
}

.addon-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  flex: 1;
}

@media (max-width: 720px) {
  .addons-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   TRUST
   ============================================================ */
.trust {
  background: var(--bg);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.trust-img .ph-portrait {
  aspect-ratio: 4 / 5;
}

.trust-text .micro {
  display: block;
  margin-bottom: 1rem;
}

.trust-text .display-lg {
  margin-bottom: 1.5rem;
}

@media (max-width: 860px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-img {
    max-width: 28rem;
    margin: 0 auto;
  }
}

/* ============================================================
   LOUNGE STRIP — full-width image
   ============================================================ */
.lounge-strip-section {
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(5rem, 10vw, 9rem);
}

.lounge-figure {
  margin: 0;
}

.lounge-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lounge-cap {
  display: block;
  margin-top: 1rem;
  text-align: right;
  color: var(--text-faint);
}

/* ============================================================
   BOOK / CLOSER
   ============================================================ */
.book-section {
  background: var(--bg-elevated);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.book-head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.book-head .micro:first-child {
  display: block;
}

.book-head .display-lg {
  margin-top: 1rem;
}

.tour-lede {
  margin-top: 1.5rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.tour-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.book-policy {
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-style: italic;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.85rem;
}
