/* ============================================
   The Grooming Lounge — Stylesheet
   Modern, clean, premium dark theme
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --accent: #c9a96e;
  --accent-light: #d4b87a;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #cccccc;
  --gray-500: #888888;
  --gray-700: #444444;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--gray-300);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.services-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.services-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

.exp-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.exp-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.exp-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }


/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* backdrop-filter lives on ::before so .nav itself creates no compositing
   boundary — prevents the mobile nav-links panel background from vanishing */
.nav--scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gray-300);
  transition: color 0.2s ease;
  text-transform: uppercase;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn--nav {
  padding: 10px 24px;
  background: var(--accent);
  color: var(--black);
  border-radius: 2px;
}

.btn--nav:hover {
  background: var(--accent-light);
}

.btn--lg {
  padding: 18px 48px;
  font-size: 15px;
}


/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3) saturate(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.9) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  z-index: 1;
}

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

.hero-logo {
  width: 380px;
  max-width: 80vw;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
}

.hero-tagline {
  font-size: 18px;
  color: var(--gray-500);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
  text-transform: uppercase;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-500);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gray-500), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}


/* ============================================
   Section Basics
   ============================================ */
.section {
  padding: 120px 0;
}

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

.text-center .section-label,
.section-label + .section-title.text-center {
  text-align: center;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 60px;
  text-align: center;
}


/* ============================================
   About
   ============================================ */
.about {
  background: var(--dark);
}

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

.about-text p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-text strong {
  color: var(--white);
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}


/* ============================================
   Services — Price List
   ============================================ */
.services {
  background: var(--black);
}

.price-list {
  max-width: 720px;
  margin: 0 auto;
}

.price-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.price-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.price-item--featured {
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.04) 0%, transparent 100%);
  padding: 20px 16px;
  margin: 0 -16px;
  border-radius: 4px;
  border-bottom: none;
}

.price-item--featured + .price-item {
  border-top: none;
}

.price-item-info {
  flex-shrink: 0;
}

.price-item-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.price-item-detail {
  font-weight: 400;
  color: var(--gray-500);
  font-size: 14px;
}

.price-item-duration {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-item-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0px,
    rgba(255, 255, 255, 0.1) 4px,
    transparent 4px,
    transparent 8px
  );
  min-width: 40px;
}

.price-item-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.service-badge {
  position: absolute;
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(201, 169, 110, 0.1);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.price-item-save {
  position: absolute;
  top: 50%;
  right: -72px;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 600;
  color: #6dbf6d;
  white-space: nowrap;
}

/* Combo Header */
.combo-header {
  max-width: 720px;
  margin: 56px auto 0;
  padding-bottom: 8px;
}

.combo-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.combo-subtitle {
  font-size: 14px;
  color: var(--gray-500);
}

.price-item--combo .price-item-name {
  font-size: 15px;
}

.services-cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================
   Products — Slider
   ============================================ */
.products {
  background: var(--dark);
}

.product-slider {
  position: relative;
}

/* Right-side fade gradient — hints more cards are hidden */
.product-slider::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 20px; /* matches track padding-bottom */
  width: 160px;
  background: linear-gradient(to right, transparent 0%, var(--dark) 65%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.product-slider.at-end::after {
  opacity: 0;
}

.product-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px 20px;
  cursor: grab;
  user-select: none;
}

.product-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 22px 18px 18px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.2);
}

.product-brand {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 14px;
  opacity: 0.75;
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px;
}

.product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  cursor: zoom-in;
}

.product-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.product-type {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.product-desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 10px;
}

.product-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
}

/* Slider navigation button — absolute right */
.slider-btn--next {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(calc(-50% - 10px)); /* -10px = half track padding-bottom */
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--dark-2);
  box-shadow: -12px 0 24px rgba(10, 10, 10, 0.6);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn--next:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 169, 110, 0.1);
}

.slider-btn--next:disabled {
  opacity: 0;
  pointer-events: none;
}

.slider-btn svg {
  width: 18px;
  height: 18px;
}

/* Reduce bottom spacing for products */
.products {
  padding-bottom: 80px;
}


/* ============================================
   Gallery / Our Work
   ============================================ */
.gallery {
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.85) saturate(0.9);
  cursor: zoom-in;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

.gallery-item--tall {
  grid-row: span 2;
}


/* ============================================
   Experience / Why Us
   ============================================ */
.experience {
  background: var(--dark);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.exp-card {
  padding: 40px 24px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--dark-2);
  transition: border-color 0.3s ease;
}

.exp-card:hover {
  border-color: rgba(201, 169, 110, 0.15);
}

.exp-number {
  font-size: 48px;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.15);
  margin-bottom: 20px;
  line-height: 1;
}

.exp-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.exp-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}


/* ============================================
   Booking CTA
   ============================================ */
.booking {
  position: relative;
  background: var(--black);
  text-align: center;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.25) saturate(0.5);
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0.8) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  z-index: 1;
}

.booking .container {
  position: relative;
  z-index: 2;
}

.booking-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 40px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.03) 0%, transparent 100%);
}

.booking-inner .section-title {
  margin-bottom: 16px;
}

.booking-inner p {
  color: var(--gray-500);
  margin-bottom: 32px;
}

