/* ═══════════════════════════════════════════════════
   SATURN APART & HOTEL — Main Stylesheet
   File: css/style.css
═══════════════════════════════════════════════════ */

/* ─────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────── */
:root {
  --color-primary:    #000000;
  --color-accent:     #c8a97e;
  --color-bg:         #f6f4f2;
  --color-dark:       #111111;
  --color-text:       #444444;
  --color-light-text: #777777;
  --color-white:      #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --sp-1:   8px;
  --sp-2:  16px;
  --sp-3:  32px;
  --sp-4:  64px;
  --sp-5: 120px;

  --radius:     6px;
  --container:  1200px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─────────────────────────────────────
   BASE
───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}
img { display: block; width: 100%; object-fit: cover; border-radius: var(--radius); }
a   { text-decoration: none; color: inherit; }
.container { max-width: var(--container); }

/* ─────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; }
h1 { font-size: clamp(40px, 6vw,  64px); line-height: 1.1; }
h2 { font-size: clamp(28px, 4vw,  42px); line-height: 1.2; }
h3 { font-size: clamp(20px, 2.5vw,28px); line-height: 1.3; }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--sp-2);
}
.section-title       { color: var(--color-primary); }
.section-title-light { color: var(--color-white); }

.lead-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-light-text);
  max-width: 560px;
}

/* ─────────────────────────────────────
   BUTTONS
───────────────────────────────────── */
.btn-saturn-primary {
  display: inline-block;
  padding: 15px 38px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 2px solid var(--color-primary);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-saturn-primary:hover {
  background: transparent;
  color: var(--color-primary);
}
.btn-saturn-primary.light {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.btn-saturn-primary.light:hover {
  background: transparent;
  color: var(--color-white);
}

.btn-saturn-outline {
  display: inline-block;
  padding: 14px 38px;
  background: transparent;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 2px solid var(--color-accent);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-saturn-outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ─────────────────────────────────────
   GOLD DIVIDER
───────────────────────────────────── */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--color-accent);
  margin-bottom: var(--sp-3);
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────
   SECTION SPACING
───────────────────────────────────── */
.section-pad    { padding: var(--sp-5) 0; }
.section-pad-sm { padding: var(--sp-4) 0; }

/* ─────────────────────────────────────
   1. NAVBAR
───────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--sp-3) 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
  height: 70px;
  width: auto;
  display: block;
  transition: filter var(--transition);
}
#mainNav.scrolled .nav-logo-img {
  filter: brightness(0) !important;
}

.navbar-toggler {
  border: none; outline: none; box-shadow: none; padding: 4px 8px;
}
.toggler-bars { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.toggler-bars span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--color-white);
  transition: background var(--transition);
}
#mainNav.scrolled .toggler-bars span { background: var(--color-primary); }

.nav-link-item {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 6px 0 !important;
  margin: 0 18px;
  position: relative;
  transition: color var(--transition);
}
.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.nav-link-item:hover::after,
.nav-link-item.active::after { width: 100%; }
.nav-link-item:hover,
.nav-link-item.active { color: var(--color-white) !important; }

#mainNav.scrolled .nav-link-item       { color: var(--color-text) !important; }
#mainNav.scrolled .nav-link-item:hover { color: var(--color-primary) !important; }

.nav-book-btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary) !important;
  background: var(--color-white);
  padding: 10px 24px !important;
  margin-left: 18px;
  transition: background var(--transition), color var(--transition);
}
.nav-book-btn:hover           { background: var(--color-accent); color: var(--color-white) !important; }
.nav-book-btn::after          { display: none !important; }
#mainNav.scrolled .nav-book-btn       { background: var(--color-primary); color: var(--color-white) !important; }
#mainNav.scrolled .nav-book-btn:hover { background: var(--color-accent); }

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(10, 10, 10, 0.97);
    margin-top: 16px;
    padding: var(--sp-3);
    border-radius: var(--radius);
  }
  #mainNav.scrolled .navbar-collapse {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
  .nav-link-item { margin: 4px 0; padding: 8px 0 !important; }
  .nav-book-btn  { margin: var(--sp-2) 0 0; display: inline-block; padding: 10px 24px !important; }
}

/* ─────────────────────────────────────
   2. HERO
───────────────────────────────────── */
#hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1455587734955-081b22074882?w=1600&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.38) 55%,
    rgba(0, 0, 0, 0.12) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
}
.hero-title { color: var(--color-white); margin-bottom: var(--sp-3); }
.hero-title em { font-style: italic; color: var(--color-accent); }
.hero-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: var(--sp-4);
}
.hero-actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBob 2.4s ease-in-out infinite;
}
.hero-scroll-indicator i { font-size: 18px; }

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0);   }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─────────────────────────────────────
   BOOKING BAR
