/* ============================================================
   KATIJA CORTEZ — Independent Companion
   Design Seed: midnight / velvet / magnetic
   Palette: midnight black, rose gold, candlelight cream
   Type: Cormorant Garamond (headings) + Inter (body)
   ============================================================ */

/* --- CSS Custom Properties ---------------------------------- */
:root {
  --bg: #050508;
  --bg-alt: #0b0a0f;
  --bg-card: #111018;
  --text: #e0d6cc;
  --text-muted: #7a7570;
  --accent: #c9915a;
  --accent-glow: #daa870;
  --border: #1c1a22;
  --border-light: #252330;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1100px;
  --nav-height: 70px;
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Atmosphere layer — grain + radial color wash from center-top */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(201,145,90,0.045) 0%, rgba(201,145,90,0.01) 40%, transparent 70%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(201,145,90,0.02) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 100% 100%, 100% 100%, 256px 256px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

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

/* Section alternates */
.section--alt {
  background: var(--bg-alt);
}

/* --- Typography --------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text);
}

h1 {
  font-size: clamp(48px, 8vw, 88px);
  letter-spacing: 0.04em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

h3 {
  font-size: clamp(20px, 3vw, 26px);
  letter-spacing: 0.03em;
}

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

/* --- Section Labels & Headers ------------------------------- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Utility Classes ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
}

.btn-primary {
  background: var(--accent);
  color: #0d0a06;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-glow);
  border-color: var(--accent-glow);
  box-shadow: 0 0 28px rgba(201,145,90,0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-light);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Navigation — centered logo, split menu ---------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.navbar.scrolled {
  background: rgba(5, 5, 8, 0.96);
}

.nav-left,
.nav-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 36px;
}
.nav-left  { left: 40px; }
.nav-right { right: 40px; }

.nav-left a,
.nav-right a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-left a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-left a:hover,
.nav-right a:hover,
.nav-left a.active,
.nav-right a.active {
  color: var(--accent);
}
.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after,
.nav-right a.active::after {
  width: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--text);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  transition: color var(--transition);
}
.logo:hover {
  color: var(--accent);
}
.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(4.25px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* Mobile overlay nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 0;
  transition: color var(--transition);
}
.mobile-nav a:hover {
  color: var(--accent);
}

/* --- Touring Banner ----------------------------------------- */
.tour-banner {
  text-align: center;
  padding: 14px 24px;
  background: rgba(201,145,90,0.06);
  border-bottom: 1px solid rgba(201,145,90,0.12);
}
.tour-banner p {
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- Hero — full-bleed image, centered text overlay --------- */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(5, 5, 8, 0.94) 0%,
      rgba(5, 5, 8, 0.30) 30%,
      rgba(5, 5, 8, 0.18) 50%,
      rgba(5, 5, 8, 0.30) 70%,
      rgba(5, 5, 8, 0.94) 100%
    ),
    url('../images/photo-01.jpg') center/cover no-repeat;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(50px, 9vw, 96px);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.03;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-content .subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.hero-content .location {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 44px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}
.hero-scroll span {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.scroll-indicator {
  width: 1px;
  height: 48px;
  background: var(--border-light);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* --- About — two column, photo left, text right ------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  filter: brightness(0.88);
  transition: filter 0.6s ease;
}
.about-image:hover img {
  filter: brightness(1);
}

.about-text .lead {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1.5;
}
.about-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Stats grid */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.stat-item {
  text-align: center;
  padding: 20px 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 2px;
  transition: border-color var(--transition);
}
.stat-item:hover {
  border-color: var(--accent);
}
.stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Gallery — mood filmstrip (signature move) -------------- */
.filmstrip-wrapper {
  position: relative;
  overflow: hidden;
}

.filmstrip-container {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-bottom: 8px;
}
.filmstrip-container:active {
  cursor: grabbing;
}
.filmstrip-container::-webkit-scrollbar {
  height: 2px;
}
.filmstrip-container::-webkit-scrollbar-track {
  background: var(--bg-alt);
}
.filmstrip-container::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 1px;
}

.filmstrip-track {
  display: flex;
  gap: 0;
  padding: 0 calc((100vw - var(--max-width)) / 2 + 24px);
  min-width: min-content;
}

.filmstrip-item {
  flex: 0 0 auto;
  width: 320px;
  height: 450px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  border-left: 2px solid var(--bg-alt);
  border-right: 2px solid var(--bg-alt);
  transition: border-color var(--transition);
}
.filmstrip-item:hover {
  border-left-color: var(--accent);
  border-right-color: var(--accent);
}
.filmstrip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: brightness(0.82);
}
.filmstrip-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.02);
}

/* Filmstrip hover caption */
.filmstrip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 18px;
  background: linear-gradient(to top, rgba(5,5,8,0.9) 0%, rgba(5,5,8,0.4) 60%, transparent 100%);
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  color: var(--accent);
  text-align: center;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.filmstrip-item:hover .filmstrip-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Filmstrip fade edges */
