/* Fonts are loaded via Google Fonts CDN in HTML head for full character subset and weight support */

/* =========================================
   LUKÁŠ BIELKA — PREMIUM HAIR SALON
   index.css — Main Stylesheet
   Design: Dark editorial, gold accents
   ========================================= */

/* -------- 0. RESET & BASE -------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

/* -------- 1. DESIGN TOKENS -------- */
:root {
  /* Colors */
  --color-bg:         #0d0d0d;
  --color-bg-2:       #141414;
  --color-bg-3:       #1a1916;
  --color-surface:    #1f1e1b;
  --color-border:     rgba(255,255,255,0.08);
  --color-gold:       #c9a96e;
  --color-gold-light: #e2c898;
  --color-gold-dark:  #a07840;
  --color-text:       #f0ece4;
  --color-text-muted: rgba(240,236,228,0.55);
  --color-text-faint: rgba(240,236,228,0.25);
  --color-white:      #ffffff;

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-xxl: 10rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------- 2. LAYOUT UTILITIES -------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* -------- 3. TYPOGRAPHY -------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  word-break: break-word;
}

.eyebrow--center { text-align: center; }
.eyebrow--light  { color: var(--color-gold-light); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-break: break-word;
  hyphens: none;
}

.section-headline--center { text-align: center; }

/* -------- 4. BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  max-width: 100%;
  text-align: center;
}

.btn--gold {
  background: var(--color-gold);
  color: #0d0d0d;
}
.btn--gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* -------- 5. SCROLL REVEAL -------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal--delay { transition-delay: 0.18s; }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------- 6. NAVIGATION -------- */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: #080807;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(8, 8, 7, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  gap: var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
  transition: opacity var(--transition), transform var(--transition);
}

.nav__logo-img:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.05em;
  font-style: italic;
}

.nav__logo-accent {
  color: var(--color-gold);
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition), transform var(--transition);
  word-break: normal;
  display: inline-block;
}
.nav__link:hover {
  color: var(--color-gold);
  transform: scale(1.05) translateY(-0.5px);
}

.nav__link--instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav__instagram-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  display: block;
}

.nav__cta {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  font-size: 0.65rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.nav__cta:hover {
  transform: scale(1.03) translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.15);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-sm) 0 var(--space-md);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 899;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 1rem var(--space-md);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition), background var(--transition);
}
.nav__mobile-link:hover { color: var(--color-text); background: rgba(255,255,255,0.03); }
.nav__mobile-cta {
  margin: var(--space-md) var(--space-md) 0;
  width: calc(100% - var(--space-md) * 2);
}

/* -------- 7. HERO SECTION -------- */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 35% 40%, rgba(180, 140, 80, 0.04) 0%, transparent 60%),
    linear-gradient(160deg, #0d0d0d 0%, #171512 60%, #111008 100%);
  z-index: 1;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 2;
}

/* Slideshow Container on the right */
.hero__slideshow {
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #151310 0%, transparent 30%, transparent 80%, rgba(21,19,16,0.5) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 6s ease-in-out;
  transform: scale(1.05);
}

.hero__slide--active {
  opacity: 0.65;
  transform: scale(1.0);
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: var(--space-lg) var(--space-md);
  max-width: 620px;
  margin-left: calc((100vw - var(--max-width)) / 2);
  padding-left: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__eyebrow::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  word-break: break-word;
  hyphens: none;
}

.hero__headline-line {
  display: block;
}

.hero__headline-accent {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.mobile-br {
  display: none;
}

.hero__subheadline {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 480px;
  margin-bottom: var(--space-md);
  word-break: break-word;
}

.hero__cta { font-size: 0.68rem; padding: 0.85rem 2.2rem; }

/* Hero side dots */
.hero__nav-dots {
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 3;
}
.hero__dot {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--color-text-faint);
  letter-spacing: 0.1em;
  transition: color var(--transition);
}
.hero__dot::after {
  content: "";
  display: block;
  width: 1px;
  height: 2rem;
  background: var(--color-text-faint);
  margin: 0.5rem auto 0;
  transition: background var(--transition);
}
.hero__dot--active { color: var(--color-gold); }
.hero__dot--active::after { background: var(--color-gold); }

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  left: var(--space-md);
  bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}
