/* ==========================================================================
   Natyarpana — Premium Footer (CTA strip + main footer)
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap");

/* --------------------------------------------------------------------------
   Section 1 — Luxury CTA strip
   -------------------------------------------------------------------------- */
.np-footer-cta {
  --np-maroon: #4a0f0f;
  --np-maroon-deep: #2a0808;
  --np-black: #050505;
  --np-gold: #c8a44d;
  --np-gold-soft: #e0c27a;

  position: relative;
  min-height: clamp(160px, 20vw, 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 5vw, 56px) clamp(20px, 4vw, 32px);
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--np-maroon) 0%,
    var(--np-maroon-deep) 42%,
    var(--np-black) 100%
  );
}

.np-footer-cta__texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(230, 192, 104, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 75% 25%, rgba(212, 175, 55, 0.45), transparent),
    radial-gradient(1px 1px at 50% 70%, rgba(230, 192, 104, 0.35), transparent),
    radial-gradient(1px 1px at 88% 80%, rgba(212, 175, 55, 0.4), transparent);
  animation: np-footer-cta-particles 18s ease-in-out infinite alternate;
}

@keyframes np-footer-cta-particles {
  0% {
    opacity: 0.28;
    transform: translateY(0);
  }
  100% {
    opacity: 0.42;
    transform: translateY(-8px);
  }
}

.np-footer-cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 40% 50% at 50% 85%,
      rgba(230, 192, 104, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 30% 25% at 15% 20%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 30% 25% at 85% 20%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
}

.np-footer-cta__floral {
  position: absolute;
  width: clamp(80px, 12vw, 140px);
  height: auto;
  opacity: 0.22;
  pointer-events: none;
  filter: sepia(0.4) saturate(1.3) brightness(1.1);
}

.np-footer-cta__floral--tl {
  top: 12px;
  left: clamp(8px, 3vw, 40px);
}
.np-footer-cta__floral--tr {
  top: 12px;
  right: clamp(8px, 3vw, 40px);
  transform: scaleX(-1);
}
.np-footer-cta__floral--bl {
  bottom: 24px;
  left: clamp(8px, 3vw, 40px);
  transform: scaleY(-1);
  opacity: 0.14;
}
.np-footer-cta__floral--br {
  bottom: 24px;
  right: clamp(8px, 3vw, 40px);
  transform: scale(-1, -1);
  opacity: 0.14;
}

.np-footer-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.np-footer-cta__divider {
  display: block;
  width: min(96px, 36%);
  height: 1px;
  margin: 0 auto 14px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--np-gold-soft),
    var(--np-gold),
    var(--np-gold-soft),
    transparent
  );
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.np-footer-cta__title {
  margin: 0 0 10px;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  background: linear-gradient(180deg, #f0d88a 0%, var(--np-gold-soft) 40%, var(--np-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 24px rgba(212, 175, 55, 0.25);
  text-transform: capitalize;
}

.np-footer-cta__sub {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(245, 233, 208, 0.88);
}

.np-footer-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a0808;
  border: 1px solid rgba(230, 192, 104, 0.85);
  border-radius: 6px;
  background: linear-gradient(135deg, #f0d88a 0%, var(--np-gold-soft) 45%, var(--np-gold) 100%);
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.25);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.np-footer-cta__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.np-footer-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.45);
  border-color: #fff3c4;
  color: #1a0808;
}

.np-footer-cta__btn:hover::after {
  transform: translateX(120%);
}

/* --------------------------------------------------------------------------
   Section 2 — Main footer
   -------------------------------------------------------------------------- */
.np-footer {
  --np-bg: #050505;
  --np-gold: #c8a44d;
  --np-gold-soft: #e0c27a;
  --np-border: rgba(200, 164, 77, 0.45);
  --np-text: #f5e7c1;
  --np-text-muted: #d6c6a5;

  background-color: var(--np-bg);
  color: var(--np-text);
  position: relative;
}

.np-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(0, 0, 0, 0.6) 0%, transparent 45%);
}

.np-footer__texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 36px,
    rgba(212, 175, 55, 0.15) 36px,
    rgba(212, 175, 55, 0.15) 37px
  );
}

.np-footer__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(230, 192, 104, 0.5), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(212, 175, 55, 0.4), transparent);
}

.np-footer__main {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--np-border);
  padding: clamp(40px, 5vw, 56px) clamp(20px, 4vw, 40px) clamp(32px, 4vw, 44px);
}

.np-footer__container {
  max-width: 1320px;
  margin: 0 auto;
}

.np-footer__grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1.1fr 0.95fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

/* Brand column */
.np-footer__brand-logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 10px;
}

.np-footer__brand-logo {
  display: block;
  width: var(--np-logo-footer-width, clamp(140px, 15vw, 180px));
  height: auto;
}

