/* ============================================================
   VAQAR · وقар — PREMIUM LUXURY STYLE SHEET v6.0
   CONCEPT B: Ivory, Sand & Platinum (Light Gallery Style)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Matte Gold Accents */
  --gold:         #C5A059;
  --gold-light:   #DFBA73;
  --gold-pale:    #F5E6CC;
  --gold-dark:    #9E7B3B;
  --gold-line:    rgba(197, 160, 89, 0.25);
  --gold-glow:    rgba(197, 160, 89, 0.08);

  /* Light Theme Colors (Concept B) */
  --bg-ivory:     #FAF9F6; /* Primary Light */
  --bg-sand:      #EDE8DF;  /* Section Contrast */
  --bg-card:      #FFFFFF;  /* Cards / Blocks */
  --bg-border:    rgba(0, 0, 0, 0.06);

  /* Graphite Typography & High Contrast */
  --txt-dark:     #1C1C1E;  /* Main Heading / Solid Text */
  --txt-mid:      #3A3A3C;  /* Readability Body Text */
  --txt-soft:     #6E6E73;  /* Subtexts */
  --txt-muted:    #8E8E93;  /* Secondary details */

  /* Fonts */
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'Inter', -apple-system, sans-serif;

  --nav-h:        64px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  background: var(--bg-ivory);
  color: var(--txt-mid);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  perspective: 1200px;
  transform-style: preserve-3d;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg-ivory);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
}
::selection {
  background: var(--gold-pale);
  color: var(--txt-dark);
}

/* ─────────────────────────────────────
   PRELOADER (Luxury reveal)
   ───────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.preloader__logo {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--txt-dark);
}
.preloader__arabic {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}
.preloader__bar {
  width: 120px;
  height: 1.5px;
  background: var(--bg-border);
  overflow: hidden;
  margin-top: 16px;
}
.preloader__fill {
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: preloaderShift 1.8s ease-in-out infinite;
}
@keyframes preloaderShift {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ─────────────────────────────────────
   HEADER & NAVIGATION
   ───────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.4s var(--ease), border-color 0.4s, transform 0.45s var(--ease), opacity 0.45s var(--ease);
  transform-origin: center top;
}

body.drawer-open .header__inner {
  transform: translateZ(-80px) translateY(10px) rotateX(-2deg);
  opacity: 0.3;
  pointer-events: none;
}

.header--opaque .header__inner {
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-line);
}

/* Burger Button */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 520;
}
.burger__line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #FFFFFF; /* White on hero background overlay */
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
/* Scrolled burger lines turn black */
.header--opaque .burger__line {
  background: var(--txt-dark);
}
.burger.is-open .burger__line {
  background: var(--txt-dark) !important; /* Drawer open is always dark */
}
.burger.is-open .burger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open .burger__line:nth-child(2) { opacity: 0; }
.burger.is-open .burger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.header__logo-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 510;
}
.header__logo {
  height: 34px;
  width: auto;
  filter: invert(1); /* White logo over dark fullscreen videos */
  transition: filter 0.4s var(--ease);
}
.header--opaque .header__logo {
  filter: invert(0); /* Black logo over light scrolled background */
}

.header__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #FFFFFF; /* White WhatsApp icon over dark video */
  transition: transform 0.3s var(--ease), color 0.3s;
}
.header--opaque .header__wa {
  color: var(--txt-dark); /* Turns dark on scroll */
}
.header__wa:hover {
  transform: scale(1.1);
  color: var(--gold) !important;
}

@media (max-width: 360px) {
  .header__logo {
    height: 26px;
  }
  .burger {
    width: 38px;
    height: 38px;
    gap: 4px;
  }
  .burger__line {
    width: 18px;
  }
  .header__wa {
    width: 38px;
    height: 38px;
  }
  .header__wa svg {
    width: 18px;
    height: 18px;
  }
}
.header__wa svg {
  width: 22px;
  height: 22px;
}