.filmstrip-fade-left,
.filmstrip-fade-right {
  position: absolute;
  top: 0;
  bottom: 8px;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.filmstrip-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt), transparent);
}
.filmstrip-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt), transparent);
}

/* --- Rates — 6 cards in a grid ------------------------------ */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px 28px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
  border-radius: 2px;
  position: relative;
}
.rate-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 36px rgba(201,145,90,0.06);
}
.rate-card.featured {
  border-color: var(--accent);
}
.rate-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0d0a06;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 4px 18px;
}

.rate-duration {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.rate-price {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.rate-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.rate-note {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 14px;
  font-weight: 500;
}

.rates-footer {
  text-align: center;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}

/* --- Services — tag cloud ----------------------------------- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
  transition: all var(--transition);
  border-radius: 2px;
  cursor: default;
}
.service-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201,145,90,0.04);
}

/* --- Availability — 7-day grid ------------------------------ */
.availability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.avail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 22px 16px;
  text-align: center;
  border-radius: 2px;
  transition: border-color var(--transition);
}
.avail-card:hover {
  border-color: var(--accent);
}
.avail-card .day {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.avail-card .time {
  color: var(--accent);
  font-size: 13px;
  font-weight: 400;
}

/* --- Testimonials — cards with subtle border glow ----------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(201,145,90,0.05), 0 0 0 1px rgba(201,145,90,0.08);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
}
.testimonial-author span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
}

/* --- Contact / CTA ------------------------------------------ */
.cta-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,145,90,0.04), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-info h3 {
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item a,
.contact-item span {
  font-size: 15px;
  color: var(--text);
  transition: color var(--transition);
}
.contact-item a:hover {
  color: var(--accent);
}

.contact-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  margin-top: 24px;
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Contact note card */
.contact-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px 28px;
}
.contact-note h3 {
  margin-bottom: 16px;
}
.contact-note p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.7;
}
.contact-note ul {
  list-style: none;
  margin: 12px 0;
}
.contact-note ul li {
  color: var(--text-muted);
  font-size: 14px;
  padding: 5px 0 5px 18px;
  position: relative;
}
.contact-note ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}
.contact-note .note-highlight {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.contact-note .note-accent {
  color: var(--accent);
  font-size: 12px;
  margin-top: 12px;
}
.contact-note .signoff {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--accent);
}

/* --- Footer ------------------------------------------------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.footer-credit a {
  color: var(--accent);
  transition: opacity var(--transition);
}
.footer-credit a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* --- Lightbox ----------------------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.97);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2001;
  border-radius: 2px;
}
.lightbox-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2001;
  border-radius: 2px;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Animations --------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* --- Sticky Mobile Contact Bar ------------------------------ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(5, 5, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  justify-content: center;
  gap: 12px;
}
.mobile-bar .btn {
  flex: 1;
  text-align: center;
  padding: 12px 20px;
  font-size: 12px;
}

/* --- Desktop nav visibility --------------------------------- */
.desktop-nav {
  display: flex;
}

/* ============================================================ */
/* RESPONSIVE — 900px                                           */
/* ============================================================ */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }

  section {
    padding: 72px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img {
    height: 400px;
  }
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .filmstrip-track {
    padding: 0 24px;
  }
  .filmstrip-item {
    width: 280px;
    height: 390px;
  }

  .rates-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .availability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }

  .mobile-bar {
    display: flex;
  }
  body {
    padding-bottom: 72px;
  }

  .hero-content h1 {
    font-size: clamp(42px, 10vw, 64px);
  }
}

/* ============================================================ */
/* RESPONSIVE — 600px                                           */
/* ============================================================ */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  section {
    padding: 56px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-header h2 {
    font-size: 28px;
  }

  .hero-content h1 {
    font-size: 36px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-image img {
    height: 320px;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .stat-item {
    padding: 16px 8px;
  }
  .stat-value {
    font-size: 24px;
  }
  .stat-label {
    font-size: 9px;
  }

  .filmstrip-track {
    padding: 0 16px;
    gap: 0;
  }
  .filmstrip-item {
    width: 240px;
    height: 340px;
  }

  .rates-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .rate-card {
    padding: 36px 24px;
  }
  .rate-price {
    font-size: 42px;
  }

  .services-list {
    gap: 8px;
  }
  .service-tag {
    padding: 10px 16px;
    font-size: 11px;
  }

  .availability-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .testimonials-grid {
    gap: 16px;
  }
  .testimonial-card {
    padding: 24px 20px;
  }
  .testimonial-card blockquote {
    font-size: 15px;
  }

  .contact-grid {
    gap: 32px;
  }
  .contact-note {
    padding: 24px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .cta-section {
    padding: 60px 0;
  }

  .tour-banner {
    margin-top: 56px;
  }
}
