/* =========================================================
   ZEUS – Essensuals  |  style.css
   Luxury salon & spa · scroll-scrubbed canvas · glassmorphism
   ========================================================= */

/* ── RESET & CUSTOM PROPERTIES ─────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:          #d4af37;
  --gold-light:    #f0d875;
  --gold-dim:      rgba(212, 175, 55, 0.18);
  --gold-glow:     rgba(212, 175, 55, 0.12);
  --cream:         #e8d5a3;
  --cream-mid:     rgba(232, 213, 163, 0.72);
  --cream-low:     rgba(232, 213, 163, 0.45);
  --charcoal:      #181818;
  --dark:          #0a0a0a;
  --glass-bg:      rgba(255, 255, 255, 0.04);
  --glass-border:  rgba(212, 175, 55, 0.18);
  --font-serif:    'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:     'Poppins', 'Inter', system-ui, sans-serif;
  --ease-out:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── BACKGROUND CANVAS ─────────────────────────────────── */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background: #000;
  display: block;
}

/* ── FALLBACK VIDEO ────────────────────────────────────── */
.fallback-video {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
body.use-fallback .fallback-video { display: block; }
body.use-fallback #bg-canvas      { display: none;  }

/* ── LOADING SCREEN ────────────────────────────────────── */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.9s var(--ease-out);
}
#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}
#loading-screen.hidden {
  display: none;
}

.loading-logo {
  margin-bottom: 1.75rem;
  animation: goldPulse 2.4s ease-in-out infinite;
}
.loading-logo-img {
  height: 180px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.6));
}
@keyframes goldPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
.loading-text {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
#progress-bar {
  width: min(260px, 75vw);
  height: 2px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
#progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.12s ease;
}
#progress-percent {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-top: 4px;
}

/* ── HEADER ────────────────────────────────────────────── */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 64px;               /* compact bar — logo overflows below */
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;          /* let the large logo spill below the bar */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: background 0.4s ease;
}
#site-header.scrolled {
  background: rgba(6, 6, 6, 0.88);
}

/* Logo */
.logo {
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

/* The logo image — transparent background, gold shows on dark header */
.logo-img {
  height: 132px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
  transition: filter 0.25s ease;
}
.logo:hover .logo-img {
  filter: drop-shadow(0 2px 14px rgba(212, 175, 55, 0.55));
}

/* Keep wordmark classes in case they're still referenced somewhere */
.logo-zeus {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.16em;
}
.logo-sub {
  display: block;
  font-size: 0.48rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--cream-mid);
  text-align: center;
  margin-top: 3px;
}

/* Centre nav */
#main-nav {
  display: flex;
  gap: 2.75rem;
}
#main-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: color 0.22s;
}
#main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.32s var(--ease-out);
}
#main-nav a:hover        { color: var(--gold); }
#main-nav a:hover::after { width: 100%; }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.logo-right {
  display: block;  /* hidden on mobile via media query */
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.32s var(--ease-out);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ───────────────────────────────────────── */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(5, 5, 5, 0.93);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s var(--ease-out);
}
#mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
#mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}
#mobile-menu nav a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
#mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu-logo {
  text-align: center;
}
.mobile-logo-img {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.45));
}

/* ── FIXED OVERLAYS ────────────────────────────────────── */
.fixed-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: opacity, transform;
}

/* ── HERO OVERLAY ──────────────────────────────────────── */
#hero-overlay {
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
#hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 80% at 50% 52%,
    rgba(0,0,0,0.82)  0%,
    rgba(0,0,0,0.58) 40%,
    rgba(0,0,0,0.22) 68%,
    transparent      100%
  );
  z-index: -1;
  pointer-events: none;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  max-width: 900px;
}

/* Tagline row */
.hero-tagline-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.htag-line {
  width: 52px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.55));
}
.htag-line:last-child {
  background: linear-gradient(to left, transparent, rgba(212,175,55,0.55));
}
.hero-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 1px 8px rgba(0,0,0,0.95);
  white-space: nowrap;
}