/* Drawer Navigation */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 490;
  pointer-events: none;
}
.drawer.is-open {
  pointer-events: all;
}

#content {
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
  transform-origin: center center;
}
body.drawer-open #content {
  transform: scale(0.95) translateZ(-60px);
  filter: brightness(0.6) blur(1px);
  pointer-events: none;
}

.drawer__inner {
  position: absolute;
  top: 0; left: 0;
  width: min(340px, 85vw);
  height: 100svh;
  background: var(--bg-sand);
  border-right: 1px solid var(--gold-line);
  padding: calc(var(--nav-h) + 40px) 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transform: translateX(-100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
}
.drawer.is-open .drawer__inner {
  transform: translateX(0);
}

@media (max-width: 767px) {
  .drawer__inner {
    width: 100vw;
    border-right: none;
    padding: calc(var(--nav-h) + 20px) 24px 36px;
    gap: 32px;
  }
}

.drawer__header {
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 16px;
}
.drawer__logo {
  height: 40px;
  width: auto;
}

.drawer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.drawer__link {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--txt-dark);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.3s, padding-left 0.3s;
}
.drawer__link:hover {
  color: var(--gold-dark);
  padding-left: 8px;
}

.drawer__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 26, 21, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: 480;
}
.drawer__overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ─────────────────────────────────────
   BUTTONS (Graphite Black & Gold Contrast)
   ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

/* Gold background with White text */
.btn--gold {
  background: var(--gold);
  color: #FFFFFF;
  border: 1px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(197, 160, 89, 0.25);
}

/* Striking dark button for light theme focus */
.btn--white {
  background: var(--txt-dark);
  color: #FFFFFF;
  border: 1px solid var(--txt-dark);
}
.btn--white:hover {
  background: #000000;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* Clean transparent button */
.btn--ghost {
  background: transparent;
  color: var(--txt-dark);
  border: 1.5px solid var(--gold-line);
}
.btn--ghost:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

.btn--large {
  padding: 18px 44px;
  font-size: 12px;
}

.btn svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.btn:hover svg {
  transform: translateX(3px);
}

/* ─────────────────────────────────────
   TEXTS & LABELS
   ───────────────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold-dark);
}
.label--gold {
  color: var(--gold-dark);
}
.label--gold::before {
  background: var(--gold-dark);
}

.heading {
  font-family: var(--serif);
  font-size: clamp(26px, 7.5vw, 50px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  color: var(--txt-dark);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.heading--dark {
  color: var(--txt-dark);
}
.heading--light {
  color: var(--txt-dark); /* Light headings in light theme */
}

.body-text {
  font-size: 15px;
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 16px;
}
.body-text--dark {
  color: var(--txt-mid);
}
.body-text--light {
  color: var(--txt-mid); /* Mapped to dark color in Concept B */
}
.body-text:last-child {
  margin-bottom: 0;
}

.gold-rule {
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 24px;
}

/* ─────────────────────────────────────
   HERO CAROUSEL
   ───────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: #000000;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 10;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}
.hero__slide--active {
  opacity: 1;
  z-index: 20;
  pointer-events: all;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.hero__video--desk {
  display: none;
}
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.40) 45%, rgba(0,0,0,0.15) 75%, rgba(0,0,0,0.10) 100%),
    radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.50) 100%);
}

.hero__body {
  position: absolute;
  z-index: 10;
  bottom: 0; left: 0; right: 0;
  padding: 40px 24px calc(90px + env(safe-area-inset-bottom));
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease) 0.4s, transform 0.9s var(--ease) 0.4s;
}
.hero__slide--active .hero__body {
  opacity: 1;
  transform: translateY(0);
}

.hero__tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold-light);
}

.hero__h {
  font-family: var(--serif);
  font-size: clamp(34px, 8.5vw, 56px);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero__sub {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 440px;
}

/* UI Elements */
.hero__progress {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 30;
}
.hero__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
}

