:root {
  --bg: #f6f7ff;
  --surface: #ffffff;
  --primary: #4766f2;
  --primary-dark: #2c48c5;
  --accent: #ffd98e;
  --text: #273257;
  --muted: #6a74a3;
  --peach: #ffe8d6;
  --mint: #e6f8f2;
  --lavender: #f1edff;
  --shadow: 0 20px 50px rgba(39, 50, 87, 0.12);
}

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

body {
  margin: 0;
  font-family: "Poppins", "Montserrat", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, rgba(241, 237, 255, 0.5), rgba(230, 248, 242, 0.45)),
    var(--bg);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

section {
  padding: 96px clamp(24px, 6vw, 96px);
  position: relative;
}

.global-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at top right, rgba(255, 217, 142, 0.22), transparent 46%),
    radial-gradient(circle at 18% 78%, rgba(71, 102, 242, 0.12), transparent 38%),
    radial-gradient(circle at 50% 20%, rgba(230, 248, 242, 0.3), transparent 52%),
    var(--bg);
  overflow: hidden;
}

.orb {
  position: absolute;
  width: clamp(260px, 28vw, 420px);
  height: clamp(260px, 28vw, 420px);
  background: radial-gradient(circle, rgba(255, 217, 142, 0.28), transparent 65%);
  border-radius: 50%;
  opacity: 0.8;
  mix-blend-mode: screen;
  animation: drift 18s infinite ease-in-out alternate;
}

.orb-one {
  top: -8%;
  left: -5%;
}

.orb-two {
  bottom: -10%;
  right: -4%;
  background: radial-gradient(circle, rgba(71, 102, 242, 0.24), transparent 70%);
  animation-delay: 4s;
}

.orb-three {
  top: 45%;
  right: 35%;
  width: clamp(200px, 22vw, 320px);
  height: clamp(200px, 22vw, 320px);
  background: radial-gradient(circle, rgba(230, 248, 242, 0.3), transparent 60%);
  animation-delay: 8s;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(20px, 40px, 0) scale(1.08);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px clamp(24px, 6vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 74, 188, 0.1);
  transition: box-shadow 0.3s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(31, 74, 188, 0.12), rgba(249, 178, 51, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
  border-radius: 0 0 28px 28px;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 40px rgba(21, 42, 110, 0.16);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-image {
  height: 58px;
  width: auto;
  border-radius: 0;
  filter: drop-shadow(0 8px 20px rgba(31, 74, 188, 0.25));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 48px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
  color: inherit;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a:hover {
  color: var(--primary);
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
  border: none;
}

.primary-btn {
  background: linear-gradient(135deg, rgba(71, 102, 242, 1) 0%, rgba(44, 72, 197, 1) 100%);
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(39, 50, 87, 0.22);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(39, 50, 87, 0.26);
}

.primary-btn.block {
  width: 100%;
}

.ghost-btn.block {
  width: 100%;
}

.ghost-btn {
  position: relative;
  background: rgba(71, 102, 242, 0.12);
  color: var(--primary);
  overflow: hidden;
}

.ghost-btn:hover {
  transform: translateY(-2px);
  background: rgba(71, 102, 242, 0.2);
}

.ghost-btn::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(249, 178, 51, 0.45), transparent 60%);
  top: var(--spotlight-y, 50%);
  left: var(--spotlight-x, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ghost-btn:hover::before {
  opacity: 1;
}

.hero {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr) minmax(320px, 360px);
  align-items: center;
  background: radial-gradient(circle at 12% 18%, rgba(255, 232, 214, 0.45), transparent 55%),
    radial-gradient(circle at 88% 26%, rgba(241, 237, 255, 0.65), transparent 52%),
    radial-gradient(circle at 10% 80%, rgba(230, 248, 242, 0.36), transparent 60%),
    var(--bg);
  padding-top: 60px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 0 0 16px 0;
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
}

.hero-lead {
  margin: 0 0 28px 0;
  font-size: 1.05rem;
  max-width: 520px;
  color: var(--muted);
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-whisper {
  margin: -12px 0 32px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.bubble {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 217, 142, 0.35);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 12px 24px rgba(39, 50, 87, 0.08);
}

.hero-media {
  position: relative;
  display: grid;
  justify-items: end;
}

.media-card {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  position: relative;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 8s ease;
}

.media-card:hover img {
  transform: scale(1.08);
}

.media-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 28, 72, 0.72);
  color: #fff;
  padding: 18px;
  border-radius: 20px;
  display: grid;
  gap: 4px;
}

.overlay-label {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
}

.overlay-detail {
  font-size: 0.95rem;
}

.floating-badge {
  position: absolute;
  bottom: -32px;
  left: 0;
  padding: 22px 26px;
  background: linear-gradient(150deg, rgba(255, 232, 214, 0.85), rgba(241, 237, 255, 0.9));
  box-shadow: 0 22px 42px rgba(39, 50, 87, 0.16);
  border-radius: 24px;
  max-width: 240px;
  border: 1px solid rgba(31, 74, 188, 0.1);
  animation: float 6s ease-in-out infinite;
  will-change: transform;
  transition: transform 0.6s ease;
}

.floating-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(71, 102, 242, 0.16), rgba(255, 217, 142, 0.18));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.badge-title {
  display: block;
  font-weight: 700;
  color: var(--primary);
}

