:root {
  color-scheme: light;
  --midnight: #0b1020;
  --deep-navy: #121a33;
  --surf-blue: #3f8efc;
  --electric-coral: #ff6f61;
  --mist: #f5f7fb;
  --steel: #98a2b3;
  --white: #ffffff;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
  --shadow-md: 0 14px 40px rgba(15, 23, 42, 0.12);
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--midnight);
  background: var(--mist);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  background: linear-gradient(135deg, var(--surf-blue), var(--electric-coral));
  color: white;
  font-weight: 700;
  border-radius: 12px;
  padding: 8px 10px;
}

.brand__name {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 0;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--midnight);
}

.nav__links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 500;
}

.button {
  background: var(--surf-blue);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button--ghost {
  background: transparent;
  color: var(--midnight);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.button--accent {
  background: linear-gradient(135deg, var(--surf-blue), var(--electric-coral));
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(2.6rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.hero__subtext {
  color: var(--steel);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.eyebrow {
  color: var(--surf-blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.search {
  background: white;
  padding: 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.search label {
  display: grid;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--steel);
  gap: 6px;
}

.search input,
.search select {
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 10px;
  border-radius: 10px;
  font-size: 0.95rem;
}

.chip-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 8px 14px;
  background: white;
  font-weight: 500;
  cursor: pointer;
}

.chip.is-active {
  background: var(--midnight);
  color: white;
}

.hero__media {
  position: relative;
  min-height: 360px;
}

.hero__card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.hero__stats {
  display: grid;
  gap: 12px;
}

.hero__stats span {
  color: var(--steel);
  font-size: 0.85rem;
}

.hero__glow {
  position: absolute;
  inset: 40px -10px -10px 40px;
  background: radial-gradient(circle, rgba(63, 142, 252, 0.35), transparent 70%);
  filter: blur(0px);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section--alt {
  background: white;
}

.section__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.section__header p {
  color: var(--steel);
  margin-top: 8px;
}

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

.room-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 16px;
  position: relative;
}

.room-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--midnight);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.room-card__tag--accent {
  background: var(--electric-coral);
}

.room-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--steel);
}

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

.amenity-card {
  background: var(--mist);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.section__split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.list {
  margin: 16px 0 24px;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--steel);
}

.list li::before {
  content: "✔";
  margin-right: 8px;
  color: var(--surf-blue);
}

.host-card {
  background: var(--deep-navy);
  color: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.host-card__value {
  font-size: 2.5rem;
  margin: 10px 0;
}

.host-card__bar {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
  margin: 16px 0 10px;
}

.host-card__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--surf-blue), var(--electric-coral));
}

.host-card__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.muted {
  color: rgba(255, 255, 255, 0.6);
}

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

.testimonials article {
  background: white;
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.testimonials p {
  color: var(--steel);
  margin-bottom: 12px;
}

.footer {
  background: var(--midnight);
  color: white;
  padding: 48px 24px 64px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer h4 {
  margin-bottom: 12px;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
}

@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: absolute;
    top: 70px;
    right: 24px;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: none;
  }

  .nav__links.is-open {
    display: flex;
  }

  .section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter {
    flex-direction: column;
  }
}