───────────────────────────────────── */
#bookingBar {
  background: var(--color-white);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.10);
  padding: var(--sp-3);
  position: relative;
  z-index: 10;
}
.booking-bar-inner {
  display: flex;
  gap: var(--sp-1);
  align-items: flex-end;
  flex-wrap: wrap;
}
.booking-field { flex: 1; min-width: 160px; }
.booking-field label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-light-text);
  margin-bottom: 6px;
}
.booking-field input,
.booking-field select {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #ddd;
  background: transparent;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-primary);
  outline: none;
  transition: border-color var(--transition);
}
.booking-field input:focus,
.booking-field select:focus { border-bottom-color: var(--color-accent); }
.booking-submit { flex-shrink: 0; }

/* ─────────────────────────────────────
   3. ABOUT
───────────────────────────────────── */
#about { background: var(--color-bg); }
.about-image-wrap { position: relative; }
.about-image-main { height: 540px; border-radius: var(--radius); }
.about-image-accent {
  position: absolute;
  bottom: -40px; right: -32px;
  width: 220px; height: 280px;
  border-radius: var(--radius);
  border: 6px solid var(--color-bg);
  z-index: 2;
}

.about-stat { border-left: 2px solid var(--color-accent); padding-left: var(--sp-2); }
.about-stat-number {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
}
.about-stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-light-text);
  margin-top: 4px;
}

/* ─────────────────────────────────────
   4. ROOMS
───────────────────────────────────── */
#rooms { background: var(--color-white); }

.room-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}
.room-card-img {
  height: 260px;
  position: relative;
  overflow: hidden;
}
.room-card-img img {
  height: 100%;
  border-radius: 0;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.06); }

.room-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.room-card-body { padding: var(--sp-3); }
.room-card-meta { display: flex; gap: 20px; margin-bottom: var(--sp-2); }
.room-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-light-text);
}
.room-meta-item i { color: var(--color-accent); font-size: 13px; }
.room-card-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: var(--sp-1);
}
.room-card-desc {
  font-size: 14px;
  color: var(--color-light-text);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}
.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-2);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.room-price-from   { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-light-text); }
.room-price-amount { font-family: var(--font-heading); font-size: 26px; font-weight: 500; color: var(--color-primary); line-height: 1; }
.room-price-night  { font-size: 12px; color: var(--color-light-text); }
.room-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.room-link:hover { gap: 12px; color: var(--color-accent); }

/* ─────────────────────────────────────
   5. AMENITIES
───────────────────────────────────── */
#amenities { background: var(--color-dark); }

.amenity-card {
  text-align: center;
  padding: var(--sp-4) var(--sp-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.amenity-card:hover {
  border-color: var(--color-accent);
  background: rgba(200, 169, 126, 0.06);
}
.amenity-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 126, 0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-3);
  font-size: 22px;
  color: var(--color-accent);
  transition: background var(--transition);
}
.amenity-card:hover .amenity-icon { background: rgba(200, 169, 126, 0.12); }
.amenity-name {
  font-family: var(--font-heading);
  font-size: 19px; font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--sp-1);
}
.amenity-desc { font-size: 13px; color: rgba(255, 255, 255, 0.45); line-height: 1.7; }

