/* ═══════════════════════════════════════════════════════
   GOLDEN PARK — Premium OnePager
   ═══════════════════════════════════════════════════════ */

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

:root {
  --black:      #060606;
  --dark:       #0e0e0e;
  --dark2:      #161616;
  --dark3:      #1e1e1e;
  --gold:       #c8a96e;
  --gold-light: #dfc08a;
  --gold-dim:   rgba(200, 169, 110, 0.18);
  --white:      #ffffff;
  --off-white:  #e8e8e8;
  --grey:       #666666;
  --light-grey: #aaaaaa;
  --font:       'Montserrat', sans-serif;
  --nav-h:      80px;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  cursor: none;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
  cursor: none;
}

a, button { cursor: none; }

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ─── PLACEHOLDER ─── */
.img-placeholder {
  width: 100%; height: 100%;
  min-height: 300px;
  background: var(--dark2);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.03) 0%, transparent 60%);
}
.img-placeholder span {
  font-size: 0.6rem; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.1); font-weight: 700;
}
.img-placeholder.full { min-height: 100%; }

/* ─── CUSTOM CURSOR ─── */
#cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
#cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(200,169,110,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
}
body.cursor-hover #cursor { width: 14px; height: 14px; background: var(--gold-light); }
body.cursor-hover #cursor-follower { width: 48px; height: 48px; opacity: 0.6; }

/* ─── SECTION DOTS ─── */
#section-dots {
  position: fixed; right: 2rem; top: 50%;
  transform: translateY(-50%);
  z-index: 500; display: flex;
  flex-direction: column; gap: 0.8rem;
  align-items: center;
}
.dot {
  display: block; width: 6px; height: 6px;
  border-radius: 50%; background: rgba(255,255,255,0.2);
  transition: all 0.3s; position: relative;
}
.dot::before {
  content: var(--dot-label, "");
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap; opacity: 0;
  transition: opacity 0.3s;
  font-weight: 600; font-family: var(--font);
}
.dot:hover::before, .dot.active::before { opacity: 1; }
.dot.active { background: var(--gold); transform: scale(1.5); }
.dot:hover { background: var(--gold-light); }

/* ─── LABELS ─── */
.label {
  display: block; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}

/* ─── SECTION HEADER ─── */
.section-head { margin-bottom: 4rem; }
.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900; line-height: 1.05;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--gold); color: var(--black);
  font-family: var(--font); font-size: 0.65rem;
  font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none; border: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: transparent; color: var(--white);
  font-family: var(--font); font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; height: var(--nav-h);
  display: flex; align-items: center;
  justify-content: space-between; padding: 0 5%;
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(6,6,6,0.9);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom-color: rgba(200,169,110,0.1);
}
.nav-logo {
  font-size: 1rem; font-weight: 900;
  letter-spacing: 0.3em; color: var(--white);
  text-decoration: none;
}
.nav-links {
  display: flex; list-style: none; gap: 2.5rem;
}
.nav-links a {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-grey); text-decoration: none;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }

.nav-client-btn {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-client-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.mobile-only { display: none; }

.lang-toggle {
  background: none; border: 1px solid var(--gold-dim);
  color: var(--gold); font-family: var(--font);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; padding: 6px 16px;
  transition: all 0.3s;
}
.lang-toggle:hover { background: var(--gold); color: var(--black); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 1px;
  background: var(--white); transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ─── HERO ─── */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #050505;
  will-change: transform;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.55) 80%,
    rgba(0,0,0,0.75) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 2rem;
}
.hero-tagline {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 1s 0.3s var(--ease-out) forwards;
}
.hero-title {
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 900; line-height: 0.88;
  letter-spacing: -0.02em; margin-bottom: 2rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  mix-blend-mode: screen;
}
.line-wrap { display: block; overflow: hidden; }
.line {
  display: block;
  opacity: 0; transform: translateY(110%);
  animation: heroSlideUp 1s var(--ease-out) forwards;
}
.line-wrap:nth-child(1) .line { animation-delay: 0.5s; }
.line-wrap:nth-child(2) .line { animation-delay: 0.7s; }

