:root {
  --bg-body: #13161d;
  --bg-section: #171a23;
  --bg-card: #1c2029;
  --bg-card-alt: #1f232e;
  --bg-input: #22252f;
  --accent: #c8102e;
  --accent-hover: #a50d25;
  --accent-soft: rgba(200, 16, 46, 0.12);
  --gold: #d4a53c;
  --gold-soft: rgba(212, 165, 60, 0.12);
  --text: #e8e6e3;
  --text-secondary: #9b9a97;
  --text-muted: #6b6a68;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Outfit", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  font-family: var(--font);
}

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

/* ========== IMAGE PLACEHOLDER ========== */
.img-placeholder {
  background: var(--bg-card-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  pointer-events: none;
}
.img-placeholder svg {
  opacity: 0.3;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(19, 22, 29, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-menu a {
  display: block;
  padding: 24px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-menu a:hover {
  color: var(--text);
}

.nav-cta-btn {
  margin-left: 16px;
  padding: 10px 22px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta-btn:hover {
  background: var(--accent-hover);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ========== MOBILE OVERLAY ========== */
body.menu-open {
  overflow: hidden;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 22, 29, 0.7);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-info {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}
.hero-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.hero-info-text {
  font-size: 0.88rem;
}
.hero-info-text strong {
  display: block;
  font-weight: 600;
  color: var(--text);
}
.hero-info-text span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  transition: all 0.25s;
  font-family: var(--font);
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.25);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn--outline:hover {
  border-color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
}
.btn svg {
  width: 18px;
  height: 18px;
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 100px 0;
}
.section--alt {
  background: var(--bg-section);
}
.section-header {
  margin-bottom: 48px;
}
.section-header--center {
  text-align: center;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}
.section-header--center p {
  margin: 0 auto;
}

/* ========== ROOM SECTION (full-width per room, like reference) ========== */
.room-block {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.room-block:last-child {
  border-bottom: none;
}

.room-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.room-layout--reverse .room-gallery {
  order: 2;
}
.room-layout--reverse .room-info {
  order: 1;
}

.room-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.room-challenge {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
}
.room-story {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}
.room-story p {
  margin-bottom: 12px;
}

.room-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.room-spec {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  border: 1px solid var(--border);
}
.room-spec-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-spec-icon svg {
  width: 22px;
  height: 22px;
}
.room-spec-value {
  font-size: 1rem;
  font-weight: 700;
}
.room-spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.room-difficulty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.room-difficulty-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.room-difficulty-bars {
  display: flex;
  gap: 4px;
}
.room-difficulty-bar {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}
.room-difficulty-bar.filled {
  background: var(--gold);
}

.room-langs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.room-lang-tag {
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.room-cta-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.room-gallery {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.room-gallery-main {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* ========== PRICING ========== */
.pricing-table-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 14px;
  overflow: hidden;
}
.pricing-table thead th {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 16px 24px;
  font-size: 0.9rem;
  text-align: left;
}
.pricing-table thead th:last-child {
  text-align: right;
}
.pricing-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table tbody td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--text);
}
.pricing-table tbody td:first-child {
  color: var(--text-secondary);
}
.pricing-highlight {
  background: var(--accent-soft) !important;
}
.pricing-highlight td {
  color: var(--text) !important;
  font-weight: 600;
}

.pricing-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* ========== BOOKING FORM ========== */
.booking-form {
  max-width: 680px;
  margin: 0 auto;
}
.booking-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.booking-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-form-group--full {
  margin-bottom: 24px;
}
.booking-form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--bg-input);
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font);
  transition: border-color 0.2s;
}
.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.booking-form-group input::placeholder,
.booking-form-group textarea::placeholder {
  color: var(--text-muted);
}
.booking-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239b9a97' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.booking-form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.booking-form-submit {
  text-align: center;
}

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

/* ========== CORPORATE LOGOS ========== */
.logos-section {
  padding: 60px 0;
  background: #1f232e;
  border-top: 1px solid var(--border);
}
.logos-label {
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.logo-item {
  width: 110px;
  height: 44px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.logo-item:hover {
  opacity: 1;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--accent);
}
.faq-q-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.faq-q-icon svg {
  width: 12px;
  height: 12px;
  color: var(--text-muted);
}
.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
}
.faq-item.open .faq-q-icon svg {
  color: var(--accent);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ========== NEWSLETTER ========== */
.newsletter {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.newsletter-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--bg-input);
  color: var(--text);
  font-size: 0.9rem;
  width: 280px;
  font-family: var(--font);
}
.newsletter-form input::placeholder {
  color: var(--text-muted);
}
.newsletter-form button {
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: var(--accent-hover);
}

/* ========== FOOTER ========== */
.footer {
  padding: 64px 0 28px;
  background: #0f1117;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--text);
}

.footer-hours dt {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text);
  margin-top: 10px;
}
.footer-hours dt:first-child {
  margin-top: 0;
}
.footer-hours dd {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-payments {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.footer-payment {
  width: 48px;
  height: 30px;
  border-radius: 4px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

/* ========== POLICY PAGES ========== */
.policy-page {
  padding: 120px 0 80px;
}
.policy-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}
.policy-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.policy-section {
  margin-bottom: 40px;
}
.policy-section h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.policy-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--text);
}
.policy-section p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}
.policy-section ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.policy-section ul li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 18px;
  position: relative;
}
.policy-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.policy-section ul li strong {
  color: var(--text);
}

.cookie-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.85rem;
}
.cookie-table thead th {
  background: var(--bg-card-alt);
  color: var(--text);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.cookie-table tbody td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.cookie-table tbody tr:last-child td {
  border-bottom: none;
}
.cookie-table tbody td:first-child {
  font-family: monospace;
  color: var(--text);
  font-size: 0.82rem;
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .room-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .room-layout--reverse .room-gallery {
    order: 0;
  }
  .room-layout--reverse .room-info {
    order: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(19, 22, 29, 0.97);
    backdrop-filter: blur(16px);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    gap: 0;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a {
    padding: 14px 0;
  }
  .nav-burger {
    display: flex;
  }
  .nav-cta-btn {
    display: none;
  }
  .hero {
    min-height: 80vh;
    padding-top: 80px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-info {
    gap: 20px;
  }
  .room-specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .newsletter-form input {
    width: 100%;
  }
  .section {
    padding: 64px 0;
  }
  .room-block {
    padding: 48px 0;
  }
}