.np-footer__brand-name {
  margin: 0 0 8px;
  font-family: "Cinzel", serif;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--np-gold-soft);
}

.np-footer__brand-desc {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--np-text-muted);
}

.np-footer__brand-since {
  margin: 0 0 14px;
  font-family: "Cinzel", serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--np-gold);
}

.np-footer__social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.np-footer__social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(138, 106, 47, 0.65);
  color: var(--np-gold-soft);
  font-size: 13px;
  text-decoration: none;
  transition:
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.np-footer__social a:hover {
  border-color: var(--np-gold);
  color: var(--np-gold-soft);
  box-shadow: 0 0 14px rgba(200, 164, 77, 0.3);
  transform: translateY(-2px);
}

/* Column headings */
.np-footer__heading {
  margin: 0 0 12px;
  font-family: "Cinzel", serif;
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--np-gold-soft);
}

/* Contact & Quick Links — larger columns */
.np-footer__col:nth-child(2) .np-footer__heading,
.np-footer__col:nth-child(3) .np-footer__heading {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  margin-bottom: 16px;
}

/* Contact */
.np-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.np-footer__col:nth-child(2) .np-footer__contact-list li {
  gap: 12px;
  margin-bottom: 14px;
}

.np-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.np-footer__contact-list li:last-child {
  margin-bottom: 0;
}

.np-footer__col:nth-child(2) .np-footer__contact-icon {
  width: 38px;
  height: 38px;
  font-size: 15px;
}

.np-footer__contact-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--np-border);
  color: var(--np-gold);
  font-size: 12px;
}

.np-footer__col:nth-child(2) .np-footer__contact-list a,
.np-footer__col:nth-child(2) .np-footer__contact-list span {
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.55;
}

.np-footer__contact-list a,
.np-footer__contact-list span {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--np-text-muted);
  text-decoration: none;
  transition: color 0.35s ease;
}

.np-footer__contact-list a:hover {
  color: var(--np-gold-soft);
}

/* Quick links */
.np-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.np-footer__col:nth-child(3) .np-footer__links li {
  margin-bottom: 9px;
}

.np-footer__links li {
  margin-bottom: 6px;
}

.np-footer__links li:last-child {
  margin-bottom: 0;
}

.np-footer__col:nth-child(3) .np-footer__links a {
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.5;
}

.np-footer__links a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--np-text-muted);
  text-decoration: none;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
  background-image: linear-gradient(var(--np-gold), var(--np-gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
}

.np-footer__links a:hover {
  color: var(--np-gold-soft);
  transform: translateX(4px);
  background-size: 100% 1px;
}

/* Cultural quote */
.np-footer__quote-col {
  text-align: center;
}

@media (min-width: 992px) {
  .np-footer__quote-col {
    text-align: right;
    padding-left: 12px;
  }
}

.np-footer__quote {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--np-gold-soft);
}

.np-footer__quote-line {
  display: block;
}

.np-footer__lotus {
  display: block;
  width: 40px;
  height: auto;
  margin: 0 auto;
  opacity: 0.7;
  filter: drop-shadow(0 0 10px rgba(200, 164, 77, 0.3));
}

@media (min-width: 992px) {
  .np-footer__lotus {
    margin-left: auto;
    margin-right: 0;
  }
}

.np-footer__quote-divider {
  display: block;
  width: 56px;
  height: 1px;
  margin: 0 auto 10px;
  background: linear-gradient(90deg, transparent, var(--np-gold), transparent);
}

@media (min-width: 992px) {
  .np-footer__quote-divider {
    margin-left: auto;
    margin-right: 0;
  }
}

/* Bottom bar */
.np-footer__bar {
  position: relative;
  z-index: 1;
  background: #030303;
  border-top: 1px solid var(--np-border);
  padding: 12px clamp(20px, 4vw, 40px);
}

.np-footer__bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.np-footer__bar p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--np-text-muted);
}

.np-footer__bar-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 11px;
  color: var(--np-text-muted);
}

/* Scroll reveal */
.np-footer .np-reveal,
.np-footer-cta .np-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.np-footer .np-reveal.is-visible,
.np-footer-cta .np-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1199px) {
  .np-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .np-footer__quote-col {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid var(--np-border);
  }

  .np-footer__lotus,
  .np-footer__quote-divider {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .np-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .np-footer__brand-logo,
  .np-footer__social {
    margin-left: auto;
    margin-right: auto;
  }

  .np-footer__social {
    justify-content: center;
  }

  .np-footer__contact-list li {
    justify-content: center;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .np-footer__links a:hover {
    transform: none;
  }

  .np-footer__bar-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .np-footer-cta__texture {
    animation: none;
  }

  .np-footer .np-reveal,
  .np-footer-cta .np-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .np-footer-cta__btn:hover,
  .np-footer__social a:hover {
    transform: none;
  }
}
