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

:root {
  /* ── PALETA ARGENTA (extraída del sitio real) ── */
  --white:       #ffffff;           /* fondo principal, nav               */
  --off-white:   #f7f6f4;           /* fondo secciones alternas           */
  --light-gray:  #f0eeeb;           /* fondo cards / bandas               */
  --border:      rgba(30,35,70,0.12); /* separadores suaves               */
  --border-gold: rgba(184,150,46,0.35); /* bordes con acento dorado       */

  --navy:        #1e2346;           /* azul marino del logo / hero dark   */
  --navy-mid:    #2b3268;           /* hover nav, títulos                 */
  --navy-light:  #3a4080;           /* acento secundario                  */

  --gold:        #b8962e;           /* dorado principal (CTA, activo)     */
  --gold-light:  #cba93a;           /* hover dorado                       */
  --gold-pale:   rgba(184,150,46,0.12); /* fondos dorado suave            */

  --text-dark:   #1e2346;           /* texto principal                    */
  --text-mid:    #4a4f6a;           /* texto secundario                   */
  --text-muted:  #8a8fa8;           /* texto terciario / pie              */
  --text-light:  #ffffff;           /* texto sobre fondos oscuros         */

  /* Hero overlay */
  --hero-overlay: rgba(20,26,60,0.62);

  /* Footer */
  --footer-bg:   #1a1f44;           /* azul marino oscuro para footer     */

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── TOP CONTACT BAR ── */
.top-bar {
  background: var(--navy);
  padding: 8px 5vw;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.top-bar-item:hover { color: var(--gold); }
.top-bar-icon {
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}
.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 900px) {
  .top-bar { display: none; }
}

/* ── LOGO IMAGE ── */
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  height: 56px;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  transition: opacity 0.3s ease;
}
.nav-logo:hover .nav-logo-img { opacity: 0.8; }

/* Logo en footer oscuro — brightness para que resalte */
.footer-logo {
  height: 110px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.15);
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 36px; left: 0; right: 0;
  z-index: 100;
  padding: 0 5vw;
  height: 88px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(30,35,70,0.06);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  transition: background 0.3s ease;
}
.nav-logo:hover .nav-logo-mark { background: var(--gold); }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: 4px;
  color: var(--navy);
  text-transform: uppercase;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 400;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}

.nav-links {
  display: flex; gap: 40px; list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); font-weight: 400; }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--white) !important;
  background: var(--gold);
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease !important;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--white) !important; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); transition: all 0.3s ease;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 14px 36px;
  transition: all 0.3s ease;
  cursor: pointer; border: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── SECTION HEADERS ── */
.section-tag {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── GOLD DIVIDER ── */
.divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 24px 0;
}
.divider-center { margin: 24px auto; }

/* ── FOOTER ── */
footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--gold);
  padding: 72px 5vw 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
}
.footer-brand-sub {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px; margin-bottom: 20px;
}
.footer-desc {
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; gap: 12px; margin-bottom: 16px;
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5;
}
.footer-contact-icon {
  color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 0.5px; }

/* ── FADE-IN ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 124px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: 32px 5vw;
    gap: 24px;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 8px 24px rgba(30,35,70,0.1);
  }
  .nav-links a { font-size: 15px; color: var(--navy); }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
