:root {
  --ink: #262420;
  --ink-soft: #56514a;
  --sage: #7c8768;
  --sage-dark: #5f6950;
  --tan: #af8e60;
  --tan-dark: #8c6f47;
  --tan-light: #e3d3b2;
  --cream: #faf6ee;
  --cream-alt: #f2ead9;
  --paper: #ffffff;
  --line: #e2d6bd;
  --radius: 14px;
  --shadow: 0 16px 44px rgba(38, 36, 32, 0.12);
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0 0 0.4em;
  color: var(--ink);
  line-height: 1.15;
}

a { color: inherit; }

/* Eyebrow labels */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan-dark);
  margin: 0 0 14px;
  padding-bottom: 12px;
  position: relative;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--tan);
}
.eyebrow-light { color: var(--tan-light); }
.eyebrow-light::after { background: var(--tan-light); }

.intro .eyebrow,
.experience .eyebrow {
  padding-left: 0;
}
.intro .eyebrow::after,
.experience .eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Decorative divider (echoes the logo's rule-line motif) */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 220px;
  margin: 26px auto 0;
}
.divider span { flex: 1; height: 1px; background: var(--line); }
.divider i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tan);
  display: block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 74px; width: auto; display: block; }

.site-header nav a {
  text-decoration: none;
  color: var(--ink-soft);
  margin-left: 30px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.15s;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.site-header nav a:hover { color: var(--tan-dark); border-bottom-color: var(--tan); }

/* Hero */
.hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,22,18,0.5) 0%, rgba(24,22,18,0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  color: #fff;
  margin-bottom: 0.25em;
}
.hero p {
  font-weight: 300;
  font-size: 1.15rem;
  max-width: 480px;
  color: var(--cream-alt);
  margin-bottom: 1.7em;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Intro */
.intro {
  padding: 68px 0 36px;
  text-align: center;
}
.intro p {
  max-width: 720px;
  margin: 0 auto 18px;
  color: var(--ink-soft);
  font-size: 1.1rem;
  font-weight: 300;
}

/* Experience */
.experience {
  background: var(--ink);
  color: var(--cream);
  padding: 92px 0;
  text-align: center;
}
.experience h2 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 0.6em;
}
.experience p {
  max-width: 720px;
  margin: 0 auto 16px;
  color: #cfc9bf;
  font-size: 1.08rem;
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.1s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--tan);
  color: #26211a;
}
.btn-primary:hover { background: var(--tan-dark); color: #fff; }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.75);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* Lodge sections */
.lodge {
  padding: 76px 0;
}
.lodge-alt { background: var(--cream-alt); }

.lodge-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
}
.lodge-grid-reverse { direction: rtl; }
.lodge-grid-reverse > * { direction: ltr; }

/* Gallery */
.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: #ddd;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity 0.15s, border-color 0.15s;
}
.thumb:hover { opacity: 0.9; }
.thumb.active {
  opacity: 1;
  border-color: var(--tan);
}

/* Lodge info */
.lodge-info h2 { font-size: 2.1rem; }

.lodge-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.badge {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--tan);
  color: var(--tan-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
}
.price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0;
}
.price strong { font-size: 1.65rem; color: var(--tan-dark); font-weight: 700; }
.lodge-desc { color: var(--ink-soft); font-weight: 300; }

.amenities {
  list-style: none;
  padding: 0;
  margin: 22px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.amenities li {
  font-size: 0.93rem;
  padding-left: 24px;
  position: relative;
  color: var(--ink);
}
.amenities li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--tan);
  font-weight: 700;
}

/* Booking form */
.booking-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
label {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  gap: 6px;
}
input, select {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  color: var(--ink);
}
input:focus, select:focus {
  outline: 2px solid var(--tan);
  outline-offset: 1px;
}

.booking-summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0 20px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-top: 1px dashed var(--line);
  margin-top: 4px;
}
.total-line { font-family: var(--font-serif); font-weight: 700; color: var(--ink); font-size: 1.15rem; }

.btn-book { width: 100%; text-align: center; }

/* Footer */
.site-footer {
  background: var(--cream-alt);
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: 56px 0 20px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-logo { height: 90px; width: auto; display: block; margin-bottom: 10px; }
.footer-brand p { color: var(--ink-soft); margin: 4px 0; max-width: 320px; font-weight: 300; }
.footer-contact h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan-dark);
  margin-bottom: 10px;
}
.footer-contact p { color: var(--ink-soft); margin: 4px 0; font-weight: 300; }
.fine-print {
  text-align: center;
  font-size: 0.78rem;
  color: #948d7e;
  margin: 36px 0 0;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24,22,18,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(20,18,15,0.35);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}
.checkout-form label { margin-bottom: 12px; }
.modal-summary {
  background: var(--cream-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 18px;
}
.hidden { display: none !important; }

.confirmation { text-align: center; }
.confirm-tick {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tan);
  color: #26211a;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.confirmation p { color: var(--ink-soft); }

/* Responsive */
@media (max-width: 860px) {
  .lodge-grid, .lodge-grid-reverse { grid-template-columns: 1fr; }
  .lodge-grid-reverse { direction: ltr; }
  .site-header nav a { margin-left: 16px; font-size: 0.72rem; }
  .brand-logo { height: 54px; }
  .header-inner { padding: 8px 0; }
  .lodge { padding: 64px 0; }
  .gallery-thumbs { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .lodge-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
}
