/* A New Day in Paris - signature landing (scoped)
   Color tokens aligned with dev/celine-dion/sample.html */

.main.ndp {
    padding-bottom: 0;
    background: var(--ndp-cream, #f1ebe0);
    position: relative;
}

/* Paper grain (sample reference) */
.main.ndp::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
}

.main.ndp > * {
    position: relative;
    z-index: 2;
}

.ndp {
    /* Brand */
    --ndp-red: #8b0000;
    --ndp-red-deep: #6b0000;
    --ndp-red-soft: #a53030;

    /* Surfaces */
    --ndp-cream: #f1ebe0;
    --ndp-cream-2: #e8dfd0;
    --ndp-ink: #1a1714;
    --ndp-ink-soft: #3a332c;

    /* Metallic accent */
    --ndp-gold: #b89060;
    --ndp-gold-deep: #8c6a3f;
    --ndp-gold-light: #e8c998;

    /* UI */
    --ndp-rule: #1a171420;
    --ndp-on-dark: #ffffffb0;
    --ndp-on-dark-muted: #ffffff90;
    --ndp-on-dark-faint: #ffffff80;
    --ndp-on-dark-border: #ffffff15;
    --ndp-on-dark-border-subtle: #ffffff10;
    --ndp-on-dark-border-mid: #ffffff20;

    color: var(--ndp-ink);
}

.ndp em,
.ndp .ndp-it {
    font-style: italic;
    color: var(--ndp-red);
}

.ndp-section {
    padding: 5rem 0;
}

@media (min-width: 992px) {
    .ndp-section {
        padding: 7rem 0;
    }
}

.ndp-roman {
    font-family: "Source Serif 4", serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--ndp-red);
    letter-spacing: 0.05em;
}

.ndp-label {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ndp-ink-soft);
    margin-bottom: 0.5rem;
}

.ndp-title {
    font-family: "Source Serif 4", serif;
    font-weight: 400;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0 0 2rem;
    max-width: 18ch;
}

/* Hero */
.ndp-hero {
    background: var(--ndp-cream);
    padding: 3rem 0 4rem;
}

.ndp-hero__grid {
    display: grid;
    gap: 2.5rem;
    align-items: stretch;
}

@media (min-width: 992px) {
    .ndp-hero__grid {
        grid-template-columns: 1.35fr 1fr;
        gap: 3rem;
        min-height: 70vh;
    }
}

.ndp-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.ndp-hero__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ndp-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ndp-red);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ndp-eyebrow::before {
    content: "";
    width: 2rem;
    height: 1px;
    background: var(--ndp-red);
}

.ndp-hero__meta {
    text-align: right;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ndp-ink-soft);
    line-height: 1.9;
}

.ndp-hero__meta strong {
    color: var(--ndp-red);
    font-weight: 600;
}

.ndp-tagline {
    font-family: "Source Serif 4", serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ndp-red);
    margin-bottom: 1rem;
}

.ndp-hero__heading {
    font-family: "Source Serif 4", serif;
    font-weight: 400;
    font-size: clamp(2.75rem, 9vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--ndp-ink);
    margin: 0 0 1.5rem;
}

.ndp-hero__sub {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--ndp-rule);
    padding-top: 1.5rem;
}

.ndp-hero__sub .text {
    max-width: 32rem;
    color: var(--ndp-ink-soft);
    line-height: 1.55;
    margin: 0;
}

.ndp-hero__signature {
    font-family: "Source Serif 4", serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--ndp-gold-deep);
    white-space: nowrap;
}

.ndp-hero__media {
    position: relative;
    min-height: 320px;
    border-radius: 2px;
    overflow: hidden;
    background: linear-gradient(
        165deg,
        var(--ndp-cream-2) 0%,
        #d4a5a5 55%,
        var(--ndp-red-soft) 100%
    );
}

.ndp-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}

.ndp-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 23, 20, 0.1) 0%,
        rgba(26, 23, 20, 0) 40%,
        rgba(139, 0, 0, 0.2) 100%
    );
    mix-blend-mode: multiply;
    pointer-events: none;
}

.ndp-hero__credit {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 1;
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* Prologue */
.ndp-prologue {
    background: var(--ndp-cream-2);
    text-align: center;
    border-top: 1px solid var(--ndp-rule);
    border-bottom: 1px solid var(--ndp-rule);
}

.ndp-prologue blockquote {
    font-family: "Source Serif 4", serif;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    line-height: 1.35;
    max-width: 28ch;
    margin: 0 auto;
    border: none;
    padding: 0;
    color: var(--ndp-ink);
}

.ndp-prologue cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ndp-ink-soft);
    font-style: normal;
}