.badge-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.vibe-marquee {
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(31, 74, 188, 0.08), rgba(249, 178, 51, 0.12));
  box-shadow: none;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 48px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(31, 74, 188, 0.65);
  white-space: nowrap;
  padding: 28px 0;
  animation: marquee 18s linear infinite;
  min-width: 200%;
  will-change: transform;
}

.marquee-track span {
  font-size: 0.85rem;
  position: relative;
  padding-left: 48px;
}

.marquee-track span::before {
  content: "•";
  position: absolute;
  left: 16px;
  color: var(--accent);
}

/* Properties Marquee */
.properties-marquee {
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(39, 50, 87, 0.95), rgba(31, 74, 188, 0.9));
  position: relative;
}

.properties-marquee .marquee-track {
  color: rgba(255, 255, 255, 0.9);
  padding: 24px 0;
  animation: marquee 30s linear infinite;
  gap: 60px;
}

.properties-marquee .marquee-track span {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: none;
}

.properties-marquee .marquee-track span::before {
  content: "📍";
  color: var(--accent);
}

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

.floating-badge:hover {
  transform: translate3d(0, -6px, 0);
}

.media-card[data-parallax],
.floating-badge[data-parallax] {
  cursor: default;
}

.media-card[data-parallax].is-parallax-reset,
.floating-badge[data-parallax].is-parallax-reset {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-widget {
  position: sticky;
  top: 112px;
  align-self: start;
  background: linear-gradient(180deg, rgba(255, 232, 214, 0.7), rgba(241, 237, 255, 0.82));
  padding: 32px 32px 36px;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(39, 50, 87, 0.16);
  display: grid;
  gap: 24px;
}

.sticky-widget h2 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--primary);
}

.joy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.joy-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.joy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(71, 102, 242, 0.12);
  font-size: 1.32rem;
  filter: drop-shadow(0 8px 16px rgba(39, 50, 87, 0.15));
}

.joy-copy h3 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  color: var(--primary);
}

.joy-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.joy-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(255, 217, 142, 0.32);
  border-radius: 18px;
  padding: 14px 18px;
}

.capsule-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 237, 255, 0.75));
  border-radius: 0;
  margin: 0 clamp(16px, 4vw, 64px);
  box-shadow: var(--shadow);
  padding-top: 72px;
  padding-bottom: 72px;
}

.capsule-section#rooms {
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 232, 214, 0.6), rgba(241, 237, 255, 0.65));
}

