:root {
  --bg: #fff8fb;
  --surface: #ffffff;
  --surface-2: #fff0f6;
  --text: #2f2430;
  --muted: #7b6975;
  --primary: #e85c9a;
  --primary-dark: #cc427f;
  --dark: #2f2430;
  --line: #f2d8e4;
  --shadow: 0 18px 40px rgba(154, 74, 113, 0.12);
  --radius: 24px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.soft-bg { background: linear-gradient(180deg, #fff3f8, #fffafc); }
.eyebrow {
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 12px;
  line-height: 1.05;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.7rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: 1.5rem; }
p { color: var(--muted); line-height: 1.7; margin: 0 0 16px; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 251, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 92, 154, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand strong { display: block; letter-spacing: 0.02em; }
.brand small { color: var(--muted); letter-spacing: 0.2em; font-size: 0.72rem; }
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, #ff7cb1, #d84a8a);
  box-shadow: var(--shadow);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: #5b4956;
}
.nav-links a:hover { color: var(--primary-dark); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  padding: 14px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), #ff86bb); color: white; box-shadow: var(--shadow); }
.btn-light { background: white; color: var(--text); border: 1px solid var(--line); }
.btn-dark { background: var(--dark); color: white; }
.hero {
  padding: 54px 0 36px;
  background: radial-gradient(circle at top left, rgba(255, 151, 195, 0.18), transparent 32%), linear-gradient(180deg, #fff8fb, #fff4f7);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.subcopy { font-size: 1.05rem; }
.hero-actions { display: flex; gap: 14px; margin: 28px 0 20px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badges span {
  background: rgba(232, 92, 154, 0.1);
  color: var(--primary-dark);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-card {
  position: relative;
}
.hero-card > img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.floating-card {
  position: absolute;
  left: -30px;
  bottom: 28px;
  width: min(320px, 90%);
  background: rgba(255, 255, 255, 0.96);
  padding: 18px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(232, 92, 154, 0.15);
}
.floating-card span { color: var(--primary-dark); font-weight: 700; }
.promo-strip { padding: 0 0 28px; }
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.promo-grid article, .service-card, .price-card, .slot, .product-card, .testimonial-grid article {
  background: var(--surface);
  border: 1px solid rgba(232, 92, 154, 0.12);
  box-shadow: var(--shadow);
}
.promo-grid article {
  padding: 26px;
  border-radius: 24px;
}
.tag {
  display: inline-block;
  margin-bottom: 12px;
  background: rgba(232, 92, 154, 0.1);
  color: var(--primary-dark);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.section-heading { text-align: center; margin-bottom: 36px; }
.section-heading.left { text-align: left; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  border-radius: 26px;
  overflow: hidden;
}
.service-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.service-card div { padding: 18px; }
.service-meta { display: flex; justify-content: space-between; color: var(--primary-dark); font-weight: 700; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  padding: 30px;
  border-radius: 26px;
  position: relative;
}
.price-card.featured { background: linear-gradient(180deg, #fff, #fff1f7); border-color: rgba(232, 92, 154, 0.28); }
.price-card ul { list-style: none; padding: 0; margin: 22px 0; }
.price-card li { padding: 9px 0; color: var(--muted); border-bottom: 1px dashed rgba(232, 92, 154, 0.15); }
.price { font-size: 2.5rem; color: var(--text); font-weight: 700; }
.price span { font-size: 1rem; color: var(--muted); }
.pill {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--primary);
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}
.booking-layout, .rental-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 28px;
  align-items: start;
}
.slot-list { display: grid; gap: 14px; margin-top: 20px; }
.slot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 20px;
}
.slot strong, .slot b { color: var(--text); }
.slot.quiet { background: linear-gradient(180deg, #fff8fb, #fff0f7); }
.slot.lastminute { background: linear-gradient(180deg, #fff7f4, #ffefea); }
.demo-form {
  background: white;
  border: 1px solid rgba(232, 92, 154, 0.12);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.demo-form h3 { margin-bottom: 18px; }
.demo-form label {
  display: block;
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 600;
}
.demo-form input, .demo-form textarea, .demo-form select {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: #fffafd;
  color: var(--text);
  padding: 14px 16px;
  border-radius: 16px;
  outline: none;
}
.demo-form input:focus, .demo-form textarea:focus, .demo-form select:focus { border-color: var(--primary); }
.form-note { font-size: 0.9rem; margin-top: 12px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  border-radius: 24px;
  overflow: hidden;
  padding-bottom: 16px;
}
.product-card img { aspect-ratio: 4 / 4.2; object-fit: cover; }
.product-card h3, .product-card p, .product-bottom { padding-left: 16px; padding-right: 16px; }
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.product-bottom span { color: var(--primary-dark); font-weight: 700; }
.add-cart {
  background: var(--dark);
  color: white;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
}
.rental-image img { border-radius: 32px; box-shadow: var(--shadow); min-height: 100%; object-fit: cover; }
.benefit-list { list-style: none; padding: 0; margin: 20px 0 24px; }
.benefit-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--muted);
}
.benefit-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-grid article {
  padding: 24px;
  border-radius: 24px;
}
.footer {
  background: #2e212e;
  color: #f7eaf0;
  padding-top: 62px;
}
.footer p, .footer li, .footer a, .footer small { color: #e2ccd7; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 30px;
  padding-bottom: 30px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cart-button {
  background: linear-gradient(135deg, var(--primary), #ff86bb);
  color: white;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 700;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -380px;
  width: min(380px, 100%);
  height: 100vh;
  background: white;
  box-shadow: -20px 0 50px rgba(47, 36, 48, 0.18);
  display: flex;
  flex-direction: column;
  transition: right 0.28s ease;
  z-index: 100;
}
.cart-drawer.open { right: 0; }
.cart-header, .cart-footer {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.cart-footer { border-top: 1px solid var(--line); border-bottom: 0; margin-top: auto; flex-direction: column; align-items: stretch; }
.cart-header button { font-size: 1.8rem; border: 0; background: none; cursor: pointer; }
.cart-items { padding: 20px; overflow: auto; display: grid; gap: 14px; }
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: #fff7fb;
  border: 1px solid var(--line);
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(20px);
  background: #2e212e;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 120;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1080px) {
  .hero-grid, .booking-layout, .rental-layout,
  .card-grid, .pricing-grid, .product-grid, .promo-grid, .testimonial-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .desktop-btn { display: none; }
  .nav { flex-wrap: wrap; }
  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 16px;
  }
  .nav-links.open { display: flex; }
  .hero-grid, .booking-layout, .rental-layout,
  .card-grid, .pricing-grid, .product-grid, .promo-grid, .testimonial-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
  .section { padding: 68px 0; }
}
@media (max-width: 520px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .slot { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
