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

:root {
  --accent:     #E8550A;
  --dark:       #0A0A0B;
  --mid-dark:   #111113;
  --bg:         #F9F7F4;
  --white:      #FFFFFF;
  --off-white:  #F0EDE8;
  --mid-gray:   #888880;
  --light-gray: #C8C4BC;
  --serif:      Georgia, 'Times New Roman', serif;
  --sans:       -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--dark); color: var(--white); font-family: var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 52px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: rgba(10,10,11,0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 22px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover { color: rgba(255,255,255,0.78); }
.nav-links a.active { color: rgba(255,255,255,0.85); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-cta {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  background: var(--accent); padding: 7px 18px; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 32px 36px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-brand .footer-logo { font-family: var(--serif); font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.55); }
.footer-brand .footer-sub { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,0.22); margin-top: 6px; }
.footer-links { display: flex; gap: 24px; list-style: none; align-items: center; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.62); }
.footer-copy {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.18); padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── COMMON ── */
.eyebrow { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 20px; }
.eyebrow-gray { color: var(--mid-gray); }

.container    { max-width: 680px;  margin: 0 auto; }
.container-md { max-width: 860px;  margin: 0 auto; }
.container-lg { max-width: 1080px; margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 15px 30px;
  border: none; cursor: pointer; transition: opacity 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-accent  { background: var(--accent); color: var(--white); }
.btn-accent:hover { opacity: 0.87; }
.btn-outline { background: transparent; color: rgba(255,255,255,0.6); border: 1.5px solid rgba(255,255,255,0.16); }
.btn-outline:hover { border-color: rgba(255,255,255,0.48); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--accent); }
.btn-dark-outline { background: transparent; color: var(--dark); border: 1.5px solid rgba(0,0,0,0.18); }
.btn-dark-outline:hover { border-color: var(--dark); }

/* ── HAMBURGER ── */
.nav-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 32px; height: 32px; background: none; border: none;
  cursor: pointer; padding: 4px; margin-left: 8px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.7); transition: all 0.2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.nav-mobile {
  display: none; position: fixed; top: 52px; left: 0; right: 0; z-index: 99;
  background: rgba(10,10,11,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; padding: 12px 0 20px; }
.nav-mobile ul li a {
  display: block; padding: 14px 24px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.15s;
}
.nav-mobile ul li a:hover,
.nav-mobile ul li a.active { color: var(--white); }
.nav-mobile ul li a.mobile-cta {
  color: var(--accent); border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px; padding-top: 18px;
}


@media (max-width: 700px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-logo img { height: 18px; }
  footer { padding: 40px 20px 32px; }
  .footer-top { flex-direction: column; gap: 20px; }
}
