/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0a0f0d;
  color: #f5f0e8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Typography ─── */
:root {
  --gold: #c9a84c;
  --gold-light: #e2c76a;
  --gold-dark: #a8872e;
  --emerald: #064e3b;
  --emerald-light: #0a7a5c;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --dark: #0a0f0d;
  --dark-card: #111a15;
  --dark-border: #1e2e24;
  --dark-surface: #162019;
}
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
.text-gold { color: var(--gold); }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: #a8b8aa;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }

/* ─── Icons ─── */
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon--sm { width: 1rem; height: 1rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }
.icon--check { width: 1.25rem; height: 1.25rem; color: var(--gold); flex-shrink: 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.4);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--lg { padding: 0.9rem 1.75rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; padding: 1rem; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 15, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
  transition: background 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
}
.logo em { font-style: italic; color: var(--gold); }
.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #b8c8ba;
  transition: color 0.2s;
}
.nav-list a:hover { color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}
.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(6, 78, 59, 0.85) 0%, rgba(10, 15, 13, 0.95) 70%),
    linear-gradient(180deg, rgba(6, 78, 59, 0.6) 0%, rgba(10, 15, 13, 0.9) 50%, #0a0f0d 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,13,0.3) 0%, transparent 30%, transparent 70%, rgba(10,15,13,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #b8c8ba;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #8fa898;
}
.trust-item .icon { color: var(--gold); width: 1rem; height: 1rem; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── About ─── */
.about { padding: 6rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 500px;
}
.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 55%;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.badge-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content p {
  color: #a8b8aa;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.about-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
  font-size: 0.95rem;
}

/* ─── Rooms ─── */
.rooms {
  padding: 6rem 0;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.room-card {
  background: var(--dark-surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.room-img {
  height: 220px;
  overflow: hidden;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-img img { transform: scale(1.05); }
.room-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.room-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
}
.room-desc {
  font-size: 0.9rem;
  color: #8fa898;
  line-height: 1.6;
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.room-features li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #a8b8aa;
  background: var(--dark);
  padding: 0.35rem 0.65rem;
  border-radius: 20px;
  border: 1px solid var(--dark-border);
}
.room-features .icon { color: var(--gold); width: 0.85rem; height: 0.85rem; }
.room-info .btn { margin-top: 0.5rem; }

/* ─── Amenities ─── */
.amenities { padding: 6rem 0; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.amenity-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.amenity-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dark);
}
.amenity-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}
.amenity-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}
.amenity-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.amenity-desc {
  font-size: 0.9rem;
  color: #8fa898;
  line-height: 1.65;
}

/* ─── Location ─── */
.location {
  padding: 6rem 0;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.location-address {
  margin: 1.5rem 0;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.8;
}
.location-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.location-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.location-contact:hover { color: var(--gold); }
.location-contact .icon { color: var(--gold); }
.location-note {
  font-size: 0.9rem;
  color: #8fa898;
  line-height: 1.65;
}
.location-map { position: relative; }
.map-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.map-img { width: 100%; height: auto; display: block; }
.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,13,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.map-overlay .btn { font-size: 0.85rem; padding: 0.75rem 1.25rem; }

/* ─── CTA / Contact ─── */
.cta { padding: 6rem 0; }
.cta-card {
  background: linear-gradient(135deg, var(--emerald), #043928);
  border-radius: 24px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content .section-title { margin-bottom: 1rem; }
.cta-content p { color: #a8d4b8; font-size: 1.05rem; line-height: 1.65; }
.cta-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8fa898;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #5a7a64; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form-group select option { background: var(--dark); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.82rem;
  color: #6a9a78;
  text-align: center;
}
.form-note a { color: var(--gold); text-decoration: underline; }
.form-note a:hover { color: var(--gold-light); }
.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  color: var(--gold-light);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-tagline {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #6a8a72;
  line-height: 1.65;
  max-width: 300px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: #6a8a72;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact address { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #6a8a72;
  line-height: 1.6;
}
.footer-contact a { color: #6a8a72; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact .icon { color: var(--gold); margin-top: 0.15rem; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: #4a6a52;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { padding: 3rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 15, 13, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--dark-border);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
  }
  .nav-list.open { transform: translateY(0); }
  .nav-list a { font-size: 1.05rem; color: var(--cream); }

  .hero-content { padding: 7rem 1.5rem 3rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 1rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { min-height: 360px; }
  .about-img-accent { width: 60%; bottom: -1rem; right: 0; }

  .rooms-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .amenities-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .location-map { order: -1; }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .about-images { min-height: 280px; }
  .about-img-accent { width: 65%; }
  .cta-card { padding: 1.5rem; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-line { animation: none; opacity: 0.5; }
  .room-card, .amenity-card { transition: none; }
  .room-card:hover, .amenity-card:hover { transform: none; }
}
