/* =============================================
   AUBERGE RESTO AGNAOUE — PREMIUM MOROCCAN STYLE
   ============================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9E7B2E;
  --dark: #1A1209;
  --dark2: #261C0A;
  --dark3: #332510;
  --cream: #F9F3E8;
  --cream2: #F0E8D5;
  --sand: #D4C4A0;
  --green: #2C4A3E;
  --green2: #3A5E50;
  --text: #3D2E10;
  --text-light: #7A6545;
  --white: #FFFFFF;
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

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

img { width: 100%; height: 100%; object-fit: cover; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================== LOADER ===================== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  text-align: center;
  color: var(--cream);
}

.loader-ornament {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  animation: spin 6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loader-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}

.loader-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.loader-title span {
  color: var(--gold);
  font-style: italic;
}

.loader-location {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--sand);
  margin-top: 12px;
  opacity: 0;
  animation: fadeUp 0.6s ease 1s forwards;
}

.loader-location i { margin-right: 6px; color: var(--gold); }

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(201,168,76,0.2);
  margin: 28px auto 0;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.4s ease 1.2s forwards;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  animation: fillBar 1.8s ease 1.4s forwards;
}

@keyframes fillBar { to { width: 100%; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== FLOATING BUTTON ===================== */
.float-book {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 22px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  z-index: 1000;
  transition: var(--transition);
  transform: translateY(80px);
  opacity: 0;
}

.float-book.visible {
  transform: translateY(0);
  opacity: 1;
}

.float-book:hover {
  background: var(--dark);
  color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(26, 18, 9, 0.97);
  padding: 12px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}

.logo-ornament {
  color: var(--gold);
  font-size: 1.4rem;
}

.logo-main {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
}

.logo-sub {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249,243,232,0.8);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:not(.nav-cta):hover { color: var(--gold); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('img/reception.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,18,9,0.55) 0%,
    rgba(26,18,9,0.7) 50%,
    rgba(26,18,9,0.85) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 3.5s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 3.7s; }
.hero-title .line:nth-child(2) { animation-delay: 3.9s; }
.hero-title .italic { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1rem;
  color: rgba(249,243,232,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 4.1s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 4.3s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 15px 32px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  padding: 14px 32px;
  border: 1px solid rgba(249,243,232,0.4);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(249,243,232,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease 4.6s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

.hero-badges {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 4.5s forwards;
}

.badge {
  background: rgba(249,243,232,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 16px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.badge i { color: var(--gold); font-size: 0.85rem; }

/* ===================== ABOUT ===================== */
#about {
  padding: 120px 0;
  background: var(--cream);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.img-main {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,18,9,0.2);
}

.img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 20px 50px rgba(26,18,9,0.25);
}

.about-badge-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 18px;
  border-radius: var(--radius);
  text-align: center;
}

.about-badge-card .num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.about-badge-card .label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

.about-text { padding-left: 20px; padding-bottom: 40px; }

.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 28px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}

.feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.feat i {
  color: var(--gold);
  width: 18px;
  font-size: 0.9rem;
}

/* ===================== ROOMS ===================== */
#rooms {
  padding: 100px 0;
  background: var(--cream2);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.rooms-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,18,9,0.08);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,18,9,0.14);
}

.room-card:nth-child(4), .room-card:nth-child(5) {
  grid-column: span 1;
}

.room-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.room-img img {
  transition: transform 0.7s ease;
}

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

.room-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,18,9,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.overlay-btn {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.overlay-btn:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.room-tag.popular { background: var(--green); color: var(--cream); }

.room-info { padding: 24px; }

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 10px;
}

.room-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
  flex: 1;
}

.room-price {
  text-align: right;
  flex-shrink: 0;
}

.room-price .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: block;
  line-height: 1;
}

.room-price .per {
  font-size: 0.7rem;
  color: var(--text-light);
  display: block;
  text-align: right;
}

