/* =====================================================
   TOPBAR / NAV
   ===================================================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(14px, 1.8vw, 24px) var(--px);
  min-height: var(--nav-h);
  background: rgba(254, 248, 240, 0.95);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-bottom: 1px solid var(--color-gold-border);
}

.topbar__logo {
  display: block;
  height: clamp(28px, 3vw, 40px);
  width: auto;
}

.topbar__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--color-cream-alt);
  border-top: 1px solid var(--color-gold-border);
  padding: clamp(60px, 8vw, 121px) var(--px) clamp(60px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.footer__top {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-lg);
  flex-wrap: wrap;
}

.footer__brand {
  flex: 0 1 384px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.footer__logo {
  height: clamp(36px, 4vw, 48px);
  width: auto;
}

.footer__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.footer__tagline {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.625;
  color: var(--color-body);
}

.footer__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: var(--gap-lg);
  flex-wrap: wrap;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 24px);
  min-width: 140px;
}

.footer__col-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: var(--color-dark);
  text-transform: uppercase;
}

.footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__col-list--wide {
  gap: 16px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer__contact-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item span,
.footer__col-list a,
.footer__col-list span {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--color-footer-text);
}

.footer__col-list a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  border-top: 1px solid rgba(150, 113, 40, 0.3);
  padding-top: 9px;
}

.footer__copy {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--color-footer-text);
  opacity: 0.6;
}

/* =====================================================
   CTA SECTION (shared)
   ===================================================== */
.cta-section {
  position: relative;
  background: var(--color-dark);
  padding: var(--py-cta) var(--px-cta);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section__grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  pointer-events: none;
}

.cta-section__grid-cell {
  border: 1px solid rgba(254, 248, 240, 0.2);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 3vw, 40px);
  max-width: 896px;
  width: 100%;
}

.cta-section__heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: normal;
  font-size: var(--fs-hero);
  line-height: var(--lh-hero);
  color: var(--color-cream);
  text-align: center;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* =====================================================
   STAT / VERTICAL BORDER
   ===================================================== */
.stat {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--color-gold);
  padding-left: clamp(12px, 1.5vw, 18px);
}

.stat__value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-stat);
  line-height: 1.25;
  color: var(--color-dark);
}

.stat__label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: var(--color-body);
  text-transform: uppercase;
}

/* =====================================================
   RESPONSIVE MOBILE
   ===================================================== */
@media (max-width: 600px) {
  .footer__nav {
    justify-content: flex-start;
  }
}
