/* ═══════════════════════════════════════════
   BASELI — Design System
   Refined editorial · Premium consulting
   ═══════════════════════════════════════════ */

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

:root {
  --cream:    #f0e8d8;
  --cream2:   #e8d5c0;
  --cream3:   #d9c4a8;
  --black:    #1c1c1a;
  --dark:     #2a2a27;
  --red:      #c72a09;
  --red2:     #a32207;
  --orange:   #d97f2b;
  --sand:     #cbac75;
  --muted:    #9a8e82;
  --light:    #f5ede3;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-logo:    'Bebas Neue', Impact, sans-serif;

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

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream3);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--red); }

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

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }
.nav-links a.active { color: var(--black); font-weight: 500; }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-lang a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 4px 8px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.nav-lang a.active {
  color: var(--black);
  border-color: var(--cream3);
}

.nav-lang a:hover { color: var(--black); }

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

/* ── SECTIONS ── */
section { padding: 100px 0; }
section.sm { padding: 60px 0; }
section.lg { padding: 140px 0; }

/* ── LABEL ── */
.label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 20px;
}

/* ── HEADINGS ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

h1 { font-size: clamp(52px, 7vw, 88px); }
h2 { font-size: clamp(36px, 4vw, 52px); }
h3 { font-size: clamp(24px, 3vw, 32px); }
h4 { font-size: 20px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-dark {
  background: var(--black);
  color: var(--light);
}

.btn-dark:hover {
  background: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--light);
}

.btn-red {
  background: var(--red);
  color: white;
}

.btn-red:hover { background: var(--red2); }

.btn svg {
  width: 14px; height: 14px;
  transition: transform 0.2s;
}

.btn:hover svg { transform: translateX(3px); }

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

.divider-full {
  width: 100%;
  height: 1px;
  background: var(--cream3);
  margin: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-logo-block .logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-logo-block .logo span { color: var(--red); }

.footer-logo-block p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  font-family: var(--font-display);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--cream); }

.footer-contact-item {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.footer-contact-item strong {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