.hero__dots {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}
.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  transition: all 0.35s var(--ease);
}
.hero__dot--on {
  background: var(--gold-light);
  transform: scale(1.6);
  box-shadow: 0 0 10px rgba(223, 186, 115, 0.6);
}

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 30;
}
.hero__scroll-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* ─────────────────────────────────────
   SECTION DIVIDERS
   ───────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 72px;
  background: var(--bg-ivory);
  gap: 16px;
}
.section-divider__line {
  flex: 1;
  height: 1px;
  max-width: 120px;
  background: linear-gradient(to right, transparent, var(--gold-line));
}
.section-divider__line:last-child {
  background: linear-gradient(to left, transparent, var(--gold-line));
}
.section-divider__ornament {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────
   SPLIT SECTIONS (Ivory & Sand Oscillations)
   ───────────────────────────────────── */
.split {
  display: flex;
  flex-direction: column;
}
.split--light {
  background: var(--bg-ivory);
}
.split--dark {
  background: var(--bg-sand);
}

.split__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  padding: 24px;
  background: inherit;
}
.split__img, .split__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.split:hover .split__img,
.split:hover .split__video {
  transform: scale(1.02);
}

/* Thin luxury frame around images */
.split__media-frame {
  position: absolute;
  inset: 34px;
  border: 1px solid var(--gold-dark);
  pointer-events: none;
  z-index: 10;
  transition: inset 0.4s var(--ease);
}
.split:hover .split__media-frame {
  inset: 28px;
}

.split__content {
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ─────────────────────────────────────
   STATS ROW
   ───────────────────────────────────── */
.stats {
  display: flex;
  background: var(--bg-card);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.stats__item {
  flex: 1;
  padding: 36px 12px;
  text-align: center;
  border-right: 1px solid var(--bg-border);
}
.stats__item:last-child {
  border-right: none;
}
.stats__num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--gold-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stats__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--txt-soft);
}

/* ─────────────────────────────────────
   IMAGE BANNERS (With dark text overlays)
   ───────────────────────────────────── */
.banner {
  position: relative;
  min-height: 65svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.banner--full {
  min-height: 80svh;
  align-items: center;
}

.banner__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}

.banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Soft dark gradient overlays so light text is highly readable inside photos */
  background: 
    linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.40) 55%, transparent 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.50) 0%, transparent 70%);
}
.banner__overlay--heavy {
  background: rgba(0, 0, 0, 0.68);
}

.banner__content {
  position: relative;
  z-index: 10;
  padding: 48px 24px;
}
.banner__content--center {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner__arabic {
  font-family: var(--serif);
  font-size: 40px;
  color: rgba(223, 186, 115, 0.22);
  margin-bottom: 8px;
  line-height: 1;
}

.banner__big-title {
  font-family: var(--serif);
  font-size: clamp(48px, 12vw, 96px);
  letter-spacing: 0.16em;
  font-weight: 400;
  color: #FFFFFF; /* Stays white over dark image banner */
  line-height: 1.1;
  margin-bottom: 16px;
}

.banner__cta-text {
  max-width: 500px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.80) !important;
}

.banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

/* ─────────────────────────────────────
   QUOTE BLOCK
   ───────────────────────────────────── */
.quote {
  background: var(--bg-sand);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote__mark {
  font-family: var(--serif);
  font-size: 140px;
  color: rgba(197, 160, 89, 0.08);
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}
.quote__text {
  font-family: var(--serif);
  font-size: clamp(20px, 5vw, 28px);
  font-style: italic;
  font-weight: 400;
  color: var(--txt-dark);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 5;
}
.quote__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.quote__line {
  width: 40px;
  height: 1px;
  background: var(--gold-line);
}
.quote__diamond {
  width: 6px;
  height: 6px;
  background: var(--gold-dark);
  transform: rotate(45deg);
}
.quote__src {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ─────────────────────────────────────
   PROCESS STEPS
   ───────────────────────────────────── */
.process {
  background: var(--bg-ivory);
  padding: 80px 24px;
}
.process__head {
  text-align: center;
  margin-bottom: 48px;
}
.process__grid {
  display: flex;
  flex-direction: column;
}
.process__step {
  display: flex;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--bg-border);
}
.process__step:last-child {
  border-bottom: none;
}
.process__num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: rgba(197, 160, 89, 0.45);
  line-height: 1;
  min-width: 52px;
  flex-shrink: 0;
}
.process__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--txt-dark);
  margin-bottom: 8px;
}
.process__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--txt-soft);
}

