:root {
  --base: #101722;
  --card-bg: #1a2434;
  --dark-surface: #0b1119;
  --accent: #c99a61;
  --accent-dark: #b6844e;
  --detail: #d9e2ef;
  --body-text: #f7f9fc;
  --muted: #92a3bb;
  --border: #2b3546;
  --surface-glow: rgba(201, 154, 97, 0.14);
  --surface-glow-strong: rgba(201, 154, 97, 0.22);
}

body {
  background:
    radial-gradient(circle at top right, rgba(201, 154, 97, 0.08), transparent 22%),
    radial-gradient(circle at left center, rgba(61, 94, 132, 0.12), transparent 30%),
    linear-gradient(180deg, #0d131d 0%, #101722 42%, #0e1520 100%);
}

a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.navbar-shell {
  background: rgba(10, 16, 24, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 154, 97, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  padding: 0.72rem 0;
}

.shell-nav-wrap {
  gap: 0.8rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-lockup img {
  width: 186px;
  height: 52px;
  display: block;
}

.shell-toggler {
  border-color: rgba(201, 154, 97, 0.35);
  border-radius: 12px;
  padding: 0.45rem 0.7rem;
}

.shell-nav-list {
  gap: 0.15rem;
  flex-wrap: nowrap;
}

.shell-nav-link {
  color: var(--detail) !important;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.55rem 0.72rem !important;
  border-radius: 10px;
  position: relative;
  white-space: nowrap;
}

.shell-nav-link:hover,
.shell-nav-link.is-active {
  color: var(--body-text) !important;
  background: rgba(201, 154, 97, 0.08);
  box-shadow: inset 0 0 0 1px rgba(201, 154, 97, 0.12);
}

.shell-nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 20px;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--accent);
}

.shell-action {
  margin-left: 0.55rem;
}

.shell-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 0.62rem 1.15rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.shell-btn:hover {
  transform: translateY(-1px);
}

.shell-btn-primary {
  color: #0c1016;
  background: linear-gradient(180deg, #deb37e 0%, var(--accent) 100%);
  box-shadow: 0 10px 20px rgba(201, 154, 97, 0.18);
}

.shell-btn-primary:hover {
  color: #0c1016;
  background: linear-gradient(180deg, #e4bb89 0%, var(--accent-dark) 100%);
}

.shell-btn-secondary {
  color: var(--detail);
  border: 1px solid rgba(201, 154, 97, 0.32);
  background: rgba(255, 255, 255, 0.02);
}

.shell-btn-secondary:hover {
  color: var(--body-text);
  border-color: rgba(201, 154, 97, 0.48);
  background: rgba(201, 154, 97, 0.08);
}

.site-footer-shell {
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(11, 17, 25, 0.98), rgba(10, 15, 23, 1)),
    radial-gradient(circle at top left, rgba(201, 154, 97, 0.06), transparent 24%);
  border-top: 1px solid rgba(201, 154, 97, 0.12);
  padding: 3.5rem 0 1.45rem;
}

.footer-shell-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 0.88fr));
  gap: 1.5rem;
}

.footer-shell-brand {
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(201, 154, 97, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-shell-logo {
  display: inline-flex;
  align-items: center;
}

.footer-shell-logo img {
  width: 194px;
  height: 54px;
}

.footer-shell-brand p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-shell-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-shell-badges span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(201, 154, 97, 0.08);
  border: 1px solid rgba(201, 154, 97, 0.16);
  color: var(--detail);
  font-size: 0.76rem;
  font-weight: 600;
}

.footer-shell-column h6 {
  margin: 0 0 1rem;
  color: var(--body-text);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-shell-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-shell-column li + li {
  margin-top: 0.6rem;
}

.footer-shell-column a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-shell-column a:hover {
  color: var(--accent);
}

.footer-shell-contact a {
  display: inline-flex;
  align-items: center;
  color: var(--detail);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-shell-contact a:hover {
  color: var(--accent);
}

.footer-shell-contact p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.78;
}

.footer-shell-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.9rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(201, 154, 97, 0.1);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-shell-bottom a {
  color: var(--detail);
}

.footer-shell-bottom a:hover {
  color: var(--accent);
}

@media (max-width: 991.98px) {
  .navbar-shell {
    padding: 0.65rem 0;
  }

  .shell-nav-list {
    margin-top: 1rem;
    padding: 0.55rem 0;
    border-top: 1px solid rgba(201, 154, 97, 0.12);
    flex-wrap: wrap;
  }

  .shell-action {
    margin-left: 0;
  }

  .shell-btn {
    width: 100%;
    margin-top: 0.25rem;
  }

  .shell-quicklinks-row {
    gap: 0.65rem 0.95rem;
    padding: 0.85rem 0;
  }

  .footer-shell-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .footer-shell-top {
    grid-template-columns: 1fr;
  }

  .footer-shell-brand {
    padding: 1.2rem;
  }
}
