:root {
  --dark: #111111;
  --dark-soft: #1c1c1c;
  --cream: #f6f1e8;
  --white: #ffffff;
  --gray: #707070;
  --gold: #c9a45c;
  --gold-dark: #a98336;
  --border: rgba(0, 0, 0, 0.1);
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section-padding {
  padding: 110px 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  color: var(--white);
  max-width: 950px;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  color: var(--dark);
}

h3 {
  font-size: 1.8rem;
}

p {
  color: var(--gray);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 0.3s ease;
}

.header.scrolled {
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.navbar {
  width: min(1240px, 94%);
  margin: auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo small {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.3s ease;
}

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

.nav-btn {
  border: 1px solid var(--gold);
  padding: 12px 22px;
  border-radius: 40px;
}

.nav-btn:hover {
  background: var(--gold);
  color: var(--dark) !important;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  width: 34px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 8px 0;
}

.hero {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("1000058256.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 140px 4% 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, rgba(201,164,92,0.15), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1050px;
}

.hero-text {
  color: rgba(255,255,255,0.82);
  max-width: 650px;
  font-size: 1.08rem;
  margin: 28px 0 38px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: 0.3s ease;
}

.btn.primary {
  background: var(--gold);
  color: var(--dark);
}

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

.btn.secondary {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.btn.secondary:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 45px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(15px);
  display: flex;
  box-shadow: var(--shadow);
}

.hero-card div {
  padding: 26px 34px;
  border-right: 1px solid var(--border);
}

.hero-card div:last-child {
  border-right: none;
}

.hero-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--dark);
}

.hero-card span {
  color: var(--gray);
  font-size: 0.85rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.intro-text p {
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.feature-image {
  width: min(1180px, 92%);
  margin: auto;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img {
  height: 620px;
  object-fit: cover;
}

.highlights {
  padding-top: 70px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.highlight-box {
  background: var(--white);
  padding: 34px 28px;
  border: 1px solid var(--border);
  transition: 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.highlight-box h3 {
  margin-bottom: 14px;
}

.split-section {
  background: var(--dark);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.split-image {
  border-radius: 26px;
  overflow: hidden;
}

.split-image img {
  height: 620px;
  object-fit: cover;
}

.split-content h2,
.split-content p,
.split-content li {
  color: var(--white);
}

.split-content p {
  color: rgba(255,255,255,0.76);
  margin: 24px 0;
}

.clean-list {
  list-style: none;
  margin-top: 25px;
}

.clean-list li {
  border-bottom: 1px solid rgba(255,255,255,0.16);
  padding: 14px 0;
}

.clean-list li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 12px;
}

.center-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.amenity-card {
  background: var(--white);
  padding: 34px 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.1);
}

.amenity-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 18px;
}

.amenity-card h3 {
  margin-bottom: 8px;
}

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-img {
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.02);
  filter: brightness(0.82);
}

.gallery-img.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-img.wide {
  grid-column: span 2;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.location-grid p {
  margin-top: 24px;
}

.location-points {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.location-points div {
  background: var(--white);
  padding: 22px;
  border-left: 4px solid var(--gold);
}

.location-points strong,
.location-points span {
  display: block;
}

.location-points span {
  color: var(--gray);
  margin-top: 4px;
}

.map-box {
  border-radius: 28px;
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.book-section {
  background-position: center center;
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)),
    url("1000058256.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 4%;
}

.book-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.book-content h2 {
  color: var(--white);
}

.book-content p {
  color: rgba(255,255,255,0.8);
  margin: 24px 0 34px;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-bottom: 18px;
}

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

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 24px;
}

.top-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--dark);
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  z-index: 999;
}

.top-btn.show {
  display: block;
}

@media (max-width: 1000px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px;
    transition: 0.35s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-btn {
    display: block;
    z-index: 1000;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 50px;
    flex-wrap: wrap;
  }

  .hero {
    background-position: center center;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .intro-grid,
  .split-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-img.large,
  .gallery-img.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .section-padding {
    padding: 75px 0;
  }

  .navbar {
    height: 75px;
  }

  .logo span {
    font-size: 1.45rem;
  }

  .hero {
    padding-top: 120px;
  }

  .book-section {
  background-position: center center;
}

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .hero-card {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-card div {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hero-card div:last-child {
    border-bottom: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .feature-image img,
  .split-image img {
    height: 430px;
  }

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

  .gallery-grid {
    grid-auto-rows: 330px;
  }

  .map-box {
    height: 380px;
  }
}