/* ─────────────────────────────────────
   GALLERY (Art Exhibition Cards)
   ───────────────────────────────────── */
.gallery {
  background: var(--bg-sand);
  padding: 80px 0 48px;
  border-top: 1px solid var(--gold-line);
  overflow: hidden;
}
.gallery__head {
  padding: 0 24px;
  margin-bottom: 40px;
  text-align: center;
}
.gallery__sub {
  font-size: 14px;
  color: var(--txt-soft);
  line-height: 1.75;
  margin-top: 8px;
}

.gallery__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 24px 20px;
  cursor: grab;
}
.gallery__track::-webkit-scrollbar {
  display: none;
}
.gallery__track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

/* White Art Gallery Card */
.gcard {
  flex: 0 0 clamp(270px, 82vw, 320px);
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
}
.gcard:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.gcard__img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--bg-border);
}
.gcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gcard:hover .gcard__img {
  transform: scale(1.04);
}

.gcard__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gcard__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.gcard__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--txt-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.gcard__desc {
  font-size: 13px;
  color: var(--txt-soft);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}
.gcard__link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: auto;
  transition: all 0.3s;
}
.gcard__link:hover {
  color: var(--txt-dark);
  letter-spacing: 0.18em;
}

/* CTA Card */
.gcard--cta {
  background: linear-gradient(135deg, var(--bg-card), rgba(197, 160, 89, 0.05));
  border: 1px solid var(--gold-line);
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
}
.gcard__cta-pre {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.gcard__cta-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--txt-dark);
  line-height: 1.4;
  margin-bottom: 24px;
}

/* Navigation arrows */
.gallery__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px 0;
}
.gallery__arrow {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-line);
  color: var(--gold-dark);
  transition: all 0.3s var(--ease);
}
.gallery__arrow:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--txt-dark);
}

/* ─────────────────────────────────────
   FAQ ACCORDION
   ───────────────────────────────────── */
.faq {
  background: var(--bg-ivory);
  padding: 80px 0;
}
.faq__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq__head {
  text-align: center;
  margin-bottom: 48px;
}
.faq__list {
  border-top: 1px solid var(--bg-border);
}
.faq__item {
  border-bottom: 1px solid var(--bg-border);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--txt-dark);
  text-align: left;
  transition: color 0.3s;
}
.faq__q:hover {
  color: var(--gold-dark);
}
.faq__q[aria-expanded="true"] {
  color: var(--gold-dark);
}

.faq__icon {
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq__a.open {
  grid-template-rows: 1fr;
}
.faq__a p {
  overflow: hidden;
  font-size: 14px;
  line-height: 1.85;
  color: var(--txt-mid);
  padding-bottom: 24px;
  padding-right: 28px;
}

/* ─────────────────────────────────────
   FOOTER
   ───────────────────────────────────── */
.footer {
  background: var(--bg-sand);
  padding: 88px 24px 48px;
  border-top: 1px solid var(--gold-line);
  position: relative;
  overflow: hidden;
}

.footer__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Luxury circular thin ornament */
.footer__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border: 1px solid rgba(197, 160, 89, 0.06);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.footer__logo {
  height: 48px;
  width: auto;
  margin: 0 auto 28px;
}

.footer__tagline {
  font-size: 13px;
  font-style: italic;
  line-height: 1.8;
  color: var(--txt-soft);
  margin-bottom: 36px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  transition: color 0.3s;
}
.footer__link:hover {
  color: var(--txt-dark);
}

.footer__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), transparent);
  margin-bottom: 24px;
}
.footer__copy {
  font-size: 10px;
  color: var(--txt-soft);
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────
   FLOATING MATTE GOLD WA FAB
   ───────────────────────────────────── */
.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 400;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-dark); /* Matte gold instead of bright neon green */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(158, 123, 59, 0.3);
  color: #FFFFFF;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: fabPulse 3s infinite;
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(158, 123, 59, 0.3); }
  50%       { box-shadow: 0 4px 18px rgba(158, 123, 59, 0.3), 0 0 0 8px rgba(158, 123, 59, 0.08); }
}
.fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(158, 123, 59, 0.5);
  background: var(--gold);
  animation: none;
}
.fab svg {
  width: 24px;
  height: 24px;
}