.hero__scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, transparent, var(--color-gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll-label {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  writing-mode: vertical-lr;
  text-orientation: mixed;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* -------- 8. ABOUT SECTION -------- */
.about {
  background: #ffffff;
  color: #0d0d0d;
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  gap: var(--space-xl);
  align-items: flex-start;
}

.about .eyebrow {
  color: var(--color-gold-dark);
}

.about .section-headline {
  color: #0d0d0d;
}

.about__bio {
  color: #333333;
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: var(--space-sm);
  word-break: break-word;
}

.about__more-link {
  display: inline-block;
  margin-top: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0d0d0d;
  text-decoration: none;
  border: none;
  background: none;
  border-bottom: 1px solid var(--color-gold);
  padding: 0;
  padding-bottom: 2px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}
.about__more-link:hover {
  color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

.about__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: transparent;
}

.stat-card {
  background: transparent;
  padding: var(--space-sm) var(--space-xs);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card__icon {
  height: 3rem;
  color: var(--color-gold-dark);
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.stat-card__icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.stat-card__value {
  height: 3.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: #0d0d0d;
  margin-bottom: 0 !important;
  word-break: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.stat-card__label {
  margin-top: auto;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666666;
  line-height: 1.35;
  word-break: normal;
  overflow-wrap: normal;
}

.stat-card__label--large {
  font-size: 0.7rem;
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* Brands Showcase Styling */
.about__brands {
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: var(--space-md);
  text-align: center;
}

.about__brands-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: var(--space-md);
}

.about__brands-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  align-items: center;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about__brand-logo {
  height: 4.8rem;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity var(--transition), transform var(--transition);
}

.about__brand-logo:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* -------- 9. FEATURES SECTION -------- */
.features {
  background: var(--color-bg);
  padding: var(--space-xxl) 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  margin-top: var(--space-lg);
}

.feature-card {
  background: var(--color-bg);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  border: 1px solid var(--color-border);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background var(--transition);
}

.feature-card:hover {
  background: var(--color-surface);
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.feature-card:hover::before {
  background: var(--color-gold);
}

.feature-card__more {
  color: var(--color-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: var(--space-sm);
  transition: color var(--transition);
}
.feature-card:hover .feature-card__more {
  color: var(--color-gold-light);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-md);
  color: var(--color-gold);
  opacity: 0.8;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
  word-break: break-word;
  hyphens: none;
}

.feature-card__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  word-break: break-word;
  hyphens: auto;
}

/* -------- 10. GALLERY SECTION -------- */
.gallery-section {
  background: var(--color-bg);
  padding: var(--space-xxl) 0;
  border-top: 1px solid var(--color-border);
}

.gallery-section__header {
  text-align: center;
  padding: 0 var(--space-md);
  margin-bottom: var(--space-lg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 3px;
  width: 100%;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--color-surface);
}

.gallery__item--large {
  grid-column: span 2;
  aspect-ratio: 4 / 3;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition-slow);
}

.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover .gallery__overlay { background: rgba(0,0,0,0.25); }

/* -------- 11. REVIEWS SECTION -------- */
.reviews {
  background: var(--color-bg-3);
  padding: var(--space-xxl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  margin-top: var(--space-lg);
}

.review-card {
  background: var(--color-bg-3);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.review-card__stars {
  display: flex;
  gap: 3px;
}
.review-card__star {
  color: var(--color-gold);
  font-size: 0.75rem;
}

.review-card__quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-text);
  word-break: break-word;
  hyphens: auto;
  flex: 1;
}

.review-card__quote::before { content: "\201E"; }
.review-card__quote::after  { content: "\201C"; }

.review-card__author {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}

.review-card__name {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.review-card__detail {
  font-size: 0.72rem;
  color: var(--color-text-faint);
  letter-spacing: 0.08em;
}

/* -------- 12. BOOKING SECTION -------- */
.booking {
  position: relative;
  padding: var(--space-xl) 0;
  background: #ffffff;
  color: #0d0d0d;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.booking__grid {
  display: grid;
  grid-template-columns: 4.8fr 7.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.booking__image-col {
  width: 100%;
}

.booking__portrait {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.06);
}

.booking__content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.booking .eyebrow {
  color: var(--color-gold-dark);
}

.booking__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: #0d0d0d;
  margin-bottom: var(--space-md);
  word-break: break-word;
  hyphens: none;
}

.booking__text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #444444;
  max-width: 550px;
  margin-bottom: var(--space-lg);
  word-break: break-word;
}

.booking__cta {
  padding: 1rem 3rem;
  font-size: 0.72rem;
  background: #0d0d0d;
  color: #ffffff;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.booking__cta:hover {
  background: var(--color-gold);
  color: #0d0d0d;
  transform: translateY(-2px);
}

.booking__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}
@media (max-width: 768px) {
  .booking__actions {
    justify-content: center;
    gap: 12px;
  }
}

.about__expanded {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.8s ease, margin-bottom 0.5s ease;
}
.about__expanded.open {
  opacity: 1;
  max-height: 2000px;
  margin-bottom: var(--space-md);
}
.about__expanded p {
  color: #333333;
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: var(--space-sm);
  word-break: break-word;
}

.contact__map-iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-border);
  display: block;
  filter: grayscale(1) invert(0.9) contrast(1.2);
}
@media (max-width: 768px) {
  .contact__map-iframe {
    aspect-ratio: 16 / 9;
  }
}

