/* ================================================================
   Private Party Dancers — Luxury Membership / Club Exclusivo
   Black #0A0A0A + Champagne Gold #C9A961 + Wine #722F37
   ================================================================ */

:root {
  --bg: #0A0A0A;
  --bg-2: #121212;
  --bg-3: #181818;
  --line: rgba(201, 169, 97, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);
  --gold: #C9A961;
  --gold-2: #E2C988;
  --gold-deep: #8C7438;
  --wine: #722F37;
  --wine-2: #4A1F25;
  --nude: #E8C9B8;
  --text: #F4EFE6;
  --text-dim: #A39B8E;
  --text-faint: #6B6459;

  --ff-serif: "Cormorant Garamond", "Playfair Display", "DM Serif Display", Georgia, serif;
  --ff-display: "DM Serif Display", "Cormorant Garamond", Georgia, serif;
  --ff-sans: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --ff-mono: "JetBrains Mono", "Söhne Mono", ui-monospace, monospace;

  --maxw: 1440px;
  --gutter: clamp(20px, 5vw, 80px);
  --section-y: clamp(80px, 12vw, 160px);

  --ease-luxe: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ============================ TYPE ============================ */

.serif { font-family: var(--ff-display); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; }
.italic { font-style: italic; }
.gold { color: var(--gold); }
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

h1.hero-h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(44px, 7.4vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
h2.section-h {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
h3.card-h {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
}

/* ============================ LAYOUT ============================ */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; padding: var(--section-y) 0; }

.section-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  width: fit-content;
  color: var(--gold);
  opacity: 0.6;
}
.section-divider .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}
.section-divider .line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============================ LOADER ============================ */

#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand {
  display: inline-flex;
  align-items: center;
  height: 36px;
  opacity: 0;
  animation: fadein 0.8s 0.15s var(--ease-out) forwards;
}
.loader-figure, .loader-wordmark {
  display: block;
  height: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.loader-figure {
  width: calc(36px * (487 / 940));
  background: linear-gradient(180deg, var(--gold-2), var(--gold), var(--gold-deep));
  -webkit-mask-image: url("assets/logo-figure.png");
  mask-image: url("assets/logo-figure.png");
  margin-right: 5px;
}
.loader-wordmark {
  width: calc(36px * (1223 / 940));
  background: var(--text);
  -webkit-mask-image: url("assets/logo-wordmark.png");
  mask-image: url("assets/logo-wordmark.png");
}
.loader-line-wrap {
  width: min(420px, 60vw);
  height: 1px;
  background: rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.loader-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  transform: translateX(-100%);
  animation: loaderSweep 1.6s 0.2s var(--ease-out) forwards;
}
.loader-tag {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: 0;
  animation: fadein 0.8s 0.6s var(--ease-out) forwards;
}
@keyframes loaderSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes fadein {
  to { opacity: 1; }
}

/* ============================ AGE GATE ============================ */

#agegate {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,10,10,0.84);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
#agegate.show { opacity: 1; visibility: visible; }
#agegate.gone { opacity: 0; visibility: hidden; pointer-events: none; }

.agegate-card {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, #0F0F0F 0%, #0A0A0A 100%);
  border: 1px solid var(--line);
  padding: 56px 44px 48px;
  text-align: center;
  position: relative;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.6s var(--ease-out) 0.1s, opacity 0.6s var(--ease-out) 0.1s;
}
#agegate.show .agegate-card { transform: translateY(0) scale(1); opacity: 1; }

.agegate-corners::before, .agegate-corners::after,
.agegate-card::before, .agegate-card::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
}
.agegate-card::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.agegate-card::after { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.agegate-corners::before { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.agegate-corners::after { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.agegate-mark {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 24px;
}
.agegate-card h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  margin-bottom: 14px;
}
.agegate-card p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.agegate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================ BUTTONS ============================ */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), color 0.3s, border-color 0.3s, background-color 0.3s;
  white-space: nowrap;
  isolation: isolate;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-gold {
  background: var(--gold);
  color: #0A0A0A;
}
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, var(--gold-2) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-out);
  z-index: -1;
}
.btn-gold:hover::before { transform: translateX(110%); }
.btn-gold:hover { transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gold);
}
.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn-outline:hover { color: #0A0A0A; }
.btn-outline:hover::before { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--line-soft);
  padding: 14px 22px;
  font-size: 12px;
}
.btn-ghost:hover { color: var(--text); border-color: var(--gold); }

