*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #B2A096;
  --gold-dark: #9A8880;
  --dark: #1a1a1a;
  --darker: #111111;
  --light-bg: #f8f5f0;
  --text: #555;
  --white: #fff;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .4s, box-shadow .4s, top .4s;
}

header.scrolled {
  background: rgba(26, 26, 26, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 90px;
}

.header-nav-left {
  display: flex;
  gap: 30px;
  flex: 1;
}

.header-nav-left a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.header-nav-left a:hover {
  color: var(--gold);
}

.header-nav-left a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white);
}

.logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo img {
  height: 48px;
  display: block;
}

.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.btn-book-header {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.btn-book-header:hover {
  color: var(--gold);
}

.btn-book-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}

.btn-book-header:hover::after {
  border-bottom-color: var(--gold);
  border-bottom-style: solid;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
  margin-left: 20px;
}

.mobile-menu-btn .line {
  display: block;
  height: 1px;
  background: var(--white);
  position: absolute;
  transition: transform 0.3s, width 0.3s;
}

.mobile-menu-btn .line-1 {
  top: 18px;
  width: 24px;
  right: 6px;
}

.mobile-menu-btn .line-2 {
  bottom: 18px;
  width: 24px;
  right: 14px;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(0.95);
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.75) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 2;
  padding: 0 20px;
  animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero-bottom-info {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 60px;
  z-index: 2;
}

.hero-bottom-left {
  color: var(--white);
}

.find-us {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.address {
  font-family: 'Forum', serif;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Hero Social Icons ── */
.hero-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  animation: heroFadeUp 1s .35s ease both;
}

.hero-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-social-link:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
}

.hero-social-link svg {
  flex-shrink: 0;
  stroke: currentColor;
}

.circle-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  transition: transform 0.5s ease, background 0.3s ease;
}

.circle-btn:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.05);
}

.rotating-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.circle-icon {
  color: var(--white);
  font-size: 24px;
  position: relative;
  z-index: 2;
}

/* ── SECTION COMMONS ── */
section {
  padding: 100px 40px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}

h2.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}

h2.section-title em {
  font-style: italic;
  color: var(--gold);
}

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

/* ── PERSONALIZED EXPERIENCE ── */
.personalized-experience {
  background: #080808;
  color: var(--white);
  padding: 120px 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.exp-left {
  flex: 0 0 35%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.huge-circle-btn {
  position: relative;
  width: 700px;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-40%);
}

.rotating-text-huge {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotate 30s linear infinite;
}

.chair-icon {
  position: relative;
  z-index: 2;
}

.exp-right {
  flex: 1;
  padding-right: 60px;
  padding-left: 20px;
}

.exp-text {
  margin-bottom: 50px;
}

.exp-images {
  display: flex;
  gap: 20px;
}

.exp-images>img,
.exp-images .exp-img-wrap {
  flex: 1;
  aspect-ratio: 1;
  object-fit: cover;
  min-width: 0;
}

.exp-img-wrap {
  position: relative;
  display: flex;
}

.exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.up-arrow-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #B2A096;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.up-arrow-btn:hover {
  background: var(--gold);
}

/* ═══════════════════════════════════════════
   ── SERVICES (redesigned card layout) ──
   ═══════════════════════════════════════════ */
.services {
  background: #080808;
  color: var(--white);
  padding: 100px 40px;
  overflow: hidden;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1300px;
  margin: 0 auto 70px;
}