/* ─────────────────────────────────────
   6. GALLERY
───────────────────────────────────── */
#gallery { background: var(--color-bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item img { height: 100%; border-radius: 0; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; height: 480px; }
.gallery-item:nth-child(2) { grid-column: span 4; height: 232px; }
.gallery-item:nth-child(3) { grid-column: span 3; height: 232px; }
.gallery-item:nth-child(4) { grid-column: span 3; height: 232px; }
.gallery-item:nth-child(5) { grid-column: span 4; height: 232px; }

.gallery-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.gallery-overlay.active { display: flex; }
.gallery-overlay img {
  max-width: 90vw; max-height: 88vh;
  width: auto; height: auto;
  border-radius: var(--radius); border: none;
}
.gallery-close {
  position: absolute; top: 24px; right: 32px;
  color: white; font-size: 32px; cursor: pointer;
  opacity: 0.7; transition: opacity 0.2s;
  background: none; border: none;
}
.gallery-close:hover { opacity: 1; }

/* ─────────────────────────────────────
   7. CTA
───────────────────────────────────── */
#cta { position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1455587734955-081b22074882?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.cta-content { position: relative; z-index: 2; }
.cta-title   { color: var(--color-white); max-width: 600px; margin: 0 auto var(--sp-2); }
.cta-title em { color: var(--color-accent); font-style: italic; }
.cta-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  max-width: 460px;
  margin: 0 auto var(--sp-4);
}

/* ─────────────────────────────────────
   8. FOOTER — white / light layout
───────────────────────────────────── */
#footer {
  background-color: var(--color-bg);
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  color: var(--color-text);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

/* Thin gold top accent bar */
#footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-accent), transparent);
}

.footer-top { padding: var(--sp-5) 0 var(--sp-4); }


/* Brand column */
.footer-logo {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.footer-logo span { color: var(--color-accent); }

.footer-logo-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-3);
  display: block;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-light-text);
  max-width: 280px;
  margin-bottom: var(--sp-3);
}

.footer-award {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(200, 169, 126, 0.3);
  background: rgba(200, 169, 126, 0.05);
  width: fit-content;
}
.footer-award-stars { color: var(--color-accent); font-size: 13px; letter-spacing: 2px; }
.footer-award-text  { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-light-text); }

/* Column headings */
.footer-heading {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Nav links */
.footer-nav        { list-style: none; }
.footer-nav li     { margin-bottom: 12px; }
.footer-nav a {
  font-size: 14px;
  color: var(--color-light-text);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition), gap var(--transition);
}
.footer-nav a::before {
  content: '';
  display: block;
  width: 14px; height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
  flex-shrink: 0;
}
.footer-nav a:hover           { color: var(--color-primary); gap: 12px; }
.footer-nav a:hover::before   { width: 20px; }

/* Contact items */
.footer-contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.footer-contact-item i {
  width: 32px; height: 32px;
  border: 1px solid rgba(200, 169, 126, 0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
  font-size: 12px;
  flex-shrink: 0;
}
.footer-contact-text { font-size: 13px; color: var(--color-light-text); line-height: 1.6; }
.footer-contact-text strong { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 2px; }

/* Social / Follow */
.footer-social       { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-light-text);
  font-size: 14px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-white);
  background: var(--color-accent);
}

/* Language switcher */
.footer-lang {
  display: flex;
  gap: 6px;
  margin-bottom: var(--sp-3);
  flex-wrap: wrap;
}
.footer-lang a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-light-text);
  padding: 5px 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: all var(--transition);
}
.footer-lang a:hover,
.footer-lang a.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Bottom bar — dark strip */
.footer-bottom {
  background: var(--color-primary);
  padding: 18px 0;
}
.footer-copy   { font-size: 12px; color: rgba(255, 255, 255, 0.4); margin: 0; }
.footer-copy a { color: var(--color-accent); }

.footer-bottom-links { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: flex-end; }
.footer-bottom-links a { font-size: 12px; color: rgba(255, 255, 255, 0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--color-accent); }