.hero-location {
  font-size: 0.65rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--grey);
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 1s 1s var(--ease-out) forwards;
}
.hero-ctas {
  display: flex; gap: 1.2rem; justify-content: center;
  flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 1s 1.2s var(--ease-out) forwards;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-cut {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 100px;
  background: var(--dark);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  opacity: 0; animation: heroFadeUp 1s 1.8s forwards;
}
.scroll-indicator span {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0) translateY(-100%); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1) translateY(0); }
}

/* ─── ABOUT ─── */
#about {
  background: var(--dark);
  padding: 9rem 0 10rem;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.about-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 2rem;
}
.about-text p {
  font-size: 0.9rem; line-height: 1.85;
  color: var(--light-grey); margin-bottom: 1.4rem;
  max-width: 460px;
}
.about-text .btn-primary { margin-top: 1rem; }

.about-visual { position: relative; }
.about-img-wrap { position: relative; }
.about-img-wrap .img-placeholder { aspect-ratio: 3/4; min-height: auto; }
.about-accent-img {
  position: absolute; bottom: -3rem; right: -2.5rem;
  width: 52%; aspect-ratio: 1;
  border: 3px solid var(--dark);
}
.about-accent-img .img-placeholder { min-height: auto; }

.about-badge {
  position: absolute; top: 3rem; left: -2.5rem;
  background: var(--gold); color: var(--black);
  padding: 1.2rem 1.5rem; text-align: center;
  z-index: 2;
}
.badge-num {
  display: block; font-size: 2rem; font-weight: 900; line-height: 1;
}
.badge-unit {
  display: block; font-size: 1.2rem; font-weight: 900; line-height: 1;
}
.badge-label {
  display: block; font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.4rem;
}

/* ─── NUMBERS ─── */
#numbers {
  background: var(--black);
  padding: 7rem 0 9rem;
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
.numbers-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 900; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.02);
  white-space: nowrap; pointer-events: none;
  user-select: none;
}
.numbers-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 0;
  position: relative; z-index: 1;
}
.number-item { flex: 1; text-align: center; padding: 2rem 1rem; }
.counter-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.counter {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900; line-height: 1; color: var(--white);
}
.counter-unit {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: var(--gold);
}
.number-item p {
  font-size: 0.6rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--grey);
  margin-top: 0.6rem; font-weight: 600;
}
.number-divider {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  flex-shrink: 0;
}

/* ─── SERVICES ─── */
#services {
  background: var(--dark);
  padding: 9rem 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--dark2);
  padding: 3.5rem 2.5rem 3rem;
  position: relative; overflow: hidden;
  border-top: 2px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { border-top-color: var(--gold); background: var(--dark3); }
.service-card:hover::before { opacity: 1; }

.card-num {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.3em; color: var(--gold);
  margin-bottom: 2rem;
}
.card-icon { color: var(--gold); margin-bottom: 1.5rem; }
.card-icon svg { display: block; }

.service-card h3 {
  font-size: 1.5rem; font-weight: 900;
  letter-spacing: 0.02em; margin-bottom: 1rem;
}
.service-card p {
  font-size: 0.85rem; line-height: 1.75;
  color: var(--grey);
}
.card-arrow {
  margin-top: 2.5rem; font-size: 1.2rem;
  color: var(--gold); opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .card-arrow { opacity: 1; transform: translateX(0); }

/* ─── SPACE ─── */
#space {
  background: var(--black);
  padding: 0; position: relative;
  overflow: hidden;
}
.space-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.space-bg-img .img-placeholder { min-height: 100%; }
.space-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(6,6,6,0.97) 0%, rgba(6,6,6,0.92) 40%, rgba(6,6,6,0.6) 70%, rgba(6,6,6,0.3) 100%);
}
.space-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem; align-items: start;
  padding-top: 8rem; padding-bottom: 6rem;
}
.space-left h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 1.5rem;
}
.space-left p {
  font-size: 0.85rem; line-height: 1.8;
  color: var(--light-grey);
}
.space-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feature-item {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.04);
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: background 0.3s;
}
.feature-item:hover { background: rgba(200,169,110,0.04); }
.feature-item:nth-child(2n) { border-right: none; }
.feature-item:nth-last-child(-n+2) { border-bottom: none; }

