/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--deep);
}
.hero-bg {
  background-size: cover;
  background-position: center top;
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,15,7,0.92) 0%, rgba(30,15,7,0.65) 55%, rgba(30,15,7,0.3) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: repeating-linear-gradient(
    45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%
  );
  background-size: 24px 24px;
}
.hero-pyramids {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.hero-text { max-width: 640px; }
.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .15s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(240,230,211,.75);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp .8s .3s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeUp .8s .6s ease both;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-num small {
  font-size: .9rem;
  font-weight: 300;
}
.hero-stat-label {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(240,230,211,.55);
  margin-top: .2rem;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200,150,62,.3);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  z-index: 2;
  animation: fadeIn 1s 1s both;
}
.hero-scroll span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(240,230,211,.4);
  writing-mode: vertical-lr;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ─── INTRO STRIP ─────────────────────────────────────────────────────────── */
.intro-strip {
  background: var(--deep);
  border-top: 1px solid rgba(200,150,62,.15);
  border-bottom: 1px solid rgba(200,150,62,.15);
  padding: 2.5rem 0;
}
.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.intro-item {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1rem 0;
  border-right: 1px solid rgba(200,150,62,.15);
}
.intro-item:last-child { border-right: none; }
.intro-icon { font-size: 1.5rem; margin-bottom: .25rem; }
.intro-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}
.intro-text { font-size: .85rem; color: rgba(240,230,211,.65); line-height: 1.5; }

/* ─── ABOUT ───────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(30,15,7,.25);
}
.about-img-placeholder svg { width: 100%; height: 100%; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep);
  line-height: 1;
}
.about-badge-text {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--deep);
  margin-top: .2rem;
}
.gold-rule {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 1.5rem;
}
.about-text {
  font-size: .95rem;
  color: var(--textlt);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: 1.5rem;
}
.about-feature {
  font-size: .85rem;
  font-weight: 500;
  color: var(--textlt);
}

/* ─── ROOMS PREVIEW ───────────────────────────────────────────────────────── */
.rooms-preview { background: var(--sand); }
.rooms-header { margin-bottom: 3.5rem; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.room-card {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(30,15,7,.08);
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30,15,7,.15);
}
.room-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.room-card-img svg { width: 100%; height: 100%; }
.room-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,15,7,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.room-card:hover .room-card-overlay { opacity: 1; }
.room-card-body { padding: 1.5rem; }
.room-card-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.room-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: .4rem;
}
.room-card-desc {
  font-size: .85rem;
  color: var(--textlt);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.room-card-amenities {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.room-card-amenities span {
  font-size: .78rem;
  color: var(--muted);
}
.room-card-link {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold);
  transition: gap .2s;
}
.room-card-link:hover { color: var(--warm); }

/* ─── EXPERIENCE STRIP ────────────────────────────────────────────────────── */
.experience-strip {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.experience-strip-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e0f07 0%, #3d1e10 60%, #5c2d1a 100%);
}
.experience-strip-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: repeating-linear-gradient(
    -45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%
  );
  background-size: 20px 20px;
}
.experience-strip-inner { position: relative; z-index: 2; }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.exp-item { padding: 1.5rem; border-left: 2px solid rgba(200,150,62,.25); }
.exp-icon { font-size: 2rem; margin-bottom: 1rem; }
.exp-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .6rem;
}
.exp-text { font-size: .875rem; color: rgba(240,230,211,.7); line-height: 1.7; }

/* ─── LOCATION ────────────────────────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.location-items { display: flex; flex-direction: column; gap: .8rem; }
.loc-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(200,150,62,.2);
}
.loc-dist {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 80px;
}
.loc-name { font-size: .9rem; font-weight: 500; color: var(--textlt); }
.map-embed-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #2c1a0e;
  position: relative;
  box-shadow: 0 16px 48px rgba(30,15,7,.2);
  overflow: hidden;
}
.map-embed-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ─── CTA SECTION ─────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--warm);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── ANIMATIONS ──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1; }
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 0; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .intro-strip-grid { grid-template-columns: 1fr 1fr; }
  .intro-item:nth-child(2) { border-right: none; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .rooms-grid, .experience-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .intro-strip-grid { grid-template-columns: 1fr; }
  .intro-item { border-right: none; border-bottom: 1px solid rgba(200,150,62,.15); padding-bottom: 1rem; }
}

/* Real photo overrides */
.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.04); }
.room-card-img { overflow: hidden; }
.about-img-placeholder img { width:100%;height:100%;object-fit:cover;display:block; }