/* Ornament */
.hero-ornament {
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 1.1rem;
  color: rgba(212,175,55,0.45);
}
.orn-diamond { font-size: 0.48rem; color: rgba(212,175,55,0.7); }
.orn-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(212,175,55,0.35); }

/* Headline */
.hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
.hero-line-top {
  font-size: clamp(1rem, 2.2vw, 1.75rem);
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.08em;
  font-weight: 300;
  text-shadow: 0 2px 14px rgba(0,0,0,1), 0 6px 30px rgba(0,0,0,0.95);
  margin-bottom: 0.2rem;
}
.hero-line-main {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.9);
}
.hero-line-main em {
  font-style: italic;
  background: linear-gradient(135deg,#fffbe0 0%,#f7e98e 25%,#d4af37 50%,#c89420 70%,#f0d875 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(212,175,55,0.5));
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(0.8rem, 1.4vw, 0.97rem);
  color: rgba(255,255,255,0.62);
  line-height: 1.95;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  max-width: 500px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.95);
}
.hero-br { display: block; }

/* CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.8rem;
  background: rgba(10,10,10,0.82);
  border: 1px solid rgba(212,175,55,0.5);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: all;
  backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.hero-cta:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.hero-cta:hover .hero-cta-logo img { filter: brightness(0); }
.hero-cta:hover .hero-cta-arr { color: #000; }
.hero-cta-logo { width: 26px; height: 26px; flex-shrink: 0; }
.hero-cta-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hero-cta-arr { color: var(--gold); font-size: 1.05rem; transition: color 0.3s; }

/* Scroll hint */
.scroll-hint {
  margin-top: 1.75rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
}
.scroll-hint span {
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
.scroll-circle {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,175,55,0.38);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50%       { opacity: 1;    transform: translateY(3px); }
}

/* Feature strip */
.hero-features-bar {
  width: 100%;
  display: flex;
  align-items: stretch;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(212,175,55,0.1);
  pointer-events: all;
}
.hfeat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.5rem;
}
.hfeat-sep {
  width: 1px;
  background: rgba(212,175,55,0.1);
  align-self: stretch;
  margin: 0.6rem 0;
}
.hfeat-icon-wrap {
  width: 38px; height: 38px;
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.hfeat-icon { font-size: 0.95rem; }
.hfeat-title {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  margin-bottom: 0.22rem;
}
.hfeat-desc {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.6;
}

/* ── ABOUT OVERLAY ─────────────────────────────────────── */
#about-overlay {
  opacity: 0;
  justify-content: flex-start;
  align-items: center;
  padding: 0 8vw;
}
.about-content {
  max-width: 560px;
  background: rgba(4, 4, 4, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  padding: 2.5rem 2.75rem;
}
.about-label {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 100px;
  padding: 0.28rem 0.9rem;
  margin-bottom: 1.25rem;
}
.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-heading em {
  font-style: italic;
  color: var(--gold-light);
}
.about-body {
  font-size: 0.96rem;
  line-height: 1.88;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
}
.about-body strong { color: var(--gold-light); font-weight: 500; }
.about-body em     { font-style: italic; color: var(--cream); }
.about-divider {
  width: 48px;
  height: 1px;
  background: var(--gold-dim);
  margin-top: 1.5rem;
}

/* ── SCROLL TRACK ──────────────────────────────────────── */
#scroll-track {
  height: 500vh;
  position: relative;
  z-index: 5;
}

/* ── SERVICES SECTION ──────────────────────────────────── */
#services {
  position: relative;
  z-index: 40;
  padding: 8rem 2rem 6rem;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.52) 0%,
    rgba(4,4,4,0.88) 35%,
    rgba(6,6,6,0.97) 100%
  );
}