.feature-icon { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.feature-item h4 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.05em; margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.feature-item p { font-size: 0.75rem; line-height: 1.6; color: var(--grey); }

/* ─── GALLERY ─── */
#gallery {
  background: var(--dark);
  padding: 9rem 0 6rem;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2.5rem;
}

.justified-row {
  display: flex;
  gap: 4px;
}

.gallery-item {
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0; margin: 0;
  background: var(--black);
  border: none;
  cursor: pointer;
  position: relative;
}

.gallery-item:hover .gallery-ph img {
  transform: scale(1.04);
}

.gallery-ph {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-ph img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(6, 6, 6, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-stage {
  position: relative;
  width: min(90vw, 960px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-photo-frame {
  position: relative;
  width: 100%;
  max-height: 85vh;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 2px;
  transition: aspect-ratio 0.2s ease;
}

.lightbox-photo-frame.is-portrait {
  aspect-ratio: 2/3;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.4);
  transform: scale(1.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-backdrop.is-active {
  opacity: 1;
}

.lightbox-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}

.lightbox-close { top: -54px; right: 0; }
.lightbox-prev  { left: -58px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: -58px; top: 50%; transform: translateY(-50%); }

@media (max-width: 860px) {
  .lightbox-close { top: -50px; right: 0; }
  .lightbox-prev  { left: 0; top: auto; bottom: -58px; transform: none; }
  .lightbox-next  { right: 0; top: auto; bottom: -58px; transform: none; }
}

/* ─── PARTNERS ─── */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--marquee-dist, -33.333%)); }
}
#partners {
  background: var(--black);
  padding: 5rem 0 4.5rem;
  border-top: 1px solid rgba(200,169,110,0.08);
  overflow: hidden;
}
.partners-label-wrap {
  text-align: center;
  padding: 0 5% 3rem;
}
.partners-label-wrap h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0;
  color: var(--white);
}
.partners-marquee-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 0 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding: 0.5rem 0;
}
.partners-marquee-wrap:hover .partners-track {
  animation-play-state: paused;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  opacity: 0.9;
}
.partner-logo:hover {
  opacity: 1;
  transform: scale(1.08);
}
.partner-logo img {
  height: 118px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--black);
  padding: 9rem 0 8rem; position: relative; overflow: hidden;
}
.contact-diagonal {
  position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 100% 20%, 0 100%);
}
#contact::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,169,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 7rem; align-items: start;
  position: relative; z-index: 1;
}
.contact-left h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 3rem;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
.contact-info-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.info-icon {
  font-size: 0.7rem; font-weight: 900;
  color: var(--gold); letter-spacing: 0.05em;
  min-width: 18px; margin-top: 2px;
}
.contact-info-item a,
.contact-info-item span {
  display: block; font-size: 0.85rem;
  color: var(--light-grey); text-decoration: none;
  transition: color 0.3s; line-height: 1.6;
}
.contact-info-item a:hover { color: var(--gold); }

.contact-social {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.contact-social a {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transition: color 0.3s; width: fit-content;
  border-bottom: 1px solid var(--gold-dim); padding-bottom: 2px;
}
.contact-social a:hover { color: var(--gold-light); border-color: var(--gold); }

/* ─── FORM ─── */
.contact-form {
  display: flex; flex-direction: column; gap: 0;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.form-group {
  position: relative; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 1.4rem 1.2rem 0.5rem;
  background: var(--dark2); border: none;
  color: var(--white); font-family: var(--font);
  font-size: 0.85rem; outline: none;
  transition: background 0.3s;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.form-row .form-group:last-child input { border-right: none; }
.form-group textarea { resize: none; }

.form-group label {
  position: absolute; left: 1.2rem; top: 1rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey); transition: all 0.3s;
  pointer-events: none;
}
.form-group input:focus,
.form-group textarea:focus { background: #131313; }

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group input[type="date"] ~ label {
  top: 0.35rem; font-size: 0.55rem; color: var(--gold);
}

.form-group input,
.form-group textarea { placeholder-shown: clip; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: transparent; }

.form-group:focus-within {
  border-bottom-color: var(--gold);
}

.contact-form .btn-primary {
  margin-top: 1px; padding: 1.2rem;
  clip-path: none;
}
.date-label { top: 0.35rem !important; font-size: 0.55rem !important; color: var(--gold) !important; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 4rem 0;
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem; text-align: center;
}
.footer-logo {
  font-size: 1.1rem; font-weight: 900;
  letter-spacing: 0.35em; color: var(--gold);
}
.footer-slogan {
  font-size: 0.62rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--grey);
}
.footer-links {
  display: flex; gap: 2.5rem; margin: 0.5rem 0;
}
.footer-links a {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-grey); text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.62rem; color: rgba(255,255,255,0.18);
}
.footer-copy a { color: rgba(255,255,255,0.3); text-decoration: none; }

/* ─── SITEPLAN ─── */
#siteplan {
  background: var(--black);
  padding: 9rem 0 8rem;
}

