/* ==========================================================
   assets/css/landing.css
   Hanya dimuat di halaman depan (front-page.php).
   Variabel warna & font diambil dari assets/css/global.css.
   ========================================================== */

.wishlane-landing {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow-x: hidden;
    font-family: var(--wl-font-body);
}

.wishlane-landing *,
.wishlane-landing *::before,
.wishlane-landing *::after {
    box-sizing: border-box;
}

.wl-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.wl-eyebrow {
    display: inline-block;
    font-family: var(--wl-font-mono);
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wl-seal);
    margin-bottom: 14px;
}
.wl-eyebrow--light { color: var(--wl-gold); }

.wl-section__title {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--wl-ink);
    max-width: 620px;
    font-weight: 600;
}
.wl-section__lead {
    color: var(--wl-ink-soft);
    max-width: 560px;
    margin: 0 0 40px;
    font-size: 16px;
}
.wl-section__cta { margin-top: 40px; }

.wl-section { padding: 88px 0; background: var(--wl-paper); }
.wl-section--alt { background: var(--wl-paper-deep); }

/* Buttons */
.wl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    border: 1.5px solid transparent;
    cursor: pointer;
}
.wl-btn--seal { background: var(--wl-seal); color: #fff; }
.wl-btn--seal:hover { background: var(--wl-seal-dark); color: #fff; transform: translateY(-1px); }
.wl-btn--outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.wl-btn--outline:hover { border-color: #fff; color: #fff; }
.wl-btn--outline-dark { background: transparent; color: var(--wl-ink); border-color: var(--wl-line); }
.wl-btn--outline-dark:hover { border-color: var(--wl-ink); }
.wl-btn--small { padding: 8px 16px; font-size: 13px; }
.wl-btn--large { padding: 18px 36px; font-size: 16px; }

/* ===== HERO ===== */
.wl-hero {
    background: var(--wl-ink);
    color: #fff;
    padding: 96px 0 64px;
}
.wl-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.wl-hero__title {
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
    margin: 0 0 20px;
    font-weight: 600;
    color: #fff;
}
.wl-hero__sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 460px;
    margin: 0 0 32px;
}
.wl-hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.wl-hero__stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.wl-stat__value {
    display: block;
    font-family: var(--wl-font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--wl-gold);
}
.wl-stat__label {
    display: block;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.wl-hero__visual { position: relative; }
.wl-ticket-tab {
    height: 14px;
    background-image: radial-gradient(circle at 8px 0, var(--wl-ink) 8px, transparent 8.5px);
    background-size: 16px 16px;
    background-repeat: repeat-x;
    background-position: top left;
}
.wl-receipt {
    background: var(--wl-paper);
    color: var(--wl-ink);
    padding: 26px 24px 20px;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
    font-family: var(--wl-font-mono);
}
.wl-receipt__title {
    font-family: var(--wl-font-body);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    margin: 0 0 16px;
    color: var(--wl-ink-soft);
}
.wl-receipt__line,
.wl-receipt__total {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px dashed var(--wl-line);
}
.wl-receipt__total {
    border-bottom: none;
    border-top: 2px solid var(--wl-ink);
    margin-top: 6px;
    font-weight: 700;
    font-size: 15px;
}
.wl-receipt__note {
    font-family: var(--wl-font-body);
    font-size: 11.5px;
    color: var(--wl-ink-soft);
    margin: 14px 0 0;
    font-style: italic;
}

/* ===== KENAPA KAMI ===== */
.wl-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 20px;
}
.wl-feature-card {
    border: 1.5px dashed var(--wl-line);
    border-radius: 6px;
    padding: 26px 22px;
}
.wl-feature-card__num {
    display: block;
    font-family: var(--wl-font-mono);
    color: var(--wl-seal);
    font-weight: 700;
    margin-bottom: 14px;
}
.wl-feature-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}
.wl-feature-card p {
    color: var(--wl-ink-soft);
    font-size: 14.5px;
    margin: 0;
    line-height: 1.55;
}

/* ===== KATALOG ===== */
.wl-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.wl-product-card {
    text-decoration: none;
    color: var(--wl-ink);
    border: 1px solid var(--wl-line);
    border-radius: 6px;
    overflow: hidden;
    display: block;
    background: #fff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wl-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(27, 42, 74, 0.12);
}
.wl-product-card__img {
    aspect-ratio: 1 / 1;
    background: var(--wl-paper-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wl-ink-soft);
    font-size: 13px;
    overflow: hidden;
}
.wl-product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wl-product-card__title {
    font-size: 14.5px;
    margin: 14px 14px 6px;
    font-family: var(--wl-font-body);
    font-weight: 600;
    line-height: 1.35;
}
.wl-product-card__price {
    display: block;
    margin: 0 14px 16px;
    font-family: var(--wl-font-mono);
    color: var(--wl-seal);
    font-weight: 600;
    font-size: 14px;
}
.wl-empty-note {
    color: var(--wl-ink-soft);
    font-style: italic;
    grid-column: 1 / -1;
}

/* ===== CARA ORDER ===== */
.wl-steps {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.wl-steps__item {
    border-top: 3px solid var(--wl-seal);
    padding-top: 18px;
}
.wl-steps__number {
    display: block;
    font-family: var(--wl-font-mono);
    color: var(--wl-ink-soft);
    margin-bottom: 10px;
    font-size: 13px;
}
.wl-steps__item h3 {
    margin: 0 0 8px;
    font-size: 17px;
}
.wl-steps__item p {
    margin: 0;
    color: var(--wl-ink-soft);
    font-size: 14.5px;
    line-height: 1.55;
}

/* ===== BIAYA & KETENTUAN ===== */
.wl-biaya__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.wl-invoice {
    background: #fff;
    border: 1.5px dashed var(--wl-line);
    border-radius: 6px;
    padding: 26px 24px;
    font-family: var(--wl-font-mono);
}
.wl-invoice__line {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 10px 0;
    border-bottom: 1px dotted var(--wl-line);
    font-size: 14px;
}
.wl-invoice__line:last-child { border-bottom: none; }
.wl-invoice__dots {
    flex: 1;
    border-bottom: 1px dotted var(--wl-line);
    margin-bottom: 4px;
}
.wl-invoice__value {
    font-weight: 700;
    color: var(--wl-seal);
    white-space: nowrap;
}

.wl-faq__item {
    border-bottom: 1px solid var(--wl-line);
    padding: 16px 0;
}
.wl-faq__item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    list-style: none;
    position: relative;
    padding-right: 24px;
}
.wl-faq__item summary::-webkit-details-marker { display: none; }
.wl-faq__item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-family: var(--wl-font-mono);
    color: var(--wl-seal);
    font-size: 18px;
}
.wl-faq__item[open] summary::after { content: '\2013'; }
.wl-faq__item p {
    margin: 12px 0 0;
    color: var(--wl-ink-soft);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ===== JADWAL TRIP ===== */
.wl-ticket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.wl-ticket {
    display: flex;
    border: 1.5px dashed var(--wl-line);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.wl-ticket__main {
    flex: 1;
    padding: 20px;
    min-width: 0;
}
.wl-ticket__main h3 {
    margin: 0 0 10px;
    font-size: 17px;
}
.wl-ticket__row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
    font-family: var(--wl-font-mono);
    color: var(--wl-ink-soft);
    margin: 4px 0;
}
.wl-ticket__stub {
    width: 112px;
    flex-shrink: 0;
    background: var(--wl-paper-deep);
    border-left: 1.5px dashed var(--wl-line);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 10px;
    text-align: center;
}
.wl-ticket__status {
    font-family: var(--wl-font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--wl-seal);
    font-weight: 700;
}
.wl-ticket--penuh .wl-ticket__status { color: var(--wl-ink-soft); }
.wl-ticket--penuh { opacity: 0.6; }

/* ===== TRUST ===== */
.wl-trust {
    background: var(--wl-ink-deep);
    color: #fff;
    padding: 88px 0;
}
.wl-trust__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
.wl-trust h2 {
    font-size: clamp(26px, 3.6vw, 36px);
    line-height: 1.2;
    margin: 0;
    color: #fff;
}
.wl-trust p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* ===== TESTIMONI ===== */
.wl-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.wl-testi-card {
    background: #fff;
    border: 1px solid var(--wl-line);
    border-radius: 6px;
    padding: 24px;
}
.wl-testi-card__quote {
    font-family: var(--wl-font-display);
    font-style: italic;
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 16px;
    color: var(--wl-ink);
}
.wl-testi-card__name {
    font-family: var(--wl-font-mono);
    font-size: 12.5px;
    color: var(--wl-ink-soft);
    margin: 0;
}
.wl-testi-card--dummy { border-style: dashed; }

/* ===== ARTIKEL ===== */
.wl-article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.wl-article-card {
    text-decoration: none;
    color: var(--wl-ink);
    display: block;
}
.wl-article-card__img {
    aspect-ratio: 16 / 10;
    background: var(--wl-paper-deep);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 14px;
}
.wl-article-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wl-article-card h3 {
    font-size: 16.5px;
    margin: 0 0 8px;
}
.wl-article-card p {
    font-size: 14px;
    color: var(--wl-ink-soft);
    margin: 0;
    line-height: 1.55;
}

/* ===== CTA FINAL ===== */
.wl-cta-final {
    background: var(--wl-seal);
    color: #fff;
    text-align: center;
    padding: 90px 0;
}
.wl-cta-final h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 16px;
    color: #fff;
}
.wl-cta-final p {
    max-width: 480px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.85);
}
.wl-cta-final .wl-btn--seal {
    background: #fff;
    color: var(--wl-seal);
}
.wl-cta-final .wl-btn--seal:hover {
    background: var(--wl-ink);
    color: #fff;
}

/* ===== SCROLL REVEAL ===== */
.wl-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.wl-reveal.is-visible {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .wl-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .wl-hero__grid { grid-template-columns: 1fr; }
    .wl-hero__visual { max-width: 420px; }
    .wl-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .wl-product-grid { grid-template-columns: repeat(2, 1fr); }
    .wl-steps { grid-template-columns: repeat(2, 1fr); }
    .wl-biaya__grid { grid-template-columns: 1fr; }
    .wl-ticket-grid { grid-template-columns: repeat(2, 1fr); }
    .wl-trust__grid { grid-template-columns: 1fr; gap: 24px; }
    .wl-testi-grid { grid-template-columns: repeat(2, 1fr); }
    .wl-article-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .wl-feature-grid,
    .wl-product-grid,
    .wl-steps,
    .wl-ticket-grid,
    .wl-testi-grid,
    .wl-article-grid {
        grid-template-columns: 1fr;
    }
    .wl-section { padding: 64px 0; }
    .wl-hero { padding: 64px 0 48px; }
    .wl-hero__cta { flex-direction: column; align-items: stretch; }
    .wl-ticket { flex-direction: column; }
    .wl-ticket__stub {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        border-left: none;
        border-top: 1.5px dashed var(--wl-line);
    }
}
