/* ── Day Between Nature & Chocolate — luxury experience ── */

.nc-page {
  --nc-accent: var(--color-accent, #a67c52);
  --nc-accent-dark: #825a3a;
  --nc-ink: var(--color-secondary, #5a4632);
  --nc-primary: var(--color-primary, #d6bfa9);
  --nc-cream: #faf8f5;
  --nc-warm: #fdf6ee;
  --nc-card: #fffdf9;
  --nc-text: rgba(90, 70, 50, 0.92);
  --nc-muted: rgba(90, 70, 50, 0.62);
  --nc-line: rgba(214, 191, 169, 0.55);
  background: var(--nc-cream);
  color: var(--nc-text);
}

.nc-main {
  min-height: 100vh;
  padding-top: 0;
}

/* ── Hero — full-bleed editorial, no glass card ── */
.nc-hero {
  position: relative;
  height: calc(100svh - 3.5rem);
  max-height: none;
  min-height: 28rem;
  margin-inline: 0;
  border-radius: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  color: #fffdf9;
  border: none;
  box-shadow: none;
}

.nc-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.nc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transform-origin: center center;
  animation: nc-ken-burns 18s linear infinite alternate;
}

@keyframes nc-ken-burns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

.nc-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(32, 22, 16, 0.22) 0%,
      rgba(32, 22, 16, 0.05) 32%,
      rgba(32, 22, 16, 0.28) 58%,
      rgba(28, 18, 12, 0.72) 82%,
      rgba(22, 14, 10, 0.88) 100%
    );
}

.nc-hero__back {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 249, 0.28);
  background: rgba(255, 253, 249, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 500;
  color: #fffdf9;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.nc-hero__back:hover {
  background: rgba(255, 253, 249, 0.22);
  border-color: rgba(255, 253, 249, 0.45);
  opacity: 1;
}

.nc-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 42rem);
  margin-inline: auto;
  padding: 2rem 1.35rem 2.5rem;
  text-align: center;
}

/* Panel = content stack only (no card chrome) */
.nc-hero__panel {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.nc-hero__badge {
  display: inline-block;
  margin-bottom: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 226, 208, 0.9);
}

.nc-hero__labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.85rem;
  margin-bottom: 1rem;
}

.nc-hero__sold {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 249, 0.35);
  background: rgba(90, 70, 50, 0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fffdf9;
}

.nc-sold-note {
  margin: 0 auto 1rem;
  max-width: 22rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 253, 249, 0.82);
}

.nc-sold-note--on-dark {
  color: rgba(255, 253, 249, 0.78);
}

.nc-hero__cta.nc-cta--disabled,
.nc-cta__btn.nc-cta--disabled,
button.nc-hero__cta:disabled,
button.nc-cta__btn:disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.72;
  filter: grayscale(0.35);
  transform: none !important;
  animation: none !important;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  background: linear-gradient(180deg, #e8ddd0 0%, #cbb9a4 100%);
  border-color: rgba(180, 160, 140, 0.45);
  color: rgba(90, 70, 50, 0.75);
}

.nc-hero__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.15rem, 7.5vw, 3.55rem);
  font-weight: 600;
  line-height: 1.22;
  color: #fffdf9;
  text-wrap: balance;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
}

.nc-hero__divider {
  width: 2.75rem;
  height: 1px;
  margin: 1.15rem auto 1.25rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 200, 150, 0.95),
    transparent
  );
}

.nc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.85rem;
  margin: 0 auto 1.55rem;
  max-width: 28rem;
}

.nc-hero__meta-row {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 253, 249, 0.9);
}

.nc-hero__meta-row--date {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f3e4d0;
  width: 100%;
  margin-bottom: 0.15rem;
}

.nc-hero__meta-row:not(.nc-hero__meta-row--date) {
  position: relative;
  padding-inline: 0.15rem;
}

@media (min-width: 480px) {
  .nc-hero__meta-row:not(.nc-hero__meta-row--date) + .nc-hero__meta-row:not(.nc-hero__meta-row--date)::before {
    content: "";
    position: absolute;
    inset-inline-start: -0.5rem;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(232, 200, 150, 0.75);
    transform: translateY(-50%);
  }
}

