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

:root {
  --bg: #0f1a14;
  --bg-card: #162019;
  --bg-elevated: #1c2b22;
  --text: #e8ebe9;
  --text-muted: #8fa396;
  --accent: #c9a84c;
  --accent-hover: #dbbf60;
  --accent-subtle: rgba(201, 168, 76, 0.12);
  --border: rgba(255,255,255,0.08);
  --radius: 4px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15, 26, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.header-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}

.header-nav { display: flex; gap: 32px; }
.header-nav a {
  font-size: 0.8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.header-nav a:hover { color: var(--accent); }

.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--text); cursor: pointer;
}

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--bg); padding: 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a {
  padding: 12px 0; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
}
.mobile-menu.active { display: flex; }

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-toggle { display: block; }
}

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

.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,26,20,0.7) 0%, rgba(15,26,20,0.5) 50%, rgba(15,26,20,0.9) 100%);
}

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

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-content h1 span { color: var(--accent); }

.hero-content > p {
  font-size: 1.1rem; color: #fff;
  max-width: 520px; margin: 0 auto 48px;
  font-weight: 300; letter-spacing: 0.5px;
}

.hero-form {
  background: rgba(15, 26, 20, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: inline-block;
}

.hero-form-grid {
  display: flex; gap: 16px; align-items: end; flex-wrap: wrap;
  justify-content: center;
}

.hero-form label {
  display: block; font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--accent); margin-bottom: 6px; font-weight: 500;
}

.hero-form input,
.hero-form select {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text); padding: 10px 14px;
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9rem;
  min-width: 150px;
  transition: border-color 0.3s;
}

.hero-form input:focus,
.hero-form select:focus {
  outline: none;
  border-color: var(--accent);
}

.btn-gold {
  background: var(--accent);
  color: var(--bg);
  border: none; padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  border-radius: var(--radius);
  cursor: pointer; transition: all 0.3s;
}
.btn-gold:hover { background: var(--accent-hover); transform: translateY(-1px); }

@media (max-width: 640px) {
  .hero-form-grid { flex-direction: column; }
  .hero-form input, .hero-form select { width: 100%; }
  .btn-gold { width: 100%; }
}

/* ===== SECTION TITLES ===== */
.section-label {
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 3px; color: var(--accent);
  margin-bottom: 8px; font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600; color: var(--text);
  line-height: 1.2;
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.about-img-wrapper { position: relative; }
.about-img-wrapper img {
  border-radius: var(--radius);
  aspect-ratio: 4/5; object-fit: cover;
  width: 100%;
}
.about-img-wrapper::after {
  content: '';
  position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

.about p { color: var(--text-muted); margin-top: 16px; font-size: 0.95rem; }

.about-highlights {
  display: flex; gap: 32px; margin-top: 32px;
  padding-top: 32px; border-top: 1px solid var(--border);
}

.about-highlights div { text-align: center; flex: 1; }
.about-highlights .val {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--accent);
}
.about-highlights .lbl {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-muted); margin-top: 4px;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrapper::after { display: none; }
}

/* ===== SUITES ===== */
.suites {
  padding: 100px 0;
  background: var(--bg-card);
}

.suites .section-header { text-align: center; margin-bottom: 56px; }

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

.suite-card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s;
}
.suite-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.suite-card-img { overflow: hidden; height: 260px; }
.suite-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.suite-card:hover .suite-card-img img { transform: scale(1.08); }

.suite-card-body { padding: 24px; }
.suite-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600; margin-bottom: 8px;
}
.suite-card-body p {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px;
}
.suite-card-body .link-text {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent); font-weight: 600;
}

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

/* ===== BREAKFAST ===== */
.breakfast { padding: 100px 0; }

.breakfast-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.breakfast-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.breakfast-photos img {
  border-radius: var(--radius); aspect-ratio: 3/4;
  object-fit: cover; width: 100%;
}
.breakfast-photos img:nth-child(2) { margin-top: 40px; }

.breakfast p { color: var(--text-muted); margin-top: 16px; font-size: 0.95rem; }

@media (max-width: 768px) {
  .breakfast-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== LEISURE ===== */
.leisure {
  padding: 100px 0;
  background: var(--bg-card);
}
.leisure .section-header { text-align: center; margin-bottom: 56px; }

.leisure-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.leisure-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.leisure-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.leisure-item:hover img { transform: scale(1.08); }

.leisure-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,26,20,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
}

.leisure-item-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--text); margin-bottom: 4px;
}
.leisure-item-overlay p {
  font-size: 0.8rem; color: var(--text-muted);
}
.leisure-item-overlay .icon-wrap {
  color: var(--accent); margin-bottom: 8px;
}

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

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}

.footer h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
  color: var(--accent); margin-bottom: 12px;
}

.footer .brand-desc { color: var(--text-muted); font-size: 0.9rem; }

.footer .col-title {
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent);
  margin-bottom: 16px; font-weight: 600;
}

.footer-contacts { display: flex; flex-direction: column; gap: 12px; }
.footer-contacts a, .footer-contacts .address {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-muted);
  transition: color 0.3s;
}
.footer-contacts a:hover { color: var(--accent); }
.footer-contacts svg { flex-shrink: 0; color: var(--accent); }

.footer-map {
  width: 100%; height: 180px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
}
.footer-map iframe { width: 100%; height: 100%; filter: grayscale(0.8) contrast(1.1); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0; text-align: center;
  font-size: 0.75rem; color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== SUITE DETAIL ===== */
.suite-detail { padding-top: 72px; }

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent);
  margin-bottom: 24px; font-weight: 500;
  transition: opacity 0.3s;
}
.back-link:hover { opacity: 0.7; }

.gallery-main { margin-bottom: 16px; }
.gallery-main img {
  width: 100%; max-height: 500px;
  object-fit: cover; border-radius: var(--radius);
}

.gallery-thumbs { display: flex; gap: 12px; margin-bottom: 40px; }
.gallery-thumbs button {
  background: none; border: 2px solid transparent;
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; padding: 0; transition: border-color 0.3s;
}
.gallery-thumbs button.active,
.gallery-thumbs button:hover { border-color: var(--accent); }
.gallery-thumbs button img { width: 100px; height: 70px; object-fit: cover; }

.detail-grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 48px; padding-bottom: 64px;
}

.detail-grid h1 {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700; margin-bottom: 16px;
}

.detail-grid .desc {
  color: var(--text-muted); font-size: 0.95rem;
  margin-bottom: 32px; line-height: 1.8;
}

.detail-grid h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; margin-bottom: 16px;
  color: var(--accent);
}

.amenities-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.amenity-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted);
}
.amenity-item svg { color: var(--accent); flex-shrink: 0; }

.cta-sidebar {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px; position: sticky; top: 96px;
}
.cta-sidebar h4 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600; margin-bottom: 12px;
}
.cta-sidebar p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 20px; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--bg);
  padding: 12px 24px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  transition: all 0.3s; width: 100%; justify-content: center;
}
.btn-whatsapp:hover { background: var(--accent-hover); }

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

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 50;
  width: 56px; height: 56px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.12); }

/* ===== UTILITY ===== */
.divider {
  width: 48px; height: 2px;
  background: var(--accent); margin: 16px 0;
}
