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

:root {
  --amber:   #c8901a;
  --amber-l: #f0c85a;
  --cream:   #faf8f3;
  --sand:    #f2ebe0;
  --bark:    #2e1f0f;
  --muted:   #7a6550;
  --yellow:  #f5c400;
  --nav-h:   72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--bark);
  background: var(--cream);
  overflow-x: hidden;
}

h1,h2,h3 { font-family: 'Playfair Display', serif; }
em { font-style: italic; }

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

/* ─── NAVBAR ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(250,248,243,0.97);
  box-shadow: 0 1px 20px rgba(46,31,15,0.10);
  backdrop-filter: blur(8px);
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.25));
  transition: filter 0.3s;
}
.nav.scrolled .nav-logo img { filter: brightness(0); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--amber); }

.nav-cta {
  background: var(--amber) !important;
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #a8730f !important; }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  border: 1.5px solid rgba(197,156,90,0.65);
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}
.nav.scrolled .lang-switch { border-color: rgba(197,156,90,0.55); }
.lang-sep { display: none; }
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.8);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  cursor: pointer;
  padding: 5px 13px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav.scrolled .lang-btn { color: var(--bark); }
.lang-btn.active { background: var(--amber); color: #fff !important; }
.lang-btn:hover:not(.active) { background: rgba(197,156,90,0.15); color: var(--amber); }
.lang-switch-mobile {
  border-color: rgba(197,156,90,0.45);
  margin-left: 0;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  align-self: flex-start;
}
.lang-switch-mobile .lang-btn { color: var(--bark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  border-radius: 2px;
}
.nav.scrolled .nav-hamburger span { background: var(--bark); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  padding: 1.5rem 2rem 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav-mobile a {
  color: var(--bark);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--sand);
}

/* ─── HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,12,4,0.65) 0%,
    rgba(20,12,4,0.80) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 700px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-l);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-logo {
  width: clamp(260px, 50vw, 480px);
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.35));
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.88;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
}
.scroll-arrow {
  width: 28px;
  height: 28px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(6px); }
}

/* ─── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--amber);
  color: #fff;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn:hover { background: #a8730f; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.btn-amber { background: var(--amber); }
.btn-amber:hover { background: #a8730f; }

.btn-lg { padding: 1rem 2.5rem; font-size: 0.95rem; }

/* ─── LAYOUT ────────────────────────────────────── */
.section { padding: 6rem 1.5rem; }

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

.center { text-align: center; }

.label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.center-label { text-align: center; }
.light-label { color: rgba(255,220,140,0.8); }

h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: var(--bark);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ─── ABOUT ─────────────────────────────────────── */
.about { background: var(--cream); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col .text h2 { margin-top: 0.5rem; }

.two-col .text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.about-tagline {
  font-style: italic;
  color: var(--amber) !important;
  font-weight: 500;
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
  font-size: 1rem !important;
  letter-spacing: 0.01em;
}

.img-stack { position: relative; }

.img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 12px 40px rgba(46,31,15,0.15);
}

.img-float {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 55%;
  height: 200px;
  object-fit: cover;
  border-radius: 3px;
  border: 4px solid var(--cream);
  box-shadow: 0 8px 24px rgba(46,31,15,0.18);
}

/* ─── LONG STAY BANNER ──────────────────────────── */
.stay-banner {
  background: linear-gradient(135deg, #2e1f0f 0%, #4a3018 100%);
  padding: 2.5rem 1.5rem;
}

.stay-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stay-leaf {
  font-size: 2rem;
  flex-shrink: 0;
}

.stay-text {
  flex: 1;
  min-width: 260px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,248,235,0.85);
}
.stay-text strong { color: #fff; font-weight: 500; }
.stay-text em { color: var(--amber-l); font-style: italic; }

/* ─── ROOMS ─────────────────────────────────────── */
/* ─── ROOMS GRID ─────────────────────────────────── */
.rooms-section { background: var(--sand); }

.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

/* Featured card — full width, dark, horizontal */
.room-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 55% 45%;
  height: 400px;
  background: #120a02;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.35s, box-shadow 0.35s;
}

.room-card--featured:hover, .room-card--featured:focus {
  border-color: rgba(197,156,90,0.55);
  box-shadow: 0 0 0 1px rgba(197,156,90,0.25), 0 10px 40px rgba(0,0,0,0.25);
}