.btn-lg { padding: 24px 44px; font-size: 14px; }
.btn-lg svg { width: 20px; height: 20px; }

/* ============================ HEADER ============================ */

#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(10, 10, 10, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, padding 0.4s;
}
#header.scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-bottom-color: var(--line-soft);
  padding: 12px 0;
}
.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 44px;
  text-decoration: none;
}
.brand .logo-figure,
.brand .logo-wordmark {
  display: block;
  height: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.brand .logo-figure {
  /* 487 / 940 ratio */
  width: calc(44px * (487 / 940));
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-mask-image: url("assets/logo-figure.png");
  mask-image: url("assets/logo-figure.png");
  margin-right: 6px;
}
.brand .logo-wordmark {
  /* 1223 / 940 ratio */
  width: calc(44px * (1223 / 940));
  background: var(--text);
  -webkit-mask-image: url("assets/logo-wordmark.png");
  mask-image: url("assets/logo-wordmark.png");
}
#header.scrolled .brand { height: 38px; transition: height 0.4s; }
.foot-brand .brand { height: 56px; }
.foot-brand .brand .logo-figure { width: calc(56px * (487 / 940)); }
.foot-brand .brand .logo-wordmark { width: calc(56px * (1223 / 940)); }

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-self: center;
}
.nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line-soft);
  padding: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.lang-toggle button {
  padding: 6px 10px;
  color: var(--text-faint);
  transition: color 0.3s;
  position: relative;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.lang-toggle button.active {
  color: #0A0A0A;
  background: var(--gold);
}
.lang-toggle button:not(.active):hover { color: var(--text); }

.btn-book-header {
  background: var(--gold);
  color: #0A0A0A;
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out);
}
.btn-book-header svg { width: 14px; height: 14px; }
.btn-book-header:hover { transform: translateY(-1px); }
.btn-book-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, var(--gold-2) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-out);
}
.btn-book-header:hover::before { transform: translateX(110%); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  width: 22px; height: 1px; background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
#mobile-menu.open { opacity: 1; visibility: visible; }
#mobile-menu a {
  font-family: var(--ff-display);
  font-size: 32px;
  letter-spacing: 0.02em;
}
#mobile-menu a:hover { color: var(--gold); }
#mobile-menu .lang-toggle { margin-top: 24px; }

/* ============================ HERO ============================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
  padding: clamp(100px, 8vh, 140px) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 0;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-text {
  padding: clamp(40px, 5vw, 80px) clamp(30px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}

/* Logo PPD image */
.hero-logo {
  display: block;
  width: fit-content;
}

.hero-logo-img {
  display: block;
  width: clamp(240px, 30vw, 380px);
  height: auto;
  filter: invert(1);
}

/* Eyebrow with horizontal line */
.hero-eyebrow-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Hero H1 */
.hero h1 {
  font-family: "Playfair Display", var(--ff-display);
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

/* Hero features list */
.hero-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
}

.feature-icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* Divider */
.hero-divider {
  height: 1px;
  background: var(--gold);
  width: 100%;
  margin: 16px 0;
}

/* Hero primary CTA button */
.btn-hero-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.btn-hero-primary svg {
  width: 16px;
  height: 16px;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

/* Hero sub-label */
.hero-sublabel {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-top: 8px;
}

/* Hero visual — photo column */
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Bottom overlay strip on photo */
.hero-bottom-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 16px 24px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
}

