:root {
  --navy: #0e2a4d;
  --navy-deep: #081b33;
  --gold: #b8912f;
  --gold-light: #d4b463;
  --paper: #faf8f4;
  --ink: #23303f;
  --hairline: rgba(184, 145, 47, 0.35);
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--paper);
}

.topbar {
  background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  height: 4px;
  width: 100%;
}

header {
  background: var(--paper);
  position: relative;
  box-shadow: 0 1px 0 var(--hairline), 0 8px 24px -18px rgba(14, 42, 77, 0.35);
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.6;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--hairline), 0 6px 16px -6px rgba(14, 42, 77, 0.45);
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.wordmark .name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.wordmark .tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  white-space: nowrap;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}

nav a:hover { color: var(--navy); }
nav a:hover::after { width: 100%; }

nav a.active {
  color: var(--navy);
  font-weight: 600;
}

nav a.active::after { width: 100%; }

.dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown::before {
  content: "▾";
  font-size: 11px;
  order: 2;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.dropdown:hover::before { transform: translateY(1px); }

.call-us {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.2px;
  padding: 13px 32px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -6px rgba(184, 145, 47, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.call-us:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -8px rgba(184, 145, 47, 0.7);
  filter: brightness(1.03);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

@media (max-width: 900px) {
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: 0 1px 0 var(--hairline);
    z-index: 20;
  }

  nav.open { max-height: 420px; }

  nav a {
    width: 100%;
    padding: 15px 24px;
    border-top: 1px solid rgba(14, 42, 77, 0.06);
  }

  nav a::after { display: none; }

  .call-us {
    width: calc(100% - 48px);
    margin: 12px 24px 18px;
  }

  .header-inner {
    position: relative;
    padding: 14px 20px;
  }

  .menu-toggle { display: flex; }

  .logo-badge {
    width: 46px;
    height: 46px;
  }

  .wordmark .name { font-size: 19px; }
}
