/* ============================================================
   MESTIZA CHANGE & LEADERSHIP LAB — Site v2
   Inspired by osezjosephine.be: clean, airy, editorial
   ============================================================ */

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

:root {
  --navy:        #0C1226;
  --blue:        #1B4662;
  --blue-med:    #466677;
  --blue-light:  #7B909B;
  --blue-pale:   #ABBEC7;
  --orange:      #D6673A;
  --gold:        #E1AE66;
  --white:       #FEFEFE;
  --bg-muted:    #F2F3F1;
  --bg-section:  #EBF0F3;
  --gray:        #E3E4E3;
  --text:        #0C1226;

  --font-h: 'Montserrat', Arial, sans-serif;
  --font-b: 'Open Sans', Arial, sans-serif;

  --max-w: 1160px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo span { color: var(--gold); }
.nav-logo sup { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--orange);
}
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  border-bottom: none !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #c25a32 !important; }

.lang-switch {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-h);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.lang-switch a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.lang-switch a:hover, .lang-switch a.lang-active { color: var(--white); }
.lang-switch span { opacity: 0.3; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* ── PAGE HEADER (like OJ beige banner) ── */
.page-header {
  background: var(--bg-muted);
  padding: 1.75rem 0 1.5rem;
  border-bottom: 1px solid var(--gray);
}
.page-header h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
}

/* ── HERO (homepage) ── */
.hero {
  background: var(--bg-muted);
  padding: 5rem 0 0;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-text {}
.hero-tag {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(214,103,58,0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
  white-space: nowrap;
}
.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  color: var(--blue);
  font-style: normal;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--blue-med);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.hero-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(12,18,38,0.14);
  aspect-ratio: 4/5;
  background: var(--gray);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 0.65rem 0;
  margin: 2px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-h);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.68rem;
  color: var(--blue-pale);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── SECTIONS ── */
section { padding: 5rem 0; }
section.bg-muted { background: var(--bg-muted); }
section.bg-section { background: var(--bg-section); }
section.bg-dark { background: var(--navy); color: var(--white); }

.section-label {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}
section.bg-dark .section-title { color: var(--white); }
.section-intro {
  font-size: 1rem;
  color: var(--blue-med);
  max-width: 560px;
  line-height: 1.7;
}
section.bg-dark .section-intro { color: var(--blue-pale); }

/* ── TWO-COLUMN SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split.reverse > *:first-child { order: 2; }
.split.reverse > *:last-child { order: 1; }

.split-img {
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray);
  aspect-ratio: 4/5;
  box-shadow: 0 8px 32px rgba(12,18,38,0.1);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: 0 8px 28px rgba(12,18,38,0.1);
  border-color: var(--blue-pale);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(27,70,98,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
  font-size: 1.3rem;
}
.service-card h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--blue-med); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-h); font-size: 0.78rem; font-weight: 700;
  color: var(--orange); margin-top: 1rem;
  letter-spacing: 0.03em;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.6rem; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(171,190,199,0.2);
  border-radius: 8px;
  padding: 2rem;
}
.testimonial blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(254,254,254,0.85);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial cite {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: normal;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 60%, #1B4662);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p { color: var(--blue-pale); font-size: 1rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── ABOUT PAGE ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.about-portrait {
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray);
  aspect-ratio: 3/4;
  box-shadow: 0 8px 32px rgba(12,18,38,0.12);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }

.about-body h2 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.about-body h2:first-child { margin-top: 0; }
.about-body p {
  color: var(--blue-med);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-body p strong { color: var(--navy); }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.value-item {
  background: var(--bg-section);
  border-radius: 6px;
  padding: 1.25rem 1.25rem;
  border-left: 3px solid var(--orange);
}
.value-item h4 {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.value-item p { font-size: 0.82rem; color: var(--blue-med); margin: 0; line-height: 1.5; }

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: rgba(225,174,102,0.06);
  border-radius: 0 6px 6px 0;
  margin: 2rem 0;
}
.about-quote blockquote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-h); font-weight: 700;
  font-size: 0.875rem; letter-spacing: 0.03em;
  padding: 0.75rem 1.5rem; border-radius: 5px;
  border: none; cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #c25a32; }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo {
  font-family: var(--font-h); font-weight: 700; font-size: 1rem;
  color: var(--white); margin-bottom: 0.75rem;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; color: var(--blue-light); line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-h); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-pale);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.85rem; color: var(--blue-light); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--blue-light);
}

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--gray); margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero .container,
  .split,
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse > *:first-child { order: unset; }
  .split.reverse > *:last-child { order: unset; }
  .hero-img, .split-img { aspect-ratio: 16/9; }
  .about-portrait { aspect-ratio: 4/3; position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--navy); padding: 1rem 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-toggle { display: block; }
  .stats-bar .container { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}
