:root {
  --color-bg: #080808;
  --color-surface: rgba(255, 255, 255, 0.05);
  --color-surface-strong: rgba(12, 12, 12, 0.92);
  --color-text: #f4efe4;
  --color-muted: rgba(244, 239, 228, 0.72);
  --color-border: rgba(201, 168, 76, 0.18);
  --color-gold: #c9a84c;
  --color-red: #5c0f17;
  --color-red-soft: rgba(128, 18, 32, 0.35);
  --color-whatsapp: #25d366;
  --shadow-glow: 0 18px 45px rgba(201, 168, 76, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1320px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(201, 168, 76, 0.08), transparent 28%),
    linear-gradient(180deg, #111 0%, var(--color-bg) 24%, #050505 100%);
  color: var(--color-text);
}

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

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

button,
input,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-gold);
  letter-spacing: 0.28em;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.eyebrow--red {
  color: #d45d6f;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
}

h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 22px 0;
  transition:
    background-color 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium),
    backdrop-filter 0.45s var(--ease-premium),
    padding 0.45s var(--ease-premium);
}

.navbar.is-scrolled {
  padding: 16px 0;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.navbar__brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.navbar__brand span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.navbar__nav {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.navbar__nav a,
.contact-list a,
.social-links a,
.footer__meta a {
  transition: color 0.3s ease;
}

.navbar__nav a:hover,
.contact-list a:hover,
.social-links a:hover,
.footer__meta a:hover {
  color: var(--color-gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8, 8, 8, 0.55), rgba(8, 8, 8, 0.84)),
    url("https://images.unsplash.com/photo-1519751138087-5bf79df62d5b?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  transform: scale(1.04);
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(8, 8, 8, 0.4) 55%, rgba(8, 8, 8, 0.72) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 100%;
}

.hero__logo {
  width: clamp(150px, 20vw, 210px);
  height: auto;
  margin: 0 auto 26px;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(201, 168, 76, 0.18));
}

.hero__lead {
  margin-top: 24px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--color-text);
}

.hero__sublead {
  margin-top: 10px;
  font-size: 1.02rem;
}

.hero__actions,
.cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  transition:
    transform 0.35s var(--ease-premium),
    box-shadow 0.35s var(--ease-premium),
    border-color 0.35s var(--ease-premium),
    background-color 0.35s var(--ease-premium),
    color 0.35s var(--ease-premium);
}

.button--primary {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.95), rgba(163, 125, 34, 0.92));
  color: #111;
  font-weight: 700;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(201, 168, 76, 0.55);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.section-copy,
.experience__content,
.section-heading,
.cta__copy {
  max-width: 680px;
}

.section-copy p + p,
.experience__content p,
.cta__copy p {
  margin-top: 18px;
}

.visual-card,
.gallery-item,
.feature-card,
.cta__panel,
.upcoming-card {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  backdrop-filter: blur(10px);
}

.visual-card {
  min-height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.visual-card img,
.gallery-item img {
  transition: transform 0.9s var(--ease-premium);
}

.visual-card:hover img,
.gallery-item:hover img {
  transform: scale(1.05);
}

.features {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.feature-grid,
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.feature-card,
.upcoming-card {
  padding: 34px 30px;
  border-radius: var(--radius-md);
}

.feature-card__number,
.upcoming-card__status {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.feature-card__number {
  color: var(--color-gold);
}

.upcoming {
  position: relative;
}

.upcoming::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto auto;
  width: 34vw;
  height: 34vw;
  background: radial-gradient(circle, rgba(122, 21, 34, 0.22), transparent 72%);
  pointer-events: none;
}

.upcoming-card {
  background:
    linear-gradient(180deg, rgba(92, 15, 23, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
}

.upcoming-card__status {
  color: #e7b9bf;
}

.experience {
  text-align: center;
}

.experience__content {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-top: 44px;
}

.gallery-item {
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
  min-height: 584px;
}

.gallery-item:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(92, 15, 23, 0.15), rgba(8, 8, 8, 0)),
    var(--color-surface);
}

.cta__panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
  padding: 42px;
  border-radius: var(--radius-lg);
}

.contact-list,
.social-links,
.footer__meta {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a,
.social-links a,
.contact-list span,
.footer__meta a,
.footer__brand span {
  color: rgba(255, 255, 255, 0.72);
}

.cta__form {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.cta__form input,
.cta__form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.cta__form textarea {
  min-height: 150px;
  padding: 16px 18px;
}

.cta__form input:focus,
.cta__form textarea:focus {
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
  transform: translateY(-1px);
}

.form-note {
  min-height: 24px;
  color: var(--color-gold);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s var(--ease-premium),
    transform 0.35s var(--ease-premium);
}

.form-note.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.12);
  color: #dffce9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.35s var(--ease-premium),
    box-shadow 0.35s var(--ease-premium),
    background-color 0.35s var(--ease-premium);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: rgba(37, 211, 102, 0.2);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.18);
}

