/* ============================================================
   GENTLEMEN'S PLACE — Design System & Styles
   Theme: Modern Gentleman × Industrial Vintage
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Core palette */
  --obsidian: #0d0d0d;
  --charcoal: #1a1a1a;
  --charcoal-light: #2a2a2a;
  --charcoal-mid: #222222;
  --copper: #b87333;
  --copper-light: #d4956a;
  --copper-dark: #8f5a28;
  --cognac: #834a2f;
  --cream: #f5f0e8;
  --cream-dark: #e0d5c5;
  --text-primary: #e8e0d4;
  --text-secondary: #9a9087;
  --text-muted: #6b6560;
  --white: #ffffff;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 0.3s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.03em;
  background-color: var(--obsidian);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--obsidian);
}

::-webkit-scrollbar-thumb {
  background: var(--charcoal-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--copper-dark);
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(184, 115, 51, 0.3);
  color: var(--cream);
}

/* ---------- Utility ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-sm);
  display: inline-block;
  position: relative;
  padding-left: 3rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--copper);
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-heading em {
  font-style: italic;
  color: var(--copper-light);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo .logo-accent {
  color: var(--copper);
}

.nav-logo .logo-divider {
  width: 1px;
  height: 1.2rem;
  background: var(--copper);
  opacity: 0.5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--obsidian);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--copper-light), var(--copper));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 115, 51, 0.35);
}

.btn-cta:hover::before {
  opacity: 1;
}

.btn-cta span {
  position: relative;
  z-index: 1;
}

.btn-cta svg {
  position: relative;
  z-index: 1;
  transition: transform var(--transition-base);
}

.btn-cta:hover svg {
  transform: translateX(4px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 13, 13, 0.85) 0%,
      rgba(13, 13, 13, 0.4) 50%,
      rgba(13, 13, 13, 0.7) 100%);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  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)'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding-left: 8%;
}

.hero-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 1s var(--ease-smooth) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 1s var(--ease-smooth) 0.5s forwards;
}

.hero-title .line {
  display: block;
}

.hero-title .line-accent {
  color: var(--copper);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 1s var(--ease-smooth) 0.7s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 1s var(--ease-smooth) 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-smooth) 1.2s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(184, 115, 51, 0.1);
  border-bottom: 1px solid rgba(184, 115, 51, 0.1);
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 115, 51, 0.03), transparent);
  pointer-events: none;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: var(--space-sm) var(--space-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--copper);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--copper-light);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(184, 115, 51, 0.2), transparent);
  flex-shrink: 0;
}

/* ============================================================
   THE EXPERIENCE — Parallax Section
   ============================================================ */
.experience {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.experience-parallax-bg {
  position: absolute;
  inset: -20% 0;
  z-index: 0;
  background-image: url('images/gallery-tools.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.5);
  will-change: transform;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      var(--obsidian) 0%,
      rgba(13, 13, 13, 0.7) 30%,
      rgba(13, 13, 13, 0.7) 70%,
      var(--obsidian) 100%);
}

.experience .container {
  position: relative;
  z-index: 2;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.experience-text {
  padding-right: var(--space-lg);
}

.experience-text .section-heading {
  margin-bottom: var(--space-md);
}

.experience-description {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.experience-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.experience-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.experience-features li .feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--copper);
  font-size: 0.85rem;
}

.experience-visual {
  position: relative;
}

.experience-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.experience-img-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.experience-img-wrapper:hover img {
  transform: scale(1.03);
}

.experience-img-border {
  position: absolute;
  inset: -1rem -1rem auto auto;
  width: 60%;
  height: 60%;
  border: 1px solid rgba(184, 115, 51, 0.15);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: var(--space-2xl) 0;
  background: var(--charcoal);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--copper), transparent);
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.services-header .section-label {
  padding-left: 0;
}

.services-header .section-label::before {
  display: none;
}

.services-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.prijslijst-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.prijslijst-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(184, 115, 51, 0.15);
  transition: transform 0.6s var(--ease-smooth), box-shadow 0.6s var(--ease-smooth);
}

.prijslijst-image:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(184, 115, 51, 0.3);
}

/* ============================================================
   OVER ERAY — About Section
   ============================================================ */
.about-eray {
  padding: var(--space-2xl) 0;
  background: var(--obsidian);
  position: relative;
}

.about-eray::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--copper), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.about-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.about-img-wrapper:hover img {
  transform: scale(1.03);
}

.about-img-border {
  position: absolute;
  inset: -1rem auto auto -1rem;
  width: 60%;
  height: 60%;
  border: 1px solid rgba(184, 115, 51, 0.15);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-description {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-sm);
}

.about-description strong {
  color: var(--copper-light);
  font-weight: 500;
}

.about-highlights {
  display: flex;
  gap: var(--space-md);
  margin: var(--space-md) 0;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(184, 115, 51, 0.1);
  border-bottom: 1px solid rgba(184, 115, 51, 0.1);
}

.about-highlight-item {
  text-align: center;
  flex: 1;
}

.highlight-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--copper);
  display: block;
  line-height: 1.2;
}

.highlight-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
  display: block;
}

.about-specialties {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.about-specialties span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(184, 115, 51, 0.15);
  border-radius: 20px;
  transition: all var(--transition-base);
}

