:root {
  --maroon: #6b1622;
  --maroon-dark: #4a0e18;
  --gold: #c9a24b;
  --gold-light: #e6cf8f;
  --cream: #faf6f0;
  --ink: #2a2320;
  --gray: #6f6660;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --font-head: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-head); color: var(--maroon-dark); line-height: 1.2; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.section-tag {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 12px; }
.section-desc { color: var(--gray); max-width: 600px; margin-bottom: 40px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-primary { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.btn-primary:hover { background: var(--maroon-dark); border-color: var(--maroon-dark); }
.btn-outline { border-color: var(--maroon); color: var(--maroon); background: transparent; }
.btn-outline:hover { background: var(--maroon); color: var(--white); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header.scrolled { box-shadow: 0 4px 16px rgba(0,0,0,0.10); }

.gallery-grid img:focus-visible,
.nav a:focus-visible,
.btn:focus-visible,
.lightbox-close:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--maroon-dark);
  white-space: nowrap;
}
.logo span { color: var(--gold); }
.nav { display: flex; gap: 30px; }
.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }
.nav-cta { white-space: nowrap; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--maroon-dark);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(rgba(30,10,15,0.55), rgba(30,10,15,0.65)),
              url('../images/hotel-exterior.jpg') center/cover no-repeat;
}
.hero-content { max-width: 760px; padding-top: 200px; }
.eyebrow { letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; font-size: 0.9rem;}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); color: #f7ecdd; margin-bottom: 18px; }
.hero h1 .accent { color: var(--gold-light); }
.hero-sub { font-size: 1.15rem; margin-bottom: 34px; color: #f3e9e0; }
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero .btn-outline { border-color: var(--white); color: var(--white); }
.hero .btn-outline:hover { background: var(--white); color: var(--maroon-dark); }
.scroll-down {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.6rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ===== About ===== */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--gray); margin-bottom: 20px; }
.about-points { margin-bottom: 30px; }
.about-points li { margin-bottom: 10px; color: var(--ink); }
.about-stats { display: flex; gap: 40px; }
.about-stats strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--maroon); }
.about-stats span { color: var(--gray); font-size: 0.85rem; }

/* ===== Rooms ===== */
.rooms { padding: 100px 0; background: var(--white); }
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.room-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.room-card:hover { transform: translateY(-8px); }
.room-img { position: relative; height: 200px; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; }
.room-price {
  position: absolute; bottom: 12px; right: 12px;
  background: var(--maroon);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}
.room-price small { font-weight: 400; opacity: 0.85; }
.room-body { padding: 22px; }
.room-body h3 { margin-bottom: 10px; font-size: 1.25rem; }
.room-body p { color: var(--gray); font-size: 0.92rem; margin-bottom: 16px; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-bottom: 20px; font-size: 0.85rem; color: var(--ink); }

/* ===== Services ===== */
.services { padding: 100px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, background 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); background: var(--maroon); }
.service-card:hover h3, .service-card:hover p { color: var(--white); }
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.9rem; }

/* ===== Gallery ===== */
.gallery { padding: 100px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); opacity: 0.92; }

.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,8,8,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 88%; max-height: 85%; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 24px; right: 36px;
  color: var(--white);
  font-size: 2.4rem;
  cursor: pointer;
}

/* ===== Contact ===== */
.contact { padding: 100px 0 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
}
.contact-desc { color: var(--gray); margin: 16px 0 30px; }
.contact-list li { display: flex; gap: 16px; margin-bottom: 24px; }
.c-icon { font-size: 1.3rem; }
.contact-list a { color: var(--maroon); font-weight: 500; }
.social-links { display: flex; gap: 16px; margin-top: 10px; }
.social-links a {
  padding: 10px 20px;
  border: 2px solid var(--maroon);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--maroon);
}
.social-links a:hover { background: var(--maroon); color: var(--white); }

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 20px; }
.form-row { display: flex; gap: 16px; margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #e3d9cd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--cream);
}
.contact-form textarea { width: 100%; margin-bottom: 20px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); }
.form-note { margin-top: 14px; font-size: 0.88rem; color: var(--maroon); text-align: center; min-height: 1.2em; }

.map-embed { width: 100%; line-height: 0; filter: saturate(0.9); }

/* ===== Footer ===== */
.site-footer { background: var(--maroon-dark); color: #ecdfd4; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { color: var(--white); font-size: 1.2rem; margin-bottom: 14px; display: inline-block; }
.footer-logo span { color: var(--gold-light); }
.site-footer p { color: #cdbcae; font-size: 0.9rem; margin-bottom: 6px; }
.site-footer h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.site-footer a { display: block; color: #cdbcae; font-size: 0.9rem; margin-bottom: 10px; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: #b8a698;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--cream);
    padding: 20px 24px;
    gap: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }
  .site-header.open .nav-cta {
    display: block;
    position: absolute;
    top: 260px; left: 24px; right: 24px;
    text-align: center;
  }
  .form-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .about-stats { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

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