/* ============================================================
   LANDING PAGE — Tienda Mi País
   Mobile-first · matches reference design
   ============================================================ */

/* ── tokens ─────────────────────────────────────────────── */
.landing-main {
    --lp-green:   #1e4d3a;
    --lp-green-m: #2a6b50;
    --lp-green-l: #3a8f6a;
    --lp-red:     #cc2c22;
    --lp-dark:    #111111;
    --lp-ink:     #1a1a1a;
    --lp-muted:   #6b7280;
    --lp-border:  #e5e7eb;
    --lp-bg:      #f9f9f9;
    --lp-white:   #ffffff;
    --lp-s:  0 2px 12px rgba(0,0,0,.07);
    --lp-m:  0 8px 28px rgba(0,0,0,.11);
    --lp-l:  0 20px 52px rgba(0,0,0,.16);
    background: var(--lp-white);
    color: var(--lp-ink);
    font-family: inherit;
}

/* ── layout shell ───────────────────────────────────────── */
.lp-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.lp-section {
    padding: 56px 0;
}

/* ── chips / badges ─────────────────────────────────────── */
.lp-chip {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1rem;
    text-transform: uppercase;
}
.lp-chip--green { background: #166534; color: #fff; }
.lp-chip--red   { background: var(--lp-red); color: #fff; }
.lp-chip--dark  { background: #111; color: #fff; }

/* ── shared buttons ─────────────────────────────────────── */

/* outline button (light bg context) */
.lp-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    border: 1.5px solid var(--lp-border);
    color: var(--lp-ink);
    font-size: .88rem;
    font-weight: 600;
    white-space: nowrap;
    transition: border-color .2s, color .2s, background .2s;
    background: var(--lp-white);
}
.lp-outline-btn:hover {
    border-color: var(--lp-ink);
    color: var(--lp-ink);
}

/* outline on dark bg */
.lp-outline-btn--light {
    border-color: rgba(255,255,255,.35);
    color: #fff;
    background: transparent;
}
.lp-outline-btn--light:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    color: #fff;
}

/* outline on white bg (dark border) */
.lp-outline-btn--dark {
    border-color: var(--lp-ink);
    color: var(--lp-ink);
    background: transparent;
}
.lp-outline-btn--dark:hover {
    background: var(--lp-ink);
    color: #fff;
}

/* solid button */
.lp-solid-btn {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 26px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 700;
    white-space: nowrap;
    transition: opacity .2s, transform .2s;
}
.lp-solid-btn:hover { opacity: .88; transform: translateY(-1px); }

.lp-solid-btn--green {
    background: var(--lp-green);
    color: #fff;
}
.lp-solid-btn--dark {
    background: var(--lp-dark);
    color: #fff;
}
.lp-solid-btn--red {
    background: var(--lp-red);
    color: #fff;
}

/* dark promo button (used on dark card) */
.lp-dark-btn {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 22px;
    border-radius: 8px;
    background: rgba(255,255,255,.18);
    border: 1.5px solid rgba(255,255,255,.4);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
    transition: background .2s;
}
.lp-dark-btn:hover { background: rgba(255,255,255,.3); }

/* arrow link */
.lp-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    transition: gap .2s;
}
.lp-arrow-link:hover { gap: 8px; }

/* service link */
.lp-service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--lp-green);
    transition: gap .2s;
}
.lp-service-link:hover { gap: 8px; }

/* ═══════════════════════════════════════════════════════
   1 · ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════ */
.lp-announce {
    margin-top: 75px;
    background: var(--lp-red);
    height: 38px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.lp-announce-track {
    display: flex;
    white-space: nowrap;
    animation: lp-marquee 55s linear infinite;
}
.lp-announce-track:hover { animation-play-state: paused; }

.lp-announce-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    color: rgba(255,255,255,.93);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06rem;
}
.lp-announce-item::before { content: '✦'; font-size: .5rem; opacity: .6; }

@keyframes lp-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   2 · HERO
   ═══════════════════════════════════════════════════════ */
.lp-hero {
    position: relative;
    height: clamp(440px, 74vh, 700px);
    overflow: hidden;
    background: #0a0a0a;
}

.lp-hero-slides,
.lp-hero-slide,
.lp-hero-slide > img,
.lp-hero-slide > video,
.lp-hero-overlay { position: absolute; inset: 0; }

.lp-hero-slide {
    opacity: 0;
    transition: opacity .9s ease;
}
.lp-hero-slide.is-active { opacity: 1; }