/* Initial state for load animation in the hero */
.hero-load {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s var(--ease-premium),
    transform 0.9s var(--ease-premium);
}

.hero-load.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Shared reveal state used by IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s var(--ease-premium),
    transform 0.8s var(--ease-premium);
}

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

/* Stagger delay is driven by a CSS custom property set in JavaScript */
.stagger-item {
  transition-delay: var(--stagger-delay, 0ms);
}

@media (max-width: 980px) {
  .split-grid,
  .feature-grid,
  .upcoming-grid,
  .cta__panel,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .navbar__nav {
    display: none;
  }

  .visual-card,
  .gallery-item:nth-child(1) {
    min-height: 420px;
  }

  .cta__actions,
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 92px 0;
  }

  .container {
    width: min(calc(1320px - 32px), var(--container));
  }

  .navbar {
    padding: 18px 0;
  }

  .navbar__brand span {
    display: none;
  }

  .visual-card,
  .gallery-item,
  .gallery-item:nth-child(1) {
    min-height: 320px;
  }

  .feature-card,
  .upcoming-card,
  .cta__panel {
    padding: 28px 22px;
  }

  .footer__inner,
  .footer__brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;

  opacity: 1; /* JS controls fade */
  will-change: opacity, transform;
}

.hero-scroll-label {
  font-family: var(--font-body);
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hero-scroll-label::before {
  content: "";
  width: 1px;
  height: 12px;
  background: var(--color-gold);
  box-shadow: 0 0 8px var(--color-gold), 0 0 14px rgba(212,175,55,.6);
  animation: goldPulse 1.8s ease-in-out infinite;
}

.hero-scroll-line {
  width: 2px;
  height: 72px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;

  background: rgba(201,168,76,0.12);
}

/* moving energy beam */
.hero-scroll-line::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 45%;
  top: -40%;

  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 215, 120, 1),
    rgba(201,168,76,0.9),
    transparent
  );

  filter: blur(0.5px);
  box-shadow: 0 0 18px rgba(201,168,76,0.6);

  transform: translateY(-120%);
  animation: beamFlow 1.4s linear infinite;

  opacity: var(--beam-intensity, 0.4);
}
.hero-scroll-label::before {
  display: none;
}

@keyframes beamFlow {
  0% { transform: translateY(-120%); }
  100% { transform: translateY(220%); }
}

@keyframes float{
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%{ transform: translateX(-50%) translateY(-6px); }
}

@keyframes energyFlow{
  0%{
    transform: translateY(-120%);
    opacity: 0;
  }
  50%{
    opacity: 1;
  }
  100%{
    transform: translateY(220%);
    opacity: 0;
  }
}

@keyframes scrollBeat{
  0%,100%{opacity:.2}
  50%{opacity:.9}
}

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

@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}
@keyframes goldPulse{
  0%,100%{
    opacity:.4;
    transform:scaleY(.9);
  }
  50%{
    opacity:1;
    transform:scaleY(1.2);
  }
}

.hero-scroll{
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: opacity, transform;
}

/* =========================
   PREMIUM FOOTER GRID
   ========================= */

