:root {
  --navy: #1B3A5C;
  --navy-deep: #0F2440;
  --navy-mid: #2A5288;
  --navy-light: #EBF2FA;
  --cream: #FDFAF5;
  --cream2: #F5F0E8;
  --sand: #E8DFD0;
  --sand2: #D4C9B8;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-mid: #4A5568;
  --text-light: #8896A8;
  --accent: #C8A96E;
  --accent2: #E4C98A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream2); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 2px; }

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 74px;
  background: rgba(253,250,245,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,58,92,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(27,58,92,0.1); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy); text-decoration: none;
  display: flex; align-items: baseline; gap: 6px;
}
.nav-logo sup {
  font-family: 'DM Sans', sans-serif; font-size: 0.55rem;
  font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-light); vertical-align: super;
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-mid); text-decoration: none;
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.05em;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--navy);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); font-weight: 500; }

.nav-book {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: 2px;
  font-size: 0.72rem !important; font-weight: 500 !important;
  letter-spacing: 0.06em; transition: background 0.2s !important;
}
.nav-book::after { display: none !important; }
.nav-book:hover { background: var(--navy-deep) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 74px; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 999;
  flex-direction: column; padding: 2.5rem 5vw; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); text-decoration: none;
  font-size: 1.5rem; font-family: 'Playfair Display', serif;
  padding: 1rem 0; border-bottom: 1px solid var(--sand);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--navy); }

/* ─── PAGES ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; padding-top: 74px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  background: var(--cream);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6vw 5vw 6vw 7vw; position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-light); color: var(--navy);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 2rem; width: fit-content;
  animation: fadeLeft 0.9s ease both;
}
.hero-tag::before { content: '●'; font-size: 0.4rem; color: var(--accent); }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 700; line-height: 1.08; color: var(--navy-deep);
  margin-bottom: 1.5rem;
  animation: fadeLeft 0.9s ease 0.15s both;
}
.hero-title em { font-style: italic; color: var(--navy-mid); }
.hero-title .highlight { position: relative; white-space: nowrap; }
.hero-title .highlight::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 8px; background: rgba(200,169,110,0.28); z-index: -1;
  border-radius: 2px;
}

.hero-desc {
  font-size: 0.92rem; line-height: 1.85; color: var(--text-mid);
  max-width: 440px; margin-bottom: 2.8rem;
  animation: fadeLeft 0.9s ease 0.3s both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeLeft 0.9s ease 0.45s both;
}
.btn-navy {
  background: var(--navy); color: var(--white);
  padding: 14px 32px; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.06em; text-decoration: none;
  transition: all 0.25s; display: inline-block; border-radius: 2px;
}
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(27,58,92,0.25); }
.btn-ghost {
  background: transparent; color: var(--navy);
  padding: 13px 32px; border: 1.5px solid var(--navy);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em;
  text-decoration: none; transition: all 0.25s; display: inline-block; border-radius: 2px;
}
.btn-ghost:hover { background: var(--navy-light); transform: translateY(-2px); }

.hero-metrics {
  display: flex; gap: 2.5rem; margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--sand);
  animation: fadeLeft 0.9s ease 0.6s both;
}
.metric-num {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: var(--navy); font-weight: 700; display: block;
}
.metric-label { font-size: 0.65rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

.hero-right {
  position: relative; overflow: hidden;
  animation: fadeIn 1.2s ease 0.2s both;
}
.hero-img-main {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.92) saturate(0.9);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, transparent 8%);
}
.hero-float-card {
  position: absolute; bottom: 3rem; left: -1.5rem;
  background: var(--white); padding: 1.2rem 1.5rem;
  box-shadow: 0 10px 40px rgba(27,58,92,0.15);
  border-left: 3px solid var(--navy); min-width: 200px;
  animation: floatUp 1s ease 0.8s both;
}
.hero-float-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.hero-float-val { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); font-weight: 600; }

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-25px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* ─── PROMO STRIP ─── */
.promo-strip {
  background: var(--navy); color: var(--white);
  padding: 1rem 5vw;
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  flex-wrap: wrap; text-align: center;
}
.promo-strip p { font-size: 0.78rem; letter-spacing: 0.04em; opacity: 0.9; }
.promo-strip strong { color: var(--accent2); }
.promo-pill {
  background: var(--accent); color: var(--navy-deep);
  padding: 6px 18px; border-radius: 20px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap; text-decoration: none; transition: background 0.2s;
}
.promo-pill:hover { background: var(--accent2); }

