/* Global Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #C9952A;
  --gold-light: #E4B84A;
  --bg: #0A0A0A;
  --surface: #111111;
  --surface2: #181818;
  --border: #242424;
  --text: #E8E8E8;
  --muted: #888888;
  --white: #FFFFFF;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #0d0d0d;
  color: #fff;
}

/* Navbar Core */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: #0d0d0d;
  border-bottom: 0.5px solid #2a2a2a;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid #c9a84c;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text .top {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
}

.logo-text .sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #c9a84c;
  text-transform: uppercase;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-logo-mark {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo-text span:first-child {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}

.footer-logo-text span:last-child {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-links a {
  font-size: 13px;
  color: #bbb;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a.active {
  border-bottom: 1.5px solid #c9a84c;
  padding-bottom: 2px;
}

/* CTA Button */
.nav-cta {
  border: 1.5px solid #c9a84c;
  background: transparent;
  color: #c9a84c;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: #c9a84c;
  color: #0d0d0d;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #c9a84c;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 72px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: #0d0d0d;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 105;
    border-top: 0.5px solid #2a2a2a;
  }

  .nav-links.nav-open {
    right: 0;
  }

  .nav-links a {
    font-size: 16px;
  }

  .nav-cta {
    display: none;
  }
}

/* FOOTER */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 48px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 18px;
  max-width: 240px;
}

.footer-col h3 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 13px; color: var(--muted); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 11px; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 11px; color: var(--muted); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--white); }
