/* ============================================
   ClueHidden.com — Quest Room Budapest
   ============================================ */

:root {
  --bg-primary: #111110;
  --bg-secondary: #171714;
  --bg-card: rgba(26, 26, 23, 0.7);
  --bg-card-hover: rgba(34, 33, 28, 0.85);
  --accent: #c8a45e;
  --accent-light: #ddb96e;
  --accent-dark: #8b6914;
  --accent-subtle: rgba(200, 164, 94, 0.08);
  --accent-border: rgba(200, 164, 94, 0.18);
  --red-muted: #a63d3d;
  --text-primary: #e8e4de;
  --text-secondary: #a09a8f;
  --text-muted: #6b665c;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.45);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  color: var(--text-secondary);
  font-size: 1.02rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--accent-light);
}

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

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}

.section-title {
  color: var(--text-primary);
  margin-bottom: 18px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.08rem;
  max-width: 560px;
  line-height: 1.75;
}

.text-center {
  text-align: center;
}
.text-center .section-subtitle {
  margin: 0 auto;
}

.accent-text {
  color: var(--accent);
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 16px 0;
  opacity: 0.5;
}

.text-center .divider {
  margin: 16px auto;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(17, 17, 16, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo .logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.25s var(--ease);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  padding: 9px 22px !important;
  background: var(--accent) !important;
  color: var(--bg-primary) !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 0.86rem !important;
  transition: all 0.25s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  color: var(--bg-primary) !important;
}

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

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-light);
  color: var(--bg-primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 164, 94, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--accent-border);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 0.98rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg-primary) 0%, transparent 40%),
    linear-gradient(to right, var(--bg-primary) 0%, transparent 50%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 520px;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
}

.hero-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-card-hover);
}

.hero-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-1 {
  top: 20px;
  left: 0;
  width: 260px;
  height: 340px;
  z-index: 2;
}

.hero-card-2 {
  top: 60px;
  right: 0;
  width: 240px;
  height: 300px;
  z-index: 1;
}

.hero-card-3 {
  bottom: 20px;
  left: 40px;
  width: 280px;
  height: 160px;
  background: rgba(17, 17, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 24px;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 28px;
  text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.hero-card-inner .card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-card-inner .card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.hero-card-inner .card-meta {
  font-size: 0.8rem;
  color: var(--accent);
}

.hero-card-3 .stat-row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.hero-card-3 .stat-item {
  text-align: center;
  flex: 1;
}

.hero-card-3 .stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 700;
}

.hero-card-3 .stat-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- About --- */
.about {
  background: var(--bg-secondary);
}

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

.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--accent-subtle);
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease);
}

.about-feature:hover {
  border-color: var(--accent-border);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: var(--accent);
}

.about-feature-icon svg {
  width: 100%;
  height: 100%;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* About image stack */
.about-images {
  position: relative;
  height: 480px;
}

.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-1 {
  top: 0;
  left: 0;
  width: 300px;
  height: 380px;
}

.about-img-2 {
  top: 80px;
  right: 0;
  width: 220px;
  height: 260px;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: var(--bg-primary);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.about-badge-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Rooms --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.room-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.room-card-image {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

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

.room-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-popular {
  background: var(--accent);
  color: var(--bg-primary);
}

.badge-new {
  background: #3a7d5c;
  color: #d4f0e0;
}

.badge-intense {
  background: var(--red-muted);
  color: #f0d4d4;
}

.room-card-body {
  padding: 22px;
}

.room-card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.room-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.room-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.room-meta-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
}

.room-card-difficulty {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 16px;
}

.difficulty-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-right: 8px;
}

.difficulty-pip {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.07);
}

.difficulty-pip.filled {
  background: var(--accent);
  opacity: 0.8;
}

.difficulty-pip.half {
  background: linear-gradient(
    90deg,
    var(--accent) 50%,
    rgba(255, 255, 255, 0.07) 50%
  );
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.room-price {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.room-price strong {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 700;
}

.room-card-btn {
  padding: 7px 16px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  text-decoration: none;
}

.room-card-btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* --- Steps --- */
.how-it-works {
  background: var(--bg-secondary);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.step-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.price-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  text-align: center;
  position: relative;
}

.price-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
}

.price-card.featured {
  border-color: var(--accent-border);
  background: var(--accent-subtle);
}

.price-card.featured::before {
  content: attr(data-label);
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 14px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  white-space: nowrap;
}

.price-card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  color: var(--accent);
}

.price-card-icon svg {
  width: 100%;
  height: 100%;
}

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.price-card .players {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.price-amount .amount {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
}

.price-card.featured .amount {
  color: var(--accent);
}

.price-amount .period {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.price-features li {
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li .check-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: var(--accent);
}

.price-features li .check-icon svg {
  width: 100%;
  height: 100%;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--bg-secondary);
}

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

.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
  border-color: var(--accent-border);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--accent);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.testimonial-text {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg-primary);
  background: var(--accent);
}

.testimonial-author-info h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-author-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq-container {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-item.active {
  border-color: var(--accent-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.015);
}

.faq-question h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  flex: 1;
  padding-right: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-icon svg {
  stroke: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 22px 18px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* --- CTA --- */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-primary), transparent 30%, transparent 70%, var(--bg-primary));
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 3;
}

.cta-content h2 {
  margin-bottom: 18px;
}
.cta-content p {
  margin: 0 auto 36px;
  max-width: 520px;
}

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

.email-booking-form {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.booking-email-input {
  padding: 15px 20px;
  font-size: 0.98rem;
  font-family: inherit;
  border: 2px solid var(--accent);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-primary);
  outline: none;
  min-width: 220px;
}

.booking-email-input::placeholder {
  color: var(--text-muted);
}

.booking-email-input:focus {
  border-color: var(--accent-light);
  background: rgba(0, 0, 0, 0.55);
}

.email-booking-form .btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  white-space: nowrap;
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  padding: 72px 0 28px;
  border-top: 1px solid var(--border);
}

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

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 280px;
}


.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  stroke: var(--accent);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(23, 23, 20, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  flex: 1;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

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

.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}
.reveal-d4 {
  transition-delay: 0.32s;
}

/* --- Policy Pages --- */
.policy-page {
  padding: 130px 0 80px;
  min-height: 100vh;
}

.policy-content {
  max-width: 740px;
  margin: 0 auto;
}

.policy-page h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 10px;
}

.policy-updated {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.policy-page h2 {
  font-size: 1.35rem;
  margin-top: 44px;
  margin-bottom: 14px;
}

.policy-page h3 {
  font-size: 1.08rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.policy-page p {
  margin-bottom: 14px;
  line-height: 1.8;
}

.policy-page ul,
.policy-page ol {
  margin-bottom: 14px;
  padding-left: 22px;
}

.policy-page li {
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.7;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}

.policy-table th,
.policy-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.policy-table th {
  color: var(--text-primary);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
}

.policy-table td {
  color: var(--text-secondary);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-images {
    display: none;
  }
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid .price-card:last-child {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 28px;
    gap: 18px;
    border-left: 1px solid var(--border);
    transition: right 0.4s var(--ease);
    z-index: 998;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  }

  .nav-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-hamburger {
    display: flex;
    z-index: 999;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .rooms-grid,
  .pricing-grid,
  .testimonials-grid,
  .steps-container {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid .price-card:last-child {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-actions {
    flex-direction: column;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
  .email-booking-form {
    width: 100%;
    max-width: 300px;
  }
  .booking-email-input {
    min-width: 0;
    flex: 1;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}