.nc-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: min(100%, 15.5rem);
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 240, 220, 0.45);
  background: linear-gradient(180deg, #f4e6d4 0%, #dfc4a6 100%);
  color: var(--nc-ink);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.nc-hero__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

/* Warm amber idle glow */
.nc-hero__cta.nc-cta--glow,
.nc-cta__btn.nc-cta--glow {
  animation: nc-amber-glow 4.6s ease-in-out infinite;
}

.nc-hero__cta.nc-cta--glow:hover,
.nc-cta__btn.nc-cta--glow:hover {
  animation-play-state: paused;
}

@keyframes nc-amber-glow {
  0%,
  100% {
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(214, 160, 90, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow:
      0 14px 36px rgba(130, 90, 58, 0.3),
      0 0 24px 4px rgba(214, 160, 90, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }
}

.nc-hero__fade {
  opacity: 0;
  transform: translateY(22px);
  animation: nc-fade-up 1000ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nc-hero__fade--1 { animation-delay: 180ms; }

.nc-page--motion .nc-hero__fade {
  animation: none;
  opacity: 1;
  transform: none;
}

@keyframes nc-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .nc-hero__inner {
    padding: 2.75rem 1.75rem 3.25rem;
  }

  .nc-hero__back {
    top: 1.25rem;
    inset-inline-start: 1.25rem;
  }

  .nc-hero__meta {
    gap: 0.5rem 1.1rem;
  }
}

@media (min-width: 900px) {
  .nc-hero__title {
    font-size: clamp(2.8rem, 4.2vw, 3.75rem);
  }
}

/* ── Shared section shell ── */
.nc-section {
  padding: clamp(2.75rem, 7vw, 4.5rem) 0;
}

.nc-wrap {
  width: min(100%, 68rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.nc-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nc-accent);
}

.nc-section-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--nc-ink);
  line-height: 1.25;
}

/* ── Intro quote ── */
.nc-intro {
  background: var(--nc-warm);
  border-block: 1px solid var(--nc-line);
}

.nc-intro__card {
  max-width: 40rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 1.2rem;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(185, 137, 95, 0.22);
  box-shadow: 0 12px 36px rgba(130, 90, 58, 0.07);
  backdrop-filter: blur(10px);
  text-align: center;
}

.nc-intro__text {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--nc-ink);
}

.nc-intro__note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--nc-muted);
}

/* ── Photos — editorial grids, even on large screens ── */
.nc-shots {
  padding: clamp(1.75rem, 4.5vw, 2.75rem) 0;
  background: var(--nc-cream);
}

.nc-shots__grid {
  display: grid;
  gap: 0.75rem;
  width: min(100%, 68rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.nc-shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0.85rem;
  border: 1px solid rgba(185, 137, 95, 0.2);
  background: var(--nc-card, #fffdf9);
  box-shadow: 0 8px 24px rgba(130, 90, 58, 0.07);
  line-height: 0;
}

.nc-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* Duo — nature views: equal tiles */
.nc-shots__grid--duo {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .nc-shots__grid--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }

  .nc-shots__grid--duo .nc-shot {
    aspect-ratio: 4 / 3;
    height: 100%;
  }

  .nc-shots__grid--duo .nc-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 960px) {
  .nc-shots__grid--duo {
    gap: 1.25rem;
    width: min(100%, 72rem);
  }

  .nc-shots__grid--duo .nc-shot {
    aspect-ratio: 5 / 4;
    border-radius: 1rem;
  }
}

/* Atelier — chocolate workshop: even mosaic */
.nc-shots__grid--atelier {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .nc-shots__grid--atelier {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }

  .nc-shots__grid--atelier .nc-shot--feature {
    grid-column: auto;
  }

  .nc-shots__grid--atelier .nc-shot,
  .nc-shots__grid--atelier .nc-shot--portrait {
    aspect-ratio: 4 / 3;
  }

  .nc-shots__grid--atelier .nc-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 960px) {
  .nc-shots__grid--atelier {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    width: min(100%, 72rem);
  }

  /* Equal 2×2 — feature + portrait share the same cell height */
  .nc-shots__grid--atelier .nc-shot,
  .nc-shots__grid--atelier .nc-shot--feature,
  .nc-shots__grid--atelier .nc-shot--portrait {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    min-height: 0;
  }

  .nc-shots__grid--atelier .nc-shot--portrait img {
    object-position: center 30%;
  }

  .nc-shots__grid--atelier .nc-shot--feature img {
    object-position: center 40%;
  }
}

@media (min-width: 1200px) {
  .nc-shots__grid--duo,
  .nc-shots__grid--atelier {
    gap: 1.5rem;
  }
}

/* Reels — natural 9:16 with sound (tap to play) */
.nc-reels {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: var(--nc-cream);
}

.nc-reels__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  width: min(100%, 42rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  align-items: start;
}

@media (max-width: 520px) {
  .nc-reels__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    width: min(100%, 68rem);
  }
}