.strip-icon {
  font-size: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

.strip-divider {
  width: 1px;
  height: 20px;
  background: rgba(201, 169, 97, 0.4);
}

/* ============================ VALUE PROP ============================ */

.value {
  border-top: 1px solid var(--line-soft);
}
.value-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 80px;
}
.value-head h2 .b { color: var(--gold); font-style: italic; }
.value-intro {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-dim);
  max-width: 640px;
  margin: 28px auto 0;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.value-item {
  background: var(--bg);
  padding: clamp(40px, 4vw, 64px) clamp(28px, 3vw, 40px);
  position: relative;
  transition: background 0.5s var(--ease-out);
}
.value-item:hover { background: var(--bg-2); }
.value-item .v-num {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}
.value-item .v-icon {
  width: 56px; height: 56px;
  margin-bottom: 36px;
  color: var(--gold);
}
.value-item .v-icon svg { width: 100%; height: 100%; }
.value-item h3 { margin-bottom: 18px; }
.value-item p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================ SERVICES ============================ */

.services {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 80px;
}
.services-head h2 { max-width: 720px; }
.services-head .meta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: right;
}
.services-head .meta .num {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--line-soft);
  background: var(--bg);
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
  cursor: default;
}
.service-card:hover { border-color: var(--gold); }
.service-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-bg { transform: scale(1.04); }
.service-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 70%, var(--bg) 100%);
  z-index: 1;
}

/* placeholder visuals per card */
.svc-1 .service-bg { background: radial-gradient(ellipse at 70% 30%, rgba(201,169,97,0.35), transparent 55%), linear-gradient(160deg, #1A0F08, #0A0A0A); }
.svc-2 .service-bg { background: radial-gradient(ellipse at 30% 70%, rgba(114,47,55,0.55), transparent 60%), linear-gradient(160deg, #1A0808, #0A0A0A); }
.svc-3 .service-bg { background: radial-gradient(ellipse at 50% 30%, rgba(232,201,184,0.2), transparent 55%), linear-gradient(160deg, #1A1812, #0A0A0A); }
.svc-4 .service-bg { background: radial-gradient(ellipse at 80% 80%, rgba(201,169,97,0.25), transparent 50%), radial-gradient(ellipse at 20% 20%, rgba(114,47,55,0.4), transparent 55%), #0A0A0A; }

.service-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 44px);
}
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.service-num {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.service-cat {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.service-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 80%;
}
.service-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
  max-width: 90%;
}
.service-card .arrow {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease-out);
}
.service-card:hover .arrow { gap: 16px; }

/* ============================ HOW IT WORKS ============================ */

.how {
  position: relative;
}
.how-head { text-align: center; max-width: 720px; margin: 0 auto 100px; }
.how-head h2 .gold { font-style: italic; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 64px);
}
.timeline-line-svg {
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  z-index: 0;
  pointer-events: none;
}
.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 12px;
}
.timeline-dot {
  position: relative;
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  background: var(--bg);
  margin: 0 auto 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--gold);
  transform: rotate(45deg);
}
.timeline-dot span { transform: rotate(-45deg); }
.timeline-step .step-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 12px;
}
.timeline-step h3 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 14px;
  line-height: 1.2;
}
.timeline-step p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* ============================ TESTIMONIALS ============================ */

.testimonials {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 30%; left: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(201,169,97,0.06), transparent 60%);
  pointer-events: none;
}
.tst-head { text-align: center; margin-bottom: 80px; }
.tst-head h2 { max-width: 720px; margin: 0 auto; }
.tst-head h2 .gold { font-style: italic; }

.tst-stage {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.tst-track {
  position: relative;
  min-height: 380px;
}
.tst-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), visibility 0.7s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tst-card.active { opacity: 1; visibility: visible; transform: translateY(0); }

