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

:root {
  --gold: #C9A227;
  --gold-light: #E8C84A;
  --gold-dark: #8B6914;
  --bg: #0D0B08;
  --bg-2: #14110C;
  --bg-card: rgba(201,162,39,0.06);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(201,162,39,0.18);
  --text: #F0EAD6;
  --text-muted: #9A8F7A;
  --white: #FFFFFF;
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}
.section-title span { color: var(--gold); font-style: italic; }
.gold-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 32px;
}
.gold-line.center { margin: 0 auto 32px; }

/* ── GOLD BUTTON ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color var(--transition);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: translateX(-101%);
  transition: transform var(--transition);
  z-index: 0;
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { color: var(--bg); }
.btn span { position: relative; z-index: 1; }
.btn-solid {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
}
.btn-solid::before { background: var(--gold-light); }
.btn-solid:hover { color: var(--bg); }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
header.scrolled {
  background: rgba(13,11,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 52px; width: auto; transition: transform var(--transition); }
.logo:hover img { transform: scale(1.05); }

/* nav */
nav { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  white-space: nowrap;
}
.lang-btn svg { transition: transform var(--transition); flex-shrink: 0; }
.lang-switcher.open .lang-btn svg { transform: rotate(180deg); }
.lang-flag { display: none; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 110px;
  background: rgba(13,11,8,0.97);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lang-dropdown a:last-child { border-bottom: none; }
.lang-dropdown a:hover, .lang-dropdown a.active { color: var(--gold); background: rgba(201,162,39,0.08); }

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,11,8,0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav .nav-links { flex-direction: column; gap: 32px; text-align: center; }
.mobile-nav .nav-links a { font-size: 1.5rem; letter-spacing: 0.2em; }
.mobile-nav .lang-switcher { margin-top: 20px; }
.mobile-nav .lang-dropdown { position: static; opacity: 1; pointer-events: all; transform: none; margin-top: 8px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,162,39,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(201,162,39,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,162,39,0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(201,162,39,0.03) 0%, transparent 30%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.3em; color: var(--text-muted); }
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── HERO PROSECCO GLASSES ── */
.hero-glass {
  position: absolute;
  top: 50%;
  transform: translateY(-42%);
  width: 120px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: glassAppear 2s ease 1.2s forwards;
  filter: drop-shadow(0 0 24px rgba(201,162,39,0.25));
}
.hero-glass-left  { left: 4%; }
.hero-glass-right {
  right: 4%;
  transform: translateY(-42%) scaleX(-1);
  animation: glassAppearR 2s ease 1.5s forwards;
}
@keyframes glassAppear  { to { opacity: 0.7; } }
@keyframes glassAppearR { to { opacity: 0.7; transform: translateY(-42%) scaleX(-1); } }

@keyframes bubbleRise {
  0%   { transform: translateY(0);     opacity: 0;   }
  8%   { opacity: 0.85; }
  85%  { opacity: 0.55; }
  100% { transform: translateY(-92px); opacity: 0;   }
}
.bubble {
  fill: rgba(232,200,74,0.65);
  stroke: rgba(255,255,255,0.15);
  stroke-width: 0.4;
  animation: bubbleRise linear infinite;
}

@media (max-width: 1150px) { .hero-glass { display: none; } }

/* ── ABOUT ── */
.about { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-ring {
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-ring::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.08);
}
.about-ring-inner {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.03));
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}
.about-ring-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.about-ring-label { font-size: 0.65rem; letter-spacing: 0.25em; color: var(--text-muted); text-transform: uppercase; }
.about-stats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-stat {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.about-stat:nth-child(1) { top: 10%; right: -20px; }
.about-stat:nth-child(2) { bottom: 10%; left: -20px; }
.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.about-stat-text { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--text-muted); text-transform: uppercase; }
.about-features { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.about-feature:hover { background: rgba(201,162,39,0.08); border-color: rgba(201,162,39,0.3); transform: translateX(6px); }
.about-feature-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.about-feature-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.about-feature-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* ── GALLERY ── */
.gallery { background: var(--bg); }
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  aspect-ratio: 4/3;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(201,162,39,0.05), rgba(201,162,39,0.01));
}
.gallery-placeholder-icon { font-size: 2rem; opacity: 0.4; }
.gallery-placeholder-text { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--text-muted); text-transform: uppercase; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-overlay-icon { font-size: 2rem; color: var(--gold); transform: scale(0.8); transition: transform var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay-icon { transform: scale(1); }
.gallery-item:hover { transform: scale(1.01); border-color: rgba(201,162,39,0.35); }
.gallery-item { transition: transform var(--transition), border-color var(--transition); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(10px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  border: 1px solid var(--glass-border);
}
.lightbox-content img, .lightbox-content .lightbox-placeholder {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: 600px;
  height: 400px;
  object-fit: cover;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close {
  position: absolute;
  top: -48px; right: 0;
  background: none; border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 8px;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 0.7; }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(201,162,39,0.15);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1.2rem;
}
.lightbox-nav:hover { background: rgba(201,162,39,0.3); }
.lightbox-prev { right: calc(100% + 16px); }
.lightbox-next { left: calc(100% + 16px); }

/* ── CONTACT ── */
.contact { background: var(--bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: var(--glass);
}
.contact-item-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item-value { font-size: 0.9rem; color: var(--text); }
.contact-socials { display: flex; gap: 12px; margin-top: 12px; }
.social-link {
  width: 44px; height: 44px;
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all var(--transition);
  background: var(--glass);
}
.social-link:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,162,39,0.08); transform: translateY(-3px); }

/* form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.form-input, .form-textarea {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: none;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201,162,39,0.05);
}
.form-textarea { min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; }
.form-success {
  display: none;
  padding: 20px;
  background: rgba(201,162,39,0.08);
  border: 1px solid var(--gold);
  text-align: center;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--glass-border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 28px;
}
.footer-logo img { height: 50px; opacity: 0.85; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em; }
.footer-gold-text { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-ring { width: 260px; height: 260px; }
  .about-ring-inner { width: 180px; height: 180px; }
  nav { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .lightbox-prev { right: auto; left: -48px; }
  .lightbox-next { left: auto; right: -48px; }
}