.section-inner  { max-width: 1200px; margin: 0 auto; }
.section-label  {
  font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem; display: inline-block;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300; color: #fff;
  line-height: 1.15; letter-spacing: 0.02em; margin-bottom: 1rem;
}
.section-sub {
  font-size: 0.9rem; color: var(--cream-mid); margin-bottom: 3.5rem;
  max-width: 500px; line-height: 1.9; letter-spacing: 0.02em;
}

/* ── New services header ── */
.svc-header { max-width: 620px; margin-bottom: 3.5rem; }
.label-dash  { color: rgba(212,175,55,0.45); margin-left: 0.4rem; letter-spacing: 0; }
.svc-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300; color: #fff;
  line-height: 1.1; margin: 0.75rem 0 1rem;
}
.svc-heading-gold {
  font-style: italic;
  background: linear-gradient(135deg,#fffbe0 0%,#f7e98e 25%,#d4af37 50%,#c89420 70%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* 4-column cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.svc-card {
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.13);
  border-radius: 14px; padding: 2.25rem 1.75rem;
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s;
}
.svc-card.visible { opacity: 1; transform: translateY(0); }
.svc-card:hover {
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 20px 50px rgba(212,175,55,0.1);
  transform: translateY(-6px);
}
.svc-icon-ring {
  width: 52px; height: 52px;
  border: 1px solid rgba(212,175,55,0.42);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1.4rem;
}
.svc-title {
  font-family: var(--font-serif);
  font-size: 1.18rem; font-weight: 400;
  color: var(--gold-light); line-height: 1.35; margin-bottom: 0.7rem;
}
.svc-bar {
  width: 32px; height: 1px;
  background: linear-gradient(to right,var(--gold),transparent);
  margin-bottom: 0.85rem;
}
.svc-desc { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.85; }

/* Signature row */
.svc-signature {
  display: flex; align-items: center; gap: 2.5rem;
  background: linear-gradient(135deg,rgba(212,175,55,0.08) 0%,rgba(212,175,55,0.02) 60%,transparent 100%);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 16px; padding: 2.5rem 2.75rem;
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}
.svc-signature.visible { opacity: 1; transform: translateY(0); }
.sig-img-ring {
  width: 120px; height: 120px;
  border: 2px solid rgba(212,175,55,0.42);
  border-radius: 50%; overflow: hidden; flex-shrink: 0;
}
.sig-img-ring img { width: 100%; height: 100%; object-fit: cover; }
.sig-content { flex: 1; min-width: 0; }
.sig-label {
  font-size: 0.56rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem; display: block;
}
.sig-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 400; color: #fff; margin-bottom: 0.55rem;
}
.sig-quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.9rem; color: rgba(212,175,55,0.78);
  line-height: 1.65; margin-bottom: 0.7rem; border: none; padding: 0;
}
.sig-desc { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.82; }
.sig-book-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  white-space: nowrap; padding: 0.85rem 1.75rem;
  background: var(--gold); color: #000;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; text-decoration: none; border-radius: 100px; flex-shrink: 0;
  transition: background 0.25s, transform 0.2s;
}
.sig-book-btn:hover { background: var(--gold-light); transform: scale(1.03); }

/* ── GALLERY SECTION ───────────────────────────────────── */
#gallery {
  position: relative;
  z-index: 40;
  padding: 7rem 0 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.98), #0c0c0c);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  overflow: hidden;
}

.gallery-header {
  padding: 3rem 2rem 2rem;
  text-align: center;
}
.gallery-header .section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#gallery { padding: 0; }

/* ── ACCORDION ── */
.gallery-accordion {
  display: flex;
  align-items: stretch;
  gap: 6px;
  height: 480px;
  width: 100%;
}

.gal-item {
  position: relative;
  flex: 1;
  min-width: 72px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* First and last get slight rounded corners only on outer edge */
.gal-item:first-child { border-radius: 8px 0 0 8px; }
.gal-item:last-child  { border-radius: 0 8px 8px 0; }

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.5s ease;
  filter: brightness(0.75);
}

.gal-item:hover {
  flex: 5;
}

.gal-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}


/* Lightbox */
#gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  cursor: zoom-out;
}