/* Regular cards — vertical, white */
.room-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid var(--amber);
  transition: transform 0.25s, box-shadow 0.25s;
}

.room-card:hover, .room-card:focus {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(46,31,15,0.13);
}

/* Image */
.room-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
  flex-shrink: 0;
}

.room-card--featured .room-card-img { height: 100%; }

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

.room-card:hover .room-card-img img,
.room-card--featured:hover .room-card-img img { transform: scale(1.04); }

.room-card-img-overlay {
  position: absolute; inset: 0;
  background: rgba(20,14,8,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}

.room-card:hover .room-card-img-overlay,
.room-card--featured:hover .room-card-img-overlay { opacity: 1; }

.room-card-img-overlay span {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 0.5rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
}

/* Info — featured (dark) */
.room-card--featured .room-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3rem;
  color: #e4ddd4;
}

/* Info — regular (light) */
.room-card .room-card-info {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Eyebrow */
.room-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-family: 'DM Sans', sans-serif;
}
.room-card--featured .room-eyebrow { color: rgba(228,221,212,0.45); }
.room-card .room-eyebrow { color: var(--amber); }

/* Room name */
.room-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.room-card--featured .room-card-info h3 { font-size: clamp(1.5rem, 2vw, 2rem); color: #e4ddd4; transition: color 0.35s; }
.room-card .room-card-info h3 { font-size: 1.3rem; color: var(--bark); }

/* Description */
.room-card-info p { line-height: 1.7; margin-bottom: 0.9rem; }
.room-card--featured .room-card-info p { font-size: 1rem; color: rgba(255,255,255,0.8); }
.room-card .room-card-info p { font-size: 0.88rem; color: var(--muted); }

/* Tags */
.room-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.1rem; }
.room-tag {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  font-family: 'DM Sans', sans-serif;
}
.room-card--featured .room-tag { border: 1px solid rgba(255,255,255,0.28); color: rgba(255,255,255,0.75); }
.room-card .room-tag { border: 1px solid rgba(46,31,15,0.18); color: var(--muted); }

/* Bottom: price + button */
.room-card-bottom {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
}

