*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #ff9a9e 0, #fad0c4 25%, #fbc2eb 50%, #a1c4fd 75%, #c2e9fb 100%);
  color: #0f172a;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(90deg, rgba(15,23,42,0.85), rgba(30,64,175,0.85));
  color: #e5e7eb;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

.logo-icon {
  font-size: 1.4rem;
}

.logo-text {
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.main-nav a:hover {
  background: rgba(248,250,252,0.1);
  transform: translateY(-1px);
}

.main-nav a.active {
  background: #f97316;
  color: #0f172a;
}

.nav-cta {
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #0f172a;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(15,23,42,0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.5);
  filter: brightness(1.03);
}

.btn-small {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  box-shadow: none;
}

.btn-ghost {
  background: rgba(15,23,42,0.05);
  color: #0f172a;
  box-shadow: none;
  border: 1px solid rgba(15,23,42,0.08);
}

.btn-ghost:hover {
  background: rgba(15,23,42,0.1);
}

.btn-light {
  background: #f9fafb;
  color: #0f172a;
}

.btn-block {
  width: 100%;
}

/* Hero */

.hero {
  padding: 3.5rem 0 3rem;
  color: #0f172a;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #1d4ed8;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.1vw + 1.4rem, 3.4rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.highlight {
  background: linear-gradient(135deg, #f97316, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 32rem;
  margin-bottom: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-meta {
  font-size: 0.9rem;
  color: #111827;
}

.hero-meta a {
  font-weight: 600;
}

/* Hero art */

.hero-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.bounce-card {
  width: 260px;
  height: 220px;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, #22c55e, #22d3ee);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,23,42,0.55);
  animation: float 4s ease-in-out infinite;
}

.bounce-roof {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  height: 46px;
  background: linear-gradient(90deg, #f97316, #ec4899, #6366f1);
  border-radius: 16px 16px 6px 6px;
}

.bounce-body {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
  background: rgba(15,23,42,0.18);
  border-radius: 24px;
  border: 2px solid rgba(248,250,252,0.8);
  backdrop-filter: blur(6px);
}

.bounce-door {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(180deg, #facc15, #f97316);
  border-radius: 18px 18px 0 0;
}

.bounce-window {
  position: absolute;
  top: 18px;
  left: 24px;
  width: 56px;
  height: 40px;
  border-radius: 14px;
  border: 2px solid rgba(248,250,252,0.9);
}

.bounce-shadow {
  position: absolute;
  inset: auto 20px 18px 20px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15,23,42,0.4), transparent 70%);
}

.hero-art-caption {
  font-size: 0.85rem;
  color: #0f172a;
  text-align: center;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Sections */

.section {
  padding: 2.5rem 0;
}

.section.alt {
  background: rgba(248,250,252,0.75);
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.section-intro {
  color: #4b5563;
  max-width: 32rem;
  font-size: 0.97rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.feature-card {
  background: rgba(248,250,252,0.95);
  border-radius: 1.1rem;
  padding: 1.2rem 1.2rem 1.3rem;
  box-shadow: 0 18px 40px rgba(15,23,42,0.16);
  position: relative;
  overflow: hidden;
}

.feature-card.small {
  box-shadow: 0 10px 25px rgba(15,23,42,0.12);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: #4b5563;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: flex-start;
}

.steps {
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}

.steps li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
  align-items: flex-start;
}

.steps li span {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.steps p {
  font-size: 0.92rem;
  color: #111827;
}

.info-card {
  background: rgba(15,23,42,0.9);
  color: #e5e7eb;
  border-radius: 1.3rem;
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: 0 24px 50px rgba(15,23,42,0.75);
}

.info-card h3 {
  margin-bottom: 0.4rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.6rem 0 0.7rem;
  list-style: none;
}

.tag-list li {
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(248,250,252,0.1);
}

.small-text {
  font-size: 0.82rem;
  color: #cbd5f5;
}

/* Rental photos */

.rental-photo {
  border-radius: 1rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 18px 40px rgba(15,23,42,0.35);
  object-fit: cover;
  max-height: 260px;
  width: 100%;
}

/* CTA banner */

.cta-banner {
  margin-top: 1.7rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, #f97316, #ec4899, #6366f1);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  color: #f9fafb;
  box-shadow: 0 22px 45px rgba(15,23,42,0.65);
}

.cta-eyebrow {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  opacity: 0.9;
}

.cta-price {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.cta-price span {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 0.1rem;
}

.cta-text {
  font-size: 0.95rem;
}

.cta-actions {
  text-align: right;
}

.cta-phone {
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* Page headers */

.page-header {
  padding: 2.2rem 0 1.2rem;
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.page-header p {
  max-width: 36rem;
  font-size: 0.96rem;
}

/* Rentals */

.rental-card {
  background: rgba(248,250,252,0.95);
  border-radius: 1.3rem;
  padding: 1.3rem 1.3rem 1.4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15,23,42,0.35);
}

.rental-badge {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #22c55e;
  color: #052e16;
  font-weight: 600;
}

.rental-badge.alt {
  background: #38bdf8;
  color: #0b1120;
}

.rental-card h2 {
  font-size: 1.3rem;
}

.rental-price {
  margin: 0.1rem 0 0.6rem;
  font-weight: 600;
}

.rental-list {
  list-style: disc;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.9rem;
}

/* Waiver */

.waiver-box {
  background: rgba(248,250,252,0.96);
  border-radius: 1.5rem;
  padding: 1.5rem 1.6rem 1.7rem;
  box-shadow: 0 24px 55px rgba(15,23,42,0.45);
}

.waiver-box h2 {
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.waiver-list {
  list-style: disc;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.8rem;
}

.waiver-list.small {
  font-size: 0.85rem;
}

.waiver-text {
  font-size: 0.9rem;
  color: #111827;
  margin-bottom: 0.6rem;
}

.notice {
  font-size: 0.85rem;
  color: #b91c1c;
  font-weight: 600;
}

.waiver-signature {
  margin-top: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Form */

.form-card {
  background: rgba(248,250,252,0.96);
  border-radius: 1.3rem;
  padding: 1.3rem 1.4rem 1.5rem;
  box-shadow: 0 24px 55px rgba(15,23,42,0.45);
}

.form-card h2 {
  margin-bottom: 0.6rem;
}

.form-row {
  margin-bottom: 0.8rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid rgba(148,163,184,0.7);
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: #f9fafb;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 1px rgba(129,140,248,0.7);
  background: #ffffff;
}

.checkbox-row {
  font-size: 0.83rem;
}

.checkbox-row input {
  width: auto;
  margin-right: 0.35rem;
}

.form-note {
  font-size: 0.8rem;
  color: #4b5563;
  margin-top: 0.4rem;
}

.big-phone {
  font-size: 1.1rem;
  margin: 0.6rem 0;
}

/* Footer */

.site-footer {
  background: rgba(15,23,42,0.95);
  color: #e5e7eb;
  padding: 1.6rem 0 0.8rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(148,163,184,0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: flex-start;
  padding-bottom: 0.8rem;
}

.logo-footer {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.footer-text {
  font-size: 0.86rem;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.86rem;
}

.footer-links a {
  color: #e5e7eb;
  opacity: 0.9;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  font-size: 0.86rem;
}

.footer-small {
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
  border-top: 1px solid rgba(31,41,55,0.9);
  padding-top: 0.5rem;
  margin-top: 0.3rem;
}

/* Utilities */

.section-intro.small-text {
  font-size: 0.85rem;
}

/* Responsive */

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    inset: 56px 0 auto 0;
    margin: 0 auto;
    width: min(480px, 100% - 2.5rem);
    background: rgba(15,23,42,0.97);
    border-radius: 1rem;
    padding: 0.7rem 0.8rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 0.55rem 0.7rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-grid,
  .two-col,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-art {
    order: -1;
  }

  .cta-banner {
    text-align: left;
  }

  .cta-actions {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.8rem, 420px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header {
    backdrop-filter: blur(8px);
  }
}
