:root {
  --gs-primary: #7a0f1f;
  --gs-primary-dark: #4f0d18;
  --gs-navy: #2e1b18;
  --gs-gold: #d4af37;
  --gs-cream: #fff8f2;
  --gs-cream-2: #fffcf8;
  --gs-white: #ffffff;
  --gs-text: #2c1810;
  --gs-muted: #6f5a52;
  --gs-shadow: 0 14px 35px rgba(44, 24, 16, 0.08);
  --gs-shadow-lg: 0 24px 50px rgba(44, 24, 16, 0.12);
  --gs-radius: 26px;
  --gs-ease: cubic-bezier(.2,.8,.2,1);
}

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

.gs-topbar {
  background: linear-gradient(90deg, var(--gs-primary-dark), var(--gs-primary));
  color: #fff;
  font-size: 0.92rem;
  position: relative;
  z-index: 1500;
}

.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;
}

body > header.gs-shared-header.gs-site-header.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1400 !important;
  background: rgba(255, 248, 242, 0.92) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(122, 15, 31, 0.08) !important;
  box-shadow: 0 8px 18px rgba(44, 24, 16, 0.05) !important;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

body > header.gs-shared-header.gs-site-header.site-header.scrolled,
body > header.gs-shared-header.gs-site-header.site-header.compact {
  background: rgba(255, 248, 242, 0.97) !important;
  box-shadow: 0 12px 24px rgba(44, 24, 16, 0.08) !important;
}

.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: cover;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: var(--gs-shadow);
  background: #fff;
}

.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-primary-dark);
  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(44, 24, 16, 0.08);
}

footer.gs-shared-footer.gs-site-footer {
  margin-top: 3rem !important;
  background: linear-gradient(180deg, var(--gs-cream) 0%, #fff 100%) !important;
  border-top: 1px solid rgba(122, 15, 31, 0.08) !important;
  color: var(--gs-text) !important;
  padding: 0 !important;
}

.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;
}

footer.gs-shared-footer.gs-site-footer h3 {
  margin: 0 0 1rem;
  color: var(--gs-primary-dark);
  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(122, 15, 31, 0.08);
  padding: 1rem 0 1.4rem;
  color: var(--gs-muted);
  font-size: 0.92rem;
}

.gs-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--gs-primary);
  color: #fff;
  box-shadow: var(--gs-shadow-lg);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 1600;
}

.gs-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.gs-hidden-helper {
  display: none !important;
}

@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.98rem;
  }

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