.room-price-big {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.35s;
}
.room-price-big em {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 300;
  margin-left: 0.25rem;
}
.room-card--featured .room-price-big { color: #fff; }
.room-card--featured .room-price-big em { color: rgba(255,255,255,0.55); }
.room-card .room-price-big { color: var(--bark); }
.room-card .room-price-big em { color: var(--muted); }

/* Hover: featured amber shift */
.room-card--featured:hover .room-card-info h3 { color: #c59c5a; }
.room-card--featured:hover .room-price-big { color: #c59c5a; }

/* Enquire button */
.room-enquire-btn {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.room-card--featured .room-enquire-btn { border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.room-card--featured .room-enquire-btn:hover { background: rgba(228,221,212,0.1); border-color: rgba(197,156,90,0.6); }
.room-card .room-enquire-btn { border: 1px solid var(--amber); color: var(--amber); }
.room-card .room-enquire-btn:hover { background: var(--amber); color: #fff; }

/* Amenities strip */
.amenities-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(46,31,15,0.1);
}

.amenity {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 400;
}

/* ─── LOCATION ──────────────────────────────────── */
.location-section { background: var(--cream); }

.loc-map {
  max-width: 680px;
  margin: 2.5rem auto 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(46,31,15,0.18);
}
.loc-map img {
  width: 100%;
  height: auto;
  display: block;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.loc-card {
  background: var(--sand);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  border-bottom: 3px solid var(--amber);
  transition: transform 0.25s, box-shadow 0.25s;
}

.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(46,31,15,0.1);
}

.loc-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.loc-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.loc-dist {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.loc-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── PHOTO GRID ────────────────────────────────── */
.gallery-section { background: var(--sand); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 240px);
  gap: 0.6rem;
  margin-top: 1rem;
  grid-template-areas:
    "a b c d"
    "a e e d"
    "f g h h";
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  transition: transform 0.4s, opacity 0.3s;
  cursor: zoom-in;
}
.photo-grid img:hover { transform: scale(1.03); opacity: 0.92; }
.photo-grid img:nth-child(1) { grid-area: a; }
.photo-grid img:nth-child(2) { grid-area: b; }
.photo-grid img:nth-child(3) { grid-area: c; }
.photo-grid img:nth-child(4) { grid-area: d; }
.photo-grid img:nth-child(5) { grid-area: e; }
.photo-grid img:nth-child(6) { grid-area: f; }
.photo-grid img:nth-child(7) { grid-area: g; }
.photo-grid img:nth-child(8) { grid-area: h; }

/* ─── EXPLORE ───────────────────────────────────── */
.explore-section { background: var(--cream); }

.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.explore-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(46,31,15,0.08);
}

.explore-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.explore-info {
  background: #fff;
  padding: 1.5rem 1.75rem 2rem;
}

.explore-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.explore-info p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.explore-text-card {
  background: var(--bark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: none;
}

.explore-list {
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.exp-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.exp-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.exp-item strong {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.exp-item p {
  color: rgba(255,248,235,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ─── GUEST STORIES ─────────────────────────────── */
.reviews-section { background: var(--sand); }

.reviews-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.reviews-section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin-top: 1.25rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.review-card {
  background: #fff;
  border-radius: 6px;
  padding: 2.25rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-quote {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--amber);
  opacity: 0.3;
  margin-bottom: -0.5rem;
}

.review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--bark);
  flex: 1;
}

.review-footer {
  border-top: 1px solid var(--sand);
  padding-top: 1.1rem;
  margin-top: auto;
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bark);
  margin-bottom: 0.3rem;
}

.review-meta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

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

.faq-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.faq-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin-top: 1.25rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  margin-top: 2.5rem;
}

.faq-item {
  border-top: 1px solid rgba(46,31,15,0.12);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 0;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--bark);
  line-height: 1.4;
}

.faq-q:hover { color: var(--amber); }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 1.5rem;
}

@media (max-width: 720px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ─── HOW BOOKING WORKS ─────────────────────────── */
.process-section { background: var(--cream); }

.process-section h2 {
  margin-bottom: 2.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.process-card {
  background: #fff;
  border-top: 2px solid var(--amber);
  padding: 2rem 1.75rem 2rem;
  border-radius: 0 0 4px 4px;
}

.process-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.process-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 800px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ─── CONTACT ───────────────────────────────────── */
.contact-section {
  background: linear-gradient(150deg, #2e1f0f 0%, #3d2a14 50%, #2a1c0a 100%);
  padding: 7rem 1.5rem;
  color: #fff;
}

.contact-section h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.contact-section p {
  font-size: 1.05rem;
  color: rgba(255,248,235,0.72);
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.contact-location {
  margin-top: 2rem !important;
  font-size: 0.88rem !important;
  color: rgba(255,248,235,0.45) !important;
  line-height: 1.8 !important;
}

/* ─── SCROLL TO TOP ─────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover { transform: translateY(-3px); }

/* ─── FOOTER ────────────────────────────────────── */
footer {
  background: #1a0f05;
  text-align: center;
  padding: 3rem 1.5rem 2rem;
}

.footer-logo {
  width: clamp(160px, 30vw, 220px);
  height: auto;
  margin: 0 auto 1.25rem;
  opacity: 0.9;
}

footer p {
  font-size: 0.85rem;
  color: rgba(255,248,235,0.35);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.footer-sub {
  font-size: 0.75rem !important;
  font-style: italic;
  color: rgba(255,248,235,0.2) !important;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,248,235,0.5);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.footer-ig:hover { color: var(--amber); }

/* Nav Instagram icon */
.nav-ig {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  flex-shrink: 0;
}
.nav.scrolled .nav-ig { color: var(--muted); }
.nav-ig:hover { color: var(--amber); }

/* ─── LIGHTBOX ──────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,6,2,0.92);
}

.lb-inner {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 3px;
  transition: opacity 0.25s;
}

.lb-caption {
  margin-top: 1rem;
  color: rgba(255,248,235,0.05);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.lb-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  z-index: 3;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: #fff; }

.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
  .explore-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .pg-wide { grid-column: span 1; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .img-float { display: none; }
  .img-main { height: 300px; }

  .room-grid { grid-template-columns: 1fr; }
  .room-card--featured { grid-template-columns: 1fr; height: auto; }
  .room-card--featured .room-card-img { height: 260px; }
  .room-card--featured .room-card-info { padding: 2rem 1.5rem; }

  .stay-inner { flex-direction: column; text-align: center; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .pg-tall { grid-row: span 1; }

  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }

  .br-desktop { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 1.25rem; }
  .hero-logo { width: 75vw; }
}
