/* =========================================================
   TOP ANNOUNCEMENT BAR
   ========================================================= */
.announcement-bar {
  background: var(--tabs-maroon-deep);
  color: var(--tabs-cream);
  text-align: center;
  font-size: 12px;
  letter-spacing: .02em;
  padding: 8px 16px;
  border-bottom: 1px solid var(--tabs-border);
}

/* =========================================================
   SITE HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 8, 8, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tabs-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-logo .logo-main {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .08em;
  color: var(--tabs-gold);
  font-weight: 700;
}

.site-logo .logo-sub {
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--tabs-text-faint);
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--tabs-text-dim);
  letter-spacing: .01em;
  transition: color .15s ease;
  position: relative;
}

.primary-nav a:hover,
.primary-nav .current-menu-item>a {
  color: var(--tabs-cream);
}

.primary-nav .menu-item-has-children {
  position: relative;
}

.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 220px;
  background: var(--tabs-surface);
  border: 1px solid var(--tabs-border);
  border-radius: var(--radius-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .18s ease;
  box-shadow: var(--shadow-card);
}

.primary-nav .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav .sub-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
}

.primary-nav .sub-menu a:hover {
  background: var(--tabs-surface-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-search {
  display: flex;
  align-items: center;
  background: var(--tabs-surface);
  border: 1px solid var(--tabs-border);
  border-radius: 999px;
  padding: 8px 16px;
  min-width: 220px;
  gap: 8px;
}

.header-search input {
  background: transparent;
  border: none;
  color: var(--tabs-text);
  font-size: 13px;
  flex: 1;
  outline: none;
}

.header-search input::placeholder {
  color: var(--tabs-text-faint);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-icon {
  position: relative;
  color: var(--tabs-text-dim);
}

.header-icon:hover {
  color: var(--tabs-gold);
}

.icon-count {
  position: absolute;
  top: -8px;
  right: -9px;
  background: var(--tabs-maroon-bright);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-cta {
  margin-left: 4px;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--tabs-cream);
}

@media (max-width: 1024px) {
  .primary-nav {
    display: none;
  }

  .header-search {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .primary-nav.nav-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tabs-black-2);
    border-bottom: 1px solid var(--tabs-border);
    padding: 12px 24px 20px;
  }

  .primary-nav.nav-open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .primary-nav.nav-open ul li {
    width: 100%;
    border-bottom: 1px solid var(--tabs-border);
  }

  .primary-nav.nav-open a {
    display: block;
    padding: 12px 0;
  }

  .primary-nav.nav-open .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    background: none;
    padding-left: 12px;
    display: none;
  }
}

@media (max-width: 640px) {

  .header-inner {
    padding: 16px;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .header-icons {
    gap: 10px;
  }

  .site-logo .logo-main {
    font-size: 20px;
  }
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
/* =========================
   TRUST STRIP
========================= */

.trust-strip {
  padding: 0;
  background: transparent;
  border: 0;
  position: relative;
  margin-top: -35px;
  z-index: 5;
}


.trust-strip .container {
  max-width: 1120px;
  background: rgba(18, 14, 14, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  padding: 18px 25px;
  gap: 0;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .35),
    inset 0 0 30px rgba(255, 255, 255, .02);
}


/* ITEM */

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  position: relative;
}


/* divider */

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  height: 35px;
  width: 1px;
  background: rgba(255, 255, 255, .15);
}


/* ICON */

.trust-item svg {
  width: 28px;
  height: 28px;
  color: #d7b45a;
  stroke-width: 1.5;
}


/* TITLE */

.trust-item .t-title {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  color: #f4e8d0;
  white-space: nowrap;
}


/* SUB TEXT */

.trust-item .t-sub {
  font-size: 11px;
  line-height: 15px;
  color: #aaa39a;
  white-space: nowrap;
}


/* Responsive */

@media(max-width:900px) {

  .trust-strip {
    margin-top: 20px;
    padding: 0 20px;
  }

  .trust-strip .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .trust-item {
    padding: 10px;
  }

  .trust-item:not(:last-child)::after {
    display: none;
  }

}


@media(max-width:550px) {

  .trust-strip .container {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: center;
  }

}

/* =========================================================
   SITE FOOTER
   ========================================================= */
.site-footer {
  background: var(--tabs-black-2);
  border-top: 1px solid var(--tabs-border);
  padding-top: 56px;
}

.footer-newsletter {
  background: linear-gradient(90deg, #2a1313 0%, #321616 50%, #2a1313 100%);
  border: 1px solid rgba(255, 215, 170, 0.08);
  border-radius: 12px;
  padding: 22px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
  position: relative;
  margin-top: 20px;
  overflow: hidden;
}

/* Soft glow */
.footer-newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(255, 180, 120, .08),
      transparent 70%);
  pointer-events: none;
}

.footer-newsletter>div {
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.footer-newsletter h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 6px;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  font-family: Georgia, serif;
}

.footer-newsletter h3 svg {
  width: 54px;
  height: 54px;
  color: #d4a44a;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.footer-newsletter p {
  margin: 0;
  color: #bdb3b3;
  font-size: 14px;
}

.newsletter-input {
  width: 100%;
}

.newsletter-note {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #9b8f8f;
  padding-left: 2px;
}

/* Form */

.newsletter-form {
  display: flex;
  align-items: center;
  max-width: 470px;
  width: 100%;
  z-index: 2;
}

.newsletter-form input {
  flex: 1;
  height: 52px;
  padding: 0 18px;
  background: rgba(0, 0, 0, .15);
  border: 1px solid rgba(255, 255, 255, .08);
  border-right: 0;
  color: #fff;
  border-radius: 8px 0 0 8px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #8f8585;
}

.newsletter-form button {
  height: 52px;
  padding: 0 28px;
  border: none;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(#e9d08a, #c8963b);
  color: #2c1a0a;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.newsletter-form button:hover {
  filter: brightness(1.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tabs-cream);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: var(--tabs-text-dim);
}

.footer-col ul a:hover {
  color: var(--tabs-gold);
}

.footer-brand .logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--tabs-gold);
}

.footer-brand p {
  font-size: 13px;
  margin: 14px 0 20px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--tabs-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tabs-text-dim);
}

.footer-social a:hover {
  border-color: var(--tabs-gold);
  color: var(--tabs-gold);
}

.footer-bottom {
  border-top: 1px solid var(--tabs-border);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--tabs-text-faint);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--tabs-text-faint);
  margin-left: 16px;
}

.footer-payments {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-payments span {
  border: 1px solid var(--tabs-border);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 10px;
  color: var(--tabs-text-faint);
}

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

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .newsletter-form {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom a {
    margin: 0 8px;
  }
}

.footer-social-gallery .section-head {
  display: block !important;
}

.footer-social-gallery .section-head h2 {
  text-align: center !important;
}

.section {
  padding: 25px 0;
}