/* ─────────────────────────────────────
   SCROLL REVEALS
   ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal--d1 { transition-delay: 0.12s; }
.reveal--d2 { transition-delay: 0.22s; }
.reveal--d3 { transition-delay: 0.34s; }

.reveal--left {
  transform: translateX(-16px);
}
.reveal--right {
  transform: translateX(16px);
}
@media (max-width: 767px) {
  .reveal--left, .reveal--right {
    transform: translateY(16px);
  }
}
.reveal--left.visible, .reveal--right.visible {
  transform: none;
}

.stats__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.stats__item.visible {
  opacity: 1;
  transform: none;
}
.stats__item:nth-child(1) { transition-delay: 0.0s; }
.stats__item:nth-child(2) { transition-delay: 0.15s; }
.stats__item:nth-child(3) { transition-delay: 0.3s; }

/* ─────────────────────────────────────
   RESPONSIVENESS (DESKTOP / TABLET)
   ───────────────────────────────────── */
@media (min-width: 768px) {
  /* Header adjustments */
  .header__inner {
    padding: 0 40px;
  }

  /* Desktop Video in Hero */
  .hero__video--mob {
    display: none;
  }
  .hero__video--desk {
    display: block;
    position: absolute;
    inset: 0;
    width: auto;
    height: 100%;
    min-width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }

  /* Split side-by-side layout */
  .split {
    flex-direction: row;
    min-height: 520px;
  }
  .split--rev {
    flex-direction: row-reverse;
  }
  .split__media, .split__content {
    flex: 1;
    width: 50%;
  }
  .split__media {
    aspect-ratio: unset;
  }
  .split__content {
    padding: 60px 48px;
  }

  .banner__actions {
    flex-direction: row;
    max-width: 500px;
    justify-content: center;
  }

  /* Process steps horizontally */
  .process__grid {
    flex-direction: row;
  }
  .process__step {
    flex: 1;
    flex-direction: column;
    padding: 40px 24px;
    border-right: 1px solid var(--bg-border);
    border-bottom: none;
    gap: 12px;
  }
  .process__step:last-child {
    border-right: none;
  }

  .footer__links {
    flex-direction: row;
    justify-content: center;
    gap: 36px;
  }
}

@media (min-width: 1024px) {
  :root {
    --nav-h: 70px;
  }
  .header__inner {
    padding: 0 64px;
  }
  .drawer__inner {
    width: 360px;
    padding: calc(var(--nav-h) + 40px) 44px 48px;
  }

  .hero__body {
    padding: 64px 80px 100px;
  }

  .split__content {
    padding: 80px 80px;
  }
  .split__media {
    padding: 40px;
  }

  .banner__content {
    padding: 80px;
  }

  .gallery {
    padding: 100px 0 64px;
  }
  .gallery__head {
    padding: 0 80px;
  }
  .gallery__track {
    padding: 4px 80px 24px;
  }
  .gallery__nav {
    padding: 16px 80px 0;
  }
  .gcard {
    flex: 0 0 330px;
  }

  .faq {
    padding: 100px 0;
  }

  .footer {
    padding: 100px 80px 60px;
  }

  .fab {
    bottom: 36px;
    right: 36px;
  }
}
