/* ════════════════════════════════════════════════
   global.css — Styles partagés KirghizAsia
   ════════════════════════════════════════════════ */

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

:root {
  --cream:      #F5F0E8;
  --dark:       #1A1714;
  --brown:      #5C3D2E;
  --gold:       #C8922A;
  --gold-light: #E8B84B;
  --rust:       #9B4F2A;
  --sand:       #D4B896;
  --sand-light: #EDE0CC;
  --text:       #2C2520;
  --text-muted: #7A6A5A;
  --white:      #FDFAF5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(245,240,232,0.97);
  box-shadow: 0 1px 0 rgba(92,61,46,0.12);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
nav.scrolled .nav-logo { color: var(--dark); }

.nav-logo img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  filter: none;
  transition: filter 0.3s;
}
nav.scrolled .nav-logo img { filter: none; }

/* Liens */
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.85);
  text-decoration: none;
  transition: color 0.3s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
nav.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); border-color: var(--gold-light); }
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active { color: var(--gold); border-color: var(--gold); }

/* Bouton CTA nav */
.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold-light);
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

/* Burger mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
nav.scrolled .nav-burger span { background: var(--dark); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--dark);
  padding: 6rem 3rem 3rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-mobile.open { opacity: 1; }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-mobile ul li a {
  display: block;
  padding: 1.2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--sand-light);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-mobile ul li a:hover { color: var(--gold-light); }
.nav-cta-mobile {
  display: inline-block;
  margin-top: 2rem;
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.8rem 2rem !important;
  font-size: 0.85rem !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif !important;
  border-radius: 2px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1140px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand img {
  height: 36px;
  width: 36px;
  object-fit: contain;
}
.footer-tagline { font-size: 0.82rem; color: rgba(212,184,150,0.5); line-height: 1.7; }
.footer-contact { margin-top: 1.5rem; }
.footer-contact a {
  display: block;
  font-size: 0.82rem;
  color: var(--gold-light);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--white); }
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212,184,150,0.4);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(212,184,150,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1140px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(212,184,150,0.3);
}

/* ── UTILITAIRES ── */
.container { max-width: 1140px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
h2 em { font-style: italic; color: var(--rust); }
.lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid;
  transition: color 0.3s, border-color 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile.open { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}
