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

:root {
  --black: #0a0a0a;
  --white: #f0ede8;
  --gray: #141414;
  --mid: #262626;
  --muted: #777;
  --border: #222;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--gray);
  border-bottom: 1px solid var(--border);
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.topbar a { color: var(--muted); text-decoration: none; transition: color .2s; }
.topbar a:hover { color: var(--white); }
.topbar-left { display: flex; gap: 32px; }
.topbar-right { display: flex; gap: 24px; align-items: center; }
.topbar-right svg { width: 16px; height: 16px; fill: var(--muted); transition: fill .2s; cursor: pointer; }
.topbar-right svg:hover { fill: var(--white); }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--muted); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 28px;
  transition: background .2s;
}
.nav-cta:hover { background: #d0cdc8; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 72px;
  overflow: hidden;
  background: var(--black);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) grayscale(30%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.page-hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--muted); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.9;
  text-transform: uppercase;
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--muted); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 40px;
  transition: background .2s, transform .2s;
  display: inline-block;
}
.btn-primary:hover { background: #d0cdc8; transform: translateX(3px); }
.btn-ghost {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color .2s;
}
.btn-ghost::after { content: '→'; font-size: 16px; }
.btn-ghost:hover { color: var(--white); }
.btn-outline {
  border: 1px solid var(--border);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  display: inline-block;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--white);
  color: var(--black);
  padding: 80px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 20px 48px;
  white-space: nowrap;
  transition: transform .2s, background .2s;
  display: inline-block;
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-3px); }

/* ── FOOTER ── */
footer {
  background: var(--gray);
  border-top: 1px solid var(--border);
  padding: 80px 40px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-logo span { color: var(--muted); }
.footer-about { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 280px; margin-bottom: 28px; }
.footer-contact a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--white); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  color: var(--white);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); }

/* ── CONTENT SECTION ── */
.content-section { padding: 100px 40px; }
.content-section.bg-gray { background: var(--gray); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .topbar { display: none; }
  .page-hero { padding: 0 20px 52px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 60px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  footer { padding: 60px 20px 30px; }
  .content-section { padding: 60px 20px; }
}
