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

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

:root {
  --bg: #FFFFFF;
  --surface: #F2EDE8;
  --surface2: #E8E0D8;
  --text: #1C1C1A;
  --muted: #6B6B63;
  --faint: #B4B2A9;
  --border: #DDD8CE;
  --accent: #B5845A;
  --accent-dark: #8B6340;
  --dark: #1A3A4A;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'IBM Plex Sans', system-ui, sans-serif;
  --max: 1100px;
  --pad: 48px;
}

html { scroll-behavior: smooth; }

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

/* ── NAVIGATION ── */
.nav {
  height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.nav-logo-name { font-family: var(--serif); font-size: 18px; color: #FFFFFF; letter-spacing: -0.3px; line-height: 1; }
.nav-logo-sub { font-size: 9px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 11.5px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: #FFFFFF; }
.nav-links a.active { color: var(--accent); border-bottom: 1.5px solid var(--accent); padding-bottom: 2px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #FFFFFF; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--dark); z-index: 200; flex-direction: column; padding: 24px var(--pad); }
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.mobile-close { background: none; border: none; font-size: 28px; cursor: pointer; color: #FFFFFF; line-height: 1; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0; }
.mobile-menu nav a { font-family: var(--serif); font-size: 32px; color: #FFFFFF; text-decoration: none; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu nav a:last-child { border-bottom: none; }
.mobile-cta { margin-top: 40px; }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: var(--sans); font-size: 13.5px; font-weight: 500; padding: 13px 26px; border-radius: 2px; cursor: pointer; letter-spacing: 0.02em; text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s; border: 1.5px solid transparent; }
.btn-primary { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-primary:hover { background: #0E2530; border-color: #0E2530; }
.btn-secondary { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-secondary:hover { background: var(--accent); color: #fff; }
.btn-sm { font-size: 12px; padding: 9px 18px; background: var(--accent); border-color: var(--accent); }
.btn-sm:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-full { width: 100%; text-align: center; display: block; }

/* ── LAYOUT ── */
.section { padding: 100px var(--pad); }
.section-sm { padding: 64px var(--pad); }
.section-alt { background: var(--surface); }
.section-dark { background: var(--dark); }
.inner { max-width: calc(var(--max) - 96px); margin: 0 auto; }
.inner-wide { max-width: var(--max); margin: 0 auto; }

.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.eyebrow-light { color: rgba(181,132,90,0.7); }

h1 { font-family: var(--serif); font-size: clamp(40px, 5vw, 58px); font-weight: 400; line-height: 1.08; letter-spacing: -0.5px; }
h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 400; line-height: 1.15; letter-spacing: -0.3px; }
h3 { font-family: var(--sans); font-size: 17px; font-weight: 500; line-height: 1.4; }
p.lead { font-size: 18px; line-height: 1.7; color: var(--muted); }
p.body { font-size: 16px; line-height: 1.75; color: var(--muted); }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 36px var(--pad); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; background: var(--surface); }
.footer-logo-name { font-family: var(--serif); font-size: 16px; color: var(--text); }
.footer-dba { font-size: 11px; font-style: italic; color: var(--faint); margin-top: 3px; }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 11.5px; color: var(--muted); text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 12px; color: var(--faint); }

/* ── CARDS ── */
.card { background: var(--bg); border: 1px solid var(--border); border-top: 3px solid var(--accent); border-radius: 2px; padding: 36px 32px; transition: border-color 0.2s; }
.card:hover { border-top-color: var(--dark); }
.card-link { font-size: 13.5px; font-weight: 500; color: var(--accent); text-decoration: none; letter-spacing: 0.02em; }
.card-link:hover { text-decoration: underline; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-2 { animation: fadeUp 0.7s 0.12s ease forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.7s 0.24s ease forwards; opacity: 0; }
.fade-up-4 { animation: fadeUp 0.7s 0.36s ease forwards; opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  :root { --pad: 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px var(--pad); }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
}
