:root {
  --bg: #07111c;
  --bg-soft: #0d1b2a;
  --surface: rgba(10, 20, 31, 0.7);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6fbff;
  --muted: rgba(246, 251, 255, 0.76);
  --accent: #79daff;
  --accent-2: #f6c97b;
  --shadow: 0 28px 85px rgba(0, 0, 0, 0.38);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(121, 218, 255, 0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(246, 201, 123, 0.14), transparent 24%),
    linear-gradient(180deg, #040a12 0%, var(--bg) 50%, #081320 100%);
}

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

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

.wrap {
  width: min(calc(100% - 32px), var(--wrap));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(4, 10, 16, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.brand span {
  display: grid;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand small,
.eyebrow,
.property-tag,
.panel-kicker {
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #4db8ea 0%, #64c9f8 58%, #f2d099 59%, #f6dfa8 100%);
  box-shadow: 0 10px 30px rgba(121, 218, 255, 0.2);
}

.brand-mark .sun {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffefbf;
  box-shadow: 0 0 0 4px rgba(255, 239, 191, 0.25);
}

.brand-mark .wave {
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 10px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eaf9ff, #f4feff);
  opacity: 0.92;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.property-links a:hover,
.footer a:hover {
  color: var(--accent);
}

.hero {
  padding: 82px 0 28px;
}

.hero-grid,
.split-layout,
.contact-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 0.98;
  margin: 12px 0 16px;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 11ch;
}

.section-title,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 15ch;
}

.lede,
.section-heading p,
.property-body p,
.availability-panel,
.contact-card,
.footer-inner {
  color: var(--muted);
  line-height: 1.7;
}

.lede {
  max-width: 64ch;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions,
.property-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #d3f3ff);
  color: #07111c;
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-stats li,
.glass-panel,
.property-card,
.availability-panel,
.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-stats li {
  padding: 18px 16px;
  border-radius: 20px;
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  display: grid;
  gap: 18px;
}

.glass-panel,
.property-card,
.availability-panel,
.contact-card {
  border-radius: var(--radius-xl);
}

.glass-panel {
  padding: 28px;
}

.checklist {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text);
}

.checklist li + li {
  margin-top: 12px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature-strip div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.feature-strip span,
.availability-item span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.feature-strip strong,
.availability-item strong {
  font-size: 1rem;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.property-card {
  overflow: hidden;
}

.property-media-link {
  display: block;
}

.property-thumb,
.property-media {
  width: 100%;
  min-height: 230px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(121, 218, 255, 0.12), rgba(246, 201, 123, 0.12));
}

.property-media {
  background-size: cover;
  background-position: center;
}

.property-thumb[src$='.svg'] {
  object-fit: contain;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.property-body {
  padding: 24px;
}

.property-body h3 {
  margin: 8px 0 10px;
  font-size: 1.5rem;
}

.mini-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.mini-list li + li {
  margin-top: 8px;
}

.property-links a {
  color: var(--accent);
  font-weight: 700;
}

.platform-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  min-width: 112px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
}

.platform-btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.platform-btn.airbnb {
  background: #ffffff;
}

.platform-btn.vrbo {
  background: #ffffff;
}

.platform-btn.airbnb .logo-chip {
  background: #ff385c;
}

.platform-btn.vrbo .logo-chip {
  background: #1f5be2;
}

.logo-chip {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
}

.platform-logo {
  height: 22px;
  object-fit: contain;
  display: block;
}

.wordmark-airbnb {
  width: 74px;
}

.wordmark-vrbo {
  width: 62px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-gap {
  margin-top: 18px;
}

.split-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.availability-panel {
  padding: 24px;
}

.availability-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.availability-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.compact {
  margin-top: 14px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .split-layout,
  .contact-grid,
  .property-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-stats,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }
}
