/* ═══════════════════════════════════════
   MISSION EUROPA — Global Styles
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Instrument+Sans:wght@400;500;600&display=swap');

:root {
  --black:   #0d0d0d;
  --white:   #ffffff;
  --off-white: #f7f6f3;
  --gray-100: #f0eeea;
  --gray-200: #e2dfd8;
  --gray-300: #c8c4bc;
  --gray-500: #8a877f;
  --gray-700: #3d3b37;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Instrument Sans', sans-serif;

  --max-w: 1160px;
  --nav-h: 68px;
  --r: 2px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ui);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p  { font-size: 0.9375rem; line-height: 1.7; color: var(--gray-700); }

/* ── Layout ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.divider { border: none; border-top: 1px solid var(--gray-200); }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.nav__wrap {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
}
.nav__logo {
  font-family: var(--font-ui);
  font-size: 0.78rem; font-weight: 600;
  line-height: 1.35; letter-spacing: 0.01em;
  max-width: 150px;
}
.nav__menu {
  display: flex; align-items: center; gap: 32px;
}
.nav__menu a {
  font-size: 0.8125rem; color: var(--gray-500);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav__menu a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--black);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__menu a:hover { color: var(--black); }
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 20px; }
.nav__lang {
  display: flex; gap: 4px;
  font-size: 0.72rem; letter-spacing: 0.08em; color: var(--gray-300);
}
.nav__lang span { cursor: pointer; padding: 2px 3px; transition: color 0.15s; }
.nav__lang span:hover,
.nav__lang span.on { color: var(--black); font-weight: 600; }
.nav__burger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--black); transition: 0.25s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 0.8125rem;
  font-weight: 500; letter-spacing: 0.04em;
  padding: 13px 28px; border-radius: var(--r);
  cursor: pointer; border: none; transition: 0.2s var(--ease);
  white-space: nowrap;
}
.btn-dark {
  background: var(--black); color: var(--white);
}
.btn-dark:hover { background: var(--gray-700); }
.btn-ghost {
  background: transparent; color: var(--black);
  border: 1px solid var(--gray-300);
}
.btn-ghost:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: 0.75rem; }
.btn-arrow::after { content: '→'; }

/* ── FOOTER ── */
.footer {
  background: var(--black); color: var(--white);
  padding: 48px 0 28px;
}
.footer__grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer__logo {
  font-family: var(--font-ui); font-size: 0.78rem;
  font-weight: 600; line-height: 1.5; color: rgba(255,255,255,0.9);
}
.footer__nav { display: flex; flex-wrap: wrap; gap: 6px 24px; }
.footer__nav a {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer__nav a:hover { color: var(--white); }
.footer__copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ── PLACEHOLDER ── */
.ph {
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-300); font-size: 0.75rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: var(--r);
}

/* ── CHIP / TAG ── */
.chip {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.8rem; color: var(--gray-700);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.au  { animation: fadeUp 0.7s var(--ease) both; }
.au2 { animation: fadeUp 0.7s var(--ease) 0.12s both; }
.au3 { animation: fadeUp 0.7s var(--ease) 0.24s both; }
.au4 { animation: fadeUp 0.7s var(--ease) 0.36s both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  :root { --nav-h: 60px; }
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .nav__menu.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); padding: 24px 32px 32px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    gap: 20px;
  }
  .nav__menu.open a { font-size: 1rem; }
  .section { padding: 64px 0; }
  .wrap { padding: 0 20px; }
}
@media (max-width: 600px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}