.capsule-section.alt {
  background: linear-gradient(145deg, rgba(71, 102, 242, 0.1), rgba(255, 217, 142, 0.18));
  box-shadow: none;
  border: 1px solid rgba(71, 102, 242, 0.12);
  border-radius: 24px;
}

.section-intro {
  max-width: 640px;
}

.section-intro h2 {
  margin: 12px 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
}

.section-intro p {
  color: var(--muted);
  margin: 0;
}

.rooms-layout {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 110px);
  align-items: start;
}

.rooms-layout .card-grid {
  margin-top: 0;
}

.rooms-layout .section-intro {
  position: sticky;
  top: clamp(120px, 10vw, 168px);
  align-self: start;
  background: rgba(255, 255, 255, 0.82);
  padding: 28px 28px 32px;
  border-radius: 28px;
  box-shadow: 0 22px 40px rgba(39, 50, 87, 0.12);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--accent);
}

.card-grid {
  margin-top: 48px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.sticky-stack {
  position: relative;
}

@media (min-width: 960px) {
  .sticky-stack {
    grid-template-columns: minmax(0, 520px);
    justify-content: center;
    gap: 120px;
    min-height: calc(100vh + (var(--card-count, 3) * 250px));
  }

  .sticky-stack .card {
    position: sticky;
    top: clamp(120px, 12vw, 180px);
    z-index: var(--stack-index, 1);
    transform-origin: center top;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .sticky-stack .card:not(:first-child) {
    margin-top: 60px;
  }

  .sticky-stack .card.is-active {
    transform: scale(1.01);
    box-shadow: 0 36px 68px rgba(39, 50, 87, 0.2);
  }
}

.sticky-stack .card:nth-child(1) {
  --stack-index: 1;
}

.sticky-stack .card:nth-child(2) {
  --stack-index: 2;
}

.sticky-stack .card:nth-child(3) {
  --stack-index: 3;
}

.sticky-stack .card:nth-child(4) {
  --stack-index: 4;
}

.sticky-stack .card:nth-child(5) {
  --stack-index: 5;
}

.sticky-stack .card:nth-child(6) {
  --stack-index: 6;
}

.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(241, 237, 255, 0.78));
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(39, 50, 87, 0.18);
}

.card-body {
  padding: 24px 28px 32px;
  display: grid;
  gap: 12px;
}

.card-body h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--primary);
}

.card-body p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  position: relative;
  background: radial-gradient(
      circle at bottom left,
      rgba(71, 102, 242, 0.14),
      transparent 55%
    ),
    var(--bg);
}

.split-section::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 48px;
  background: radial-gradient(circle, rgba(255, 217, 142, 0.18), transparent 72%);
  z-index: -1;
  pointer-events: none;
}

.split-media img {
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.split-content {
  display: grid;
  gap: 24px;
}

.experience-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.experience-list {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-list h3 {
  margin: 0 0 6px 0;
  font-size: 1.2rem;
  color: var(--primary);
}

.experience-list p {
  margin: 0;
  color: var(--muted);
}

.amenity-grid,
.values-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.amenity-grid article,
.values-grid article {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(241, 237, 255, 0.82));
  border-radius: 24px;
  padding: 28px 24px;
  border: 1px solid rgba(31, 74, 188, 0.1);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 38px rgba(39, 50, 87, 0.12);
  transition: transform 0.3s ease;
}

.amenity-grid article:hover,
.values-grid article:hover {
  transform: translateY(-6px);
}

.amenity-grid h3,
.values-grid h3 {
  margin: 0 0 8px 0;
  color: var(--primary);
}

.amenity-grid p,
.values-grid p {
  margin: 0;
  color: var(--muted);
}

.testimonials {
  background: linear-gradient(135deg, rgba(241, 237, 255, 0.8), rgba(255, 232, 214, 0.65));
  padding: 96px clamp(24px, 6vw, 96px);
}

.testimonial-scroller {
  margin-top: 48px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(241, 237, 255, 0.85));
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(31, 74, 188, 0.08);
  box-shadow: 0 24px 44px rgba(39, 50, 87, 0.14);
  display: grid;
  gap: 16px;
  position: relative;
}