.services-header h2.section-title {
  color: var(--white);
  font-size: 45px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-header .hero-cta {
  font-size: 11px;
  padding: 14px 28px;
}

/* Cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.services-header-content {
  max-width: 800px;
  margin-right: 40px;
}

.services-intro {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
  font-weight: 300;
}

.service-card-mobile-info {
  display: none;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 6px;
  opacity: 0.85;
}

.section-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(178, 160, 150, 0.4), transparent);
  width: 100%;
  position: relative;
  z-index: 10;
}

.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 520px;
  flex: 1;
}

.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
}

.service-card:hover .service-card-img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .1) 100%);
  transition: background .5s;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .5) 55%, rgba(0, 0, 0, .2) 100%);
}

.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  transform: translateY(0);
  transition: transform .4s ease;
}

.service-card-number {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: rgba(255, 255, 255, .08);
  line-height: 1;
  margin-bottom: -8px;
  transition: color .4s;
}

.service-card:hover .service-card-number {
  color: rgba(201, 169, 110, .15);
}

.service-card-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-card-description {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover .service-card-description {
  max-height: 150px;
  opacity: 1;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s .1s ease, transform .4s .1s ease;
}

.service-card:hover .service-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.service-card-cta .cta-arrow {
  transition: transform .3s;
}

.service-card:hover .service-card-cta .cta-arrow {
  transform: translateX(4px);
}

/* Gold accent line on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* ── MARQUEE VIDEO ── */
.marquee-video {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.marquee-video video,
.marquee-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
}

.marquee-text-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-track span {
  font-family: var(--font-serif);
  font-size: clamp(60px, 8vw, 110px);
  font-weight: 300;
  color: rgba(255, 255, 255, .12);
  padding: 0 40px;
  letter-spacing: 4px;
  line-height: 1;
}

.marquee-track span em {
  font-style: italic;
  color: rgba(201, 169, 110, .2);
}

/* ── TEXT MARQUEE BAR ── */
.text-marquee-bar {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 5;
}

.text-marquee-track {
  display: flex;
  width: max-content;
  animation: text-marquee-scroll 24s linear infinite;
}

.text-marquee-group {
  display: flex;
  align-items: center;
}

.text-marquee-group span {
  font-family: var(--font-serif);
  font-size: clamp(14px, 2.5vw, 19px);
  font-weight: 300;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.text-marquee-group span.arrow {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px 0 30px;
}

@keyframes text-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

/* ── BEFORE / AFTER (TRANSFORMATIONS) ── */
.before-after {
  background: #080808;
  padding: 100px 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.before-after-header {
  text-align: center;
  max-width: 700px;
  margin-bottom: 50px;
}

.before-after-header .section-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-top: 10px;
}

.before-after-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.before-after-tab-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.before-after-tab-btn:hover {
  color: var(--white);
  border-color: var(--gold);
}

.before-after-tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--darker);
}

.before-after-sliders-wrapper {
  position: relative;
  width: 100%;
  max-width: 850px;
  aspect-ratio: 4/3;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  touch-action: pan-y;
}

.before-after-slider {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-select: none;
}

.before-after-slider.active {
  display: block;
}

/* Slider Instruction Overlay */
.slider-instruction-overlay {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  visibility: visible;
}

.before-after-slider.interacted .slider-instruction-overlay {
  opacity: 0;
  visibility: hidden;
}

.instruction-bubble {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: pulseInstruction 2.5s infinite ease-in-out;
}

.instruction-bubble svg {
  color: var(--gold);
  flex-shrink: 0;
}

.bounce-horizontal {
  animation: bounceLeft 1.6s infinite ease-in-out;
}

.bounce-horizontal-right {
  animation: bounceRight 1.6s infinite ease-in-out;
}

@keyframes bounceLeft {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-4px);
  }
}

@keyframes bounceRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

@keyframes pulseInstruction {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(178, 160, 150, 0.25);
  }
}

.slider-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.slider-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-before {
  /* This overlay is clipped dynamically from the right side */
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  z-index: 2;
}

.img-after {
  z-index: 1;
}

/* Slider labels */
.slider-label {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
  border-radius: 2px;
  pointer-events: none;
}

.label-before {
  left: 20px;
  border-left: 2px solid var(--gold);
}

.label-after {
  right: 20px;
  border-right: 2px solid var(--white);
}

/* Drag Handle */
.slider-drag-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
  touch-action: pan-y;
}

.slider-drag-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--white);
  transition: transform 0.2s, background-color 0.2s;
  cursor: ew-resize;
}