.lb-img-wrap {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lb-img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
  display: block;
}

.lb-btn {
  position: fixed;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.lb-btn:hover { background: rgba(212,175,55,0.18); color: var(--gold); border-color: var(--gold-dim); }

.lb-close {
  top: 1.25rem; right: 1.25rem;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}

.lb-prev, .lb-next {
  top: 50%; transform: translateY(-50%);
  width: 2.8rem; height: 4rem;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}

.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

/* ── CONTACT SECTION ───────────────────────────────────── */
#contact {
  position: relative; z-index: 40;
  background: #0c0c0c;
  padding: 7rem 2rem 5rem;
  border-top: 1px solid rgba(212,175,55,0.08);
}
.contact-grid-v2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; margin-bottom: 4rem; align-items: start;
}
.contact-v2-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem,4vw,3.2rem);
  font-weight: 300; color: #fff; margin: 0.5rem 0 0.7rem;
}
.contact-v2-bar {
  width: 44px; height: 1px;
  background: linear-gradient(to right,var(--gold),transparent);
  margin-bottom: 2rem;
}
.contact-v2-person { margin-bottom: 2rem; }
.cv2-label-sm {
  font-size: 0.58rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.35rem;
}
.cv2-name { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 300; color: #fff; }
.cv2-items { display: flex; flex-direction: column; gap: 0.7rem; }
.cv2-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1.15rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 10px; text-decoration: none; color: inherit;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.cv2-item:hover {
  border-color: rgba(212,175,55,0.22);
  background: rgba(212,175,55,0.04);
  transform: translateX(4px);
}
.cv2-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.cv2-item-label {
  font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2px;
}
.cv2-item-val { font-size: 0.88rem; color: var(--cream); }

/* Map */
.contact-right-v2 { display: flex; flex-direction: column; }
.map-v2 {
  border-radius: 14px 14px 0 0; overflow: hidden;
  border: 1px solid rgba(212,175,55,0.14); border-bottom: none; height: 340px;
}
.map-v2 iframe { display: block; height: 100%; }
.map-dir-v2 {
  display: flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.88rem;
  background: rgba(8,8,8,0.95);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 0 0 14px 14px;
  color: var(--gold); text-decoration: none;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.map-dir-v2:hover { background: var(--gold); color: #000; }
.map-dir-v2 svg { transition: color 0.25s; }

/* Closing box */
.closing-box {
  border: 1px solid rgba(212,175,55,0.16);
  padding: 2.5rem 3rem 2.25rem;
  max-width: 740px; margin: 0 auto; text-align: center; position: relative;
}
.closing-qqmark {
  font-family: var(--font-serif); font-size: 4rem;
  color: rgba(212,175,55,0.2); line-height: 0;
  position: absolute; top: 2rem; left: 2rem; pointer-events: none;
}
.closing-tagline-v2 {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.1rem,2.2vw,1.55rem);
  color: rgba(255,255,255,0.68); line-height: 1.75; border: none; padding: 0;
}
.closing-tagline-v2 strong { color: var(--gold); font-style: normal; font-weight: 500; }

/* ── FOOTER ────────────────────────────────────────────── */
footer { position: relative; z-index: 40; background: #080808; border-top: 1px solid rgba(212,175,55,0.08); }
.footer-grid-v2 {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem; padding: 4rem 2rem 3rem;
}
.footer-logo-v2 {
  height: 76px; width: auto; display: block; margin-bottom: 1.15rem;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.28));
}
.footer-brand-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  line-height: 1.85; margin-bottom: 1.4rem; max-width: 230px;
}
.footer-socials { display: flex; gap: 0.6rem; }
.footer-social {
  width: 34px; height: 34px;
  border: 1px solid rgba(212,175,55,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.48); text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.07); }