.ndp-prologue cite span {
    color: var(--ndp-red);
}

/* Manifesto */
.ndp-manifesto {
    background: var(--ndp-cream);
}

.ndp-manifesto__grid {
    display: grid;
    gap: 2.5rem;
    border-top: 1px solid var(--ndp-rule);
    padding-top: 3rem;
}

@media (min-width: 992px) {
    .ndp-manifesto__grid {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
    }
}

.ndp-manifesto__lead {
    font-family: "Source Serif 4", serif;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.28;
    color: var(--ndp-ink);
    margin: 0 0 1.5rem;
}

.ndp-manifesto__body {
    color: var(--ndp-ink-soft);
    line-height: 1.7;
    max-width: 55ch;
    margin: 0;
}

.ndp-pull-quote {
    margin-top: 2rem;
    padding-left: 1.25rem;
    border-left: 2px solid var(--ndp-red);
    font-family: "Source Serif 4", serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ndp-red-deep);
    max-width: 50ch;
}

/* Interlude */
.ndp-interlude {
    position: relative;
    min-height: 42vh;
    padding: 0;
    background: #000;
    overflow: hidden;
}

.ndp-interlude__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ndp-interlude__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 23, 20, 0.45) 0%,
        rgba(26, 23, 20, 0.2) 40%,
        rgba(26, 23, 20, 0.75) 100%
    );
}

.ndp-interlude__quote {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 42vh;
    padding: 2.5rem 0 3rem;
    color: var(--ndp-cream);
}

.ndp-interlude__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ndp-gold);
    margin-bottom: 0.75rem;
}

.ndp-interlude__text {
    font-family: "Source Serif 4", serif;
    font-style: italic;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    line-height: 1.1;
    max-width: 14ch;
    margin: 0;
}

/* Itinerary (dark) */
.ndp-itinerary {
    background: var(--ndp-ink);
    color: var(--ndp-cream);
}

.ndp-itinerary .ndp-roman {
    color: var(--ndp-red-soft);
}

.ndp-itinerary .ndp-label {
    color: var(--ndp-gold);
}

.ndp-itinerary .ndp-title {
    color: var(--ndp-cream);
}

.ndp-itinerary .ndp-it {
    color: var(--ndp-red-soft);
}

.ndp-timeline {
    margin-top: 2rem;
}

.ndp-stop {
    display: grid;
    gap: 1.25rem;
    padding: 2rem 0;
    border-top: 1px solid var(--ndp-on-dark-border);
    align-items: start;
}

@media (min-width: 992px) {
    .ndp-stop {
        grid-template-columns: 11rem 1fr 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }
}

.ndp-stop:last-child {
    border-bottom: 1px solid var(--ndp-on-dark-border);
}

.ndp-stop--feature {
    background: linear-gradient(
        to right,
        transparent,
        #8b000018,
        transparent
    );
}

.ndp-stop--feature .ndp-stop__time {
    color: var(--ndp-gold-light);
}

.ndp-stop__time {
    font-family: "Source Serif 4", serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1;
    color: var(--ndp-gold);
}

.ndp-stop__time small {
    display: block;
    font-family: "Oxygen", sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ndp-on-dark-faint);
    margin-top: 0.5rem;
}

.ndp-stop__place {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ndp-red-soft);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.ndp-stop__title {
    font-family: "Source Serif 4", serif;
    font-size: 1.35rem;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    color: var(--ndp-cream);
}

.ndp-stop__title .ndp-it {
    color: var(--ndp-gold);
}

.ndp-stop__body {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ndp-on-dark);
    max-width: 42ch;
    margin: 0;
}

.ndp-stop__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ndp-stop__list li {
    font-size: 0.85rem;
    color: var(--ndp-on-dark-muted);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--ndp-on-dark-border-subtle);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.ndp-stop__list li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--ndp-red-soft);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Signatures grid */
.ndp-signatures {
    background: var(--ndp-cream-2);
}

