/* Dual-entry gate — pastel, one composition */
.nl-gate-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Vazirmatn", Tahoma, sans-serif;
  color: #24352e;
  overflow-x: hidden;
  background: #eef5f1;
}

.nl-gate-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(168, 214, 198, 0.55), transparent 60%),
    radial-gradient(780px 480px at 88% 12%, rgba(255, 214, 196, 0.5), transparent 58%),
    radial-gradient(700px 420px at 50% 100%, rgba(196, 220, 232, 0.45), transparent 55%),
    linear-gradient(160deg, #f7fbf8 0%, #eef4f0 42%, #f8f1ea 100%);
  animation: nl-gate-drift 18s ease-in-out infinite alternate;
}

@keyframes nl-gate-drift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.04) translate3d(0, -1.2%, 0); }
}

.nl-gate {
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  padding: clamp(1.2rem, 3vw, 2.5rem) 0;
}

.nl-gate-brand {
  text-align: center;
  animation: nl-gate-rise 0.8s ease both;
}

.nl-gate-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #5d7368;
}

.nl-gate-logo {
  margin: 0;
  font-family: "Fredoka", "Vazirmatn", sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #2a4a3d;
  text-shadow: 0 10px 40px rgba(42, 74, 61, 0.12);
}

.nl-gate-sub {
  margin: 0.7rem 0 0;
  color: #61756c;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
}

.nl-gate-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.nl-gate-panel {
  position: relative;
  display: grid;
  grid-template-rows: 1.15fr auto;
  min-height: min(62vh, 560px);
  border-radius: 28px;
  overflow: hidden;
  color: #24352e;
  isolation: isolate;
  transform: translateY(18px);
  opacity: 0;
  animation: nl-gate-rise 0.9s ease forwards;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 18px 50px rgba(36, 53, 46, 0.1);
}

.nl-gate-panel--cafe { animation-delay: 0.12s; }
.nl-gate-panel--play { animation-delay: 0.22s; }

.nl-gate-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(36, 53, 46, 0.16);
}

.nl-gate-panel-media {
  position: relative;
  overflow: hidden;
}

.nl-gate-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.7s ease;
}

.nl-gate-panel:hover .nl-gate-panel-media img {
  transform: scale(1.1);
}

.nl-gate-panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(247, 251, 248, 0.2) 70%, rgba(247, 251, 248, 0.92) 100%);
  pointer-events: none;
}

.nl-gate-panel--cafe {
  background: linear-gradient(180deg, #dff0e7 0%, #f7fbf8 100%);
}

.nl-gate-panel--play {
  background: linear-gradient(180deg, #ffe8dc 0%, #fff7f2 100%);
}

.nl-gate-panel-copy {
  padding: 1.15rem 1.25rem 1.35rem;
  display: grid;
  gap: 0.35rem;
}

.nl-gate-label {
  font-size: 0.78rem;
  color: #6b7f75;
  letter-spacing: 0.04em;
}

.nl-gate-panel h2 {
  margin: 0;
  font-family: "Fredoka", "Vazirmatn", sans-serif;
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  font-weight: 650;
  color: #2a4a3d;
}

.nl-gate-panel p {
  margin: 0;
  color: #5a6d64;
  line-height: 1.7;
  font-size: 0.95rem;
}

.nl-gate-cta {
  margin-top: 0.55rem;
  display: inline-flex;
  align-self: start;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #2f5645;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 10px 22px rgba(47, 86, 69, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.nl-gate-panel--play .nl-gate-cta {
  background: #c97b5d;
  box-shadow: 0 10px 22px rgba(201, 123, 93, 0.25);
}

.nl-gate-panel:hover .nl-gate-cta {
  transform: translateY(-1px);
}

@keyframes nl-gate-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 820px) {
  .nl-gate {
    justify-content: flex-start;
    padding-top: 1.4rem;
    padding-bottom: 2rem;
  }
  .nl-gate-panels {
    grid-template-columns: 1fr;
  }
  .nl-gate-panel {
    min-height: 0;
    grid-template-rows: 220px auto;
  }
}
