@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,400&family=Montserrat:wght@300;400&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #0a0a0a;
  color: #f5f2ec;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

/* NAVBAR */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 65px;
  background: #0a0a0a;
  border-bottom: 1px solid #2e2e2e;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-icon {
  width: 38px; height: 38px;
  border: 1px solid #c9a84c;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #c9a84c;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; letter-spacing: 2px;
  color: #f5f2ec; line-height: 1.3;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  text-decoration: none; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #888; transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: #c9a84c; }

.nav-idioma { display: flex; gap: 10px; font-size: 11px; letter-spacing: 2px; }
.nav-idioma span { cursor: pointer; color: #555; }
.nav-idioma span.active { color: #c9a84c; }

/* HERO */
.hero {
  width: 100%; height: 70vh;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1400&q=80') center/cover;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content { position: relative; text-align: center; }

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px; font-weight: 300;
  line-height: 1.1; margin-bottom: 1rem;
}

.hero-content h1 em { font-style: italic; color: #c9a84c; }

.hero-content p {
  font-size: 12px; letter-spacing: 2px;
  color: #aaa; margin-bottom: 2rem;
}

.btn {
  display: inline-block; padding: 12px 30px;
  border: 1px solid #c9a84c; color: #c9a84c;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s;
}

.btn:hover { background: #c9a84c; color: #0a0a0a; }

/* SECCIÓN HEADER */
.section-header {
  display: flex; align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #1c1c1c;
  background: #111;
}

.section-title {
  flex: 1; text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300;
  color: #aaa; letter-spacing: 1px;
}

/* SECCIÓN CITA */
.section-quote {
  background: #111; padding: 4rem 2rem; text-align: center;
}

.divider {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, #c9a84c, transparent);
  margin: 0 auto 2rem;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 20px;
  font-weight: 300; line-height: 1.9;
  color: #ccc; max-width: 520px; margin: 0 auto;
}

/* PILARES */
.section-pillars { padding: 4rem 2rem; background: #0a0a0a; }

.pillars-label {
  text-align: center; font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: #c9a84c; margin-bottom: 3rem;
}

.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: #2e2e2e; max-width: 900px; margin: 0 auto;
}

.pillar { background: #0a0a0a; padding: 2.5rem 2rem; }

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; color: rgba(201,168,76,0.2);
  margin-bottom: 1rem;
}

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  color: #f5f2ec; margin-bottom: 0.8rem;
}

.pillar p { font-size: 12px; line-height: 2; color: #777; }

/* CIFRAS */
.section-numbers {
  padding: 4rem 2rem; background: #111;
  border-top: 1px solid #2e2e2e; border-bottom: 1px solid #2e2e2e;
}

.numbers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 700px; margin: 0 auto; text-align: center;
}

.number-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px; font-weight: 300;
  color: #c9a84c; line-height: 1;
}

.number-label {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: #555; margin-top: 0.5rem;
}

/* CONTACTO */
.section-contact {
  padding: 5rem 2rem; background: #0a0a0a; text-align: center;
}

.contact-label {
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: #c9a84c; margin-bottom: 1rem;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300;
  color: #f5f2ec; margin-bottom: 0.8rem;
}

.contact-title em { font-style: italic; color: #c9a84c; }

.contact-sub { font-size: 12px; color: #555; margin-bottom: 2.5rem; }

.contact-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: #c9a84c;
  text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 3px;
}

/* FOOTER */
footer {
  background: #111; border-top: 1px solid #2e2e2e;
  padding: 3rem 2rem;
}

.footer-inner {
  display: flex; justify-content: space-between;
  gap: 2rem; max-width: 900px; margin: 0 auto 2rem;
}

.footer-tagline { font-size: 11px; color: #555; line-height: 1.8; margin-top: 0.8rem; }

.footer-col h4 {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: #c9a84c; margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul a { text-decoration: none; font-size: 12px; color: #555; }
.footer-col ul a:hover { color: #f5f2ec; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #1c1c1c; padding-top: 1.5rem;
  max-width: 900px; margin: 0 auto;
}

.footer-copy { font-size: 11px; color: #333; }

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 11px; color: #333; text-decoration: none; }
.footer-legal a:hover { color: #c9a84c; }