.footer-col-title {
  font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem; font-weight: 500;
}
.footer-links-v2 { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links-v2 a {
  font-size: 0.84rem; color: rgba(255,255,255,0.42);
  text-decoration: none; transition: color 0.22s;
}
.footer-links-v2 a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.fci {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.81rem; color: rgba(255,255,255,0.42);
  text-decoration: none; transition: color 0.22s; line-height: 1.65;
}
.fci:hover { color: var(--gold); }
.fci svg { flex-shrink: 0; margin-top: 2px; color: rgba(212,175,55,0.65); }
.footer-bottom-v2 {
  border-top: 1px solid rgba(255,255,255,0.045);
  padding: 1.2rem 2rem; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.7rem; color: rgba(255,255,255,0.22);
}
.footer-bottom-v2 a { color: rgba(212,175,55,0.5); text-decoration: none; transition: color 0.22s; }
.footer-bottom-v2 a:hover { color: var(--gold); }

/* ── REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .scroll-line          { animation: none !important; opacity: 0.6; }
  .loading-zeus         { animation: none !important; }
  .service-card         { transition: none !important; opacity: 1 !important; transform: none !important; }
  .service-card.visible { opacity: 1 !important; transform: none !important; }
  * {
    animation-duration:   0.01ms !important;
    transition-duration:  0.01ms !important;
  }
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 960px) {
  #main-nav   { display: none; }
  .logo-right { display: none; }
  .hamburger  { display: flex; }

  /* ── Mobile header: centre the logo, hamburger floats right ── */
  #site-header {
    justify-content: center;
    position: relative;   /* anchor for the absolute hamburger */
    overflow: visible;    /* let the large logo overflow the bar */
    height: 60px;
  }
  .header-right {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
  }
  /* 3× the base size — matches desktop prominence */
  .logo-img {
    height: 144px;
  }
}

@media (max-width: 768px) {
  #site-header { padding: 1rem 1.25rem; }

  /* Hero mobile */
  .hero-line-top  { font-size: clamp(0.85rem, 4vw, 1.2rem); }
  .hero-line-main { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero-subtitle  { display: none; }
  .hero-br        { display: none; }
  .hero-features-bar { display: none; }

  #about-overlay { padding: 0 4vw; align-items: center; justify-content: center; }
  .about-content { max-width: 92vw; padding: 2rem 1.75rem; }
  .about-heading { font-size: clamp(1.65rem, 6vw, 2.6rem); }

  /* Gallery mobile */
  #gallery         { padding: 0; }
  .gallery-header  { padding: 2.5rem 1.25rem 1.5rem; }
  .gallery-accordion { flex-direction: column; height: auto; gap: 5px; }
  .gal-item {
    flex: none !important; min-width: unset; height: 200px;
    border-radius: 0 !important; transition: none;
  }
  .gal-item img { filter: brightness(0.9); }

  /* Services mobile */
  #services    { padding: 5rem 1.25rem 4rem; }
  .svc-grid    { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .svc-signature { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; }
  .sig-book-btn { width: 100%; justify-content: center; }

  /* Contact mobile */
  .contact-grid-v2 { grid-template-columns: 1fr; gap: 3rem; }
  #contact         { padding: 5rem 1.25rem 4rem; }
  .closing-box     { padding: 2rem 1.5rem; }

  /* Footer mobile */
  .footer-grid-v2  {
    grid-template-columns: 1fr 1fr;
    gap: 2rem; padding: 3rem 1.25rem 2rem;
  }
  .footer-brand-v2 { grid-column: 1 / -1; }
  .footer-bottom-v2 { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1rem 1.25rem; }
}

@media (max-width: 420px) {
  .hero-line-top    { font-size: 0.82rem; }
  .hero-line-main   { font-size: 2.2rem; }
  .about-content    { padding: 1.75rem 1.5rem; }
  .about-heading    { font-size: 1.65rem; }
  .section-heading  { font-size: 1.8rem; }
  .svc-grid         { grid-template-columns: 1fr; }
  .footer-grid-v2   { grid-template-columns: 1fr; }
  .closing-tagline  { font-size: 1.1rem; }
}