.about-specialties span:hover {
  border-color: rgba(184, 115, 51, 0.4);
  color: var(--copper-light);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
  padding: var(--space-2xl) 0;
  background: var(--charcoal);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--copper), transparent);
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.gallery-header .section-label {
  padding-left: 0;
}

.gallery-header .section-label::before {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth), filter 0.6s var(--ease-smooth);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.7) 0%, rgba(13, 13, 13, 0.1) 50%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: var(--cream);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* Asymmetric layout */
.gallery-item:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
  height: 420px;
}

.gallery-item:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
  height: 420px;
}

.gallery-item:nth-child(3) {
  grid-column: 1 / 5;
  grid-row: 2 / 3;
  height: 350px;
}

.gallery-item:nth-child(4) {
  grid-column: 5 / 13;
  grid-row: 2 / 3;
  height: 350px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-smooth);
}

.lightbox.active .lightbox-content img {
  transform: scale(1);
}

.lightbox-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: var(--space-sm);
  letter-spacing: 0.1em;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(184, 115, 51, 0.2);
  border-color: var(--copper);
  color: var(--copper);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10001;
}

.lightbox-nav:hover {
  background: rgba(184, 115, 51, 0.2);
  border-color: var(--copper);
  color: var(--copper);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  padding: var(--space-2xl) 0;
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--copper), transparent);
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.testimonials-header .section-label {
  padding-left: 0;
}

.testimonials-header .section-label::before {
  display: none;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s var(--ease-smooth);
}

.testimonial-card {
  min-width: 100%;
  padding: var(--space-lg);
  background: var(--charcoal);
  border: 1px solid rgba(184, 115, 51, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: rgba(184, 115, 51, 0.08);
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.testimonial-stars span {
  color: var(--copper);
  font-size: 1rem;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.9;
  margin-bottom: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.testimonial-author-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--copper);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
}

.testimonial-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: var(--space-md);
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 115, 51, 0.15);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonial-btn:hover {
  background: rgba(184, 115, 51, 0.15);
  border-color: var(--copper);
  color: var(--copper);
}

.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--charcoal-light);
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonials-dots .dot.active {
  background: var(--copper);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking {
  padding: var(--space-2xl) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--copper), transparent);
}

.booking-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(184, 115, 51, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.booking-info {
  padding-top: var(--space-md);
}

.booking-description {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-perk {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 300;
}

/* Form */
.booking-form-wrapper {
  position: relative;
}

.booking-form {
  background: var(--charcoal-mid);
  border: 1px solid rgba(184, 115, 51, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group label .optional {
  font-weight: 300;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  transition: all var(--transition-base);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b6560' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--charcoal);
  color: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

/* Booking Success */
.booking-success {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--charcoal-mid);
  border: 1px solid rgba(184, 115, 51, 0.2);
  border-radius: var(--radius-lg);
}

.booking-success.active {
  display: block;
  animation: fadeUp 0.6s var(--ease-smooth) forwards;
}

.success-icon {
  margin-bottom: var(--space-md);
}

.booking-success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.booking-success p {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: var(--space-2xl) 0;
  background: var(--obsidian);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--copper), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.08);
  border: 1px solid rgba(184, 115, 51, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--copper);
}

.contact-detail-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.contact-detail-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

.contact-map {
  position: relative;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184, 115, 51, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.8) brightness(0.85) contrast(1.1);
  transition: filter var(--transition-base);
}

.map-wrapper:hover iframe {
  filter: grayscale(0.3) brightness(0.9) contrast(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: var(--space-xl) 0 var(--space-md);
  background: var(--charcoal);
  border-top: 1px solid rgba(184, 115, 51, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.footer-socials a:hover {
  background: rgba(184, 115, 51, 0.15);
  border-color: var(--copper);
  color: var(--copper);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.15);
  border: 1px solid rgba(184, 115, 51, 0.3);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--copper);
  color: var(--obsidian);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(184, 115, 51, 0.3);
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .experience-grid {
    gap: var(--space-lg);
  }

  .experience-text {
    padding-right: var(--space-md);
  }

  .about-grid {
    gap: var(--space-lg);
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-lg);
    gap: 2rem;
    transition: right var(--transition-slow);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.15em;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-content {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 0;
  }

  .stat-item {
    flex: 0 0 50%;
    padding: var(--space-sm);
  }

  .stat-divider {
    display: none;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .experience-text {
    padding-right: 0;
  }

  .experience-img-wrapper img {
    height: 400px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    flex-wrap: wrap;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-img-wrapper img {
    height: 350px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 280px;
  }

  .testimonial-card {
    padding: var(--space-md);
  }

  .testimonial-quote {
    font-size: 0.95rem;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .map-wrapper {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .lightbox-nav {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn-cta {
    padding: 0.65rem 1.5rem;
    font-size: 0.7rem;
  }

  .service-item {
    padding: var(--space-md) var(--space-sm);
    flex-direction: column;
    gap: var(--space-sm);
  }

  .service-meta {
    text-align: left;
  }

  .booking-form {
    padding: var(--space-md);
  }

  .stat-number {
    font-size: 2rem;
  }
}