.lp-hero-slide > img,
.lp-hero-slide > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ken-Burns zoom only for images — videos look wrong with it */
.lp-hero-slide > img {
    transform: scale(1.05);
    transition: transform 7s ease;
}
.lp-hero-slide.is-active > img { transform: scale(1); }

.lp-hero-overlay {
    background: linear-gradient(
        105deg,
        rgba(0,0,0,.42) 0%,
        rgba(0,0,0,.22) 55%,
        rgba(0,0,0,.08) 100%
    );
}

/* content shell — left-aligned */
.lp-hero-shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: clamp(24px, 5vw, 60px) clamp(16px, 4vw, 40px);
}

.lp-hero-copy {
    color: #fff;
    max-width: 680px;
}

.lp-hero-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255,255,255,.65);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .22rem;
    text-transform: uppercase;
}

.lp-hero-slide-copy         { display: none; }
.lp-hero-slide-copy.is-active { display: block; }

.lp-hero-slide-copy h1 {
    font-size: clamp(2.4rem, 8vw, 5.2rem);
    line-height: .92;
    margin-bottom: 16px;
    text-wrap: balance;
}

.lp-hero-slide-copy p {
    font-size: clamp(.95rem, 2vw, 1.08rem);
    color: rgba(255,255,255,.8);
    max-width: 520px;
    line-height: 1.65;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.lp-hero-btn {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 26px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 700;
    transition: opacity .2s, transform .2s;
}
.lp-hero-btn:hover { opacity: .88; transform: translateY(-1px); }

.lp-hero-btn--filled {
    background: var(--lp-green);
    color: #fff;
}
.lp-hero-btn--ghost {
    border: 1.5px solid rgba(255,255,255,.45);
    color: #fff;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(6px);
}
.lp-hero-btn--ghost:hover { background: rgba(255,255,255,.14); }

/* hero dots */
.lp-hero-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.lp-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.3);
    border: none;
    transition: background .3s, width .3s;
    cursor: pointer;
}
.lp-hero-dot.is-active { width: 32px; background: #fff; }

.lp-hero-progress {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,.16);
    border-radius: 999px;
    overflow: hidden;
    max-width: 80px;
}
.lp-hero-bar {
    height: 100%;
    background: rgba(255,255,255,.6);
    border-radius: 999px;
    width: 0%;
}

/* ═══════════════════════════════════════════════════════
   3 · PROMOTIONS
   ═══════════════════════════════════════════════════════ */
.lp-promos {
    background: var(--lp-white);
}

/* section header row */
.lp-promos-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.lp-promos-header h2 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    line-height: 1.1;
    margin-bottom: 6px;
    color: var(--lp-ink);
}

.lp-promos-header p {
    font-size: .92rem;
    color: var(--lp-muted);
}

/* two-column card grid */
.lp-promo-2col {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

/* featured card */
.lp-promo-feat {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    min-height: 320px;
    background: #0a0a0a;
    box-shadow: var(--lp-m);
    cursor: pointer;
}
.lp-promo-feat > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.lp-promo-feat:hover > img { transform: scale(1.04); }

.lp-promo-feat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.65) 55%, rgba(0,0,0,.88) 100%);
}

.lp-promo-feat-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 28px;
    color: #fff;
}

.lp-promo-feat-body .lp-chip { margin-bottom: 10px; }

.lp-promo-feat-body h3 {
    font-size: clamp(1.5rem, 5vw, 2.6rem);
    line-height: .95;
    margin-bottom: 10px;
}

.lp-promo-feat-body p {
    font-size: .92rem;
    color: rgba(255,255,255,.78);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* secondary card */
.lp-promo-sec {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    min-height: 200px;
    background: #0a0a0a;
    box-shadow: var(--lp-s);
    cursor: pointer;
}
.lp-promo-sec > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.lp-promo-sec:hover > img { transform: scale(1.04); }

.lp-promo-sec-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.82) 100%);
}

.lp-promo-sec-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 22px;
    color: #fff;
}

.lp-promo-sec-body .lp-chip { margin-bottom: 8px; }

.lp-promo-sec-body h3 {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    line-height: 1;
    margin-bottom: 6px;
}