/* ─── SECTION COMMONS ─── */
section { padding: 6rem 5vw; }
.section-tag {
  display: inline-block; font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--navy); background: var(--navy-light);
  padding: 5px 12px; border-radius: 20px; margin-bottom: 1.2rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
  color: var(--navy-deep); line-height: 1.2; margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--navy-mid); }
.section-body { font-size: 0.88rem; line-height: 1.85; color: var(--text-mid); max-width: 560px; }
.rule { width: 48px; height: 2.5px; background: var(--navy); border-radius: 2px; margin: 1.2rem 0; }
.rule-center { margin: 1.2rem auto; }

/* ─── ABOUT ─── */
.about { background: var(--white); }
.about-wrap {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 6vw; align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-imgs { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: brightness(0.9) saturate(0.85);
}
.about-img-inset {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 48%; aspect-ratio: 1; object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 12px 40px rgba(27,58,92,0.15);
  filter: brightness(0.9) saturate(0.85);
}
.about-dots {
  position: absolute; top: -1rem; left: -1rem;
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, var(--sand) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  pointer-events: none;
}
.about-badge2 {
  position: absolute; top: 2rem; right: -2rem;
  background: var(--navy); color: var(--white);
  padding: 1.2rem 1.5rem; text-align: center;
  box-shadow: 0 8px 30px rgba(27,58,92,0.25);
}
.about-badge2-num {
  font-family: 'Playfair Display', serif; font-size: 2.2rem;
  font-weight: 700; color: var(--accent2); display: block;
}
.about-badge2-text { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; margin-top: 3px; }

.about-content { padding-right: 2rem; }
.about-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.about-list-item { display: flex; gap: 1rem; align-items: flex-start; }
.check {
  width: 22px; height: 22px; background: var(--navy-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; font-size: 0.6rem; color: var(--navy);
}
.about-list-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
.about-list-text strong { color: var(--text); font-weight: 500; }

/* ─── AMENITIES ─── */
.amenities { background: var(--cream); }
.amenities-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.amenities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.amen-card {
  background: var(--white); padding: 2.2rem 1.8rem;
  border-radius: 4px; border: 1px solid var(--sand);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.amen-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--navy); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s;
}
.amen-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(27,58,92,0.1); }
.amen-card:hover::before { transform: scaleX(1); }
.amen-icon {
  width: 48px; height: 48px; background: var(--navy-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.2rem;
}
.amen-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy-deep); margin-bottom: 0.5rem; font-weight: 600; }
.amen-desc { font-size: 0.78rem; color: var(--text-light); line-height: 1.7; }

/* ─── ROOMS ─── */
.rooms { background: var(--white); }
.rooms-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.room-card {
  background: var(--cream); border-radius: 4px; overflow: hidden;
  transition: all 0.3s; border: 1px solid var(--sand);
}
.room-card:hover { box-shadow: 0 18px 50px rgba(27,58,92,0.12); transform: translateY(-5px); }
.room-img-wrap { overflow: hidden; aspect-ratio: 16/10; }
.room-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.9) saturate(0.85); }
.room-card:hover .room-img { transform: scale(1.06); }
.room-body { padding: 1.8rem; }
.room-category {
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--navy); background: var(--navy-light);
  padding: 4px 10px; border-radius: 20px; width: fit-content; margin-bottom: 0.8rem;
}
.room-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--navy-deep); margin-bottom: 0.8rem; font-weight: 600; }
.room-features { display: flex; gap: 1rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.room-feat { font-size: 0.68rem; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.room-feat::before { content: ''; display: block; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* ─── GALLERY ─── */
.gallery-sec { background: var(--cream); }
.gallery-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 8px; max-width: 1400px; margin: 0 auto;
}
.gal-item {
  aspect-ratio: 4/3; overflow: hidden; cursor: pointer;
  position: relative; background: var(--sand); border-radius: 3px;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease, filter 0.35s;
  filter: brightness(0.9) saturate(0.85);
}
.gal-item:hover img { transform: scale(1.08); filter: brightness(1) saturate(1); }
.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(27,58,92,0); transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gal-item:hover .gal-overlay { background: rgba(27,58,92,0.15); }
.gal-zoom {
  width: 42px; height: 42px; background: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1rem; opacity: 0; transform: scale(0.7);
  transition: all 0.3s;
}
.gal-item:hover .gal-zoom { opacity: 1; transform: scale(1); }

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(15,36,64,0.97);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 3px; }
.lb-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 0.75rem; padding: 7px 16px;
  cursor: pointer; letter-spacing: 0.1em; font-family: 'DM Sans', sans-serif;
  border-radius: 20px; transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 50%; font-size: 1.1rem; transition: background 0.2s;
}
.lb-btn:hover { background: rgba(255,255,255,0.25); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.12em;
}

