/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #faf8f4;
  --white:   #ffffff;
  --dark:    #1a1a1a;
  --mid:     #555555;
  --light:   #888888;
  --gold:    #b8965a;
  --gold-dk: #9a7a44;
  --border:  #e8e2d9;
  --card-bg: #ffffff;
  --radius:  8px;
  --shadow:  0 2px 16px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

/* ── Nav ──────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--dark);
  letter-spacing: .02em;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: .45rem 1.1rem;
  border-radius: var(--radius);
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--gold-dk) !important; color: var(--white) !important; }

/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); margin: 5px 0; transition: .3s;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2c2416 0%, #4a3728 50%, #2c2416 100%);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
  opacity: .45;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 740px;
  padding: 2rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  border: 1px solid var(--gold);
  padding: .3rem .9rem;
  border-radius: 2rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.1rem;
  opacity: .88;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: .2s;
  cursor: pointer;
  border: none;
}

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dk); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  margin-left: .8rem;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ── Section shared ───────────────────────────────────── */
section { padding: 5rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-sub {
  color: var(--mid);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ── Features strip ───────────────────────────────────── */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow .2s;
}

.feature-card:hover { box-shadow: var(--shadow); }

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.feature-card p { font-size: .9rem; color: var(--mid); }

/* ── Rooms grid ───────────────────────────────────────── */
.rooms-section { background: var(--cream); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.room-img {
  height: 210px;
  background: #d4c9b8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.room-img img { width: 100%; height: 100%; object-fit: cover; }

.room-img-placeholder {
  font-size: 3rem;
  opacity: .3;
}

.room-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.room-price {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}

.room-body h3 { font-size: 1.35rem; margin-bottom: .5rem; }

.room-body p { font-size: .9rem; color: var(--mid); margin-bottom: 1rem; flex: 1; }

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.2rem;
}

.tag {
  font-size: .75rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: .2rem .7rem;
  color: var(--mid);
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-size: .85rem;
  color: var(--light);
}

.room-size { font-weight: 600; color: var(--mid); }

.btn-room {
  background: var(--gold);
  color: var(--white);
  padding: .4rem 1rem;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 700;
  transition: background .2s;
}

.btn-room:hover { background: var(--gold-dk); }

/* ── Location strip ───────────────────────────────────── */
.location { background: var(--white); }

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  background: #e0d9cf;
}

.location-map iframe { width: 100%; height: 100%; border: none; }

.location-list { list-style: none; }

.location-list li {
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--mid);
}

.location-list li:last-child { border-bottom: none; }

.loc-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-section { background: var(--cream); }

.faq-list { max-width: 740px; }

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: .75rem;
  overflow: hidden;
}

details[open] { box-shadow: var(--shadow); }

summary {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform .2s;
  flex-shrink: 0;
}

details[open] summary::after { content: '−'; }

.faq-answer {
  padding: 0 1.4rem 1.2rem;
  color: var(--mid);
  font-size: .93rem;
  line-height: 1.8;
}

/* ── Contact ──────────────────────────────────────────── */
.contact-section { background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.1rem;
  font-size: .93rem;
  color: var(--mid);
}

.contact-detail .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }

.contact-detail a { color: var(--gold); }
.contact-detail a:hover { text-decoration: underline; }

/* Form */
.form-group { margin-bottom: 1.2rem; }

label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .4rem;
  letter-spacing: .03em;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  transition: border-color .2s;
  outline: none;
}

input:focus, textarea:focus { border-color: var(--gold); background: var(--white); }

textarea { resize: vertical; min-height: 130px; }

.form-submit { margin-top: .5rem; }

.form-note {
  font-size: .8rem;
  color: var(--light);
  margin-top: .8rem;
}

/* ── Footer ───────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: .88rem;
}

footer strong { color: var(--white); }
footer a { color: var(--gold); }
footer a:hover { text-decoration: underline; }

/* ── Photo gallery ────────────────────────────────────── */
.room-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .5rem;
  margin-top: 1.4rem;
}

.room-gallery a {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--border);
}

.room-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.room-gallery a:hover img { transform: scale(1.06); }

/* lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.5rem;
  color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 2.5rem; cursor: pointer; background: none; border: none;
  padding: 0 1rem; user-select: none;
}
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

/* ── Page hero (inner pages) ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #2c2416 0%, #4a3728 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .7rem; }
.page-hero p { opacity: .75; max-width: 480px; margin: 0 auto; }

/* ── Rooms page ───────────────────────────────────────── */
.rooms-page { background: var(--cream); }

.room-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}

.room-detail-img {
  height: 100%;
  min-height: 260px;
  background: #d4c9b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: .3;
  overflow: hidden;
}

.room-detail-img img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }

.room-detail-body { padding: 2rem 2.5rem; }

.room-detail-body h2 { font-size: 1.7rem; margin-bottom: .3rem; }

.room-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: var(--mid);
}

.room-meta .price { color: var(--gold); font-weight: 700; font-size: 1.1rem; }

.room-detail-body p { color: var(--mid); margin-bottom: 1.2rem; font-size: .95rem; }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--mid);
}

.amenity-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); padding: 1rem 2rem; border-top: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .location-inner,
  .contact-inner,
  .room-detail-card { grid-template-columns: 1fr; }

  .room-detail-img { min-height: 200px; }

  .btn-outline { margin-left: 0; margin-top: .6rem; }

  .hero-content .btn-outline { display: none; }
}