.tst-mark {
  font-family: var(--ff-display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 24px;
  font-style: italic;
}
.tst-quote {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.4;
  color: var(--text);
  max-width: 760px;
  margin-bottom: 44px;
  font-style: italic;
  font-weight: 400;
  text-wrap: pretty;
}
.tst-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tst-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2A1A12, #0A0A0A);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.tst-name {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text);
  font-weight: 500;
}
.tst-role {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.tst-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
}
.tst-arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.tst-arrow:hover { border-color: var(--gold); color: var(--gold); }
.tst-dots {
  display: flex;
  gap: 10px;
}
.tst-dot {
  width: 28px; height: 1px;
  background: var(--line-soft);
  transition: background 0.3s;
}
.tst-dot.active { background: var(--gold); }

/* ============================ FAQ ============================ */

.faq {
  border-top: 1px solid var(--line-soft);
}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 360px) 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq-head h2 { margin-bottom: 24px; }
.faq-head h2 .gold { font-style: italic; }
.faq-head p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
}
.faq-list {
  border-top: 1px solid var(--line-soft);
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.faq-q {
  width: 100%;
  padding: 28px 56px 28px 24px;
  text-align: left;
  font-family: var(--ff-display);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text);
  line-height: 1.3;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  position: relative;
  transition: color 0.3s, padding-left 0.3s var(--ease-out);
}
.faq-q .q-num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: var(--ff-sans);
  font-weight: 500;
  flex-shrink: 0;
}
.faq-q .q-text { flex: 1; text-wrap: balance; }
.faq-q::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 14px; height: 1px;
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold);
}
.faq-q::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 1px; height: 14px;
  background: var(--gold);
  margin-top: -7px;
  transition: transform 0.4s var(--ease-out);
}
.faq-item.open .faq-q::before { transform: scaleY(0); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-item:hover .faq-q { padding-left: 32px; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq-a-inner {
  padding: 0 80px 28px 80px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
  max-width: 720px;
}

/* ============================ FINAL CTA ============================ */

.final-cta {
  position: relative;
  text-align: center;
  background: radial-gradient(ellipse at center, #15110A 0%, var(--bg) 70%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  background:
    radial-gradient(circle at 30% 40%, rgba(201,169,97,0.12), transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(114,47,55,0.18), transparent 40%);
  filter: blur(10px);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 {
  font-size: clamp(38px, 6vw, 90px);
  max-width: 1000px;
  margin: 0 auto 28px;
  line-height: 1.02;
  text-wrap: balance;
}
.final-cta h2 .gold { font-style: italic; }
.final-cta p.sub {
  color: var(--text-dim);
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 600px;
  margin: 0 auto 48px;
}
.final-cta .micro {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 28px;
}

/* big pulse button */
.btn-cta-big {
  position: relative;
  background: var(--gold);
  color: #0A0A0A;
  padding: 26px 48px;
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.btn-cta-big svg { width: 22px; height: 22px; }
.btn-cta-big::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold);
  pointer-events: none;
  animation: pulseRing 2.4s var(--ease-out) infinite;
}
.btn-cta-big::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, var(--gold-2) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-out);
}
.btn-cta-big:hover::after { transform: translateX(110%); }
@keyframes pulseRing {
  0%   { inset: 0;    opacity: 0.7; }
  80%  { inset: -16px; opacity: 0; }
  100% { inset: -16px; opacity: 0; }
}

/* ============================ FOOTER ============================ */

footer {
  background: var(--bg);
  padding: clamp(80px, 10vw, 120px) 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.foot-brand .brand { margin-bottom: 20px; font-size: 28px; }
.foot-brand p {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 280px;
  line-height: 1.7;
}
.foot-col h4 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.foot-col a:hover { color: var(--gold); }
.foot-col a svg { width: 14px; height: 14px; }

.foot-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.foot-disclaimer {
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.7;
  max-width: 920px;
}
.foot-copy {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.foot-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  border-top: 1px solid var(--line-soft);
  padding-top: 40px;
}
.social-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  transition: border-color 0.3s, color 0.3s;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================ FLOATING WHATSAPP ============================ */

.fab-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 800;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  border: 2px solid var(--gold);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: fabPulse 2.4s var(--ease-out) infinite;
  transition: transform 0.3s var(--ease-out);
}
.fab-wa:hover { transform: scale(1.06); }
.fab-wa svg { width: 28px; height: 28px; color: #0A0A0A; }
@keyframes fabPulse {
  0%   { box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 0 0 rgba(201, 169, 97, 0.5); }
  70%  { box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 0 18px rgba(201, 169, 97, 0); }
  100% { box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 0 0 rgba(201, 169, 97, 0); }
}
.fab-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--gold);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.fab-wa:hover .fab-tooltip { opacity: 1; }

/* ============================ REVEAL ============================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.split-word > span {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 1s var(--ease-out), opacity 1s var(--ease-out);
}
.split-word.in > span { transform: translateY(0); opacity: 1; }

/* ============================ DECORATIVE LINES ============================ */

.deco-line-svg path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.6s var(--ease-out);
}
.deco-line-svg.in path { stroke-dashoffset: 0; }