@media (min-width: 720px) {
  .nc-reels__row {
    width: min(100%, 48rem);
    gap: 1rem;
  }
}

.nc-page .jiva-reel.jiva-reel-player {
  position: relative;
  width: 100%;
  max-width: none;
  flex: none;
  aspect-ratio: 9 / 16;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(185, 137, 95, 0.22);
  background: #0c0b0a;
  box-shadow: 0 10px 28px rgba(130, 90, 58, 0.1);
}

.nc-page .jiva-reel-player .jiva-reel-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0c0b0a;
}

.nc-page .jiva-reel-player.is-playing .jiva-reel-video {
  cursor: pointer;
}

.nc-page .jiva-reel-playbtn {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nc-ink);
  background: rgba(255, 253, 249, 0.95);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  transition: opacity 0.28s ease, transform 0.22s ease;
}

.nc-page .jiva-reel-playbtn:hover {
  transform: scale(1.05);
}

.nc-page .jiva-reel-playbtn__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.nc-page .jiva-reel-playbtn__icon {
  position: relative;
  margin-inline-start: 3px;
}

.nc-page .jiva-reel-player.is-playing .jiva-reel-playbtn {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

/* ── Timeline ── */
.nc-program {
  background: var(--nc-cream);
}

.nc-program__head {
  max-width: 36rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.nc-timeline {
  position: relative;
  max-width: 40rem;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}

.nc-timeline::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  bottom: 0.6rem;
  inset-inline-start: 1.15rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(166, 124, 82, 0.15), rgba(166, 124, 82, 0.55), rgba(166, 124, 82, 0.15));
}

@media (min-width: 720px) {
  .nc-timeline::before {
    inset-inline-start: 50%;
    transform: translateX(-50%);
  }

  html[dir="rtl"] .nc-timeline::before {
    transform: translateX(50%);
  }
}

.nc-stop {
  position: relative;
  padding-inline-start: 3.25rem;
  padding-bottom: 2.15rem;
}

.nc-stop:last-child {
  padding-bottom: 0;
}

@media (min-width: 720px) {
  .nc-stop {
    width: 50%;
    padding-inline-start: 0;
    padding-inline-end: 2rem;
  }

  .nc-stop:nth-child(even) {
    margin-inline-start: 50%;
    padding-inline-end: 0;
    padding-inline-start: 2rem;
  }
}

.nc-stop__dot {
  position: absolute;
  top: 0.15rem;
  inset-inline-start: 0.55rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--nc-card);
  border: 1px solid rgba(185, 137, 95, 0.4);
  box-shadow: 0 4px 14px rgba(130, 90, 58, 0.12);
  font-size: 0.75rem;
  line-height: 1;
  z-index: 1;
}

@media (min-width: 720px) {
  .nc-stop__dot {
    inset-inline-start: auto;
    inset-inline-end: -0.7rem;
  }

  .nc-stop:nth-child(even) .nc-stop__dot {
    inset-inline-end: auto;
    inset-inline-start: -0.7rem;
  }
}

.nc-stop__card {
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 1rem;
  background: var(--nc-card);
  border: 1px solid rgba(185, 137, 95, 0.22);
  box-shadow: 0 10px 28px rgba(130, 90, 58, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.nc-stop__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(130, 90, 58, 0.11);
}

.nc-stop__title {
  margin: 0 0 0.55rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.1rem, 2.6vw, 1.3rem);
  font-weight: 600;
  color: var(--nc-ink);
  line-height: 1.35;
}

.nc-stop__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--nc-muted);
  white-space: pre-line;
}

.nc-stop__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--nc-accent-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.35);
  transition: color 160ms ease, border-color 160ms ease;
}

.nc-stop__link:hover {
  color: var(--nc-ink);
  border-color: var(--nc-ink);
}

/* ── Includes ── */
.nc-includes {
  background: linear-gradient(180deg, var(--nc-warm), var(--nc-cream));
}

.nc-includes__card {
  max-width: 40rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.35rem);
  border-radius: 1.2rem;
  background: var(--nc-card);
  border: 1px solid rgba(185, 137, 95, 0.24);
  box-shadow: 0 14px 40px rgba(130, 90, 58, 0.08);
}

