:root {
  --bg: #f8f5ef;
  --paper: #ffffff;
  --ink: #1f2937;
  --muted: #5a6472;
  --brand: #0e7490;
  --brand-dark: #0b5f75;
  --gold: #f1b546;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 158, 11, 0.12), transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(14, 116, 144, 0.10), transparent 33%),
    var(--bg);
  line-height: 1.45;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(248, 245, 239, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: #334155;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.hero {
  padding: 4.5rem 0 4rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}

.tag {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #854d0e;
  background: #fef3c7;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.lead {
  color: var(--muted);
  margin: 1.1rem 0 0;
  max-width: 60ch;
}

.actions {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  border: 1px solid #cbd5e1;
  color: #334155;
  background: #fff;
}

.btn-secondary:hover {
  border-color: #64748b;
}

.btn-gold {
  background: var(--gold);
  color: #111827;
}

.btn-gold:hover {
  background: #ffd27a;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  width: 100%;
  min-height: 320px;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 25px 50px -20px rgba(2, 8, 23, 0.35);
}

.section {
  padding: 2.8rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-head h2,
.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.section-head p {
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

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

.card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.66);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -18px rgba(2, 8, 23, 0.4);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.25rem;
  padding: 0.75rem 0.9rem 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.panel {
  border-radius: 1.3rem;
  padding: 1.6rem;
}

.panel-dark {
  background: #113548;
  color: #fff;
}

.panel-dark p {
  color: #d8e3ea;
}

.panel-dark ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.panel-dark li {
  padding: 0.72rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #f3f6f8;
}

.panel-light {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px -16px rgba(2, 8, 23, 0.3);
}

.panel-light p {
  color: #475569;
}

.reviews-carousel {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem;
  align-items: center;
}

.reviews-track-wrap {
  overflow: hidden;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 0.66rem);
  gap: 1rem;
  transition: transform 0.35s ease;
  will-change: transform;
}

.review {
  background: var(--paper);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 1rem;
  box-shadow: 0 10px 30px -18px rgba(2, 8, 23, 0.4);
}

.review p {
  color: #4b5563;
  font-size: 0.92rem;
  margin: 0.45rem 0 0;
}

.review-meta {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.74rem;
  color: #6b7280;
}

.review .stars {
  height: 14px;
  width: auto;
}

.review .airbnb {
  margin-top: 0.6rem;
  height: 14px;
  width: auto;
  opacity: 0.7;
}

.review-head {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.review-head strong {
  font-size: 1.15rem;
}

.review-location {
  color: #6b7280;
  font-size: 0.82rem;
}

.review-submeta {
  color: #6b7280;
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #334155;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 8px 18px -10px rgba(2, 8, 23, 0.4);
}

.carousel-btn:hover {
  background: #f1f5f9;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.reviews-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #cbd5e1;
  cursor: pointer;
}

.reviews-dots button.active {
  background: #0e7490;
}

.reviews-note {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.78rem;
  color: #64748b;
}

.reviews-note code {
  background: #eef2ff;
  border-radius: 6px;
  padding: 0.1rem 0.35rem;
}

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-track {
    grid-auto-columns: calc(50% - 0.5rem);
  }
}

@media (max-width: 640px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 2.5rem;
  }

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

  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .reviews-track {
    grid-auto-columns: 100%;
  }

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