.footer {
  padding: 90px 0 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  background: linear-gradient(180deg, #050505, #070707);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.footer-heading {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.footer-text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.footer-col a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-social a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 6px;
}


/* =========================
   LEGAL PAGES STYLING
   ========================= */

.legal-page {
  padding: 140px 0 100px;
  background:
    radial-gradient(circle at top, rgba(201, 168, 76, 0.08), transparent 35%),
    linear-gradient(180deg, #0a0a0a, #050505);
}

.legal-page .container {
  max-width: 900px;
}

.legal-page h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 30px;

  background: linear-gradient(135deg, #c9a84c, #f4efe4);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.legal-page h3 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.legal-page p {
  color: var(--color-muted);
  line-height: 1.9;
  margin-top: 10px;
}

.legal-page .container {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* subtle gold accent line */
.legal-page .container::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  margin-bottom: 26px;
  opacity: 0.7;
}

/* mobile */
@media (max-width: 640px) {
  .legal-page {
    padding: 110px 0 70px;
  }

  .legal-page .container {
    padding: 26px;
  }
}

/* =========================
   SOCIAL ICONS FOOTER
   ========================= */

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: rgba(255, 255, 255, 0.75);

  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.footer-social a i {
  font-size: 1rem;
}

.footer-social a:hover {
  color: var(--color-gold);
  border-color: rgba(201, 168, 76, 0.6);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.12);
}

/* =========================
   WHATSAPP PULSE EFFECT
   ========================= */

.footer-social a .fa-whatsapp {
  position: relative;
}

/* pulse ring */
.footer-social a .fa-whatsapp::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.35);
  animation: whatsappPulse 2.4s ease-in-out infinite;
  opacity: 0;
}

/* glow + micro pulse */
.footer-social a:has(.fa-whatsapp) {
  color: #25d366;
}

.footer-social a:has(.fa-whatsapp):hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.18);
}

/* animation */
@keyframes whatsappPulse {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* =========================
   SOCIAL ICON BASE ANIMATION
   ========================= */

.footer-social .social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(255, 255, 255, 0.02);

  color: rgba(255, 255, 255, 0.75);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* icon size */
.footer-social .social-icon i {
  font-size: 1rem;
}

/* hover lift + glow */
.footer-social .social-icon:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--color-gold);
  box-shadow: 0 12px 28px rgba(201, 168, 76, 0.15);
}

/* subtle light sweep on hover */
.footer-social .social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.footer-social .social-icon:hover::before {
  opacity: 1;
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-premium);
}

.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, 320px);
  gap: 22px;
  margin-top: 44px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.03);
  min-height: 100%;
}

.gallery-item--large {
  grid-row: span 2;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
    transform 0.9s var(--ease-premium),
    filter 0.9s var(--ease-premium);
}

/* premium hover */
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* subtle cinematic overlay */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 20%,
      rgba(0,0,0,0.12) 100%
    );

  pointer-events: none;
}

/* MOBILE */
@media (max-width: 900px) {

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item--large {
    grid-row: auto;
    min-height: 340px;
  }

}

.visual-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.9s var(--ease-premium);
}

.visual-card:hover video {
  transform: scale(1.05);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-item--small {
  opacity: 0.92;
  filter: saturate(0.95) contrast(0.98);
}

.gallery-item,
.visual-card {
  will-change: transform;
}

/* =========================
   HAMBURGER BUTTON
   ========================= */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2001;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-gold);
  transition: 0.35s ease;
  transform-origin: center;
}

/* =========================
   MOBILE MENU OVERLAY
   ========================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(18px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;

  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
  transition: 0.4s ease;

  z-index: 1500;
}

.mobile-menu a {
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--color-gold);
}

/* =========================
   OPEN STATE
   ========================= */

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}


/* hamburger → X animation */
body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   MOBILE ONLY
   ========================= */

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .navbar__nav {
    display: none;
  }
}

/* prevent scroll when menu open */
body.menu-open {
  overflow: hidden;
}

.navbar__inner {
  position: relative;
  z-index: 2000;
}

.navbar__brand img {
  display: block;
  max-width: 54px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .navbar__nav {
    display: none;
  }
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.language-switch a {
  transition: color 0.3s ease;
}

.language-switch a:hover {
  color: var(--color-gold);
}