:root {
  --bg: #ffffff;
  --surface: #f6f7f9;
  --text: #0f172a;
  --muted: #5b6474;
  /* WCAG contrast hardening: slightly darker accent improves text contrast on light backgrounds/buttons */
  --accent: #255de6;
  --accent-soft: rgba(37, 93, 230, 0.12);
  --border: #e5e7eb;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --radius: 20px;
  --max-width: 1180px;
  --font: "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

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

p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.3rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
  padding: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 0;
}

.logo--stack {
  align-items: flex-start;
  gap: 16px;
  text-transform: none;
}

.logo-wordmark {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.btn-icon svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.2);
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: #fff;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.hero {
  padding: 80px 0 60px;
}

.hero-usp {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 24px;
}

.hero-usp .badge {
  background: var(--accent-soft);
  color: var(--text);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
}

.hero-subline {
  font-size: 1.05rem;
  color: var(--text);
}

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

.hero-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.hero-brand .logo-mark {
  width: 88px;
  height: 88px;
}

.hero-brand-title {
  margin: 0 0 6px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.hero-card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

[data-direct-booking-benefits]:empty {
  min-height: 220px;
}

.hero-card [data-direct-booking-benefits]:empty {
  min-height: 420px;
}

.benefit-card {
  background: #fff;
}

.property-card__media {
  margin-bottom: 16px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 16px;
}

.property-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.08), rgba(47, 107, 255, 0.2));
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 16px;
  align-items: center;
}

.cta-banner .nav-actions {
  justify-content: flex-start;
}

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

.cta-box {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  display: grid;
  gap: 24px;
}

.cta-box__benefits {
  display: grid;
  gap: 16px;
}

.blog-card .badge,
.property-card .badge {
  display: inline-flex;
  margin-bottom: 12px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  z-index: 90;
  margin: 24px 0;
  display: none;
}

.sticky-cta .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
}

.section {
  padding: 70px 0;
}

.section-muted {
  background: var(--surface);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-profile {
  align-items: center;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.reviews-intro {
  max-width: 840px;
  margin-bottom: 24px;
  color: var(--muted);
}

.reviews-platform {
  margin-top: 32px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.reviews-summary {
  font-weight: 600;
  color: var(--text);
}

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

.review-card {
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  background: #fbfbfc;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.review-card h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.review-card p {
  margin-bottom: 12px;
}

.review-card .review-meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

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

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.toc a {
  color: var(--accent);
}

.legal-section {
  margin-top: 32px;
}

.legal-card ul,
.legal-card ol {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
}

.legal-card li {
  margin-bottom: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
}

.breadcrumbs {
  margin: 20px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumbs li::after {
  content: "/";
  color: var(--border);
  margin-left: 6px;
}

.breadcrumbs li:last-child::after {
  content: "";
  margin: 0;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs [aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

.cta-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.section-actions {
  margin-top: 20px;
}

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

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list li span {
  font-size: 1.1rem;
  color: var(--accent);
}

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

.gallery figure {
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.gallery figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-figure {
  margin: 0 0 16px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.booking-embed {
  min-height: 560px;
  height: auto;
  overflow: visible;
}

.booking-embed iframe {
  width: 100% !important;
  min-height: 560px;
  max-height: none;
  border: 0;
  display: block;
}

footer {
  padding: 50px 0 60px;
  border-top: 1px solid var(--border);
  background: #fff;
}

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

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.8rem;
}

.notice {
  padding: 18px;
  border-radius: 16px;
  border: 1px dashed var(--border);
  background: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 380px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 999;
}

.cookie-banner.show {
  display: block;
}

@media (max-width: 1024px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
  }

  .hero {
    padding: 70px 0 50px;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .nav-links a {
    padding: 6px 0;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 50px;
  }

  .hero-card [data-direct-booking-benefits]:empty {
    min-height: 320px;
  }

  .nav {
    align-items: stretch;
  }

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

  .btn {
    width: 100%;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-card {
    padding: 22px;
  }

  .section {
    padding: 54px 0;
  }

  .card {
    padding: 20px;
  }

  .reviews-platform {
    padding: 22px;
  }

  .booking-embed {
    min-height: 520px;
  }

  .booking-embed iframe {
    min-height: 520px;
  }

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

  .footer-grid {
    gap: 20px;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 18px;
  }

  h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-brand .logo-mark {
    width: 64px;
    height: 64px;
  }

  .tag {
    font-size: 0.8rem;
  }

  .booking-embed {
    min-height: 520px;
  }

  .booking-embed iframe {
    min-height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition: none !important;
  }
}
