:root {
  --navy: #2D3A47;
  --navy-deep: #1F2A35;
  --navy-soft: #4A5868;
  --orange: #E5612B;
  --orange-deep: #C84F1E;
  --cream: #F7F2EA;
  --paper: #FBF8F3;
  --line: #E5DDD0;
  --ink: #1A1F26;
  --muted: #6B7480;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }

/* ─── TOP MICRO-BAR ─── */
.topbar {
  background: var(--navy-deep);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  z-index: 10;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.topbar-left { opacity: 0.75; }
.topbar-right { display: flex; gap: 24px; }
.topbar a { color: inherit; text-decoration: none; opacity: 0.85; transition: opacity 0.2s; }
.topbar a:hover { opacity: 1; }
.dot { color: var(--orange); }

/* ─── NAVIGATION ─── */
nav.site-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--navy); }
.brand img { height: 38px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.brand-sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin-top: 4px; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--navy); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.01em; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: var(--orange); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(229, 97, 43, 0.25); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); }
.btn-ghost-light { background: transparent; color: var(--cream); border: 1px solid rgba(247, 242, 234, 0.4); }
.btn-ghost-light:hover { background: var(--cream); color: var(--navy-deep); }
.btn-orange { background: var(--orange); color: var(--cream); }
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(229, 97, 43, 0.35); }
.btn-large { padding: 18px 32px; font-size: 15px; }
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ─── SHARED TYPOGRAPHY ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 28px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--orange); }

.section { padding: 120px 0; position: relative; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy-deep); color: var(--cream); }
.section-head { max-width: 820px; margin-bottom: 72px; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin-bottom: 24px;
}
.section-dark .section-head h2 { color: var(--cream); }
.section-head h2 .italic { font-style: italic; font-weight: 300; color: var(--navy-soft); }
.section-dark .section-head h2 .italic { color: rgba(247, 242, 234, 0.6); }
.section-head h2 .accent { color: var(--orange); font-style: italic; }
.section-head p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--navy-soft);
  max-width: 700px;
}
.section-dark .section-head p { color: rgba(247, 242, 234, 0.75); }

/* ─── FOOTER ─── */
footer.site-footer { background: var(--navy-deep); color: var(--cream); padding: 80px 0 32px; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 24px; }
.footer-brand p { font-size: 14px; line-height: 1.65; color: rgba(247, 242, 234, 0.65); max-width: 280px; }
.footer-col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 20px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(247, 242, 234, 0.75); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(247, 242, 234, 0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(247, 242, 234, 0.5); letter-spacing: 0.05em; }

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE NAV/FOOTER ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 20px; }
  .topbar { font-size: 10px; }
  .topbar-left { display: none; }
  .nav-links { display: none; }
  .section { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
