/* ─── 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: #0f1a14;
  color: #f5f0e8;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4a574;
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: #f5f0e8;
  margin-bottom: 24px;
}
.section-headline em { font-style: italic; color: #d4a574; }
.section-lead, .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #b8c4b8;
  max-width: 560px;
  margin-bottom: 20px;
}
.section { padding: 100px 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-cream {
  background: #d4a574;
  color: #0f1a14;
}
.btn-cream:hover { background: #e8b98a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,165,116,0.3); }
.btn-emerald {
  background: #064e3b;
  color: #f5f0e8;
}
.btn-emerald:hover { background: #0a6b50; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,78,59,0.4); }
.btn-outline-cream {
  background: transparent;
  color: #f5f0e8;
  border: 1.5px solid rgba(245,240,232,0.4);
}
.btn-outline-cream:hover { border-color: #d4a574; color: #d4a574; transform: translateY(-2px); }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.header.scrolled {
  background: rgba(15, 26, 20, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(212,165,116,0.1);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f5f0e8;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}
.logo-light { color: #f5f0e8; }
.logo-saloon { font-weight: 400; font-style: italic; color: #d4a574; font-size: 0.9em; }
.logo-icon { flex-shrink: 0; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245,240,232,0.75);
  transition: color 0.3s;
}
.nav a:hover { color: #d4a574; }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f5f0e8;
  transition: all 0.3s;
  border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 26, 20, 0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #f5f0e8;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: #d4a574; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/31969409/pexels-photo-31969409.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 78, 59, 0.88) 0%,
    rgba(15, 26, 20, 0.82) 40%,
    rgba(30, 18, 10, 0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d4a574;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #f5f0e8;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: #d4a574;
}
.hero-sub {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.78);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #d4a574;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212,165,116,0.3);
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(245,240,232,0.4);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Intro ─── */
.intro { background: #0f1a14; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-text p {
  color: #b8c4b8;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.intro-image img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Rooms ─── */
.rooms {
  background: linear-gradient(180deg, #0a120e 0%, #0f1a14 100%);
}
.rooms .container { text-align: center; }
.rooms .section-lead { margin: 0 auto 56px; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.room-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,165,116,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,165,116,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.room-card.featured {
  border-color: rgba(212,165,116,0.35);
  position: relative;
}
.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #d4a574;
  color: #0f1a14;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  z-index: 2;
}
.room-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.room-card-body { padding: 28px; text-align: left; }
.room-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5f0e8;
  margin-bottom: 12px;
}
.room-card-body p {
  font-size: 0.9375rem;
  color: #b8c4b8;
  line-height: 1.65;
  margin-bottom: 20px;
}
.room-amenities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.room-amenities li {
  font-size: 0.8125rem;
  color: rgba(245,240,232,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.room-amenities li svg { color: #d4a574; flex-shrink: 0; }
.rooms-note {
  font-size: 0.875rem;
  color: rgba(184,196,184,0.6);
  font-style: italic;
}

/* ─── Saloon ─── */
.saloon { background: #0a120e; }
.saloon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.saloon-content p {
  color: #b8c4b8;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.saloon-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.saloon-feature {
  display: flex;
  gap: 16px;
}
.saloon-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(212,165,116,0.1);
  border: 1px solid rgba(212,165,116,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a574;
}
.saloon-feature h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #f5f0e8;
  margin-bottom: 4px;
}
.saloon-feature p {
  font-size: 0.875rem !important;
  color: rgba(184,196,184,0.7) !important;
  margin-bottom: 0 !important;
  line-height: 1.55 !important;
}
.saloon-images { position: relative; }
.saloon-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}
.saloon-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.saloon-img-row img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

/* ─── Location ─── */
.location { background: #0f1a14; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.location-content p {
  color: #b8c4b8;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.location-details { margin: 32px 0; }
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212,165,116,0.1);
}
.location-detail:first-child { border-top: 1px solid rgba(212,165,116,0.1); }
.location-detail svg { color: #d4a574; flex-shrink: 0; margin-top: 2px; }
.location-detail strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5f0e8;
  margin-bottom: 4px;
}
.location-detail span,
.location-detail a {
  font-size: 0.9375rem;
  color: #b8c4b8;
}
.location-detail a:hover { color: #d4a574; }
.location-distances { margin-top: 32px; }
.dist-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4a574;
  margin-bottom: 16px;
}
.dist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.dist-item {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,165,116,0.08);
  border-radius: 6px;
}
.dist-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #d4a574;
  line-height: 1;
}
.dist-name {
  font-size: 0.8125rem;
  color: rgba(184,196,184,0.65);
  margin-top: 4px;
}
.location-map { position: relative; }
.map-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,165,116,0.15);
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
}
.map-icon { color: #d4a574; margin: 0 auto 16px; }
.map-placeholder p {
  font-size: 0.9375rem;
  color: #b8c4b8;
  margin-bottom: 20px;
}
.map-accent {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 16px;
  opacity: 0.7;
}

/* ─── Gallery ─── */
.gallery {
  background: #0a120e;
  padding: 100px 0 0;
}
.gallery .container { text-align: center; margin-bottom: 56px; }
.gallery .section-lead { margin: 0 auto; }
.gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 24px 100px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex-shrink: 0;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ─── Contact ─── */
.contact { background: #0f1a14; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info p {
  color: #b8c4b8;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,165,116,0.1);
  border-radius: 8px;
  transition: all 0.3s;
}
.contact-method:hover {
  border-color: rgba(212,165,116,0.3);
  background: rgba(212,165,116,0.05);
}
.contact-method svg { color: #d4a574; flex-shrink: 0; }
.contact-method span {
  font-size: 0.9375rem;
  color: #f5f0e8;
}
.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,165,116,0.12);
  border-radius: 12px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4a574;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,165,116,0.2);
  border-radius: 6px;
  color: #f5f0e8;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  transition: all 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(184,196,184,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d4a574;
  background: rgba(212,165,116,0.06);
}
.form-group select { cursor: pointer; appearance: none; }
.form-group select option { background: #0f1a14; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(6,78,59,0.3);
  border: 1px solid rgba(6,78,59,0.5);
  border-radius: 8px;
  margin-top: 16px;
  color: #8fba93;
  font-size: 0.9375rem;
}
.form-success.show { display: flex; }
.form-success svg { color: #8fba93; flex-shrink: 0; }

/* ─── CTA ─── */
.cta {
  background: linear-gradient(135deg, #064e3b 0%, #0a120e 60%, #1a1208 100%);
  padding: 120px 0;
  text-align: center;
}
.cta-eyebrow { color: rgba(212,165,116,0.7); }
.cta-headline { margin-bottom: 20px; }
.cta-text {
  font-size: 1.125rem;
  color: rgba(184,196,184,0.8);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─── */
.footer {
  background: #060e09;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(212,165,116,0.08);
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.875rem;
  color: rgba(184,196,184,0.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-links h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f5f0e8;
  margin-bottom: 20px;
}
.footer-links a,
.footer-links span {
  display: block;
  font-size: 0.875rem;
  color: rgba(184,196,184,0.55);
  padding: 6px 0;
  transition: color 0.3s;
  line-height: 1.5;
}
.footer-links a:hover { color: #d4a574; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  font-size: 0.8125rem;
  color: rgba(184,196,184,0.35);
}
.footer-bottom a { color: rgba(184,196,184,0.55); transition: color 0.3s; }
.footer-bottom a:hover { color: #d4a574; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav { display: none; }
  .mobile-toggle { display: flex; }
  .hero-headline { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.5rem; }
  .intro-grid,
  .saloon-grid,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .saloon-features { grid-template-columns: 1fr; }
  .saloon-img-main img { height: 320px; }
  .saloon-img-row img { height: 160px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .dist-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; }
}