.lp-promo-sec-body p {
    font-size: .85rem;
    color: rgba(255,255,255,.72);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* empty state */
.lp-promos-empty {
    padding: 48px 24px;
    border-radius: 14px;
    border: 2px dashed var(--lp-border);
    text-align: center;
    margin-bottom: 32px;
}
.lp-promos-empty h3 { font-size: 1.5rem; margin: 12px 0 8px; }
.lp-promos-empty p  { color: var(--lp-muted); font-size: .92rem; }

/* trust bar */
.lp-trust-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    background: var(--lp-bg);
    border-radius: 12px;
    border: 1px solid var(--lp-border);
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lp-trust-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex: 0 0 48px;
}

.lp-trust-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-ink);
    margin-bottom: 4px;
}

.lp-trust-text span {
    font-size: .88rem;
    color: var(--lp-muted);
}

/* ═══════════════════════════════════════════════════════
   4 · SERVICES
   ═══════════════════════════════════════════════════════ */
.lp-services {
    background: var(--lp-white);
    border-top: 1px solid var(--lp-border);
}

.lp-services-head {
    text-align: center;
    margin-bottom: 36px;
}

.lp-services-head h2 {
    font-size: clamp(1.4rem, 4.5vw, 2.2rem);
    line-height: 1.15;
    color: var(--lp-ink);
}

.lp-service-grid {
    display: grid;
    gap: 24px;
}

.lp-service-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-s);
    transition: transform .25s ease, box-shadow .25s ease;
}
.lp-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-m);
}

.lp-service-img-wrap {
    position: relative;
    aspect-ratio: 16 / 8;
    overflow: hidden;
}
.lp-service-img-wrap > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.lp-service-card:hover .lp-service-img-wrap > img { transform: scale(1.04); }

.lp-service-body {
    padding: 20px 22px 24px;
}

.lp-service-kicker {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14rem;
    text-transform: uppercase;
    color: var(--lp-muted);
    margin-bottom: 6px;
}

.lp-service-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lp-ink);
    margin-bottom: 8px;
    line-height: 1.2;
}

.lp-service-body > p {
    font-size: .88rem;
    color: var(--lp-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════════════
   5 · TRANSFER RATES BAND
   ═══════════════════════════════════════════════════════ */
.lp-rates-band {
    background: var(--lp-green);
    padding: 40px 0;
}

.lp-rates-band-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.lp-rates-band-left {
    flex: 1;
}

.lp-rates-badge {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lp-rates-band-left h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.lp-rates-band-left p {
    font-size: .88rem;
    color: rgba(255,255,255,.68);
    max-width: 520px;
}

/* rate pills row */
.lp-rates-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.lp-rates-row::-webkit-scrollbar { display: none; }

.lp-rate-pill {
    scroll-snap-align: start;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    transition: background .2s;
    min-width: 150px;
}
.lp-rate-pill:hover { background: rgba(255,255,255,.17); }

.lp-pill-flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 28px;
    border: 1px solid rgba(255,255,255,.15);
}

.lp-pill-info { min-width: 0; }

.lp-pill-pair {
    display: block;
    font-size: .72rem;
    color: rgba(255,255,255,.6);
    font-weight: 600;
    white-space: nowrap;
}

.lp-pill-rate {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════
   6 · PRODUCTS GRID
   ═══════════════════════════════════════════════════════ */
.lp-products {
    background: var(--lp-bg);
    border-top: 1px solid var(--lp-border);
}

.lp-products-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.lp-prod-kicker {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14rem;
    text-transform: uppercase;
    color: var(--lp-green);
    margin-bottom: 6px;
}

.lp-products-header h2 {
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    line-height: 1.15;
    color: var(--lp-ink);
}

.lp-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .lp-products-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-product-card {
    display: flex;
    flex-direction: column;
    background: var(--lp-white);
    border-radius: 12px;
    border: 1px solid var(--lp-border);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .25s, transform .25s;
    box-shadow: var(--lp-s);
}
.lp-product-card:hover {
    box-shadow: var(--lp-m);
    transform: translateY(-3px);
}

.lp-product-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f0f0;
}
.lp-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.lp-product-card:hover .lp-product-img img { transform: scale(1.06); }

.lp-product-info {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.lp-product-info h3 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--lp-ink);
    line-height: 1.3;
}
.lp-product-price {
    font-size: .92rem;
    font-weight: 700;
    color: var(--lp-green);
}

/* ═══════════════════════════════════════════════════════
   8 · GALLERY CAROUSEL
   ═══════════════════════════════════════════════════════ */
.lp-gallery-band {
    position: relative;
    overflow: hidden;
    background: #000;
    height: clamp(260px, 52vw, 640px);
}

.lp-gallery-track-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lp-gallery-track {
    display: flex;
    height: 100%;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.lp-gallery-slide {
    flex: 0 0 100%;
    height: 100%;
    cursor: zoom-in;
    overflow: hidden;
}
.lp-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform .4s ease;
}
.lp-gallery-slide:hover img { transform: scale(1.03); }

/* arrows */
.lp-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, opacity .2s;
    opacity: .7;
}
.lp-gallery-arrow:hover  { background: rgba(0,0,0,.72); opacity: 1; }
.lp-gallery-arrow--prev  { left: 16px; }
.lp-gallery-arrow--next  { right: 16px; }