.booking-note {
  font-size: 13px;
  color: var(--gray-700) !important;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}


/* ============================================
   Contact
   ============================================ */
.contact {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.contact-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 169, 110, 0.05);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: var(--dark-2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-placeholder p {
  font-size: 12px;
  margin-top: 8px;
  text-transform: none;
  letter-spacing: 0;
}

/* DSGVO 2-click map consent */
.map-consent {
  width: 100%;
  min-height: 320px;
  background: var(--dark-2);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  gap: 10px;
}

.map-consent__icon {
  color: var(--accent);
  opacity: 0.55;
  margin-bottom: 4px;
}

.map-consent__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.map-consent__text {
  font-size: 12px;
  color: var(--gray-500);
  max-width: 300px;
  line-height: 1.7;
  margin: 0;
}

.map-consent__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.map-consent__btn {
  margin-top: 10px;
  padding: 10px 30px;
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.map-consent__btn:hover {
  opacity: 0.85;
}


/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--black);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  height: 48px;
  margin: 0 auto 24px;
  filter: brightness(0) invert(1);
  opacity: 0.4;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

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

.footer-copy {
  font-size: 12px;
  color: var(--gray-700);
}

.footer-dev {
  font-size: 11px;
  color: var(--gray-700);
  opacity: 0.5;
  margin-top: 4px;
}

.footer-dev a {
  color: inherit;
  text-decoration: none;
}

.footer-dev a:hover {
  opacity: 1;
  color: var(--accent);
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--black);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

details[open] .faq-q::after {
  transform: rotate(180deg);
}

details[open] .faq-q {
  color: var(--accent);
}

.faq-a {
  padding: 0 24px 24px 0;
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.85;
  max-width: 680px;
}

.faq-a strong {
  color: var(--gray-300);
}


/* ============================================
   Reviews
   ============================================ */

.reviews {
  background: var(--dark);
}

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

.review-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-2px);
}

.review-stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 3px;
}

.review-text {
  color: var(--gray-300);
  font-size: 15px;
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.25);
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.review-source {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray-500);
}

.review-google-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.reviews-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-outline-gold:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--accent);
}

/* Responsive: Reviews */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 88vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(0.96);
  transition: transform 0.35s ease, opacity 0.2s ease;
  display: block;
}

.lightbox.open .lightbox-img-wrap img {
  transform: scale(1);
}

.lightbox-img-wrap img.switching {
  opacity: 0;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  width: 18px;
  height: 18px;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.lightbox-prev.hidden,
.lightbox-next.hidden {
  opacity: 0;
  pointer-events: none;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  font-weight: 500;
}


/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

  .service-badge {
    position: static;
    transform: none;
    display: inline-block;
    margin-left: 8px;
    flex-shrink: 0;
  }

  .price-item-save {
    position: static;
    transform: none;
    flex-shrink: 0;
    margin-left: 8px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding: 80px 0;
  }

  /* Hide Popular badge on mobile to prevent overflow */
  .service-badge,
  .price-item-save {
    display: none;
  }

  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    flex-direction: column;
    background: var(--dark);
    padding: 100px 40px 40px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1001;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 16px;
  }

  .btn--nav {
    margin-top: 16px;
    text-align: center;
    width: 100%;
    display: block;
  }

  /* Hero */
  .hero-logo {
    width: 280px;
  }

  .hero-tagline {
    font-size: 14px;
    margin-bottom: 36px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-image-placeholder {
    aspect-ratio: 16 / 9;
  }

  .about-stats {
    gap: 32px;
  }

  /* Products slider — hide button on mobile (touch swipe) */
  .slider-btn--next {
    display: none;
  }

  .product-slider::after {
    width: 60px;
  }

  .product-card {
    flex: 0 0 170px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  /* Experience */
  .exp-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Booking */
  .booking-inner {
    padding: 48px 24px;
  }

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

  /* Footer */
  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }
}

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

  .section-title {
    font-size: 28px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }
}

/* ── Language Switcher ─────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.12);
  margin-left: 6px;
  list-style: none;
}

.lang-flag {
  display: flex;
  align-items: center;
  opacity: 0.45;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
}

.lang-flag img {
  display: block;
  border-radius: 2px;
}

.lang-flag:hover {
  opacity: 0.85;
  transform: scale(1.1);
}

.lang-flag--active {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .lang-switcher {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-left: 0;
    padding-top: 16px;
    margin-left: 0;
    margin-top: 8px;
    justify-content: center;
    gap: 16px;
  }

  .lang-flag img {
    width: 30px;
    height: 20px;
  }
}

/* ============================================
   LEGAL PAGE (Terms & Conditions / Privacy)
   ============================================ */
.legal-page {
  padding: 140px 0 80px;
  min-height: 100vh;
}

.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.legal-title span {
  color: var(--accent);
}

.legal-title--secondary {
  margin-top: 56px;
}

.legal-updated {
  font-size: 12px;
  color: var(--gray-700);
  margin-bottom: 48px;
}

.legal-subtitle {
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}

.legal-intro {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 32px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.legal-section p {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: none;
  margin: 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-section ul li {
  color: var(--gray-400);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}

.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.5;
}

.legal-section address {
  font-style: normal;
  color: var(--gray-400);
  line-height: 2;
}

.legal-section address a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
