/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:       #faf9f6;
  --bg2:      #f3f1eb;
  --bg3:      #e8e5dc;
  --text:     #1a1917;
  --text2:    #3d3c39;
  --text3:    #7a7870;
  --accent:   #d4b800;
  --accent2:  #b89f00;
  --accent-bg:#fdf8d6;
  --border:   #dedad2;
  --border2:  #c8c4ba;
  --white:    #ffffff;
  --black:    #0e0e0d;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h:  72px;
  --max-w:  1160px;
  --pad:    clamp(24px, 5vw, 80px);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }

h1 em, h2 em {
  font-style: italic;
  color: var(--accent2);
}

p {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.75;
}

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

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--text2); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 13px 30px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  border: 1.5px solid var(--border2);
  transition: border-color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--text); transform: translateY(-1px); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text2);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-text:hover { color: var(--text); }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--accent2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-cta {
  color: var(--text);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.2s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--pad);
  flex-direction: column;
  gap: 20px;
  z-index: 190;
}
.nav-mobile a {
  font-size: 16px;
  color: var(--text2);
  text-decoration: none;
}
.nav-mobile.open { display: flex; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: var(--bg);
  padding: 64px var(--pad) 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--accent); }

.footer-brand p {
  font-size: 14px;
  color: rgba(250,249,246,0.5);
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(250,249,246,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--bg); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.footer-contact a {
  font-size: 14px;
  color: rgba(250,249,246,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--bg); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(250,249,246,0.35);
}

/* ── UTILS ──────────────────────────────────────────────────── */
.max-w { max-width: var(--max-w); margin: 0 auto; }

.page-top { padding-top: calc(var(--nav-h) + 80px); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