.room-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.room-amenities {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.room-amenities span {
  font-size: 0.72rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.03em;
}

.room-amenities i { color: var(--gold); }

.btn-room {
  display: block;
  text-align: center;
  background: var(--dark);
  color: var(--gold);
  padding: 12px;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid var(--dark);
}

.btn-room:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ===================== SERVICES ===================== */
#services {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--green) 0%, var(--dark2) 100%);
}

.services-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M20 0L24.9 15.1H40L27.6 24.4L32.4 39.5L20 30.2L7.6 39.5L12.4 24.4L0 15.1H15.1z'/%3E%3C/g%3E%3C/svg%3E");
}

.services-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-eyebrow.light { color: var(--gold); }
.section-title.light { color: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.service-card {
  background: rgba(249,243,232,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.service-card:hover {
  background: rgba(249,243,232,0.1);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.85rem;
  color: rgba(249,243,232,0.6);
  line-height: 1.7;
}

/* ===================== LOCATION STRIP ===================== */
#location-strip {
  background: var(--gold);
  padding: 50px 0;
}

.strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.strip-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark2);
  opacity: 0.7;
  margin-bottom: 8px;
  display: block;
}

#location-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 28px;
}

#location-strip h2 em {
  font-style: italic;
  font-weight: 600;
}

.landmarks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.landmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.landmark i {
  font-size: 1.1rem;
  color: var(--dark2);
  opacity: 0.7;
  margin-bottom: 4px;
}

.landmark span {
  font-size: 0.7rem;
  color: var(--dark2);
  opacity: 0.65;
  letter-spacing: 0.05em;
}

.landmark strong {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.landmark-sep {
  font-size: 1.5rem;
  color: var(--dark2);
  opacity: 0.3;
  padding: 0 8px;
}

/* ===================== GALLERY ===================== */
#gallery {
  padding: 100px 0;
  background: var(--cream);
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,9,0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-hover { opacity: 1; }

.gallery-hover span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}

/* ===================== CONTACT ===================== */
#contact {
  padding: 100px 0;
  background: var(--cream2);
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  gap: 60px;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 32px 0 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 5px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-item a {
  color: var(--text-light);
  transition: color 0.3s;
}

.contact-item a:hover { color: var(--gold-dark); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26,18,9,0.12);
  height: 450px;
}

.contact-map iframe { height: 100%; }

/* ===================== FOOTER ===================== */
#footer {
  background: var(--dark);
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 40px 50px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr;
  gap: 40px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(249,243,232,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(249,243,232,0.07);
  border: 1px solid rgba(249,243,232,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(249,243,232,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-links h4, .footer-contact h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(249,243,232,0.5);
  transition: color 0.3s;
  line-height: 1.5;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.82rem;
  color: rgba(249,243,232,0.5);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.footer-contact i { color: var(--gold); margin-top: 2px; font-size: 0.75rem; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(249,243,232,0.07);
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(249,243,232,0.3);
  letter-spacing: 0.04em;
}

.footer-ornament {
  font-size: 0.6rem;
  color: var(--gold);
  opacity: 0.4;
  letter-spacing: 0.4em;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; height: 300px; }
}

@media (max-width: 900px) {
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .img-secondary { right: 0; bottom: -30px; }
  .about-text { padding-left: 0; padding-bottom: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-container { grid-template-columns: 1fr; }
  .hero-badges { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    z-index: 800;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .hamburger { display: flex; }
  .nav-container { padding: 0 20px; }
  .rooms-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; padding: 0 20px; }
  .gallery-item.large, .gallery-item.tall { grid-column: auto; grid-row: auto; height: 220px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 50px 20px 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
  .about-container { padding: 0 20px; }
  .about-images { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .landmarks { gap: 8px; }
  .landmark-sep { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .section-header, .services-inner, .strip-inner, .contact-container { padding: 0 20px; }
  .float-book { bottom: 20px; right: 20px; padding: 12px 16px; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; }
  .room-header { flex-direction: column; align-items: flex-start; }
  .room-price { text-align: left; }
  .room-amenities { flex-wrap: wrap; gap: 8px; }
  .hero-title { font-size: 2.2rem; }
  .loader-title { font-size: 2rem; }
}
