.topbar {
  background: var(--topbar-bg);
  color: var(--topbar-text);
  font-size: 0.875rem;
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 0;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar__item a {
  color: var(--topbar-text);
  font-weight: 600;
}

.topbar__item a:hover {
  color: var(--primary-dark);
}

.topbar__cta {
  font-weight: 700;
  color: var(--topbar-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.topbar__social {
  display: flex;
  gap: 10px;
}

.topbar__social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(42, 33, 28, 0.12);
  color: var(--topbar-text);
  font-size: 0.75rem;
  font-weight: 700;
}

.topbar__social a:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img,
.logo svg {
  height: 48px;
  width: auto;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brown-deep);
}

.logo__tagline {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
}

.nav__link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-deep);
  transition: var(--transition);
}

.footer {
  background: var(--brown-deep);
  color: rgba(248, 245, 240, 0.9);
  padding-top: 72px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer a:hover {
  color: var(--gold-light);
}

.footer .form-group label,
.footer .form-group--checkbox label {
  color: rgba(248, 245, 240, 0.95);
}

.footer .form-group input[type="email"] {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  border-color: rgba(255, 255, 255, 0.25);
}

.footer .form-group input[type="email"]::placeholder {
  color: var(--text-light);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer__social a:hover {
  background: var(--primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.875rem;
}

.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal a {
  color: var(--gold-light);
  font-weight: 600;
}

.marquee {
  background: var(--primary-dark);
  color: var(--white);
  overflow: hidden;
  padding: 14px 0;
}

.marquee__track {
  display: flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}

.marquee__track span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.page-hero {
  background: linear-gradient(135deg, var(--brown-deep) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}
