:root {
  --gs-primary: #9b1148;
  --gs-primary-dark: #5c1436;
  --gs-navy: #182845;
  --gs-gold: #e8bd4b;
  --gs-cream: #fff9f0;
  --gs-cream-2: #fffdf8;
  --gs-white: #ffffff;
  --gs-text: #1f2a3c;
  --gs-muted: #6b7285;
  --gs-shadow: 0 14px 35px rgba(24, 40, 69, 0.08);
  --gs-shadow-lg: 0 24px 50px rgba(24, 40, 69, 0.12);
  --gs-radius: 28px;
  --gs-ease: cubic-bezier(.2,.8,.2,1);
}

.gs-container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.gs-topbar {
  background: var(--gs-navy);
  color: #fff;
  font-size: 0.92rem;
  position: relative;
  z-index: 1200;
}

.gs-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.gs-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.gs-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
}

.gs-site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(255, 249, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(24, 40, 69, 0.08);
  box-shadow: 0 8px 18px rgba(24, 40, 69, 0.05);
}

.gs-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.gs-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.gs-brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(24, 40, 69, 0.12));
}

.gs-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gs-brand-text strong {
  display: block;
  color: var(--gs-text);
  font: 700 1.02rem/1.2 "Segoe UI", Inter, Arial, sans-serif;
}

.gs-brand-text small {
  color: var(--gs-muted);
  display: block;
  line-height: 1.3;
}

.gs-nav-toggle {
  display: none;
  border: 0;
  background: #fff;
  color: var(--gs-navy);
  box-shadow: var(--gs-shadow);
  padding: 0.72rem 0.9rem;
  border-radius: 16px;
  font-size: 1.2rem;
  cursor: pointer;
}

.gs-site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.gs-site-nav a {
  color: var(--gs-muted);
  font: 700 0.95rem/1.2 "Segoe UI", Inter, Arial, sans-serif;
  padding: 0.72rem 0.94rem;
  border-radius: 999px;
  transition: all 0.28s var(--gs-ease);
  text-decoration: none;
}

.gs-site-nav a:hover,
.gs-site-nav a.is-active {
  color: var(--gs-primary);
  background: #fff;
  box-shadow: 0 10px 30px rgba(24, 40, 69, 0.08);
}

.gs-site-footer {
  margin-top: 3rem;
  background: linear-gradient(180deg, var(--gs-cream) 0%, #fff 100%);
  border-top: 1px solid rgba(24, 40, 69, 0.08);
  color: var(--gs-text);
}

.gs-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.gs-footer-brand {
  align-items: flex-start;
}

.gs-footer-note {
  margin-top: 1rem;
  color: var(--gs-muted);
  line-height: 1.7;
}

.gs-site-footer h3 {
  margin: 0 0 1rem;
  color: var(--gs-navy);
  font: 700 1.1rem/1.3 "Segoe UI", Inter, Arial, sans-serif;
}

.gs-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
}

.gs-footer-links a,
.gs-footer-list li {
  color: var(--gs-muted);
  line-height: 1.6;
}

.gs-footer-links a:hover {
  color: var(--gs-primary);
}

.gs-footer-list {
  margin: 0;
  padding-left: 1rem;
}

.gs-footer-bottom {
  border-top: 1px solid rgba(24, 40, 69, 0.08);
  padding: 1rem 0 1.4rem;
  color: var(--gs-muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .gs-header-inner {
    flex-wrap: wrap;
  }

  .gs-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .gs-site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding-top: 0.75rem;
  }

  .gs-site-nav.is-open {
    display: flex;
  }

  .gs-site-nav a {
    background: rgba(255, 255, 255, 0.85);
  }

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

@media (max-width: 700px) {
  .gs-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gs-brand-text strong {
    font-size: 0.96rem;
  }

  .gs-brand-text small {
    font-size: 0.82rem;
  }

  .gs-footer-links {
    grid-template-columns: 1fr;
  }
}