.ndp-sig-grid {
    display: grid;
    gap: 1px;
    background: var(--ndp-rule);
    border: 1px solid var(--ndp-rule);
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .ndp-sig-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .ndp-sig-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ndp-sig-card {
    background: var(--ndp-cream-2);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 240px;
}

.ndp-sig-card:hover {
    background: var(--ndp-cream);
}

.ndp-sig-card__num {
    font-family: "Source Serif 4", serif;
    font-style: italic;
    color: var(--ndp-red);
    font-size: 1rem;
}

.ndp-sig-card__title {
    font-family: "Source Serif 4", serif;
    font-size: 1.35rem;
    line-height: 1.15;
    color: var(--ndp-ink);
    margin: 0;
}

.ndp-sig-card__text {
    font-size: 0.92rem;
    color: var(--ndp-ink-soft);
    line-height: 1.6;
    margin: auto 0 0;
}

/* Pricing */
.ndp-pricing {
    background: var(--ndp-cream);
}

.ndp-pricing__grid {
    display: grid;
    border-top: 1px solid var(--ndp-rule);
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .ndp-pricing__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ndp-price-tile {
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--ndp-rule);
}

@media (min-width: 768px) {
    .ndp-price-tile:first-child {
        border-right: 1px solid var(--ndp-rule);
        border-bottom: none;
    }
}

.ndp-price-tile--dark {
    background: var(--ndp-ink);
    color: var(--ndp-cream);
}

.ndp-price-tile__tier {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ndp-red);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.ndp-price-tile--dark .ndp-price-tile__tier {
    color: var(--ndp-gold);
}

.ndp-price-tile__name {
    font-family: "Source Serif 4", serif;
    font-size: 1.75rem;
    line-height: 1.1;
    margin: 0 0 1.5rem;
}

.ndp-price-tile__amount {
    font-family: "Source Serif 4", serif;
    font-size: 2.25rem;
    line-height: 1;
    color: var(--ndp-ink);
    margin: 0 0 0.35rem;
}

.ndp-price-tile--dark .ndp-price-tile__amount,
.ndp-price-tile--dark .ndp-price-tile__name {
    color: var(--ndp-cream);
}

.ndp-price-tile__note {
    font-size: 0.85rem;
    color: var(--ndp-ink-soft);
    font-style: italic;
    margin: 0 0 1.5rem;
}

.ndp-price-tile--dark .ndp-price-tile__note {
    color: #ffffffa0;
}

.ndp-price-tile__list {
    list-style: none;
    padding: 1.25rem 0 0;
    margin: 0;
    border-top: 1px solid var(--ndp-rule);
}

.ndp-price-tile--dark .ndp-price-tile__list {
    border-top-color: var(--ndp-on-dark-border-mid);
}

.ndp-price-tile__list li {
    font-size: 0.92rem;
    color: var(--ndp-ink-soft);
    padding: 0.45rem 0;
    display: flex;
    gap: 0.75rem;
}

.ndp-price-tile--dark .ndp-price-tile__list li {
    color: #ffffffc0;
}

.ndp-price-tile__list li::before {
    content: "—";
    color: var(--ndp-red);
    flex-shrink: 0;
}

.ndp-price-tile--dark .ndp-price-tile__list li::before {
    color: var(--ndp-red-soft);
}

/* After midnight */
.ndp-after {
    background-color: var(--ndp-ink);
    background-image: linear-gradient(
            rgba(26, 23, 20, 0.88),
            rgba(26, 23, 20, 0.92)
        ),
        url("/assets/images/jpg/paris/oj-eiffel.jpg");
    background-size: cover;
    background-position: center;
    color: var(--ndp-cream);
    text-align: center;
}

.ndp-after .ndp-roman {
    color: var(--ndp-red-soft);
}

.ndp-after .ndp-label {
    color: var(--ndp-gold);
}

.ndp-after__title {
    font-family: "Source Serif 4", serif;
    font-style: italic;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
    color: var(--ndp-cream);
    margin: 1.5rem auto 2rem;
    max-width: 14ch;
}

.ndp-after__title .ndp-it {
    font-style: normal;
    color: var(--ndp-red-soft);
}

.ndp-after__body {
    max-width: 55ch;
    margin: 0 auto;
    color: var(--ndp-on-dark);
    line-height: 1.7;
}

.ndp-after__list {
    margin: 2.5rem auto 0;
    max-width: 36rem;
    display: grid;
    gap: 0;
    text-align: left;
}

@media (min-width: 576px) {
    .ndp-after__list {
        grid-template-columns: 1fr 1fr;
        gap: 0 2rem;
    }
}

.ndp-after__list div {
    padding: 1rem 0;
    border-top: 1px solid var(--ndp-on-dark-border-mid);
    font-size: 0.9rem;
    color: var(--ndp-cream);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ndp-after__list span {
    font-family: "Source Serif 4", serif;
    font-style: italic;
    color: var(--ndp-red-soft);
}

/* CTA */
.ndp-cta {
    background: var(--ndp-cream);
    text-align: center;
}

.ndp-cta__title {
    font-family: "Source Serif 4", serif;
    font-weight: 400;
    font-size: clamp(2.25rem, 6vw, 4rem);
    line-height: 1.05;
    max-width: 14ch;
    margin: 1rem auto 2rem;
}

.ndp-cta__btn {
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 1.2rem 3rem;
    background: var(--ndp-red);
    color: var(--ndp-cream);
    border: 1px solid var(--ndp-red);
    transition: all 0.4s ease;
}

.ndp-cta__btn:hover,
.ndp-cta__btn:focus {
    background: transparent;
    color: var(--ndp-red);
    border-color: var(--ndp-red);
    letter-spacing: 0.5em;
}

.ndp-cta__contact {
    margin-top: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ndp-ink-soft);
}

.ndp-cta__contact a {
    color: var(--ndp-red);
    text-decoration: none;
}

.ndp-cta__contact a:hover,
.ndp-cta__contact a:focus {
    text-decoration: underline;
}

/* Section overrides */
.ndp-interlude.ndp-section {
    padding: 0;
}

.ndp .text {
    color: inherit;
}

.ndp-manifesto .text {
    color: var(--ndp-ink-soft);
}

.ndp-after .text {
    color: var(--ndp-on-dark);
}

.ndp-price-tile__name {
    color: var(--ndp-ink);
}

.ndp-price-tile--dark .ndp-price-tile__name .ndp-it {
    color: var(--ndp-red-soft);
}

.ndp-cta__title {
    color: var(--ndp-ink);
}

.ndp-itinerary .ndp-title .ndp-it {
    color: var(--ndp-red-soft);
}

/* ==========================================================================
   v1 - site burgundy chrome + site content palette
   ========================================================================== */

.ndp-page--v1 .main.ndp {
    background: #fcf6f3;
}

.ndp-page--v1 .main.ndp::before {
    display: none;
}

.ndp-page--v1 .ndp {
    --ndp-cream: #fcf6f3;
    --ndp-cream-2: #f5ebe8;
    --ndp-ink: #30362c;
    --ndp-ink-soft: #5a6358;
}

/* ==========================================================================
   v2 - sample light header + dark footer chrome
   ========================================================================== */

.ndp-page--v2 .header.header--ndp-light {
    background: var(--ndp-cream, #f1ebe0);
    box-shadow: none;
}

/* Keep paper grain off the band under the fixed header */
.ndp-page--v2 .main.ndp::before {
    top: 64px;
}

@media (max-width: 991.98px) {
    .ndp-page--v2 .main.ndp::before {
        top: 104px;
    }
}

.ndp-page--v2 .header.header--ndp-light .nav .navbar_nav .nav_item .nav_link,
.ndp-page--v2
    .header.header--ndp-light
    .nav
    .navbar_nav
    .nav_item--dropdown
    .nav_link--dropdown {
    color: var(--ndp-ink, #1a1714);
}

.ndp-page--v2 .header.header--ndp-light .nav .navbar_nav .nav_item .nav_link:hover,
.ndp-page--v2 .header.header--ndp-light .nav .navbar_nav .nav_item .nav_link.active,
.ndp-page--v2
    .header.header--ndp-light
    .nav
    .navbar_nav
    .nav_item--dropdown
    .nav_link--dropdown:hover,
.ndp-page--v2
    .header.header--ndp-light
    .nav
    .navbar_nav
    .nav_item--dropdown
    .nav_link--dropdown:focus {
    color: var(--ndp-red, #8b0000);
}

.ndp-page--v2 .header.header--ndp-light .nav .navbar_nav .nav_item--dropdown {
    color: inherit;
}

.ndp-footer {
    background: var(--ndp-ink, #1a1714);
    color: var(--ndp-cream, #f1ebe0);
    padding: 3rem 2.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.ndp-footer__brand {
    display: block;
    line-height: 0;
}

.ndp-footer__logo {
    height: 32px;
    width: auto;
    display: block;
}

.ndp-footer__tag {
    margin: 0;
    color: var(--ndp-red-soft, #a53030);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.05em;
    font-family: "Source Serif 4", serif;
    font-size: 0.85rem;
}

.ndp-footer__end {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.ndp-footer__meta {
    margin: 0;
    color: #ffffff80;
}

.ndp-footer__links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    letter-spacing: 0.2em;
}

.ndp-footer__links a {
    color: #ffffff80;
    text-decoration: none;
}

.ndp-footer__links a:hover,
.ndp-footer__links a:focus {
    color: var(--ndp-cream, #f1ebe0);
}

@media (max-width: 767.98px) {
    .ndp-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 1.5rem 2rem;
    }

    .ndp-footer__end {
        align-items: flex-start;
    }
}

.ndp-skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    z-index: 10000;
}

.ndp-skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0.75rem 1rem;
    clip: auto;
    overflow: visible;
    white-space: normal;
    background: var(--ndp-ink, #1a1a1a);
    color: #fff;
    text-decoration: none;
    border-radius: 0.25rem;
}
