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

:root {
  --bg: #f7f5f0;
  --text: #1a1a18;
  --muted: #7a7870;
  --accent: #2c5f4a;
  --accent-light: #e8f0ec;
  --border: #dedad2;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── LANG BAR ── */
.lang-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 14px 48px;
  background: rgba(247,245,240,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.lang-btn {
  background: none;
  border: none;
  padding: 5px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--accent);
  color: var(--white);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 49px; left: 0; right: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  background: rgba(247,245,240,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}

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

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
  margin-right: 14px;
}
.btn:hover { background: var(--accent); color: var(--white); }
.btn.filled { background: var(--accent); color: var(--white); }
.btn.filled:hover { background: transparent; color: var(--accent); }

.btn-white {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
}
.btn-white:hover { background: rgba(255,255,255,0.15); }

/* ── SECTION BASE ── */
section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 48px;
}

/* ── ORASCOPE BOX ── */
.orascope-box {
  background: var(--accent);
  color: var(--white);
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.orascope-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 10px;
}
.orascope-box p { font-size: 14px; opacity: 0.8; max-width: 500px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
}

footer a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--accent); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-delay { animation: fadeUp 0.7s ease 0.15s both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav, .lang-bar { padding: 14px 24px; }
  section { padding-left: 24px; padding-right: 24px; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px 24px; }
  .orascope-box { flex-direction: column; padding: 40px 24px; }
  .nav-links { gap: 20px; }
}