/* ─────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.revealed  { opacity: 1; transform: translateY(0); }
.reveal-delay-1   { transition-delay: 0.12s; }
.reveal-delay-2   { transition-delay: 0.24s; }
.reveal-delay-3   { transition-delay: 0.36s; }
.reveal-delay-4   { transition-delay: 0.48s; }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 992px) {
  .about-image-accent { right: 0; }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; height: 280px; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: span 1; height: 200px; }
}

@media (max-width: 576px) {
  .gallery-grid  { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: span 1; height: 220px; }
  .about-image-accent { display: none; }
  .hero-actions  { flex-direction: column; }
}

/* ─────────────────────────────────────
   COMPREHENSIVE RESPONSIVE
───────────────────────────────────── */

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {
  .section-pad    { padding: 80px 0; }

  /* Hero */
  #hero           { height: 85vh; min-height: 560px; }
  .hero-content   { text-align: center; }
  .hero-actions   { justify-content: center; }
  .hero-eyebrow   { justify-content: center; text-align: center; }

  /* About */
  .about-image-main { height: 420px; }
  .about-image-wrap { padding-right: 0 !important; }

  /* Booking bar */
  .booking-bar-inner { flex-wrap: wrap; gap: 16px 24px; }
  .booking-field      { flex: 1 1 calc(50% - 12px); min-width: 140px; }
  .booking-submit     { width: 100%; margin-top: 8px; }
  .booking-submit .btn-saturn-primary { width: 100%; justify-content: center; }

  /* CTA */
  .cta-title    { font-size: clamp(26px, 5vw, 38px); }
  .cta-subtitle { max-width: 100%; }

  /* Footer top padding */
  .footer-top { padding: 64px 0 40px; }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }

  /* Hero */
  #hero                 { height: 100svh; min-height: 520px; }
  .hero-content         { text-align: center; padding-top: 60px; }
  .hero-actions         { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions a       { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
  .hero-scroll-indicator { display: none; }

  /* About */
  .about-image-main  { height: 300px; }
  .about-stat-number { font-size: 28px; }

  /* Room cards */
  .room-card-meta    { flex-wrap: wrap; gap: 6px; }

  /* Booking bar */
  .booking-field { flex: 1 1 100%; }

  /* Section carousel header split */
  #dining .col-lg-5.offset-lg-2 { margin-top: 20px; }

  /* Gallery */
  .gallery-grid { gap: 8px; }

  /* CTA trust badges */
  .cta-badges-row { gap: 24px !important; }

  /* Footer */
  .footer-top     { padding: 48px 0 32px; }
  .footer-logo    { font-size: 22px; }
  .footer-tagline { font-size: 14px; }

  /* Back to top */
  #backToTop { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .section-pad { padding: 48px 0; }

  /* Carousel arrows closer on very small screens */
  .scc-prev { margin-right: 6px; }
  .scc-next { margin-left: 6px; }
  .scc-btn  { width: 36px; height: 36px; font-size: 11px; }

  /* Booking bar */
  #bookingBar { padding: 20px 0; }

  /* Hero */
  .hero-eyebrow { font-size: 10px; }
}

/* ─────────────────────────────────────
   BACK TO TOP
───────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 999;
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--color-accent);
}

/* ─────────────────────────────────────
   SECTION CARD CAROUSEL (.scc-*)
───────────────────────────────────── */
/* Wrapper: arrows + viewport in a row */
.scc-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Clip the sliding track */
.scc-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

/* Sliding row of cards */
.scc-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Each slide: 3 visible on desktop */
.scc-slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

/* ── Light card (Eat & Drink) ── */
.scc-card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.scc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
}

.scc-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.scc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.scc-card:hover .scc-card-img img {
  transform: scale(1.06);
}

.scc-card-body {
  padding: 24px;
}
.scc-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 10px;
}
.scc-card-desc {
  font-size: 14px;
  color: var(--color-light-text);
  line-height: 1.75;
  margin-bottom: 18px;
}
.scc-read-more {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}
.scc-read-more i {
  font-size: 10px;
  margin-left: 5px;
  transition: transform var(--transition);
}
.scc-read-more:hover { color: var(--color-primary); }
.scc-read-more:hover i { transform: translateX(4px); }
/* ── Arrow buttons ── */
.scc-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0;
  font-size: 13px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  z-index: 2;
}
.scc-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.scc-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.scc-prev { margin-right: 20px; }
.scc-next { margin-left: 20px; }