/* ============================ BACKGROUND TEXTURE ============================ */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201,169,97,0.04), transparent 40%),
    radial-gradient(ellipse at 100% 100%, rgba(114,47,55,0.05), transparent 40%);
  z-index: 0;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* keep page content above bg layers (z-index only — DO NOT override position) */
main, footer { position: relative; z-index: 2; }

/* ============================ RESPONSIVE ============================ */

@media (max-width: 1024px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-row { grid-template-columns: 1fr auto; }
  .nav { justify-self: end; }
  .header-right { display: none; }
  .hero-decoration { display: none; }
  .services-head { grid-template-columns: 1fr; }
  .services-head .meta { text-align: left; }
}

@media (max-width: 820px) {
  .hero { padding-top: 100px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-text { gap: 20px; }
  .hero h1 { font-size: clamp(40px, 5vw, 60px); }
  .hero-features li { font-size: 14px; }
  .hero-visual { min-height: 500px; }
  .hero-bottom-strip { padding: 12px 16px; font-size: 12px; }
  .strip-item { gap: 6px; }
  .value-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 48px; }
  .timeline-line-svg { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .fab-wa { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .fab-wa svg { width: 24px; height: 24px; }
  .btn-cta-big { padding: 20px 32px; font-size: 12px; }
  .faq-q { padding: 22px 48px 22px 16px; gap: 14px; }
  .faq-a-inner { padding: 0 16px 22px 16px; }
}

@media (max-width: 480px) {
  .btn { padding: 16px 22px; font-size: 12px; }
  .trust-strip { gap: 12px 18px; font-size: 10px; }
}

/* prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .split-word > span { transform: none; opacity: 1; }
}

/* ============================ PROOF BAR ============================ */

.proof-bar {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0 var(--gutter);
}
.proof-bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 48px;
  gap: 8px;
  flex: 1;
  min-width: 140px;
}
.proof-num {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.proof-stars {
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 3px;
  line-height: 1;
}
.proof-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.proof-sep {
  width: 1px;
  height: 44px;
  background: var(--line);
  flex-shrink: 0;
}

/* ============================ SERVICES V2 ============================ */

.srv2-head {
  text-align: center;
  margin-bottom: 72px;
}
.srv2-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.srv2-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}
.srv2-em {
  font-style: italic;
  color: var(--gold);
}

.srv2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.srv2-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}
.srv2-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out);
}
.srv2-card:hover .srv2-card-bg { transform: scale(1.06); }