/* dots */
.lp-gallery-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.lp-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.lp-gallery-dot.is-active {
    background: #fff;
    transform: scale(1.35);
}

/* ── lightbox ─────────────────────────────────────────── */
.lp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lp-lightbox.is-open { display: flex; }

.lp-lightbox-img {
    max-width: min(960px, 100%);
    max-height: 86vh;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
    user-select: none;
}

.lp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.lp-lightbox-close:hover { background: rgba(255, 255, 255, .22); }

.lp-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.lp-lightbox-nav:hover     { background: rgba(255, 255, 255, .22); }
.lp-lightbox-nav--prev     { left: 16px; }
.lp-lightbox-nav--next     { right: 16px; }

@media (max-width: 540px) {
    .lp-lightbox-nav { display: none; }
}

/* ═══════════════════════════════════════════════════════
   7 · REVIEWS
   ═══════════════════════════════════════════════════════ */
.lp-reviews {
    background: var(--lp-white);
    border-top: 1px solid var(--lp-border);
    text-align: center;
}

.lp-reviews-title {
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: var(--lp-ink);
    margin-bottom: 36px;
}

.lp-review-stage-wrap {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.lp-review-quote-mark {
    font-size: 7rem;
    line-height: .6;
    color: var(--lp-green);
    font-family: Georgia, serif;
    opacity: .15;
    position: absolute;
    top: -10px;
    left: 0;
    pointer-events: none;
    user-select: none;
}

/* review slides */
.lp-review-stage {
    position: relative;
    min-height: 160px;
}

.lp-review-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
}
.lp-review-slide.is-active { display: flex; }

.lp-review-text {
    font-size: clamp(.95rem, 2.5vw, 1.1rem);
    color: var(--lp-ink);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

.lp-review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.lp-review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--lp-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04rem;
    text-transform: uppercase;
    flex: 0 0 46px;
}

.lp-review-meta { text-align: left; }

.lp-review-name {
    display: block;
    font-size: .92rem;
    font-weight: 700;
    color: var(--lp-ink);
}
.lp-review-label {
    display: block;
    font-size: .78rem;
    color: var(--lp-muted);
}

/* dot pagination */
.lp-review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.lp-review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-border);
    border: none;
    cursor: pointer;
    transition: background .25s, width .25s;
    padding: 0;
}
.lp-review-dot.is-active {
    background: var(--lp-green);
    width: 24px;
    border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════
   8 · LOCATIONS
   ═══════════════════════════════════════════════════════ */
.lp-visit {
    background: var(--lp-bg);
    border-top: 1px solid var(--lp-border);
}

.lp-visit-head {
    margin-bottom: 28px;
}

.lp-visit-head h2 {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem);
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--lp-ink);
}

.lp-visit-head p {
    font-size: .92rem;
    color: var(--lp-muted);
}

/* tabs */
.lp-loc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.lp-loc-tab {
    height: 40px;
    padding: 0 20px;
    border-radius: 8px;
    background: var(--lp-white);
    border: 1.5px solid var(--lp-border);
    color: var(--lp-muted);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}
.lp-loc-tab.is-active {
    background: var(--lp-green);
    border-color: var(--lp-green);
    color: #fff;
}

/* location panel */
.lp-loc-panel         { display: none; }
.lp-loc-panel.is-active {
    display: grid;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--lp-m);
    border: 1px solid var(--lp-border);
}

.lp-loc-map iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
    display: block;
}

.lp-loc-info {
    padding: 28px;
    background: var(--lp-white);
}

.lp-loc-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lp-ink);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .04rem;
}

.lp-loc-details {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 14px;
}

