@import url('https://unpkg.com/inter-ui@3.19.3/inter.css');

:root {
  --noir: #FFFFFF;
  --noir2: #F8F7F4;
  --card: #FFFFFF;
  --card2: #F0EEE8;
  --border: #D0CEC4;
  --blanc: #1A1A1A;
  --gris: #555550;
  --gris2: #888880;
  --accent: #C8A830;
  --accent-dark: #5A3A00;
  --font-display: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--noir);
  color: var(--blanc);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; }
h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(24px, 3.5vw, 38px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
p { color: var(--gris); line-height: 1.8; }

.accent { color: var(--accent); }
.label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 12px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: #1A1A1A; text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--gris2); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #1A1A1A; }
.nav-cta { background: var(--accent); color: #FFFFFF; font-size: 13px; font-weight: 600; padding: 9px 20px; border-radius: 100px; text-decoration: none; transition: opacity 0.2s; }
.nav-cta:hover { opacity: 0.88; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: #1A1A1A; margin: 5px 0; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 100px; font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.2s; border: none; font-family: var(--font-display); }
.btn-primary { background: var(--accent); color: #FFFFFF; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #1A1A1A; border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: #1A1A1A; color: var(--accent); }
.btn-dark:hover { opacity: 0.88; }

.card { background: #FFFFFF; border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.10); transform: translateY(-2px); }

.tag { display: inline-block; background: var(--card2); border: 1px solid var(--border); border-radius: 100px; padding: 5px 14px; font-size: 12px; color: var(--gris); }
.tag-accent { background: #FFF8E6; border-color: rgba(200,168,48,0.3); color: #8A6A00; }

hr { border: none; border-top: 1px solid var(--border); margin: 0; }

footer { background: #1A1A1A; padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #FFFFFF; margin-bottom: 12px; display: block; }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 13px; color: #888880; line-height: 1.7; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #666; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: #888880; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: #FFFFFF; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid #2A2A2A; }
.footer-copy { font-size: 12px; color: #555; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.anim-1 { animation: fadeUp 0.6s ease both; }
.anim-2 { animation: fadeUp 0.6s 0.1s ease both; }
.anim-3 { animation: fadeUp 0.6s 0.2s ease both; }
.anim-4 { animation: fadeUp 0.6s 0.3s ease both; }

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  nav.open .nav-links { display: flex; flex-direction: column; gap: 0; position: absolute; top: 64px; left: 0; right: 0; background: #FFFFFF; padding: 16px 0; border-bottom: 1px solid #D0CEC4; }
  nav.open .nav-links a { padding: 14px 32px; display: block; font-size: 16px; }
  nav.open .nav-cta { display: block; margin: 8px 32px 16px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
