@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@400;500;600&display=swap');

:root {
  --pine: #26332A;
  --pine-deep: #1A231C;
  --bark: #5C4632;
  --creek: #3E5C6B;
  --parchment: #EDE6D4;
  --parchment-light: #F5F1E6;
  --ember: #C97A3D;
  --ink: #232620;
  --line: rgba(35, 38, 32, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--parchment-light);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  color: var(--pine-deep);
}

a { color: inherit; }

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Nav */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .wordmark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: #fff;
}
.nav .cta {
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 10px 20px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav .cta:hover { background: #fff; color: var(--pine-deep); }

/* Hero */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  background: var(--pine-deep);
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,26,20,0.15) 0%, rgba(20,26,20,0.05) 40%, rgba(15,20,15,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px 72px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  max-width: 780px;
}
.hero-meta {
  margin-top: 22px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Section rhythm */
.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.section-tight { padding: 64px 0; }
.section-label {
  color: var(--creek);
  font-size: 15px;
  margin-bottom: 10px;
}
.section h2 {
  font-size: clamp(30px, 4vw, 42px);
  max-width: 640px;
}

/* Intro / about, asymmetric two-col */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.about-grid p { max-width: 60ch; color: #3a3d35; }
.about-grid p + p { margin-top: 18px; }
.about-photo {
  border-radius: 2px;
  overflow: hidden;
}
.about-photo img { height: 460px; object-fit: cover; }

/* Highlights - not identical cards, staggered */
.highlights {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.highlight {
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--line);
}
.highlight:last-child { border-right: none; }
.highlight h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.highlight p { color: #52564a; font-size: 15.5px; margin: 0; }

/* Gallery */
.gallery {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* Sleeping arrangements */
.rooms {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room img { height: 200px; object-fit: cover; border-radius: 2px; margin-bottom: 14px; }
.room h3 { font-size: 19px; margin-bottom: 4px; }
.room p { color: #52564a; margin: 0; font-size: 15px; }

/* Amenities - plain list, not icon cards */
.amenities-list {
  margin-top: 40px;
  columns: 2;
  column-gap: 48px;
  max-width: 640px;
}
.amenities-list div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
  font-size: 16px;
}

/* Location */
.location-block { margin-top: 32px; max-width: 60ch; color: #3a3d35; }
.location-block ul { padding-left: 20px; }
.location-block li { margin-bottom: 6px; }

/* Reviews */
.review-strip {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.review {
  min-width: 320px;
  max-width: 340px;
  flex-shrink: 0;
}
.review-rating { color: var(--ember); font-size: 15px; margin-bottom: 10px; }
.review p { font-style: italic; color: #3a3d35; font-size: 16px; }

/* CTA band */
.cta-band {
  background: var(--pine);
  color: var(--parchment-light);
  padding: 88px 0;
  text-align: left;
}
.cta-band h2 { color: #fff; max-width: 520px; }
.cta-band p { color: rgba(245,241,230,0.8); max-width: 480px; margin-top: 16px; }
.btn {
  display: inline-block;
  margin-top: 32px;
  background: var(--ember);
  color: #fff;
  padding: 16px 34px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease;
}
.btn:hover { background: #B36B33; }
.btn:disabled { background: #999; cursor: not-allowed; }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Footer */
footer {
  padding: 48px 32px;
  text-align: center;
  color: #6b6e60;
  font-size: 14px;
}

/* Booking page */
.booking-page { padding-top: 140px; }
.booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}
.booking-form-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 14px;
  color: var(--pine);
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: var(--parchment-light);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.summary-box {
  background: var(--parchment);
  border-radius: 4px;
  padding: 28px;
  position: sticky;
  top: 140px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.summary-row.total {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  border-bottom: none;
  padding-top: 18px;
}
.error-msg {
  color: #A33;
  font-size: 14px;
  margin-top: 12px;
  display: none;
}

/* Simple nav for interior pages */
.nav-solid {
  position: relative;
  background: var(--pine-deep);
}
.nav-solid .wordmark, .nav-solid .cta { color: #fff; }

@media (max-width: 860px) {
  .about-grid, .booking-layout { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
  .highlight { border-right: none; border-bottom: 1px solid var(--line); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery a:nth-child(1) { grid-column: span 2; }
  .rooms { grid-template-columns: 1fr; }
  .amenities-list { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
}