/* -------- 13. CONTACT SECTION -------- */
.contact {
  background: var(--color-bg-2);
  padding: var(--space-xxl) 0;
  border-top: 1px solid var(--color-border);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-item__icon {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item__label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.2rem;
}

.contact-item__value {
  font-size: 0.9rem;
  color: var(--color-text);
  word-break: break-word;
}

.contact-item__value a {
  color: var(--color-text);
  transition: color var(--transition);
}
.contact-item__value a:hover { color: var(--color-gold); }

.contact__map-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-text-faint);
}

.contact__map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  opacity: 0.4;
}

.contact__map-placeholder p {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

/* -------- 14. FOOTER -------- */
.footer {
  background: #080807;
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
}

.footer__logo-link {
  display: block;
  text-decoration: none;
}

.footer__logo-img {
  height: 42px;
  width: auto;
  display: block;
  opacity: 0.75;
  transition: opacity var(--transition), transform var(--transition);
}

.footer__logo-img:hover {
  opacity: 1;
  transform: scale(1.03);
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text);
}

.footer__tagline {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer__links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--color-text); }

.footer__copy {
  font-size: 0.65rem;
  color: var(--color-text-faint);
  letter-spacing: 0.06em;
  word-break: break-word;
}

/* -------- 15. LIGHTBOX -------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox__img-wrap {
  width: 90vw;
  max-width: 900px;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-text);
  font-size: 1.2rem;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), color var(--transition);
}
.lightbox__close:hover { border-color: var(--color-gold); color: var(--color-gold); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-text);
  font-size: 2rem;
  cursor: pointer;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), color var(--transition);
  line-height: 1;
}
.lightbox__prev { left: var(--space-md); }
.lightbox__next { right: var(--space-md); }
.lightbox__prev:hover, .lightbox__next:hover {
  border-color: var(--color-gold); color: var(--color-gold);
}

/* Modal Styles */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 7, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.modal.open {
  display: flex;
  animation: fadeIn var(--transition) forwards;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  cursor: pointer;
}

.modal__content {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  max-width: 650px;
  width: 100%;
  padding: var(--space-lg);
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  transform: translateY(30px);
  opacity: 0;
}

.modal.open .modal__content {
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.modal__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: transparent;
  border: none;
  color: var(--color-text-faint);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.modal__close:hover {
  color: var(--color-gold);
}

.modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

.modal__text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.modal__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: var(--space-md);
}

.modal__gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--color-border);
  transition: transform var(--transition);
}
.modal__gallery-img:hover {
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Panoramic Bottom Banner */
.panoramic-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #000000;
  border-top: 1px solid var(--color-border);
}

.panoramic-banner__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 380px;
  opacity: 0.9;
  transition: transform var(--transition-slow);
}

.panoramic-banner:hover .panoramic-banner__img {
  transform: scale(1.02);
}

/* -------- 16. RESPONSIVE BREAKPOINTS -------- */
@media (max-width: 1024px) {
  :root { --space-xxl: 7rem; }

  .hero__content {
    margin-left: 0;
    padding-left: var(--space-md);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about__stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: var(--space-md) var(--space-sm);
  }

  .stat-card:nth-child(1),
  .stat-card:nth-child(3) {
    border-right: 1px solid rgba(0,0,0,0.06);
  }

  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: 65vh;
    align-items: center;
    justify-content: center;
  }

  .hero__slideshow {
    width: 100%;
    z-index: 0;
    border-left: none;
  }

  .hero__slide {
    filter: brightness(0.25);
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    text-align: center;
    z-index: 2;
  }

  .hero__eyebrow {
    justify-content: center;
  }

  .hero__eyebrow::before {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl:  4rem;
    --space-xxl: 5rem;
  }

  .mobile-br {
    display: inline;
  }

  .hero__headline-accent {
    display: inline;
  }

  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero__nav-dots { display: none; }
  .hero__scroll   { display: none; }
  .hero__content  { padding-bottom: var(--space-xl); }

  /* Features */
  .features__grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__item--large {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
  .gallery__item--tall { grid-row: auto; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map-placeholder { aspect-ratio: 16/9; }

  /* Footer */
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links  { justify-content: center; }

  /* Brands */
  .about__brands-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  .about__brand-logo {
    height: 2.2rem;
  }

  /* Booking */
  .booking__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }
  .booking__content-col {
    align-items: center;
  }
  .booking__portrait {
    max-width: 320px;
    margin: 0 auto;
  }
  .booking__cta {
    width: auto;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg:  2.5rem;
    --space-xl:  3rem;
    --space-xxl: 4rem;
  }

  .nav__logo-img {
    height: 35px;
  }

  .hero__headline {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .btn { width: 100%; justify-content: center; }
  .hero__cta { width: auto; }

  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
}

