/* ── PROMO BANNER ── */
.promo-banner {
  background: var(--gold);
  color: white;
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.promo-banner strong {
  font-size: 15px;
  font-weight: 700;
  background: rgba(255,255,255,0.22);
  padding: 2px 12px;
  border-radius: 20px;
}
.promo-banner a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,246,238,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo image */
.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 25px;
}
.nav-logo-img img {
  height: 62px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo-img:hover img { opacity: 0.8; }


.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); font-weight: 500; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal-light) !important; color: white !important; }
.nav-cta::after { display: none !important; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--deep);
  color: white;
  padding: 60px 0 32px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
}
.footer-logo span { color: #7DD8CC; }
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-weight: 300;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social-link:hover {
  border-color: #7DD8CC;
  background: rgba(125,216,204,0.1);
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #7DD8CC; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 20px 48px;
    gap: 16px;
    align-items: flex-start;
  }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Bebas font */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.nav-logo-text {
  font-family: 'Bebas Neue'; sans-serif;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--deep);
  letter-spacing: 1px;
  line-height: 1;
}

/* ── FOOTER PARTNERS ── */
.footer-partners {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  margin-bottom: 0;
}
.footer-partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-partners-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  white-space: nowrap;
}
.footer-partners-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.footer-partner-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s;
}
.footer-partner-link:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
}
.partner-icon { font-size: 20px; }
.footer-partner-link > span:nth-child(2) {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.partner-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}
.footer-partners-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  margin: 0 12px;
}

@media (max-width: 600px) {
  .footer-partners-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-partners-divider { display: none; }
  .footer-partners-links { flex-direction: column; gap: 10px; }
}
