/* ── NAVBAR ── */
.cp-header {
  background: var(--olive);
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 200;
}

/* Logo */
.cp-logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.cp-logo-area svg { width: 90px; height: 36px; }
.cp-logo-area a   { display: flex; flex-direction: column; gap: 2px; }

.cp-logo-sub {
  font-size: 7px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-weight: 300;
}

/* Links */
.cp-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.cp-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.cp-nav a:hover  { color: var(--white); }
.cp-nav a.active {
  color: var(--white);
  font-weight: 600;
  border-bottom: 1.5px solid var(--gold);
}

/* Hamburger */
.cp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.cp-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav */
.cp-mobile-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--olive-dark);
  flex-direction: column;
  z-index: 100;
  border-top: 1px solid rgba(200,169,110,0.3);
}
.cp-mobile-nav.open { display: flex; }

.cp-mobile-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.cp-mobile-nav a:hover  { background: rgba(255,255,255,0.05); color: var(--white); }
.cp-mobile-nav a.active { color: var(--white); border-left: 2px solid var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .cp-header  { padding: 0 24px; }
  .cp-nav     { display: none; }
  .cp-hamburger { display: flex; }
}