.testimonial-card::before {
  content: "“";
  font-size: 3rem;
  color: rgba(71, 102, 242, 0.18);
  position: absolute;
  top: 12px;
  left: 18px;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.testimonial-card span {
  font-weight: 600;
  color: var(--primary);
}

.site-footer {
  padding: 72px clamp(24px, 6vw, 96px) 36px;
  background: linear-gradient(180deg, rgba(39, 50, 87, 0.9), rgba(39, 50, 87, 0.96));
  color: rgba(255, 255, 255, 0.88);
}

.footer-content {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-content h3 {
  margin: 0 0 16px 0;
  font-size: 1.1rem;
  color: var(--accent);
}

.footer-content p {
  margin: 0 0 12px 0;
}

.footer-location {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer-map {
  width: 160px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-map:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Map Modal */
.map-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

.map-modal.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.map-modal-close:hover {
  color: #ccc;
}

.map-modal-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

.map-modal-caption {
  color: #fff;
  margin-top: 16px;
  font-size: 1.1rem;
  text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.footer-address h3 {
  margin: 0 0 12px 0;
}

.footer-form {
  display: grid;
  gap: 12px;
}

.footer-form input {
  border-radius: 999px;
  border: none;
  padding: 14px 18px;
  font-size: 0.95rem;
}

.footer-form input:focus {
  outline: 2px solid rgba(255, 217, 142, 0.45);
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 500;
}

.social-links a:hover {
  color: var(--accent);
}

.footer-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  width: fit-content;
}

.footer-admin-link:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.footer-note {
  text-align: center;
  margin: 48px 0 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="80"] {
  transition-delay: 0.08s;
}

[data-animate-delay="120"] {
  transition-delay: 0.12s;
}

[data-animate-delay="160"] {
  transition-delay: 0.16s;
}

[data-animate-delay="240"] {
  transition-delay: 0.24s;
}

[data-animate-delay="320"] {
  transition-delay: 0.32s;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1200px) {
  .rooms-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .rooms-layout .section-intro {
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-header .primary-btn {
    font-size: 0.9rem;
    padding: 12px 24px;
    margin-top: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .sticky-widget {
    position: relative;
    top: unset;
    order: 3;
    width: min(100%, 420px);
  }

  .hero-media {
    order: 2;
    justify-items: center;
  }
}

@media (max-width: 960px) {
  .sticky-stack {
    min-height: auto;
  }

  .sticky-stack .card {
    position: static;
  }

  .sticky-stack .card:not(:first-child) {
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 24px;
  }

  .site-header {
    padding: 16px 24px;
    gap: 16px;
  }

  .site-header .primary-btn {
    font-size: 0.85rem;
    padding: 10px 20px;
    margin-top: 12px;
    width: auto;
    min-width: 140px;
  }

  .main-nav {
    gap: 12px;
  }

  .main-nav a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .capsule-section {
    margin: 0 12px;
    border-radius: 36px;
  }

  .capsule-section#rooms {
    margin: 0;
    border-radius: 0;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    position: static;
    margin-top: 24px;
  }
}

@media (max-width: 540px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .site-header {
    padding: 12px 16px;
    gap: 12px;
  }

  .site-header .primary-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
    margin-top: 8px;
    min-width: 120px;
  }

  .main-nav {
    gap: 8px;
    font-size: 0.85rem;
  }

  .main-nav a {
    font-size: 0.8rem;
    padding: 6px 8px;
  }

  .logo-badge {
    font-size: 1rem;
    padding: 10px 18px;
  }
}

/* Booking Modal Styles */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  overflow-y: auto;
}

.modal-content {
  background-color: var(--surface);
  margin: 2% auto;
  padding: 0;
  border-radius: 12px;
  width: 95%;
  max-width: 800px;
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--gradient);
}

.modal-header h2 {
  margin: 0;
  color: white;
  font-size: 1.5rem;
}

.close {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 2rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--surface);
  color: var(--text);
  transition: all 0.3s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
  transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(99, 102, 241, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* German date input styling */
input[type="date"] {
  font-family: inherit;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
  cursor: pointer;
}

input[type="date"]::-webkit-datetime-edit-text {
  padding: 0 2px;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
  padding: 0 2px;
}

/* Booking Info Styles */
.booking-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.booking-info h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.booking-info p {
  margin-bottom: 0.5rem;
}

/* Dropdown Styles */
.info-dropdown {
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.dropdown-btn {
  width: 100%;
  padding: 1rem;
  background: var(--surface-light);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: background-color 0.2s ease;
}

.dropdown-btn:hover {
  background: var(--surface-darker);
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}

.dropdown-btn.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  padding: 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.dropdown-content.show {
  display: block;
}

/* Info Section Styles */
.info-section h4 {
  color: var(--accent);
  margin: 1.5rem 0 0.75rem 0;
  font-size: 1.1rem;
}

.info-section h4:first-child {
  margin-top: 0;
}

.info-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.info-section li {
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.info-section li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* Housing Rules Styles */
.housing-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.rules-column h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.rules-column ol {
  padding-left: 1.5rem;
}

.rules-column li {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.rules-column strong {
  color: var(--text);
}

/* Modal Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    margin: 1% auto;
    width: 98%;
    max-height: 98vh;
  }
  
  .modal-header,
  .modal-body {
    padding: 1rem;
  }
  
  .housing-rules {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Website Rooms Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* KPI Cards */
.kpi-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kpi-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
}

.kpi-card.rooms .kpi-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.kpi-card.bookings .kpi-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.kpi-card.occupancy .kpi-icon {
  background: rgba(251, 146, 60, 0.1);
  color: #fb923c;
}

.kpi-card.enquiries .kpi-icon {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.kpi-content {
  flex: 1;
}

.kpi-content h3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.kpi-value {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.kpi-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.rooms-grid .empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--surface);
  border-radius: 12px;
  border: 2px dashed var(--border);
}

.rooms-grid .empty-state i {
  font-size: 3rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.rooms-grid .empty-state h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.rooms-grid .empty-state p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Enhanced Data Table Styling */
.data-table-container {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table thead {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 2px solid var(--border);
}

.data-table th {
  padding: 1rem 0.75rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.data-table th:last-child {
  border-right: none;
}

.data-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.data-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.02);
}

.data-table td {
  padding: 1rem 0.75rem;
  border-right: 1px solid rgba(0, 0, 0, 0.03);
  vertical-align: middle;
}

.data-table td:last-child {
  border-right: none;
}

/* Cell-specific styling */
.cell-id {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: var(--accent);
}

.guest-name {
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 0.25rem;
}

.email-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.875rem;
}

.email-link:hover {
  text-decoration: underline;
}

.phone-link {
  color: var(--text);
  text-decoration: none;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.phone-link:hover {
  color: var(--accent);
}

.cell-gender {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.cell-room-type {
  font-weight: 500;
  color: var(--text);
}

.cell-move-in {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.date-text {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.status-badge.pending {
  background: rgba(251, 146, 60, 0.1);
  color: #ea580c;
  border: 1px solid rgba(251, 146, 60, 0.2);
}

.status-badge.contacted {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.status-badge.completed {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Action buttons */
.action-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 0.875rem;
}

.action-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.action-btn.small {
  padding: 0.375rem;
  font-size: 0.75rem;
}

.action-btn.primary {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-color: rgba(59, 130, 246, 0.2);
}

.action-btn.success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border-color: rgba(34, 197, 94, 0.2);
}

/* Filter buttons */
.filter-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* No data styling */
.no-data {
  text-align: center;
  padding: 3rem 2rem;
}

.empty-state {
  color: var(--text-secondary);
}

.empty-state i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.empty-state h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.empty-state p {
  margin: 0;
}
