.hero--rental {
  background-image:
    radial-gradient(circle at 5% 0, rgba(15, 214, 138, 0.2), transparent 55%),
    radial-gradient(circle at 95% 0, rgba(255, 122, 26, 0.22), transparent 60%),
    linear-gradient(135deg, #02030a 0%, #050814 55%, #02030a 100%);
}

.hero-inner--rental {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

.hero-copy {
  max-width: 36rem;
}

.hero-media {
  justify-self: flex-end;
}

.hero-image-frame {
  border-radius: var(--radius-xl);
  padding: var(--space-2);
  background: radial-gradient(circle at 0 0, rgba(248, 213, 122, 0.4), transparent 55%),
              radial-gradient(circle at 100% 0, rgba(15, 214, 138, 0.3), transparent 55%),
              linear-gradient(135deg, #050814, #02030a);
  box-shadow: var(--shadow-lg);
}

.hero-image-frame img {
  border-radius: calc(var(--radius-xl) - 4px);
}

.hero-highlights {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  font-size: var(--font-size-sm);
}

.hero-highlights__item dt {
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.15rem;
}

.hero-highlights__item dd {
  margin: 0;
  color: var(--color-text-muted);
}

.section-header {
  max-width: 44rem;
}

.section-header--center {
  text-align: center;
  margin: 0 auto var(--space-10);
}

.section-header--center .section-label {
  margin-bottom: var(--space-2);
}

.section-intro {
  margin-top: var(--space-3);
}

.rental-grid {
  align-items: stretch;
}

.rental-card {
  height: 100%;
}

.rental-list {
  margin-top: var(--space-3);
  display: grid;
  gap: 0.4rem;
  font-size: var(--font-size-sm);
}

.rental-list li::before {
  content: "\2022";
  margin-right: 0.45rem;
  color: var(--color-primary);
}

.rental-list--accent li::before {
  color: var(--color-accent-green);
}

.rental-layout {
  align-items: center;
  gap: var(--space-10);
}

.rental-layout--reverse {
  grid-auto-flow: dense;
}

.rental-layout--reverse .rental-layout__content:first-child {
  order: 2;
}

.rental-layout--reverse .rental-layout__content--accent {
  order: 1;
}

.rental-layout__content--accent {
  background-color: var(--color-surface-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.rental-layout__content--accent h3 {
  margin-bottom: var(--space-3);
}

.rental-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.rental-tags li {
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.04);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rental-layout__media {
  max-width: 520px;
  justify-self: center;
}

.rental-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.rental-layout__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.rental-card-min {
  background: var(--color-surface-soft);
}

.rental-card-min__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.rental-grid--compact {
  gap: var(--space-6);
}

.rental-grid--addons {
  margin-top: var(--space-4);
}

.addons-cta {
  margin-top: var(--space-8);
  text-align: center;
}

.gallery-cta {
  margin-top: var(--space-8);
  text-align: center;
}

.booking-form .form-field--full {
  grid-column: 1 / -1;
}

@media (max-width: 1024px) {
  .hero-inner--rental {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
    justify-self: center;
  }

  .hero-copy {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero-highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .rental-layout--reverse .rental-layout__content,
  .rental-layout--reverse .rental-layout__content--accent {
    order: 0;
  }

  .booking-card-title {
    font-size: var(--font-size-2xl);
  }
}
