:root {
  --bg: #ffffff;
  --bg-alt: #f7f7fb;
  --primary: #e0a400;
  --primary-dark: #c28b00;
  --text-main: #222222;
  --text-muted: #666666;
  --accent: #222a3a;
  --radius-lg: 18px;
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.08);
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-cta {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #ffffff;
  text-align: center;
}

.section-cta p {
  max-width: 600px;
  margin: 1rem auto 2rem;
  color: #e5e7eb;
}

.center {
  text-align: center;
}

/* Typography */

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

h1 {
  font-size: clamp(2.2rem, 3vw + 1.4rem, 3rem);
}

h2 {
  font-size: clamp(1.7rem, 2vw + 1.2rem, 2.2rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.section-intro {
  max-width: 600px;
  margin: 0.5rem auto 2rem;
  color: var(--text-muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #111827;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: #ffffff;
}

.btn-outline:hover {
  background: var(--accent);
  color: #ffffff;
}

.btn-nav {
  padding-inline: 1rem;
}

.btn-large {
  padding: 0.9rem 1.9rem;
  font-size: 1rem;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.logo span {
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-main);
}

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

/* Hero */

.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 1.4rem;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: block;
}

/* Split layout */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

/* Gallery */

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

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

/* Amenities */

.amenities-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.card p {
  color: var(--text-muted);
}

/* Bullet list */

.bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.bullet-list li {
  margin-bottom: 0.6rem;
}

/* Reviews */

.reviews-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.quote {
  font-style: italic;
  margin-bottom: 0.9rem;
}

.guest {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Footer */

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem 0;
  background: #f9fafb;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* Responsive */

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

  .hero {
    padding-top: 3rem;
  }

  .hero-image {
    order: -1;
  }

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

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

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

  .nav-links {
    display: none; /* simple mobile: you can later add a burger menu if you like */
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