.lp-loc-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.lp-loc-detail img  { width: 28px; flex: 0 0 28px; margin-top: 2px; }
.lp-loc-detail strong { display: block; font-size: .82rem; color: var(--lp-muted); font-weight: 600; margin-bottom: 2px; }
.lp-loc-detail span   { display: block; font-size: .9rem; color: var(--lp-ink); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   9 · NEWSLETTER
   ═══════════════════════════════════════════════════════ */
.lp-newsletter {
    background: var(--lp-white);
    border-top: 1px solid var(--lp-border);
    padding: 60px 0;
    overflow: hidden;
}

.lp-newsletter-layout {
    display: grid;
    gap: 40px;
    align-items: center;
}

.lp-nl-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18rem;
    text-transform: uppercase;
    color: var(--lp-muted);
}

.lp-newsletter-content h2 {
    font-size: clamp(1.7rem, 5vw, 2.8rem);
    line-height: 1.1;
    color: var(--lp-ink);
    margin-bottom: 10px;
}

.lp-newsletter-content > p {
    font-size: .92rem;
    color: var(--lp-muted);
    margin-bottom: 24px;
    max-width: 460px;
    line-height: 1.65;
}

.lp-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 500px;
}

/* Slider sits on its own full-width row below email + button */
.lp-newsletter-form .sc-wrap {
    flex-basis: 100%;
    margin-top: 4px;
}

.lp-newsletter-input {
    flex: 1;
    min-width: 180px;
    height: 50px;
    padding: 0 18px;
    border-radius: 8px;
    border: 1.5px solid var(--lp-border);
    background: var(--lp-bg);
    color: var(--lp-ink);
    font-size: .9rem;
    font-family: inherit;
    transition: border-color .2s;
}
.lp-newsletter-input::placeholder { color: #9ca3af; }
.lp-newsletter-input:focus {
    outline: none;
    border-color: var(--lp-green);
    background: var(--lp-white);
}

.lp-newsletter-note {
    display: block;
    margin-top: 10px;
    font-size: .76rem;
    color: #9ca3af;
}

/* newsletter image */
.lp-newsletter-img {
    display: none;
}

.lp-newsletter-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — tablet ≥ 640px
   ═══════════════════════════════════════════════════════ */
@media (min-width: 640px) {
    .lp-announce { margin-top: 75px; }

    .lp-promo-2col {
        grid-template-columns: 1.5fr 1fr;
        min-height: 340px;
    }

    .lp-promo-feat { min-height: 340px; }
    .lp-promo-sec  { min-height: 200px; }

    .lp-trust-bar { grid-template-columns: repeat(2, 1fr); }

    .lp-service-grid { grid-template-columns: repeat(2, 1fr); }

    .lp-spotlight-grid { grid-template-columns: 1fr 1fr; }

    .lp-spot-gallery { grid-template-rows: auto auto; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — tablet ≥ 768px
   ═══════════════════════════════════════════════════════ */
@media (min-width: 768px) {
    .lp-section { padding: 72px 0; }
    .lp-announce { margin-top: 100px; }

    .lp-promos-header {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
    }

    .lp-rates-band-top {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .lp-loc-panel.is-active { grid-template-columns: 1fr 1fr; }

    .lp-newsletter-layout {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .lp-newsletter-img {
        display: block;
        height: 340px;
    }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — desktop ≥ 1024px
   ═══════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
    .lp-section { padding: 88px 0; }

    .lp-promo-2col {
        grid-template-columns: 1.6fr 1fr;
    }

    .lp-promo-feat { min-height: 420px; }
    .lp-promo-sec  { min-height: 420px; }

    .lp-trust-bar { grid-template-columns: repeat(4, 1fr); }

    .lp-service-grid { grid-template-columns: repeat(3, 1fr); }

    .lp-spotlight-grid { grid-template-columns: 1fr 1fr; gap: 56px; }

    .lp-spot-product-img { flex: 0 0 160px; min-height: 160px; }

    .lp-loc-map iframe { min-height: 360px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — large desktop ≥ 1200px
   ═══════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
    .lp-promo-2col { grid-template-columns: 1.55fr 1fr; }
}

/* ── Nav: compact at mid-screens to fit Promotions link ─ */
@media (min-width: 900px) and (max-width: 1200px) {
    .nav_inner_ulWrap_master li { padding: 8px 6px !important; }
    .nav_inner_ulWrap_master li a { font-size: .93rem !important; }
}

/* Promotions nav link — red dot */
.nav-promo-link { position: relative; }
.nav-promo-link::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cc2c22;
}
