  ::selection {
  color: #FEFBF4;
  background: #f0a030;
  }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, background 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 24px;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.nav-links li { display: flex; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--pg-text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s, opacity 0.2s;
}
.nav-links a:hover { color: var(--pg-amber); opacity: 1; }
.nav-links a:focus-visible {
  outline: 2px solid rgba(240,160,48,0.55);
  outline-offset: 3px;
  border-radius: 8px;
}
.nav-cta {
  background: var(--pg-amber);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(240,160,48,0.25);
}
.nav-cta:hover {
  background: var(--pg-amber-hover);
  transform: translateY(-1px);
  color: white !important;
}
.nav-phone-line {
  display: none;
  white-space: nowrap;
}
.nav-phone {
  color: var(--pg-amber) !important;
  font-weight: 700 !important;
  font-size: 0.84rem !important;
}

/* Keep the shared header dimensions consistent across page templates. */
.nav .nav-inner {
  max-width: 1120px !important;
  gap: 18px !important;
  padding: 10px 24px !important;
}

.nav .nav-logo img {
  height: 50px !important;
  width: auto !important;
}

.nav .nav-links {
  gap: 22px !important;
}

.nav .nav-links a {
  font-weight: 600 !important;
  font-size: 0.9rem !important;
}

.nav .nav-cta {
  padding: 10px 22px !important;
  font-size: 0.88rem !important;
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(45,45,66,0.12);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 6px 18px rgba(45,45,66,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.mobile-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(45,45,66,0.12);
}
.mobile-toggle:focus-visible {
  outline: 2px solid rgba(240,160,48,0.4);
  outline-offset: 3px;
}
.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2.5px;
  background: var(--pg-heading);
  margin: 0;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── FOOTER ── */
.footer {
  background:
    radial-gradient(circle at 10% 6%, rgba(240,160,48,0.12), transparent 24%),
    linear-gradient(90deg, #403735 0%, #34313a 22%, #2b2c3c 54%, #252638 78%, #232437 100%);
  color: rgba(255,255,255,0.78);
  padding: 72px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(240,160,48,0.08), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(139,107,174,0.05), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.008) 24%, rgba(255,255,255,0) 58%);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1.45fr 0.95fr 1.05fr;
  gap: 46px;
}
.footer h4 {
  font-family: 'Nunito', sans-serif;
  color: white; font-size: 0.82rem;
  font-weight: 800; margin-bottom: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer p, .footer a {
  font-size: 0.9rem; color: rgba(255,255,255,0.68);
  text-decoration: none; line-height: 1.9;
}
.footer a:hover { color: var(--pg-amber); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links.footer-links--explore {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 0;
  row-gap: 2px;
  max-width: 220px;
}
.footer-brand-copy {
  max-width: 360px;
  margin-bottom: 16px;
}
.footer-contact-lines {
  display: grid;
  gap: 6px;
}
.footer-contact-label {
  color: rgba(255,255,255,0.44);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-contact-value {
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-contact-value a {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.footer-action-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  margin-bottom: 18px;
}
.footer-action-card p {
  margin-bottom: 10px;
  line-height: 1.75;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pg-amber) 0%, var(--pg-amber-hover) 100%);
  color: #fff !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 24px rgba(240,160,48,0.22);
}
.footer-cta-btn:hover {
  color: #fff !important;
  transform: translateY(-1px);
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 12px;
}
.footer-socials a {
  color: rgba(255,255,255,0.82);
  font-weight: 700;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1120px; margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.footer-logo {
  display: block;
  height: 56px;
  margin-bottom: 18px;
  opacity: 0.9;
  width: auto;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 980px) {
.nav-inner {
  flex-direction: row !important;
  align-items: center !important;
}
.nav-links { display: none; }
.nav-links.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 18px 24px 22px;
  gap: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.nav-links.open li { width: 100%; }
.nav-links.open .nav-phone-line { display: flex; white-space: normal; }
  .mobile-toggle { display: inline-flex; }
}

@media (max-width: 720px) {
  .nav-inner {
    flex-direction: row !important;
    align-items: center !important;
    padding: 10px 16px;
  }
  .nav-logo img {
    height: 44px !important;
  }
}

@media (max-width: 960px) {
.footer-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
.footer-brand-copy { margin-left: auto; margin-right: auto; }
.footer-contact-lines { justify-items: center; }
.footer-action-card { max-width: 420px; margin-left: auto; margin-right: auto; }
.footer-socials { justify-content: center; }
.footer-bottom { justify-content: center; text-align: center; }
.footer-logo {justify-self: center;width: auto;}
.footer-links.footer-links--explore {
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
}

@media (max-width: 720px) {
  .footer {
    padding: 56px 16px 24px;
  }
  .footer-inner {
    gap: 22px;
  }
  .footer h4 {
    margin-bottom: 12px;
    font-size: 0.78rem;
  }
  .footer-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-brand-copy {
    margin-bottom: 12px;
    font-size: 0.88rem;
    line-height: 1.75;
  }
  .footer-contact-lines { gap: 10px; }
  .footer-contact-label { font-size: 0.7rem; }
  .footer-contact-value,
  .footer-contact-value a,
  .footer p,
  .footer a {
    font-size: 0.88rem;
    line-height: 1.75;
  }
  .footer-links li { margin-bottom: 4px; }
  .footer-links.footer-links--explore {
    max-width: 320px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 2px;
  }
  .footer-action-card {
    padding: 14px 14px 12px;
    border-radius: 18px;
    margin-bottom: 14px;
  }
  .footer-action-card p {
    margin-bottom: 8px;
    font-size: 0.86rem;
    line-height: 1.65;
  }
  .footer-cta-btn {
    padding: 11px 18px;
    font-size: 0.9rem !important;
  }
  .footer-socials {
    gap: 8px 14px;
    margin-top: 8px;
  }
}