.slider-drag-handle:hover .slider-drag-button,
.slider-drag-button:hover {
  background: var(--white);
  color: var(--darker);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ── TESTIMONIALS ── */
.testimonials {
  position: relative;
  background: #080808;
  padding: 120px 80px;
  color: var(--white);
  overflow: hidden;
}

.testimonials-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Quote Icon */
.testimonial-quote-icon {
  color: var(--gold);
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-quote-icon svg {
  opacity: 0.75;
  transition: opacity 0.3s;
}

/* Slider and Slides */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

.testimonial-slide {
  display: none;
  animation: fadeInTestimonial 0.6s ease-in-out forwards;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeInTestimonial {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-slide blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0 40px;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 15px;
  display: inline-block;
}

/* Stars */
.testimonial-stars {
  color: var(--gold);
  font-size: 10px;
  margin-top: 10px;
  margin-bottom: 45px;
  letter-spacing: 6px;
  display: flex;
  justify-content: center;
}

/* Side Arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 15px;
  transition: color 0.3s, transform 0.3s, opacity 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-arrow:hover {
  color: var(--white);
}

.testimonial-arrow:active {
  transform: translateY(-50%) scale(0.9);
}

.prev-arrow {
  left: 30px;
}

.next-arrow {
  right: 30px;
}

/* Avatars bottom navigation */
.testimonial-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.testimonial-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.35;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(0.95);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-avatar:hover {
  opacity: 0.7;
  border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-avatar.active {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(178, 160, 150, 0.15);
}

/* Mobile responsiveness adjustments */
@media (max-width: 768px) {
  .testimonials {
    padding: 80px 24px;
  }

  .testimonial-arrow {
    display: none;
    /* Hide chevrons on mobile to let content breathe */
  }

  .testimonial-slide blockquote {
    padding: 0;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.4;
  }

  .testimonial-avatar {
    width: 55px;
    height: 55px;
  }

  .testimonial-stars {
    margin-bottom: 30px;
  }
}

/* ── GALLERY STRIP ── */
.gallery-strip {
  padding: 0;
}

.gallery-strip-inner {
  display: flex;
  height: 420px;
}

.gallery-strip-inner a {
  flex: 1;
  overflow: hidden;
  display: block;
}

.gallery-strip-inner a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-strip-inner a:hover img {
  transform: scale(1.08);
}

/* ── INSTAGRAM ── */
.instagram {
  background: #000000;
  text-align: center;
  padding: 120px 40px;
  color: var(--white);
}

.instagram-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 50px 40px;
  align-items: start;
}

.instagram-header-block {
  grid-column: 2;
  grid-row: 1;
  text-align: center;
  align-self: center;
  padding: 40px 10px;
}

.instagram-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
  font-family: var(--font-sans);
}

.instagram-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.insta-item {
  overflow: hidden;
  position: relative;
}

.insta-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.insta-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

/* Specific heights and placements for desktop */
.item-top-left {
  grid-column: 1;
  grid-row: 1;
}

.item-top-left img {
  height: 380px;
}

.item-top-right {
  grid-column: 3;
  grid-row: 1;
}

.item-top-right img {
  height: 380px;
}

.item-bottom-left {
  grid-column: 1;
  grid-row: 2;
}

.item-bottom-left img {
  height: 280px;
}

.item-bottom-center {
  grid-column: 2;
  grid-row: 2;
}

.item-bottom-center img {
  height: 520px;
}

.item-bottom-right {
  grid-column: 3;
  grid-row: 2;
}

.item-bottom-right img {
  height: 420px;
}

.insta-item::after {
  content: '♡ Suivre';
  position: absolute;
  inset: 0;
  background: rgba(178, 160, 150, 0.85);
  /* var(--gold) with opacity */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.insta-item:hover img {
  transform: scale(1.05);
}

.insta-item:hover::after {
  opacity: 1;
}

/* ── BOOKING SECTION ── */
.booking-section {
  background: #080808;
  padding: 60px 40px;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-container {
  max-width: 1300px;
  margin: 0 auto;
}

.booking-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 220px;
  gap: 16px;
  align-items: center;
}

.booking-input-wrapper {
  position: relative;
  width: 100%;
}

.booking-input-wrapper input,
.booking-input-wrapper select {
  width: 100%;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 20px 45px 20px 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  border-radius: 0;
}

/* Standardizing date picker styling inside dark theme */
.booking-input-wrapper input[type="date"] {
  text-transform: uppercase;
  color-scheme: dark;
  position: relative;
}

.booking-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.booking-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.booking-input-wrapper input:focus,
.booking-input-wrapper select:focus {
  border-color: var(--gold);
  background: #080808;
  box-shadow: 0 0 10px rgba(178, 160, 150, 0.1);
}

.booking-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.booking-input-wrapper input:focus~.booking-icon,
.booking-input-wrapper select:focus~.booking-icon {
  color: var(--gold);
}

.select-chevron {
  right: 20px;
}

.booking-input-wrapper select option {
  background: #080808;
  color: var(--white);
  padding: 12px;
}

.booking-submit-btn {
  width: 100%;
  background: var(--gold);
  color: #080808;
  border: none;
  padding: 21px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 0;
}

.booking-submit-btn:hover {
  background: var(--white);
  color: #080808;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* ── FAQ ── */
.faq {
  background: #080808;
  padding: 0;
  color: var(--white);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
  margin: 0;
  align-items: center;
}

.faq-image {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-image img {
  width: 100%;
  max-width: 606px;
  height: 808px;
  object-fit: cover;
  display: block;
}

.faq-content {
  padding: 100px 80px 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-content .section-label {
  display: block;
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.faq-content h2.section-title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.15;
}

.faq-list {
  margin-top: 0;
}

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  user-select: none;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .icon {
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: 20px;
}

.faq-question:hover .icon {
  color: var(--gold);
  transform: translate(2px, -2px);
}

.faq-item.open .faq-question .icon {
  color: var(--gold);
  transform: rotate(135deg);
}

.faq-item.open .faq-question:hover .icon {
  transform: rotate(135deg) scale(1.15);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  min-height: 0;
  padding-bottom: 14px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-sans);
  font-weight: 300;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.faq-item.open .faq-answer-inner {
  opacity: 1;
}


/* ── MAIN FOOTER ── */
.main-footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 40px 40px 40px;
  font-family: var(--font-sans);
  position: relative;
  z-index: 10;
}

.footer-top-container {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 60px;
  position: relative;
}

/* Vertical dividers on desktop */
.footer-column:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 35px;
  text-transform: uppercase;
}

.footer-text {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.font-uppercase {
  text-transform: uppercase;
}

.footer-time-text {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.footer-col-spacer {
  height: 0;
}

/* Center Column Specifics */
.footer-phone {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  margin: 25px 0 15px 0;
  display: inline-block;
  letter-spacing: 1px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-phone:hover {
  color: var(--white);
  transform: scale(1.02);
}

.footer-email {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: var(--gold);
}

/* Quick Links Column */
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links-list li a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links-list li a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom-container {
  max-width: 1300px;
  margin: 60px auto 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Bottom Left: Socials */
.footer-bottom-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-bottom-socials a {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom-socials a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* Bottom Center: Logo */
.footer-bottom-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
}

/* Bottom Right: Copyright */
.footer-bottom-copyright {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

/* ── MAP SECTION ── */
.map-section {
  background: #050505;
  padding: 100px 40px;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.map-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.map-content {
  display: flex;
  flex-direction: column;
}

.map-content .section-label {
  display: block;
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.map-content .section-title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  line-height: 1.2;
}

.map-description {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 35px;
  font-weight: 300;
}

.map-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.map-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.map-detail-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}

.map-detail-text h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}

.map-detail-text p,
.map-detail-text a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.map-detail-text a:hover {
  color: var(--gold);
}

.map-btn {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.map-btn:hover {
  color: var(--gold);
  border-bottom-color: var(--white);
}

.map-btn svg {
  transition: transform 0.3s ease;
}

.map-btn:hover svg {
  transform: translate(2px, -2px);
}

.map-iframe-container {
  width: 100%;
  height: 480px;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

/* Beautiful dark map filter effect */
.map-iframe-container iframe {
  filter: grayscale(1) invert(0.9) contrast(1.2);
  opacity: 0.8;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.map-iframe-container:hover iframe {
  opacity: 0.95;
  filter: grayscale(0.2) invert(0.05) contrast(1.1);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════
   ── RESPONSIVE ──
══════════════════ */
@media (max-width: 1200px) {
  .service-card {
    height: 460px;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    gap: 30px;
  }

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

  .map-iframe-container {
    height: 400px;
  }

  .about-inner,
  .faq-inner {
    grid-template-columns: 1fr;
  }

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

  .booking-submit-btn {
    grid-column: span 2;
  }

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

  .footer-column {
    padding: 30px 20px;
  }

  .footer-column:not(:last-child)::after {
    right: 10%;
    top: auto;
    bottom: 0;
    height: 1px;
    width: 80%;
  }

  .faq-image img {
    height: 530px;
    max-width: 400px;
    min-height: auto;
  }

  .faq-content {
    padding: 60px 40px;
  }

  .about-images {
    order: -1;
  }

  .about-images img:first-child {
    height: 400px;
  }

  .instagram-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .instagram-header-block {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 20px 0;
  }

  .item-top-left {
    grid-column: 1;
    grid-row: 2;
  }

  .item-top-right {
    grid-column: 2;
    grid-row: 2;
  }

  .item-bottom-left {
    grid-column: 1;
    grid-row: 3;
  }

  .item-bottom-center {
    grid-column: 2;
    grid-row: 3;
  }

  .item-bottom-right {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .insta-item img {
    height: 320px !important;
  }

  .before-after {
    padding: 80px 30px;
  }

  .hero h1 {
    font-size: 55px;
  }
}

@media (max-width: 768px) {
  .faq-content {
    padding: 50px 24px;
    order: -1;
  }

  .faq-image {
    order: 1;
  }

  .faq-image img {
    width: 90%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .header-nav-left {
    display: none;
  }

  .btn-book-header {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo {
    flex: unset;
    justify-content: flex-start;
  }

  .logo img {
    height: 20px;
  }

  section {
    padding: 70px 24px;
  }

  .services {
    padding: 70px 0;
  }

  .services-header {
    padding: 0 24px 50px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services-header h2.section-title {
    font-size: 32px;
  }

  .services-intro {
    font-size: 16px;
    margin-top: 12px;
  }

  header.scrolled {
    background: rgba(26, 26, 26, 1);
  }

  .header-inner {
    padding: 0 24px;
  }

  .topbar {
    display: none;
  }

  .service-card {
    height: 380px;
  }

  /* On mobile hide description inside card (displayed in popup instead) */
  .service-card-description {
    display: none;
  }

  .service-card-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .service-card-mobile-info {
    display: inline-flex;
  }

  .gallery-strip-inner {
    height: 200px;
  }

  .gallery-strip-inner a:nth-child(n+4) {
    display: none;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .instagram-header-block {
    grid-column: 1;
    grid-row: 1;
    padding: 10px 0;
  }

  .insta-item {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .insta-item img {
    height: 280px !important;
  }

  .map-section {
    padding: 60px 20px;
  }

  .map-iframe-container {
    height: 350px;
  }

  .booking-section {
    padding: 40px 20px;
  }

  .booking-bar {
    grid-template-columns: 1fr;
  }

  .booking-submit-btn {
    grid-column: span 1;
  }

  .footer-column:not(:last-child)::after {
    right: 5%;
    width: 90%;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .hero-socials {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-social-link {
    padding: 6px;
  }

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

  .find-us {
    font-size: 14px;
    text-align: center;
  }

  .address {
    font-size: 18px;
    text-align: center;
  }

  .hero-bottom-info {
    padding: 0 24px;
    bottom: 30px;
    justify-content: center;
    text-align: center;
  }

  .hero-bottom-left {
    width: 100%;
    text-align: center;
  }

  .hero-bottom-right {
    display: none;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .exp-left {
    flex: 0 0 100%;
    margin-bottom: 60px;
    justify-content: center;
  }

  .huge-circle-btn {
    transform: translateX(0);
    width: 300px;
    height: 300px;
  }

  .personalized-experience {
    flex-direction: column;
    padding: 70px 24px;
  }

  .exp-right {
    padding: 0;
  }

  .exp-images {
    flex-direction: column;
  }

  .before-after {
    padding: 60px 20px;
  }

  .before-after-header .section-subtitle {
    font-size: 14px;
  }

  .before-after-tab-btn {
    padding: 10px 20px;
    font-size: 10px;
  }

  .before-after-sliders-wrapper {
    aspect-ratio: 1/1;
  }

  .slider-label {
    top: 15px;
    padding: 4px 10px;
    font-size: 9px;
  }

  .label-before {
    left: 15px;
  }

  .label-after {
    right: 15px;
  }

  .slider-drag-button {
    width: 38px;
    height: 38px;
  }
}

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

  .service-card {
    height: 360px;
  }

  .hero-dots {
    right: 20px;
    bottom: 70px;
  }

  .before-after-tabs {
    gap: 10px;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .instruction-bubble {
    padding: 10px 18px;
    font-size: 9px;
    gap: 8px;
  }

  .instruction-bubble svg {
    width: 14px;
    height: 14px;
  }

  .before-after-tab-btn {
    padding: 8px 14px;
    font-size: 9px;
    letter-spacing: 1px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .before-after-sliders-wrapper {
    aspect-ratio: 4/5;
  }

  .hero h1 {
    font-size: 34px;
  }

  .address {
    font-size: 16px;
  }
}

/* ── BACK TO TOP BUTTON ── */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background-color: var(--gold);
  color: var(--darker);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(10px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--darker);
  color: var(--gold);
  transform: translateY(-2px);
}

.back-to-top svg {
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for About section images */
.exp-images img.reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.exp-images img.reveal:nth-child(2) {
  transition-delay: 0.25s;
}

.exp-images .exp-img-wrap.reveal {
  transition-delay: 0.4s;
}

/* Staggered delay for Services cards */
.service-card.reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.service-card.reveal:nth-child(2) {
  transition-delay: 0.15s;
}

.service-card.reveal:nth-child(3) {
  transition-delay: 0.25s;
}

/* Staggered delay for Instagram feed elements */
.insta-item.reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.instagram-header-block.reveal {
  transition-delay: 0.1s;
}

.insta-item.reveal:nth-child(3) {
  transition-delay: 0.15s;
}

.insta-item.reveal:nth-child(4) {
  transition-delay: 0.25s;
}

.insta-item.reveal:nth-child(5) {
  transition-delay: 0.35s;
}

.insta-item.reveal:nth-child(6) {
  transition-delay: 0.45s;
}

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: clamp(24px, 6vw, 36px);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav-overlay.open .mobile-nav-links a {
  opacity: 1;
  transform: translateY(0);
}

/* Hamburger 'X' animation */
.mobile-menu-btn.open .line-1 {
  transform: translateY(5px) rotate(45deg);
}

.mobile-menu-btn.open .line-2 {
  transform: translateY(-5px) rotate(-45deg);
}

/* Staggered delay for mobile menu links */
.mobile-nav-overlay.open .mobile-nav-links a:nth-child(1) {
  transition-delay: 0.08s;
}

.mobile-nav-overlay.open .mobile-nav-links a:nth-child(2) {
  transition-delay: 0.16s;
}

.mobile-nav-overlay.open .mobile-nav-links a:nth-child(3) {
  transition-delay: 0.24s;
}

.mobile-nav-overlay.open .mobile-nav-links a:nth-child(4) {
  transition-delay: 0.32s;
}

.mobile-nav-overlay.open .mobile-nav-links a:nth-child(5) {
  transition-delay: 0.4s;
}

.mobile-nav-overlay.open .mobile-nav-links a:nth-child(6) {
  transition-delay: 0.48s;
}

/* ── SERVICE POPUP MODAL (MOBILE ONLY) ── */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.service-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
}

.service-modal-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 440px;
  background: rgba(22, 22, 22, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  padding: 45px 35px;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: left;
  border-radius: 4px;
}

.service-modal.open .service-modal-content {
  transform: translateY(0);
}

.service-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
  outline: none;
}

.service-modal-close:hover {
  color: var(--white);
  transform: rotate(90deg);
}

.modal-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 5vw, 32px);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 350;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-description {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 35px;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.modal-cta-btn {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #080808;
  padding: 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
}

.modal-cta-btn:hover {
  background: var(--white);
  color: #080808;
  border-color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.12);
}

/* Slide-up bottom sheet behavior on tiny mobile viewports */
@media (max-width: 480px) {
  .service-modal {
    align-items: flex-end;
  }

  .service-modal-content {
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    padding: 50px 25px 40px;
    border-bottom: none;
  }

  .service-modal.open .service-modal-content {
    transform: translateY(0);
  }

  .service-modal-close {
    top: 15px;
    right: 15px;
  }
}

/* ══════════════════════════════════════════════
   CATALOGUE SECTION
══════════════════════════════════════════════ */

.catalogue {
  background: #000000;
  padding: 110px 0 80px;
  overflow: hidden;
  position: relative;
}

/* Subtle grain texture overlay */
.catalogue::before {
  content: '';
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── Header ── */
.catalogue-header {
  text-align: center;
  padding: 0 40px 50px;
  position: relative;
  z-index: 1;
}

.catalogue-title {
  color: #fff !important;
  font-family: var(--font-serif) !important;
  font-size: clamp(36px, 4vw, 58px) !important;
  font-weight: 300 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  margin: 16px 0 20px !important;
}

.catalogue-subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: #7a7a7a;
  letter-spacing: 0.5px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Filter Pills ── */
.catalogue-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 40px 50px;
  position: relative;
  z-index: 1;
}

.cat-filter-btn {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  background: transparent;
  border: 1px solid #2a2a2a;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cat-filter-btn:hover {
  color: #fff;
  border-color: #444;
  background: rgba(255, 255, 255, 0.04);
}

.cat-filter-btn.active {
  color: #0e0e0e;
  background: var(--gold);
  border-color: var(--gold);
}

/* ── Grid — Uniform Portrait Cards ── */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0 4px;
}

/* All cards same portrait aspect ratio (9:16 = iPhone video) */
.cat-item,
.cat-item.cat-large,
.cat-item.cat-portrait,
.cat-item.cat-square,
.cat-item.cat-wide {
  aspect-ratio: 9 / 16;
  grid-column: span 1;
  grid-row: span 1;
}


/* ── Card ── */
.cat-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cat-item.cat-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.97);
}

/* Media fills the card */
.cat-media {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

/* Both images and videos fill the card with cover */
.cat-media img,
.cat-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.cat-item:hover .cat-media img,
.cat-item:hover .cat-media video {
  transform: scale(1.04);
}

/* Video badge */
.cat-video-wrap {
  position: relative;
}

.cat-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
}

/* ── Overlay (slides up on hover) ── */
.cat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  transform: translateY(60%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.cat-item:hover .cat-overlay {
  transform: translateY(0);
}

.cat-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(178, 160, 150, 0.35);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.cat-item-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.cat-item-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s 0.1s ease, transform 0.35s 0.1s ease;
}

.cat-item:hover .cat-item-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Carousel Dots ── */
.catalogue-dots {
  display: none;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
}

.cat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cat-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ── Swipe hint ── */
.catalogue-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #444;
  margin-top: 18px;
  text-transform: uppercase;
  animation: hintFade 3s ease forwards;
}

@keyframes hintFade {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ══════════════════════════════════════════════
   CATALOGUE — TABLET (max 1024px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .catalogue-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ══════════════════════════════════════════════
   CATALOGUE — MOBILE (max 768px) — SNAP CAROUSEL
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .catalogue {
    padding: 80px 0 50px;
  }

  .catalogue-header {
    padding: 0 24px 36px;
  }

  .catalogue-filters {
    padding: 0 20px 32px;
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .catalogue-filters::-webkit-scrollbar {
    display: none;
  }

  .cat-filter-btn {
    flex-shrink: 0;
    padding: 9px 18px;
    font-size: 9px;
  }

  /* Turn grid into horizontal snap carousel */
  .catalogue-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    padding: 0 20px;
    grid-template-columns: unset;
    grid-auto-rows: unset;
  }

  .catalogue-grid::-webkit-scrollbar {
    display: none;
  }

  /* All cards become uniform snap targets on mobile */
  .cat-item,
  .cat-item.cat-large,
  .cat-item.cat-portrait,
  .cat-item.cat-square,
  .cat-item.cat-wide {
    grid-column: unset;
    grid-row: unset;
    aspect-ratio: unset;
    flex: 0 0 75vw;
    max-width: 300px;
    height: 500px;
    scroll-snap-align: start;
    border-radius: 4px;
  }

  /* Show full video frame on mobile — no cropping */
  .catalogue-grid .cat-media video {
    object-fit: contain;
    background: #000;
  }

  /* Show dots & hint on mobile */
  .catalogue-dots {
    display: flex;
  }

  .catalogue-swipe-hint {
    display: flex;
  }
}

@media (max-width: 480px) {

  .cat-item,
  .cat-item.cat-large,
  .cat-item.cat-portrait,
  .cat-item.cat-square,
  .cat-item.cat-wide {
    flex: 0 0 82vw;
    height: 380px;
  }
}