/* Awesome Lodge — Galena Territory | Earthy lodge aesthetic */

:root {
  --bg:        #F5F0E8;
  --fg:        #2C1F14;
  --accent:    #8B5E3C;
  --accent2:   #4A7C59;
  --muted:     #7A6B5A;
  --card:      #FFFFFF;
  --border:    #D9CEBC;
  --hot-tub:   #3D6B5E;
  --cream:     #FAF7F2;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--fg);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 18px 48px;
  display: flex;
  align-items: center;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo {
  width: 36px;
  height: 36px;
  background: var(--fg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 18px;
}
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
}
.nav-rating {
  margin-left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.star { color: #D4A853; }
.nav-actions { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.nav-btn {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-btn-primary {
  background: var(--accent);
  color: white;
}
.nav-btn-primary:hover { background: #7A5232; }
.nav-btn-secondary {
  color: var(--muted);
  border: 1.5px solid var(--border);
  background: transparent;
}
.nav-btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2C3E2A;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,31,20,0.85) 0%, rgba(44,31,20,0.4) 60%, rgba(44,31,20,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge .star { font-size: 14px; }
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  color: white;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #7A5232; transform: translateY(-1px); }
.btn-outline-white {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat { color: white; }
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ── PHOTO GALLERY ─────────────────────────────────────── */
.photo-gallery {
  padding: 80px 48px;
  background: var(--cream);
}
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--fg);
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 220px;
  gap: 12px;
  border-radius: 16px;
  overflow: hidden;
}
.gallery-grid .g-main {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid .g-side {
  grid-column: span 2;
}
.gallery-item {
  background: var(--border);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  background: #E8E0D0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}
.gallery-placeholder-icon { font-size: 32px; opacity: 0.5; }
.gallery-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(44,31,20,0.75);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* ── PROPERTY OVERVIEW ─────────────────────────────────── */
.overview {
  padding: 80px 48px;
  background: var(--bg);
}
.overview-inner { max-width: 1100px; margin: 0 auto; }
.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.overview-card {
  background: var(--card);
  padding: 32px 28px;
  text-align: center;
}
.overview-icon {
  width: 48px;
  height: 48px;
  background: rgba(74, 124, 89, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
}
.overview-value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.overview-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.highlight-bar {
  margin-top: 32px;
  background: var(--fg);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
}
.highlight-bar-icon { font-size: 28px; flex-shrink: 0; }
.highlight-bar-text {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.highlight-bar-text strong { color: white; font-weight: 600; }

/* ── AMENITIES ─────────────────────────────────────────── */
.amenities {
  padding: 80px 48px;
  background: var(--cream);
}
.amenities-inner { max-width: 1100px; margin: 0 auto; }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.amenity-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.amenity-icon {
  width: 40px;
  height: 40px;
  background: rgba(139, 94, 60, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.amenity-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.amenity-info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── LOCATION ─────────────────────────────────────────── */
.location {
  padding: 80px 48px;
  background: var(--fg);
}
.location-inner { max-width: 1100px; margin: 0 auto; }
.location .section-title { color: white; }
.location .section-subtitle { color: rgba(255,255,255,0.6); margin-bottom: 48px; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.location-map {
  background: #3A2F22;
  border-radius: 16px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}
.location-map-icon { font-size: 48px; opacity: 0.3; }
.attractions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.attraction-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.attraction-badge {
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}
.attraction-name { font-size: 16px; font-weight: 600; color: white; margin-bottom: 4px; }
.attraction-desc { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ── REVIEWS ───────────────────────────────────────────── */
.reviews {
  padding: 80px 48px;
  background: var(--bg);
}
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 48px; }
.rating-highlight {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.rating-stars { color: #D4A853; font-size: 20px; letter-spacing: 2px; }
.rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
}
.rating-count { font-size: 14px; color: var(--muted); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.review-stars { color: #D4A853; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.review-quote::before { content: '\u201C'; }
.review-quote::after { content: '\u201D'; }
.review-author {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74, 124, 89, 0.1);
  color: var(--accent2);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

/* ── BOOKING INQUIRY ────────────────────────────────────── */
.inquiry {
  padding: 80px 48px;
  background: var(--cream);
}
.inquiry-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.inquiry .section-title { margin-bottom: 12px; }
.inquiry .section-subtitle { margin-bottom: 40px; max-width: 100%; }
.inquiry-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 15px;
  color: var(--fg);
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  margin-top: 24px;
  padding: 15px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Instrument Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: #7A5232; transform: translateY(-1px); }
.inquiry-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.success-message {
  text-align: center;
  padding: 40px;
}
.success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.success-message h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.success-message p { color: var(--muted); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 48px;
  background: var(--fg);
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
}
.footer-tagline { font-size: 13px; margin-top: 4px; }
.footer-links { margin-left: auto; display: flex; flex-direction: column; gap: 6px; text-align: right; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }

/* ── MOBILE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-rating { display: none; }
  .hero-content { padding: 60px 24px; }
  .hero-stats { gap: 20px; }
  .photo-gallery, .overview, .amenities, .location, .reviews, .inquiry { padding: 60px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .g-main { grid-column: span 2; grid-row: auto; }
  .gallery-grid .g-side { grid-column: span 1; }
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-wrap: wrap; gap: 24px; }
  .footer-links { margin-left: 0; text-align: left; }
  .highlight-bar { flex-direction: column; text-align: center; }
}