/* ─── LOCATION ─── */
.location { background: var(--navy-deep); color: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; max-width: 1200px; margin: 0 auto; }
.location .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.location .section-title { color: var(--white); }
.location .section-body { color: rgba(255,255,255,0.65); }
.location .rule { background: var(--accent); }
.loc-cards { display: flex; flex-direction: column; gap: 1rem; }
.loc-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 1.4rem; display: flex; gap: 1rem; align-items: flex-start;
  border-radius: 4px; transition: background 0.2s;
}
.loc-card:hover { background: rgba(255,255,255,0.1); }
.loc-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.loc-card-label { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent2); margin-bottom: 3px; }
.loc-card-val { font-size: 0.82rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
.map-block {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem; padding: 2rem;
  text-align: center; position: relative; overflow: hidden;
}
.map-block::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px);
}
.map-pin-big { font-size: 3rem; }
.map-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); }
.map-addr { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.btn-light {
  background: var(--white); color: var(--navy);
  padding: 11px 26px; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 500;
  text-decoration: none; display: inline-block; border-radius: 2px;
  transition: all 0.2s; position: relative; z-index: 1;
}
.btn-light:hover { background: var(--cream2); transform: translateY(-2px); }

/* ─── CONTACT ─── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6vw; max-width: 1200px; margin: 0 auto; align-items: start; }
.contact-phones { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.phone-block {
  background: var(--cream); border: 1px solid var(--sand);
  padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 1rem;
  border-radius: 4px; text-decoration: none; transition: all 0.25s;
}
.phone-block:hover { border-color: var(--navy); box-shadow: 0 6px 20px rgba(27,58,92,0.1); transform: translateX(4px); }
.phone-ico { width: 40px; height: 40px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.9rem; flex-shrink: 0; }
.phone-lbl { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); }
.phone-num { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy-deep); font-weight: 600; }

.form-wrap { background: var(--cream); border: 1px solid var(--sand); padding: 2.5rem; border-radius: 4px; }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy-deep); margin-bottom: 0.4rem; }
.form-subtitle { font-size: 0.78rem; color: var(--text-light); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }
.form-ctrl {
  background: var(--white); border: 1.5px solid var(--sand);
  color: var(--text); padding: 11px 14px; border-radius: 3px;
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
  transition: border-color 0.2s; outline: none; width: 100%;
}
.form-ctrl:focus { border-color: var(--navy); }
.form-ctrl::placeholder { color: var(--text-light); }
textarea.form-ctrl { resize: vertical; min-height: 100px; }
select.form-ctrl { cursor: pointer; }
.form-submit {
  background: var(--navy); color: var(--white); border: none; cursor: pointer;
  padding: 13px 32px; font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.06em; border-radius: 2px;
  margin-top: 0.5rem; transition: all 0.25s; width: 100%;
}
.form-submit:hover { background: var(--navy-deep); }

/* ─── FOOTER ─── */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 3.5rem 5vw 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; margin-bottom: 2.5rem; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); font-weight: 700; }
.footer-tagline { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 4px; letter-spacing: 0.1em; }
.footer-about { font-size: 0.78rem; line-height: 1.8; margin-top: 1.2rem; }
.footer-heading { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent2); margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { font-size: 0.78rem; margin-bottom: 0.7rem; display: flex; gap: 0.7rem; align-items: baseline; }
.footer-contact-item span { color: var(--accent); font-size: 0.7rem; }
.footer-hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.65rem; color: rgba(255,255,255,0.35); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
d2 { transition-delay: 0.2s; }
d3 { transition-delay: 0.3s; }
d4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 55vw; max-height: 420px; }
  .hero-left { padding: 4rem 5vw 3rem; }
  .hero-img-overlay { background: linear-gradient(180deg, var(--cream) 0%, transparent 15%); }
  .about-wrap, .location-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-imgs { max-height: 420px; }
  .about-img-inset { display: none; }
  .about-badge2 { right: 1rem; }
  .about-content { padding-right: 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { gap: 2rem; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 5vw; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
  .hero-metrics { gap: 1.5rem; }
}
@media (max-width: 380px) {
  .amenities-grid { grid-template-columns: 1fr; }
}
