/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Instrument+Sans:wght@300;400;500&family=DM+Mono:wght@400&display=swap');

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

/* ── TOKENS ── */
:root {
  --bg:           #F7F3EC;
  --bg-2:         #EFEBE2;
  --bg-3:         #E8E2D6;
  --white:        #FFFFFF;
  --ink:          #1A1916;
  --teal:         #1A9068;
  --teal-light:   #E3F4EE;
  --teal-border:  rgba(26,144,104,0.22);
  --teal-dim:     rgba(26,144,104,0.09);
  --text-1:       #1A1916;
  --text-2:       #5C5950;
  --text-3:       #9A9690;
  --border:       rgba(26,25,22,0.09);
  --border-2:     rgba(26,25,22,0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Instrument Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
}

/* ── BASE ── */
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 50% at 5% 10%, rgba(26,144,104,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 95% 90%, rgba(26,144,104,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── LAYOUT ── */
.page { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; }

/* ── NAV ── */
.nav {
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(247,243,236,0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px; color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.3px;
}

.nav-right { display: flex; align-items: center; gap: 10px; }

.lang-toggle {
  display: flex;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.lang-btn {
  padding: 6px 12px;
  font-size: 12px; font-weight: 500;
  font-family: var(--font-body);
  color: var(--text-3);
  background: none; border: none;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.3px;
}

.lang-btn.active { background: var(--white); color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.lang-btn:hover:not(.active) { color: var(--text-2); }

.nav-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--teal-border);
  border-radius: 100px;
  font-size: 11px; font-weight: 500;
  color: var(--teal);
  background: var(--teal-dim);
  letter-spacing: 0.3px;
}

.nav-badge-dot {
  width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

/* ── HERO ── */
.hero {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 88px 48px 72px;
  max-width: 820px;
  margin: 0 auto; width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero-eyebrow-line { width: 20px; height: 1px; background: var(--teal); opacity: 0.5; }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -2.5px; color: var(--ink);
  margin-bottom: 12px;
  opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-h1 em { font-style: italic; color: var(--teal); }

.hero-h1 .stroke { -webkit-text-stroke: 1.5px var(--bg-3); color: transparent; }

.hero-location {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-3);
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.7s ease 0.3s forwards;
}

.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: var(--text-2);
  max-width: 560px; margin: 0 auto;
  opacity: 0; animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero-sub strong { color: var(--ink); font-weight: 500; }

/* ── STATS ── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 48px;
  display: flex; justify-content: center;
  background: var(--white);
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
}

.stat {
  flex: 1; max-width: 220px;
  text-align: center;
  padding: 0 32px; position: relative;
}

.stat:not(:last-child)::after {
  content: ''; position: absolute;
  right: 0; top: 10%; height: 80%; width: 1px;
  background: var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 900;
  letter-spacing: -1.5px; color: var(--teal);
  line-height: 1; margin-bottom: 7px;
}

.stat-label { font-size: 12px; color: var(--text-2); font-weight: 300; line-height: 1.5; }

/* ── FEATURES ── */
.features {
  padding: 72px 48px;
  max-width: 900px; margin: 0 auto; width: 100%;
  opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards;
}

.features-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-3); text-align: center;
  margin-bottom: 36px;
}

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}

.feature { background: var(--white); padding: 28px 24px; transition: background 0.2s; }
.feature:hover { background: var(--bg); }

.feature-num { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); margin-bottom: 14px; letter-spacing: 1px; }

.feature-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; margin-bottom: 14px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.3px; color: var(--ink);
  margin-bottom: 8px;
}

.feature-desc { font-size: 13px; font-weight: 300; line-height: 1.65; color: var(--text-2); }

/* ── WHO ── */
.who {
  padding: 0 48px 72px;
  max-width: 900px; margin: 0 auto; width: 100%;
  opacity: 0; animation: fadeUp 0.8s ease 0.75s forwards;
}

.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.who-card:hover { border-color: var(--teal-border); box-shadow: 0 4px 20px rgba(26,144,104,0.06); }

.who-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }

.who-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}

.who-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.3px; color: var(--ink); }

.who-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.who-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; font-weight: 300;
  color: var(--text-2); line-height: 1.5;
}

.who-list-arrow { color: var(--teal); font-size: 11px; margin-top: 2px; flex-shrink: 0; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 48px;
  background: var(--white);
  text-align: center;
}

.footer-copy { font-size: 13px; color: var(--text-3); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── LANGUAGE LAYERS ── */
[data-lang]                    { display: none; }
[data-lang].active             { display: inline; }
.lang-block[data-lang]         { display: none; }
.lang-block[data-lang].active  { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .nav           { padding: 18px 20px; }
  .nav-badge     { display: none; }
  .hero          { padding: 56px 24px 48px; }
  .hero-h1       { letter-spacing: -1.5px; }
  .stats         { padding: 28px 20px; flex-wrap: wrap; gap: 20px; }
  .stat          { min-width: 120px; }
  .stat:not(:last-child)::after { display: none; }
  .features      { padding: 48px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .who           { padding: 0 20px 56px; }
  .who-grid      { grid-template-columns: 1fr; }
  .footer        { padding: 20px 24px; }
}