@media (max-width: 992px) {
  .scc-slide { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 576px) {
  .scc-slide { flex: 0 0 100%; }
  .scc-btn   { width: 40px; height: 40px; }
  .scc-prev  { margin-right: 10px; }
  .scc-next  { margin-left: 10px; }
}


/* ═══════════════════════════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════════════════════════ */
.page-header {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 60px;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,5,0.55) 0%, rgba(10,8,5,0.75) 100%);
}
.page-header-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
}
.page-header-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}
.page-header-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.15;
  margin: 0 0 16px;
}
.page-header-sub {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  max-width: 500px;
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   ROOMS PAGE — full room cards
═══════════════════════════════════════════════════ */
.room-full-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.room-full-card:hover {
  box-shadow: 0 12px 50px rgba(0,0,0,0.13);
  transform: translateY(-4px);
}
.room-full-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.room-full-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-full-card:hover .room-full-img img { transform: scale(1.05); }
.room-full-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.room-full-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-full-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
.room-full-meta-item {
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.room-full-meta-item i { color: var(--color-accent); font-size: 12px; }
.room-full-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 10px;
}
.room-full-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.room-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.room-feature-tag {
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 5px 11px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.room-feature-tag i { color: var(--color-accent); font-size: 10px; }
.room-full-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.room-full-price-from { font-size: 11px; color: var(--color-text-muted); }
.room-full-price-amount {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
}
.room-full-price-night { font-size: 12px; font-weight: 400; color: var(--color-text-muted); }


/* ═══════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════ */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border, rgba(0,0,0,0.07));
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child  { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(200,169,126,0.08);
  border: 1px solid rgba(200,169,126,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
  font-size: 16px;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
  display: block;
}
.contact-info-value {
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1.5;
}
.contact-info-sub {
  font-size: 13px;
  color: var(--color-light-text);
  margin-top: 2px;
}

/* Form card */
.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(0,0,0,0.09);
  padding: 44px 40px;
}

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-light-text);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--color-bg);
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,0.12);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-primary);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--color-accent); }
.form-field textarea { resize: vertical; min-height: 100px; }

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-privacy-note {
  font-size: 12px;
  color: var(--color-light-text);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .contact-form-card { padding: 28px 20px; }
}


/* ═══════════════════════════════════════════════════
   GALLERY — COMING SOON
═══════════════════════════════════════════════════ */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cs-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: default;
}
.cs-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  border-radius: 0;
}
.cs-card:hover img { transform: scale(1.06); }
.cs-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.04) 100%);
  transition: background 0.4s ease;
}
.cs-card:hover .cs-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.30) 55%, rgba(0,0,0,0.10) 100%);
}
.cs-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 26px;
  z-index: 2;
}
.cs-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 6px;
}
.cs-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.2;
  margin: 0 0 10px;
}
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,169,126,0.18);
  border: 1px solid rgba(200,169,126,0.45);
  color: var(--color-accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

/* grid slot sizes */
.cs-card--tall   { height: 440px; }
.cs-card--mid    { height: 280px; }
.cs-card--wide   { grid-column: span 2; height: 280px; }
.cs-card--full   { grid-column: span 3; height: 260px; }

@media (max-width: 991px) {
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-card--tall  { height: 360px; }
  .cs-card--mid   { height: 240px; }
  .cs-card--wide  { grid-column: span 2; height: 240px; }
  .cs-card--full  { grid-column: span 2; height: 220px; }
}
@media (max-width: 576px) {
  .cs-grid { grid-template-columns: 1fr; gap: 10px; }
  .cs-card--tall,
  .cs-card--mid,
  .cs-card--wide,
  .cs-card--full  { grid-column: span 1; height: 240px; }
}

