:root {
  --background: #1e1e1e;
  --foreground: #e0e0e0;
  --heading: #ffffff;
  --surface: #2a2a2a;
  --surface-soft: #232323;
  --gold: #d69a32;
  --gold-soft: #f0c36d;
  --muted: #a0a0a0;
  --border: #3a3a3a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(214, 154, 50, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(214, 154, 50, 0.07), transparent 20%),
    var(--background);
  color: var(--foreground);
  font-family: Inter, Poppins, Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.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;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-elevated {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--surface);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.section-heading,
.section-copy {
  max-width: 760px;
}

.section-heading p:last-child,
.section-copy p:not(.eyebrow):not(.mini-statement) {
  margin-top: 1rem;
}

.center {
  text-align: center;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(30, 30, 30, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.2rem;
}

.brand img {
  width: min(11rem, 32vw);
}

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

.site-nav a {
  color: var(--heading);
  font-weight: 500;
}

.nav-cta {
  margin-left: 0.4rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 1px solid rgba(214, 154, 50, 0.32);
  border-radius: 999px;
  background: transparent;
  color: var(--heading);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 0.24rem 0;
  background: var(--heading);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.35rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--background);
  box-shadow: 0 16px 36px rgba(214, 154, 50, 0.18);
}

.button-secondary {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--heading);
  background: transparent;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 5.2rem);
  display: grid;
  place-items: center;
  overflow: clip;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.9) 0%, rgba(20, 20, 20, 0.78) 42%, rgba(30, 30, 30, 0.56) 100%),
    linear-gradient(180deg, rgba(30, 30, 30, 0.18), rgba(30, 30, 30, 0.78));
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 2rem;
  align-items: end;
  padding: 5rem 0;
}

.hero-copy {
  max-width: 48rem;
}

.hero-lead {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--foreground);
}

.hero-supporting {
  margin-top: 1.1rem;
  max-width: 42rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-card {
  padding: 1.7rem;
  border: 1px solid rgba(214, 154, 50, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(20, 20, 20, 0.52);
  box-shadow: var(--shadow);
}

.highlight-card h2 {
  font-size: 1.6rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  padding: 1.2rem 0 0;
  margin: 0;
  list-style: none;
}

.highlight-grid li,
.amenities-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--heading);
}

.highlight-grid li::before,
.amenities-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.about-grid,
.location-grid,
.amenities-grid,
.cta-shell,
.footer-grid,
.faq-layout {
  display: grid;
  gap: 2rem;
}

.about-grid,
.location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.mini-statement {
  margin-top: 1.5rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 2.4rem;
}

.feature-card,
.pricing-card {
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--surface);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.pricing-card:hover,
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 154, 50, 0.4);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: rgba(214, 154, 50, 0.12);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.feature-card p,
.pricing-card p,
.footer-note {
  margin-top: 0.85rem;
}

.amenities-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.amenities-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.gallery-item {
  grid-column: span 4;
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item:hover {
  border-color: var(--gold);
}

.gallery-tall {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 2.4rem;
}

.pricing-card {
  background: var(--background);
  border-color: var(--border);
}

.pricing-card.featured {
  background:
    radial-gradient(circle at top right, rgba(214, 154, 50, 0.14), transparent 38%),
    var(--background);
}

.pricing-label {
  color: var(--heading);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-top: 0.8rem;
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 2.35rem);
}

.pricing-card h3 span {
  color: var(--muted);
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 600;
}

.pricing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
}

.pricing-footer p {
  color: var(--muted);
  font-size: 0.92rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.tag-row span {
  padding: 0.7rem 1.25rem;
  border: 1px solid rgba(214, 154, 50, 0.65);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(214, 154, 50, 0.04);
}

.address-card {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(214, 154, 50, 0.2);
  border-radius: var(--radius-md);
  background: var(--background);
  color: var(--gold);
  font-weight: 600;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.map-shell {
  overflow: hidden;
  min-height: 28rem;
  border: 1px solid rgba(214, 154, 50, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.88) saturate(0.2);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(42, 42, 42, 0.95);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  color: var(--heading);
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}

.faq-list details p {
  padding: 1rem 1.25rem 1.2rem;
}

.cta-shell {
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(214, 154, 50, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(214, 154, 50, 0.12), transparent 34%),
    rgba(30, 30, 30, 0.66);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-footer {
  padding: 5rem 0 2rem;
}

.footer-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand img {
  width: min(15rem, 55vw);
}

.footer-tagline {
  margin-top: 1rem;
  color: var(--muted);
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 1rem;
}

.contact-list a:nth-child(2),
.contact-list a:nth-child(3) {
  color: var(--gold);
}

.footer-base {
  padding-top: 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 980px) {
  .hero-layout,
  .about-grid,
  .location-grid,
  .amenities-grid,
  .cta-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item,
  .gallery-tall,
  .gallery-wide {
    grid-column: span 6;
    grid-row: span 1;
  }

  .pricing-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.5rem 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(214, 154, 50, 0.18);
    border-radius: 1.2rem;
    background: rgba(34, 34, 34, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero-layout {
    padding: 4rem 0;
  }

  .highlight-grid,
  .amenities-list ul,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-tall,
  .gallery-wide {
    grid-column: span 12;
    min-height: 16rem;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 20rem;
  }
}