.siteplan-wrap {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 5%;
}

.siteplan-img-wrap {
  position: relative;
  width: 100%;
  border: 1px solid rgba(200,169,110,0.12);
  box-shadow: 0 30px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,169,110,0.06);
  overflow: hidden;
}

.siteplan-img {
  display: block;
  width: 100%;
  height: auto !important;
  object-fit: initial !important;
  filter: brightness(0.88) contrast(1.08) saturate(0.9);
}

/* Zoom content wrapper (neutral on desktop, activated by JS on mobile) */
.sp-zoom-content { position: relative; width: 100%; }

/* ── Pins ── */
.sp-pin {
  position: absolute;
  left: var(--spx);
  top:  var(--spy);
  transform: translate(-50%, -50%);
  z-index: 5;
}

.sp-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem; font-weight: 900; letter-spacing: 0;
  box-shadow: 0 0 0 3px rgba(200,169,110,0.28), 0 3px 12px rgba(0,0,0,0.45);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  position: relative; z-index: 2;
  cursor: default;
}
.sp-pin:hover .sp-dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 6px rgba(200,169,110,0.2), 0 6px 20px rgba(0,0,0,0.55);
}

/* Tag labels — hover only */
.sp-tag {
  position: absolute;
  background: rgba(6,6,6,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,169,110,0.28);
  color: var(--gold-light);
  font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 11px;
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.sp-pin:hover .sp-tag { opacity: 1; }
/* direction: above */
.sp-pin.up .sp-tag {
  bottom: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  top: auto;
}
/* direction: below */
.sp-pin.dn .sp-tag {
  top: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  bottom: auto;
}
/* direction: right */
.sp-pin.rt .sp-tag {
  left: calc(100% + 10px);
  top: 50%; transform: translateY(-50%);
  bottom: auto;
}
/* direction: left */
.sp-pin.lt .sp-tag {
  right: calc(100% + 10px);
  top: 50%; transform: translateY(-50%);
  left: auto; bottom: auto;
}

/* ── Legend ── */
.siteplan-legend {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.04);
}
.sp-legend-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s;
}
.sp-legend-item:hover { background: rgba(200,169,110,0.04); }
.sp-legend-item:nth-child(4n) { border-right: none; }
.sp-legend-item:nth-last-child(-n+4) { border-bottom: none; }
.sp-legend-num {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%; background: var(--gold);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 900;
}
.sp-legend-item > span:last-child {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--light-grey);
}
.sp-left-arrow {
  position: absolute;
  right: calc(100% + 5px);
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Mobile-only siteplan scroll hint */
.sp-mobile-hint {
  display: none;
  text-align: center;
  font-size: 0.58rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--grey);
  padding: 1rem 5% 0.5rem; font-weight: 600;
}
@media (max-width: 900px) {
  .sp-mobile-hint { display: block; }
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal      { transform: translateY(50px); }
.reveal-right { transform: translateX(50px); }
.reveal.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }

/* ─── MOBILE NAV OPEN ─── */
.nav-links.open {
  display: flex !important; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(6,6,6,0.97); backdrop-filter: blur(20px);
  padding: 2.5rem 5%; gap: 2rem;
  border-bottom: 1px solid rgba(200,169,110,0.1);
  z-index: 899;
}
.nav-links.open a { font-size: 0.9rem; }

