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

:root {
  --lime: #c8e535;
  --lime-dark: #a8c420;
  --lime-pale: #f4fad0;
  --black: #111111;
  --white: #fafaf8;
  --warm: #f5f2ec;
  --gray: #888;
  --gray-light: #e8e5de;
  --border: #e0ddd6;
  --text-muted: #666;
  --max: 1080px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(36px, 6vw, 68px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
p { color: var(--text-muted); line-height: 1.75; }
a { color: inherit; text-decoration: none; }
strong { color: var(--black); font-weight: 500; }

/* ── NAV ──────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 48px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,250,248,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-logo {
  font-family: var(--font-serif);
  font-size: 15px; font-weight: 700;
  color: var(--black); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.nav-logo-dot {
  width: 28px; height: 28px;
  background: var(--lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  color: var(--black); flex-shrink: 0;
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: #555;
  letter-spacing: 0.01em; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--lime-dark);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--black); }

.btn-nav {
  background: var(--black) !important; color: var(--lime) !important;
  padding: 9px 22px; border-radius: 6px;
  font-weight: 500 !important; font-size: 13px !important;
  transition: background 0.2s, transform 0.15s !important;
  white-space: nowrap;
}
.btn-nav:hover { background: #2a2a2a !important; transform: translateY(-1px); }
.btn-nav::after { display: none !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 24px 32px; flex-direction: column; gap: 20px;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 16px; color: #444; }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
  cursor: pointer; border: none; transition: all 0.2s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--black); color: var(--lime); }
.btn-primary:hover { background: #2a2a2a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-secondary { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-secondary:hover { background: var(--black); color: var(--lime); }
.btn-lime { background: var(--lime); color: var(--black); }
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-2px); }

/* ── LAYOUT HELPERS ───────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  font-family: var(--font-sans); font-size: 11px;
  font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--lime-dark);
  margin-bottom: 16px; display: block;
}

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

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--black); color: rgba(255,255,255,0.5);
  padding: 56px 0 36px;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; display: flex; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-sans); font-size: 11px;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.55);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding: 24px 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--lime); }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  padding: 140px 0 72px;
  background: var(--warm);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { color: var(--lime-dark); }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 20px; }
.page-hero p { font-size: 18px; max-width: 560px; }

/* ── ANIMATIONS ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.22s; }
.fade-up-3 { animation-delay: 0.34s; }
.fade-up-4 { animation-delay: 0.46s; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom { padding: 24px 24px 0; }
}