.nc-includes__list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.nc-includes__item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--nc-text);
}

.nc-includes__check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(166, 124, 82, 0.12);
  color: var(--nc-accent-dark);
}

.nc-includes__check svg {
  width: 0.8rem;
  height: 0.8rem;
}

.nc-includes__access {
  margin: 1.35rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--nc-line);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--nc-muted);
}

/* ── Pricing ── */
.nc-pricing__head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.nc-pricing__grid {
  display: grid;
  gap: 0.85rem;
  max-width: 40rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .nc-pricing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.nc-price {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
  padding: 1.45rem 1.25rem;
  border-radius: 1rem;
  background: var(--nc-card);
  border: 1px solid rgba(185, 137, 95, 0.2);
  box-shadow: 0 8px 24px rgba(130, 90, 58, 0.06);
  text-align: center;
}

.nc-price--featured {
  background: linear-gradient(165deg, #fffdf9, #faf0e4);
  border-color: rgba(185, 137, 95, 0.4);
  box-shadow: 0 14px 36px rgba(130, 90, 58, 0.12);
  transform: scale(1.01);
}

.nc-price__label {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--nc-muted);
}

.nc-price__amount {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.4rem);
  font-weight: 600;
  color: var(--nc-accent-dark);
  line-height: 1.1;
}

/* ── Final CTA ── */
.nc-cta {
  position: relative;
  overflow: hidden;
  min-height: clamp(18rem, 48vw, 26rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fffdf9;
}

.nc-cta__media {
  position: absolute;
  inset: 0;
}

.nc-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nc-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(90, 70, 50, 0.45), rgba(90, 70, 50, 0.78));
}

.nc-cta__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 36rem);
  padding: 3rem 1.25rem;
}

.nc-cta__title {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 4.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.25;
  color: #fffdf9;
}

.nc-cta__text {
  margin: 0 0 1.35rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 253, 249, 0.88);
}

.nc-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: min(100%, 16rem);
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: var(--nc-primary);
  color: var(--nc-ink);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transition: background 200ms ease, transform 200ms ease;
}

.nc-cta__btn:hover {
  background: #fffdf9;
  transform: translateY(-1px);
}

/* Reveal helpers */
.nc-page .animate-content,
.nc-page .animate-section {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
  filter: blur(2px);
}

.nc-page .animate-content.in-view,
.nc-page .animate-section.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.nc-page .nc-stop.animate-content:nth-child(odd) {
  transform: translateX(-18px) translateY(12px);
}

.nc-page .nc-stop.animate-content:nth-child(even) {
  transform: translateX(18px) translateY(12px);
}

.nc-page .nc-stop.animate-content.in-view {
  transform: translateX(0) translateY(0);
}

html[dir="rtl"] .nc-page .nc-stop.animate-content:nth-child(odd) {
  transform: translateX(18px) translateY(12px);
}

html[dir="rtl"] .nc-page .nc-stop.animate-content:nth-child(even) {
  transform: translateX(-18px) translateY(12px);
}

html[dir="rtl"] .nc-page .nc-stop.animate-content.in-view {
  transform: translateX(0) translateY(0);
}

/* RTL typography */
html[dir="rtl"] .nc-page {
  font-family: "Scheherazade New", serif;
}

html[dir="rtl"] .nc-page :is(
  .nc-hero__title,
  .nc-hero__meta-row--date,
  .nc-section-title,
  .nc-intro__text,
  .nc-stop__title,
  .nc-price__amount,
  .nc-cta__title
) {
  font-family: Amiri, serif;
  font-weight: 700;
}

html[dir="rtl"] .nc-page :is(.nc-hero__badge, .nc-hero__sold, .nc-kicker) {
  letter-spacing: 0;
  text-transform: none;
}

html[dir="rtl"] .nc-page :is(.nc-stop__body, .nc-includes__item, .nc-intro__note, .nc-cta__text) {
  line-height: 1.85;
}

html[dir="rtl"] .nc-hero__back svg {
  transform: scaleX(-1);
}

@media (prefers-reduced-motion: reduce) {
  .nc-hero__media img,
  .nc-hero__fade,
  .nc-hero__cta,
  .nc-cta__btn,
  .nc-stop__card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .nc-page .animate-content,
  .nc-page .animate-section {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
