/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); z-index: 1000;
  background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color var(--transition-base);
}
.nav::after { display: none; }
.nav.scrolled { background: rgba(0, 0, 0, 0.95); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--space-lg); }
.nav__logo { display: flex; align-items: center; gap: var(--space-sm); z-index: 1001; }
.nav__logo-icon { height: 32px; width: auto; filter: brightness(0) invert(1); }
.nav__logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #fff; letter-spacing: -0.02em; }
.nav__logo img { height: 40px; width: auto; }
.nav__links { display: flex; align-items: center; gap: var(--space-lg); }
.nav__link {
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
  color: var(--color-text-light); transition: color var(--transition-fast); position: relative;
}
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--color-accent-gold); transition: width var(--transition-base); }
.nav__link:hover, .nav__link--active { color: #fff; }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link--gold { color: var(--color-accent-gold) !important; font-weight: 800; font-family: var(--font-display); }
.nav__link--gold:hover { color: var(--color-accent-olive) !important; }
.nav__link--gold::after { background: var(--color-accent-gold) !important; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; z-index: 1001; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: var(--transition-base); transform-origin: center; }
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav__mobile { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.98); flex-direction: column; align-items: center; justify-content: center; gap: var(--space-xl); z-index: 999; }
.nav__mobile.active { display: flex; }
.nav__mobile .nav__link { font-size: var(--text-xl); color: #fff; opacity: 0; transform: translateY(20px); animation: mobileNavIn 0.4s ease forwards; }
.nav__mobile .nav__link:nth-child(1) { animation-delay: 0.1s; }
.nav__mobile .nav__link:nth-child(2) { animation-delay: 0.15s; }
.nav__mobile .nav__link:nth-child(3) { animation-delay: 0.2s; }
.nav__mobile .nav__link:nth-child(4) { animation-delay: 0.25s; }
.nav__mobile .nav__link:nth-child(5) { animation-delay: 0.3s; }
.nav__mobile .nav__link:nth-child(6) { animation-delay: 0.35s; }
@keyframes mobileNavIn { to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1024px) { .nav__links { display: none; } .nav__hamburger { display: flex; } }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm);
  padding: 16px 36px; font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  border-radius: var(--radius-md); transition: all var(--transition-base); cursor: pointer; white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-olive));
  color: #000; border: none;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); filter: brightness(1.1); }
.btn--secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn--secondary:hover { border-color: var(--color-accent-gold); color: var(--color-accent-gold); transform: translateY(-2px); }
.btn--wine { background: var(--color-accent-wine); color: #fff; border: none; }
.btn--wine:hover { filter: brightness(1.2); transform: translateY(-2px); }
.btn--sm { padding: 10px 24px; font-size: var(--text-xs); }
.btn--lg { padding: 20px 48px; font-size: var(--text-base); }

/* ========== CARDS ========== */
.card {
  background: var(--color-bg-card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: var(--space-xl) var(--space-lg);
  transition: all var(--transition-base);
}
.card:hover { border-color: rgba(180,145,103,0.3); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.card__icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md); background: rgba(180,145,103,0.08);
  margin-bottom: var(--space-lg); color: var(--color-accent-gold);
}
.card__title { font-family: var(--font-display); font-size: var(--text-lg); color: #fff; margin-bottom: var(--space-sm); }
.card__text { font-size: var(--text-base); line-height: 1.7; margin-bottom: var(--space-md); }
.card__link { font-size: var(--text-sm); font-weight: 600; color: var(--color-accent-gold); display: inline-flex; align-items: center; gap: var(--space-xs); transition: gap var(--transition-fast); }
.card__link:hover { gap: var(--space-sm); }
.card__link::after { content: '\2192'; }

/* ========== BADGES ========== */
.badge {
  display: inline-flex; align-items: center; gap: var(--space-xs); padding: 6px 16px;
  font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: 100px; background: rgba(180,145,103,0.1); border: 1px solid rgba(180,145,103,0.2);
  color: var(--color-accent-gold);
}
.badge--gold { background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-olive)); color: #000; border: none; }

/* ========== SECTION TITLES ========== */
.section__label {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-accent-gold);
  margin-bottom: var(--space-md);
}
.section__title { margin-bottom: var(--space-md); }
.section__subtitle { font-size: var(--text-xl); max-width: 60ch; margin-bottom: var(--space-xl); color: var(--color-text-body); }
.section__header { margin-bottom: var(--space-2xl); }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin-left: auto; margin-right: auto; }

.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-olive)); margin-bottom: var(--space-lg); border-radius: 2px; }

/* ========== LINE REVEAL ANIMATION ========== */
.line-reveal { display: flex; align-items: center; justify-content: center; gap: var(--space-lg); margin-bottom: var(--space-md); }
.line-reveal__line { height: 2px; width: 0; background: linear-gradient(90deg, transparent, var(--color-accent-gold)); }
.line-reveal__line--right { background: linear-gradient(90deg, var(--color-accent-gold), transparent); }
.line-reveal__text { opacity: 0; transform: scale(0.8); margin-bottom: 0; white-space: nowrap; }
.visible .line-reveal__line { animation: lineGrow 0.4s ease forwards; }
.visible .line-reveal__line--right { animation: lineGrow 0.4s ease forwards; }
.visible .line-reveal__text { animation: textAppear 0.3s ease 0.35s forwards; }
@keyframes lineGrow { from { width: 0; } to { width: 200px; } }
@keyframes textAppear { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
.divider--center { margin-left: auto; margin-right: auto; }

/* ========== FOOTER ========== */
.footer { background: #000; border-top: 1px solid rgba(255,255,255,0.06); padding: var(--space-3xl) 0 var(--space-lg); }
.footer__grid { display: grid; grid-template-columns: 1fr auto auto; gap: var(--space-2xl); margin-bottom: var(--space-2xl); max-width: 1000px; margin-left: auto; margin-right: auto; align-items: start; justify-content: space-between; }
.footer__brand { max-width: 320px; }
.footer__logo { height: 40px; width: auto; margin-bottom: var(--space-md); filter: brightness(0) invert(1); }
.footer__desc { font-size: var(--text-sm); margin-bottom: var(--space-lg); color: var(--color-text-light); }
.footer__badges { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.footer__heading { font-family: var(--font-display); font-size: var(--text-xs); color: var(--color-accent-gold); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: var(--space-lg); }
.footer__link { display: block; font-size: var(--text-sm); color: var(--color-text-light); padding: var(--space-xs) 0; transition: color var(--transition-fast); }
.footer__link:hover { color: #fff; }
.footer__contact-item { display: flex; align-items: center; gap: var(--space-sm); font-size: var(--text-sm); margin-bottom: var(--space-sm); color: var(--color-text-light); }
.footer__contact-item a { color: var(--color-text-light); }
.footer__contact-item a:hover { color: #fff; }
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-accent-gold); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-lg); border-top: 1px solid rgba(255,255,255,0.06); font-size: var(--text-xs); color: var(--color-text-light); }
@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; gap: var(--space-sm); text-align: center; } }