.srv2-card-bg.svc-1 { background: radial-gradient(ellipse at 70% 30%, rgba(201,169,97,0.4), transparent 60%), linear-gradient(160deg, #1a1008, #0a0a0a); }
.srv2-card-bg.svc-2 { background: radial-gradient(ellipse at 30% 70%, rgba(114,47,55,0.6), transparent 60%), linear-gradient(160deg, #1a0808, #0a0a0a); }
.srv2-card-bg.svc-3 { background: radial-gradient(ellipse at 50% 30%, rgba(232,201,184,0.22), transparent 55%), linear-gradient(160deg, #1a1812, #0a0a0a); }

.srv2-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 65%, rgba(0,0,0,0.92) 100%);
  pointer-events: none;
}

.srv2-card-body {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3vw, 44px);
}

.srv2-num {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 400;
  color: rgba(201, 169, 97, 0.25);
  line-height: 1;
  letter-spacing: -0.02em;
  position: absolute;
  top: clamp(20px, 2.5vw, 36px);
  left: clamp(28px, 3vw, 44px);
}

.srv2-tag {
  position: absolute;
  top: clamp(20px, 2.5vw, 36px);
  right: clamp(28px, 3vw, 44px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,97,0.5);
  padding: 5px 10px;
}

.srv2-card-top { display: none; }

.srv2-card-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

.srv2-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 24px;
  max-width: 90%;
}

.srv2-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease-out);
}
.srv2-cta:hover { gap: 16px; }
.srv2-cta svg { flex-shrink: 0; }

/* ============================ GALLERY TEASER ============================ */

.gallery-teaser {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.gallery-head {
  text-align: center;
  margin-bottom: 64px;
}
.gallery-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.gallery-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}
.gallery-em {
  font-style: italic;
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 360px 360px;
  gap: 4px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Image fills tile */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-tile:hover .gallery-img { transform: scale(1.05); }

/* Dark overlay with gold tag on hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-tile:hover .gallery-overlay { opacity: 1; }

.gallery-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
}

/* Shimmer sweep on hover */
.gallery-tile::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: left 0.7s ease;
  pointer-events: none;
}
.gallery-tile:hover::after { left: 160%; }

/* Row 1: img1=cols 1-2 (wide), img2=col 3 (narrow) */
/* Row 2: img3=col 1 (narrow), img4=cols 2-3 (wide) */
.gallery-grid .gallery-tile:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.gallery-grid .gallery-tile:nth-child(2) { grid-column: 3 / 4; grid-row: 1; }
.gallery-grid .gallery-tile:nth-child(3) { grid-column: 1 / 2; grid-row: 2; }
.gallery-grid .gallery-tile:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }

/* ============================ RESPONSIVE ADDITIONS ============================ */

@media (max-width: 1024px) {
  .srv2-grid { grid-template-columns: 1fr 1fr; }
  .srv2-card:last-child { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 300px 300px; }
}

@media (max-width: 820px) {
/* ============== COSTUMES BANNER ============== */
.costumes-banner {
  margin-top: 64px;
  text-align: center;
}
.costumes-banner-label {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 28px;
  display: block;
}
.costumes-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid rgba(201,169,97,0.15);
}

  .proof-item { padding: 24px 20px; }
  .proof-sep { display: none; }
  .proof-bar-inner { gap: 0; }
  .proof-item { border-bottom: 1px solid var(--line-soft); width: 50%; }
  .proof-item:nth-child(odd) { border-right: 1px solid var(--line-soft); }

  .srv2-grid { grid-template-columns: 1fr; gap: 2px; }
  .srv2-card:last-child { grid-column: span 1; }
  .srv2-card { min-height: 420px; }
  .srv2-card-body { min-height: 420px; }

  .costumes-banner { margin-top: 40px; }
  .costumes-banner-label { font-size: 20px; letter-spacing: 0.2em; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 220px);
  }
  .gallery-grid .gallery-tile:nth-child(1) { grid-column: 1 / 2; grid-row: 1; }
  .gallery-grid .gallery-tile:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
  .gallery-grid .gallery-tile:nth-child(3) { grid-column: 1 / 2; grid-row: 2; }
  .gallery-grid .gallery-tile:nth-child(4) { grid-column: 2 / 3; grid-row: 2; }
}