/* Hidden on desktop, shown in mobile menu */
.mobile-only { display: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  #section-dots { display: none; }
}
@media (max-width: 900px) {
  html, body { cursor: auto; }
  #cursor, #cursor-follower { display: none; }
  .nav-links { display: none; }
  .nav-burger { display: flex; margin-right: 2px; }
  #navbar { padding-left: 18px; padding-right: 40px; }
  .nav-right { gap: 12px; }

  /* Client Space button moves into mobile menu */
  .nav-client-btn { display: none; }
  .mobile-only { display: block; }
  .mobile-client-link {
    display: inline-block;
    background: var(--gold);
    color: var(--black) !important;
    padding: 8px 22px;
    font-size: 0.62rem !important;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 0.4rem;
  }
  .mobile-client-link:hover { background: var(--gold-light); }

  /* Logo slightly smaller to give lang+burger more room */
  .nav-logo { font-size: 0.88rem; letter-spacing: 0.22em; }

  .about-inner { grid-template-columns: 1fr; gap: 4rem; }
  .about-badge { left: 0; }

  .numbers-inner { flex-wrap: wrap; }
  .number-item { flex: 1 1 40%; }
  .number-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .space-inner { grid-template-columns: 1fr; }
  .space-features { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2n) { border-right: none; }
  .feature-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .feature-item:last-child { border-bottom: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 4rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .form-group input { border-right: none; }

  /* siteplan — full map visible + pinch-to-zoom on mobile */
  .siteplan-wrap { overflow: hidden; padding: 0; }
  .siteplan-img-wrap { overflow: hidden; touch-action: none; cursor: default; }
  .sp-zoom-content { width: 100%; transform-origin: center center; will-change: transform; }
  .sp-pin { display: block; }
  .sp-dot { width: 22px; height: 22px; font-size: 0.48rem; }
  .sp-tag { font-size: 0.44rem; padding: 4px 8px; }
  .sp-pin:active .sp-tag { opacity: 1; }
  .siteplan-legend { grid-template-columns: repeat(2, 1fr); }
  .sp-legend-item:nth-child(4n) { border-right: 1px solid rgba(255,255,255,0.04); }
  .sp-legend-item:nth-child(2n) { border-right: none; }
  .sp-legend-item:nth-last-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .sp-legend-item:nth-last-child(-n+2) { border-bottom: none; }

  /* partners — smaller logos on tablet */
  .partner-logo img { height: 90px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: clamp(3.8rem, 12vw, 4.5rem); }
  .hero-ctas { gap: 0.8rem; }
  .btn-primary, .btn-ghost { padding: 0.8rem 1.8rem; }

  #about { padding: 5rem 0 7rem; }
  #services, #gallery, #contact { padding: 5rem 0; }
  #numbers { padding: 5rem 0 7rem; }
  #siteplan { padding: 5rem 0 4rem; }
  #space .space-inner { padding-top: 5rem; padding-bottom: 5rem; }
  #partners { padding: 4rem 0 3.5rem; }

  .space-features { grid-template-columns: 1fr; }
  .feature-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .feature-item:last-child { border-bottom: none; }

  .number-item { flex: 1 1 100%; }

  .siteplan-legend { grid-template-columns: 1fr; }
  .sp-legend-item:nth-child(2n) { border-right: none; }
  .sp-legend-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .sp-legend-item:last-child { border-bottom: none; }

  /* partners — compact on phone */
  .partner-logo img { height: 70px; }
  .partners-label-wrap { padding-bottom: 2rem; }
  .partners-label-wrap h2 { font-size: 1.6rem; }

  /* footer compact */
  .footer-links { gap: 1.5rem; }
}

/* ══════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 0 auto;
  padding: 1.1rem 1.4rem;
  background: var(--dark2);
  border: 1px solid var(--gold-dim);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.cookie-banner.hidden { display: none; }
.cookie-banner p {
  flex: 1 1 320px;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.cookie-banner button {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 9px;
  padding: 0.65rem 1.4rem;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.cookie-banner button:hover { background: var(--gold-light); transform: translateY(-1px); }

@media (max-width: 600px) {
  .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; padding: 1rem; }
  .cookie-banner button { width: 100%; }
}

/* ─── WINE FEST EVENT POPUP ─── */
.wf-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(5, 8, 6, 0.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 1; transition: opacity 0.4s ease;
}
.wf-overlay.hidden { opacity: 0; pointer-events: none; }
.wf-panel {
  position: relative;
  width: min(480px, 94vw);
  max-height: 92vh; overflow-y: auto;
  background: radial-gradient(120% 95% at 50% 42%, #22331f 0%, #16241a 38%, #0c140e 72%, #070b08 100%);
  color: #e9e2cf;
  text-align: center;
  padding: clamp(34px, 6vw, 52px) clamp(26px, 5vw, 46px) clamp(30px, 5vw, 44px);
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: wfPop 0.55s cubic-bezier(.22,.61,.36,1);
}
@keyframes wfPop {
  from { transform: translateY(26px) scale(0.96); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.wf-frame { position: absolute; inset: 12px; border: 1px solid rgba(201,162,39,0.28); pointer-events: none; }
.wf-close {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.45);
  color: #dcbd6e; font-size: 16px; line-height: 1;
  cursor: pointer; transition: background 0.2s ease, transform 0.2s ease;
}
.wf-close:hover { background: rgba(201,162,39,0.28); transform: rotate(90deg); }
.wf-veritas { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: 19px; color: #c9a227; }
.wf-brand { font-weight: 600; font-size: 21px; letter-spacing: 0.32em; color: #ece4cf; margin-top: 8px; padding-left: 0.32em; }
.wf-brand b { font-weight: 600; color: #c9a227; }
.wf-region { font-weight: 400; font-size: 10.5px; letter-spacing: 0.42em; color: #8a9878; margin-top: 8px; padding-left: 0.42em; }
.wf-wine { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600; font-size: clamp(74px, 17vw, 96px); line-height: 0.85; color: #cba52a; margin-top: 10px; }
.wf-fest { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: clamp(48px, 11vw, 62px); line-height: 0.8; color: transparent; -webkit-text-stroke: 1px rgba(220,213,190,0.55); }
.wf-year { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 17px; letter-spacing: 0.5em; color: #9c8a4e; margin-top: 10px; padding-left: 0.5em; }
.wf-divider { width: 44px; height: 1px; background: #c9a227; opacity: 0.7; margin: 18px auto 4px; }
.wf-dates { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(56px, 13vw, 68px); line-height: 1; color: #ece4cf; margin-top: 10px; }
.wf-dates span { font-style: italic; font-size: 0.72em; color: #c9a227; }
.wf-month { font-weight: 500; font-size: 17px; letter-spacing: 0.34em; color: #c9a227; margin-top: 8px; padding-left: 0.34em; }
.wf-time { font-weight: 400; font-size: 15px; letter-spacing: 0.3em; color: #d8d0bb; margin-top: 9px; padding-left: 0.3em; }
.wf-loc { font-weight: 400; font-size: 11px; letter-spacing: 0.16em; color: #7f8d6f; margin-top: 8px; text-transform: uppercase; }
.wf-tickets { display: flex; gap: 14px; margin-top: 22px; }
.wf-ticket { flex: 1; border: 1px solid rgba(201,162,39,0.3); padding: 14px 10px 12px; }
.wf-t-type { font-weight: 600; font-size: 11px; letter-spacing: 0.2em; color: #c9a227; }
.wf-t-price { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 42px; line-height: 1; color: #ece4cf; margin-top: 4px; }
.wf-t-price span { font-size: 0.5em; vertical-align: 0.45em; margin-right: 2px; }
.wf-links { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.wf-links:empty { display: none; }
.wf-btn {
  display: block; padding: 13px 18px;
  background: linear-gradient(135deg, #d9b64a, #c9a227);
  color: #14100a; font-weight: 600; font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.wf-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.wf-btn.outline { background: none; border: 1px solid rgba(201,162,39,0.5); color: #dcbd6e; }
