/* ══════════════════════════════════════════════════════
   AD SLOTS — native integration, no placeholders
   ══════════════════════════════════════════════════════ */

/* Base slot: renders nothing if empty (no $ad or no content) */
.ad-slot {
    text-align: center;
    overflow: hidden;
    line-height: 0;
}
.ad-slot img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
}
.ad-link { display: inline-block; line-height: 0; }

/* ── Wrapper: homepage after-hero banner ── */
.ad-wrap--banner {
    padding: 1.1rem 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.ad-wrap--banner .ad-slot {
    max-width: 970px;
    margin: 0 auto;
}
.ad-wrap--banner .ad-slot img {
    max-width: 970px;
    max-height: 160px;
    object-fit: contain;
    height: auto;
}

/* ── Wrapper: homepage mid-page strip ── */
.ad-wrap--strip {
    padding: 1.1rem 0;
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ── Article top banner (above body, inside main column) ── */
.ad-wrap--article-top {
    margin-bottom: 1.5rem;
}
.ad-wrap--article-top .ad-slot {
    border-radius: 2px;
    overflow: hidden;
}

/* ── Inline article ad (after-intro & mid-content) ── */
.ad-slot--inline,
.ad-wrap--inline .ad-slot {
    margin: 1.75rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(229,231,235,.7);
    border-bottom: 1px solid rgba(229,231,235,.7);
}

/* ── Sidebar ad ── */
.np-art-sidebar .ad-slot {
    border-radius: 2px;
    overflow: hidden;
    max-width: 300px;
    margin: 0 auto;
}
.np-art-sidebar .ad-slot img {
    max-width: 300px;
    height: auto;
}

/* ── Phase 14: ad wrappers ── */
.ad-wrap--leaderboard {
    padding: 1.25rem 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.ad-wrap--leaderboard .ad-slot {
    display: inline-block;
    max-width: 970px;
}
.ad-wrap--leaderboard .ad-slot img { max-width: 970px; }

.ad-wrap--section-break {
    padding: 1rem 0;
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.ad-wrap--bottom {
    padding: 1.5rem 0;
    background: var(--off-white);
    border-top: 1px solid var(--border);
    text-align: center;
}
.ad-wrap--bottom .ad-slot img { max-width: 1200px; }

.ad-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.ad-video-wrap iframe,
.ad-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ── Phase 14 responsive: ad wrappers ── */
@media (max-width: 768px) {
    .ad-wrap--leaderboard,
    .ad-wrap--section-break,
    .ad-wrap--bottom { padding: 0.75rem 0; }
    .ad-slot img { max-height: 140px; width: 100%; object-fit: contain; }
    .ad-wrap--banner .ad-slot img { max-height: 100px; }
}

/* ── Phase 15: sponsored label + inline ad ── */
.ad-slot { position: relative; }
.ad-sponsored-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    margin-bottom: 0.35rem;
    opacity: .65;
}
.ad-slot--inline {
    margin: 2rem 0;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fdfcfa;
}

/* ── Phase 17B: hard ad size enforcement ── */
.ad-wrap--banner,
.ad-wrap--leaderboard {
    padding: 18px 0 !important;
}
.ad-wrap--banner .ad-slot,
.ad-wrap--leaderboard .ad-slot {
    max-width: 970px !important;
    max-height: 140px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    display: block !important;
}
.ad-wrap--banner img,
.ad-wrap--leaderboard img {
    width: 100% !important;
    max-width: 970px !important;
    max-height: 140px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    height: auto !important;
}
@media (max-width: 768px) {
    .ad-wrap--banner img,
    .ad-wrap--leaderboard img { max-height: 90px !important; }
}

/* ── Ad Rail: featured + 2 tiles under hero ── */
.ad-rail {
    padding: 1rem 0;
    background: var(--off-white, #f8f7f4);
    border-bottom: 1px solid var(--border, #e8e4df);
}

.ad-rail-inner {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.ad-rail-featured {
    flex: 3;
    min-width: 0;
}

.ad-rail-tiles {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.ad-rail-tile {
    flex: 1;
    min-width: 0;
}

.ad-rail .ad-slot img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 2px;
}

/* ── 3-column ad row (after events) ── */
.ad-row-3 {
    padding: 1rem 0;
    background: var(--white, #fff);
    border-top: 1px solid var(--border, #e8e4df);
    border-bottom: 1px solid var(--border, #e8e4df);
}

.ad-row-3-inner {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.ad-row-3-cell {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.ad-row-3-cell .ad-slot img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 2px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ad-rail-inner {
        flex-direction: column;
    }
    .ad-rail-tiles {
        flex-direction: row;
    }
    .ad-row-3-inner {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ── Phase 30: mid-page leaderboard — max 100px, no empty placeholder ── */
.ad-wrap--mid-leaderboard {
    padding: 0.85rem 0;
    background: var(--off-white, #f6f4ef);
    border-top: 1px solid var(--border, #e5e7eb);
    border-bottom: 1px solid var(--border, #e5e7eb);
    text-align: center;
}
.ad-wrap--mid-leaderboard .ad-slot {
    max-width: 970px;
    max-height: 100px;
    margin: 0 auto;
    overflow: hidden;
    display: block;
}
.ad-wrap--mid-leaderboard .ad-slot img,
.ad-wrap--mid-leaderboard img {
    max-width: 970px !important;
    max-height: 100px !important;
    width: 100% !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    height: auto !important;
}
.ad-wrap--mid-leaderboard .ad-sponsored-label {
    margin-bottom: 0.4rem;
    opacity: .55;
    font-size: 0.55rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted, #6b7280);
    display: block;
}
@media (max-width: 768px) {
    .ad-wrap--mid-leaderboard img { max-height: 60px !important; }
    .ad-wrap--mid-leaderboard { padding: 0.65rem 0; }
}

/* ══════════════════════════════════════════════════════
   PHASE 32 — AD SLOT SYSTEM: zones, placeholders, layout
   ══════════════════════════════════════════════════════ */

/* ── Ad Zones: full-width containers ── */
.ad-zone {
    text-align: center;
    overflow: hidden;
}
.ad-zone .container {
    display: flex;
    justify-content: center;
}
.ad-zone--leaderboard {
    padding: 0.9rem 0;
    background: var(--off-white, #f6f4ef);
    border-top: 1px solid var(--border, #e5e7eb);
    border-bottom: 1px solid var(--border, #e5e7eb);
}
.ad-zone--strip {
    padding: 0.75rem 0;
    background: var(--white, #fff);
    border-top: 1px solid var(--border, #e5e7eb);
    border-bottom: 1px solid var(--border, #e5e7eb);
}
.ad-zone--before-related {
    padding: 1rem 0;
    background: var(--off-white, #f6f4ef);
    border-top: 1px solid var(--border, #e5e7eb);
    border-bottom: 1px solid var(--border, #e5e7eb);
    margin: 2rem 0;
}
.ad-zone--footer-sponsor {
    padding: 1rem 0;
    background: var(--white, #fff);
    border-top: 1px solid var(--border, #e5e7eb);
}

/* ── Sponsor Row: after-hero & after-events ── */
.sponsor-row {
    padding: 1rem 0;
    background: var(--off-white, #f8f7f4);
    border-top: 1px solid var(--border, #e8e4df);
    border-bottom: 1px solid var(--border, #e8e4df);
}
.sponsor-row--after-events {
    background: var(--white, #fff);
    border-top: 1px solid var(--border, #e8e4df);
}

/* ── Sponsor Grid ── */
.sponsor-grid {
    display: grid;
    gap: 1rem;
    align-items: stretch;
}
.sponsor-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

/* ── Page Wrap: main column + sidebar ── */
.np-page-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: start;
    padding-top: 1.5rem;
}
.np-page-main { min-width: 0; }
.np-page-sidebar {
    min-width: 0;
    position: sticky;
    top: 80px;
}

/* ── Inline ad within grid (spans full row) ── */
.np-index-ad,
.np-media-ad {
    grid-column: 1 / -1;
    padding: 0.5rem 0;
}

/* ── Ad Slot Placeholder — premium "Advertise With Us" ── */
.ad-slot-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    background: #fafaf8;
    border: 1.5px dashed rgba(201,162,74,.45);
    border-radius: 4px;
    transition: border-color .2s ease, background .2s ease;
    overflow: hidden;
    box-sizing: border-box;
}
.ad-slot-placeholder:hover {
    border-color: rgba(201,162,74,.8);
    background: #fdf9ef;
}

/* Variant heights */
.ad-slot-placeholder--leaderboard {
    min-height: 90px;
    max-height: 100px;
    max-width: 970px;
}
.ad-slot-placeholder--strip {
    min-height: 70px;
    max-height: 90px;
    max-width: 970px;
}
.ad-slot-placeholder--rectangle {
    min-height: 250px;
    max-width: 300px;
}
.ad-slot-placeholder--sidebar {
    min-height: 250px;
    max-width: 300px;
}
.ad-slot-placeholder--native {
    min-height: 90px;
    max-height: 120px;
}
.ad-slot-placeholder--inline {
    min-height: 70px;
    max-height: 90px;
    max-width: 970px;
}

/* Placeholder inner layout */
.ad-slot-placeholder-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
}
.ad-slot-placeholder--rectangle .ad-slot-placeholder-inner,
.ad-slot-placeholder--sidebar .ad-slot-placeholder-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
}

/* Icon */
.ad-slot-placeholder-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: rgba(201,162,74,.7);
}
.ad-slot-placeholder--rectangle .ad-slot-placeholder-icon,
.ad-slot-placeholder--sidebar .ad-slot-placeholder-icon {
    width: 36px;
    height: 36px;
}

/* Text group */
.ad-slot-placeholder-texts { min-width: 0; }
.ad-slot-placeholder-title {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--navy, #071a2d);
    margin-bottom: 0.15rem;
}
.ad-slot-placeholder-sub {
    display: block;
    font-size: 0.65rem;
    color: var(--muted, #6b7280);
    line-height: 1.3;
}
.ad-slot-placeholder-size {
    display: inline-block;
    margin-top: 0.3rem;
    font-size: 0.58rem;
    letter-spacing: .08em;
    color: rgba(201,162,74,.8);
    font-weight: 600;
}

/* Sidebar ad bottom wrapper */
.np-sidebar-ad-wrap--btm {
    margin-top: 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .np-page-wrap {
        grid-template-columns: 1fr;
    }
    .np-page-sidebar {
        display: none;
    }
}
@media (max-width: 768px) {
    .sponsor-grid--three {
        grid-template-columns: repeat(2, 1fr);
    }
    .ad-zone--leaderboard,
    .ad-zone--strip,
    .ad-zone--before-related,
    .ad-zone--footer-sponsor {
        padding: 0.65rem 0;
    }
    .ad-slot-placeholder--leaderboard,
    .ad-slot-placeholder--strip,
    .ad-slot-placeholder--inline {
        min-height: 60px;
        max-height: 70px;
    }
    .ad-slot-placeholder-title { font-size: 0.65rem; }
    .ad-slot-placeholder-sub { display: none; }
    .ad-slot-placeholder-icon { width: 20px; height: 20px; }
}
@media (max-width: 480px) {
    .sponsor-grid--three {
        grid-template-columns: 1fr;
    }
    .ad-slot-placeholder--native {
        min-height: 70px;
    }
}

/* ══════════════════════════════════════════════════════
   PHASE 32 — ADVERTISE PAGE
   ══════════════════════════════════════════════════════ */

/* Why section */
.adv-why { margin-bottom: 2.5rem; }
.adv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.75rem;
    padding: 1.5rem;
    background: #f8f7f3;
    border-radius: 6px;
    border: 1px solid var(--border, #e5e7eb);
}
.adv-stat { text-align: center; }
.adv-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold, #c9a24a);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.adv-stat-lbl {
    font-size: 0.75rem;
    color: var(--muted, #6b7280);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Ad format cards */
.np-ad-formats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}
.np-ad-card {
    padding: 1.5rem;
    background: var(--white, #fff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 6px;
    position: relative;
    transition: box-shadow .2s ease;
}
.np-ad-card:hover {
    box-shadow: 0 4px 18px rgba(7,26,45,.07);
}
.np-ad-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy, #071a2d);
    margin: 0 0 0.6rem;
}
.np-ad-card p {
    font-size: 0.85rem;
    color: var(--muted, #6b7280);
    line-height: 1.55;
    margin: 0 0 0.75rem;
}
.np-ad-card--featured {
    border-color: rgba(201,162,74,.5);
    background: #fdf9ef;
}
.np-ad-card-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold, #c9a24a);
    border: 1px solid rgba(201,162,74,.5);
    border-radius: 20px;
    padding: 0.2rem 0.65rem;
    margin-bottom: 0.65rem;
}

/* Slot list inside card */
.adv-slot-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.adv-slot-list li {
    font-size: 0.78rem;
    color: var(--navy, #071a2d);
    padding-inline-start: 1rem;
    position: relative;
}
.adv-slot-list li::before {
    content: '✓';
    position: absolute;
    inset-inline-start: 0;
    color: var(--gold, #c9a24a);
    font-size: 0.75rem;
}

/* Technical specs table */
.adv-specs { margin: 2rem 0; }
.adv-specs-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 6px;
    overflow: hidden;
    margin: 1rem 0;
}
.adv-spec-row {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border, #e5e7eb);
}
.adv-spec-row:last-child { border-bottom: none; }
.adv-spec-row:nth-child(even) { background: #f8f7f3; }
.adv-spec-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy, #071a2d);
}
.adv-spec-size {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold, #c9a24a);
    font-family: monospace;
    text-align: center;
}
.adv-spec-fmt {
    font-size: 0.75rem;
    color: var(--muted, #6b7280);
}
.adv-specs-note {
    font-size: 0.78rem;
    color: var(--muted, #6b7280);
    margin-top: 0.5rem;
}

/* CTA section */
.np-ad-cta {
    padding: 2rem;
    background: var(--navy, #071a2d);
    color: #fff;
    border-radius: 8px;
    text-align: center;
    margin-top: 2.5rem;
}
.np-ad-cta h2 {
    color: #fff;
    margin-top: 0;
}
.np-ad-cta p {
    color: rgba(255,255,255,.75);
    margin-bottom: 1.5rem;
}
.adv-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.adv-cta-email {
    background: var(--gold, #c9a24a) !important;
    color: var(--navy, #071a2d) !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
}
.adv-cta-email:hover {
    background: #b8913e !important;
}
.adv-cta-contact {
    display: inline-block;
    padding: .85rem 2rem;
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: border-color .2s ease, background .2s ease;
}
.adv-cta-contact:hover {
    border-color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.08);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .np-ad-formats { grid-template-columns: 1fr; }
    .adv-stats { grid-template-columns: 1fr; gap: 1rem; }
    .adv-spec-row { grid-template-columns: 1fr 90px; }
    .adv-spec-fmt { display: none; }
    .adv-cta-row { flex-direction: column; }
    .np-ad-cta { padding: 1.5rem 1rem; }
}

/* ══════════════════════════════════════════════════════
   PHASE 38 — AD PACKAGES & BOOKING FORM
   ══════════════════════════════════════════════════════ */

/* Package price display */
.adv-pkg-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin: 0.6rem 0 0.85rem;
}
.adv-pkg-price-amount {
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--navy, #071A2D);
    letter-spacing: -.03em;
}
.np-ad-card--featured .adv-pkg-price-amount { color: #c9a24a; }
.adv-pkg-price-duration {
    font-size: 0.78rem;
    color: var(--muted, #888);
    font-weight: 400;
}

/* Book Now button on card */
.adv-pkg-book {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.4rem;
    background: var(--navy, #071A2D);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: .04em;
    border-radius: 3px;
    text-decoration: none;
    transition: background .2s ease, transform .15s ease;
}
.adv-pkg-book:hover {
    background: #0a2040;
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
}
.np-ad-card--featured .adv-pkg-book {
    background: var(--gold, #c9a24a);
    color: #03111F;
}
.np-ad-card--featured .adv-pkg-book:hover {
    background: #dbb95c;
    color: #03111F;
}

/* Booking inquiry form */
.adv-booking-form {
    margin-top: 1.75rem;
    padding: 1.75rem 2rem;
    background: #fafaf8;
    border: 1px solid #e8e5e0;
    border-radius: 6px;
    border-top: 3px solid var(--gold, #c9a24a);
}
.adv-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.adv-form-field--full { grid-column: 1 / -1; }
.adv-form-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted, #888);
    margin-bottom: 0.35rem;
}
.adv-form-field input,
.adv-form-field select,
.adv-form-field textarea {
    width: 100%;
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
    border: 1px solid #dddad5;
    border-radius: 4px;
    background: #fff;
    color: var(--text, #1a202c);
    transition: border-color .18s;
    font-family: inherit;
    box-sizing: border-box;
}
.adv-form-field input:focus,
.adv-form-field select:focus,
.adv-form-field textarea:focus {
    outline: none;
    border-color: var(--gold, #c9a24a);
    box-shadow: 0 0 0 3px rgba(201,162,74,.1);
}
.adv-form-field textarea { resize: vertical; line-height: 1.55; }

@media (max-width: 600px) {
    .adv-form-grid { grid-template-columns: 1fr; }
    .adv-booking-form { padding: 1.25rem 1rem; }
}

/* ══════════════════════════════════════════════════════
   PHASE 39 — ADVERTISE PAGE CONVERSION OPTIMISATION
   ══════════════════════════════════════════════════════ */

/* ── 1. CONVERSION HERO ── */
.adv-hero {
    position: relative;
    background: var(--navy, #071a2d);
    color: #fff;
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
}
.adv-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,162,74,.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,162,74,.07) 0%, transparent 55%);
    pointer-events: none;
}
.adv-hero-inner {
    position: relative;
    max-width: 780px;
}
.adv-hero-kicker {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold, #c9a24a);
    border: 1px solid rgba(201,162,74,.35);
    border-radius: 20px;
    padding: 0.28rem 0.9rem;
    margin-bottom: 1.1rem;
}
.adv-hero-headline {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: -.02em;
}
.adv-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.72);
    line-height: 1.65;
    margin: 0 0 2rem;
    max-width: 620px;
}
.adv-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.adv-hero-cta {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--gold, #c9a24a);
    color: #03111f;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background .2s ease, transform .15s ease;
}
.adv-hero-cta:hover {
    background: #dbb95c;
    color: #03111f;
    transform: translateY(-1px);
    text-decoration: none;
}
.adv-hero-secondary {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border: 1.5px solid rgba(255,255,255,.28);
    border-radius: 4px;
    color: rgba(255,255,255,.85);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease;
}
.adv-hero-secondary:hover {
    border-color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.06);
    color: #fff;
    text-decoration: none;
}

/* Hero stats bar */
.adv-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.12);
}
.adv-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 2rem 0 0;
}
.adv-hero-stat:first-child { padding-left: 0; }
.adv-hero-stat-num {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--gold, #c9a24a);
    line-height: 1;
    letter-spacing: -.03em;
}
.adv-hero-stat-lbl {
    font-size: 0.7rem;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .07em;
    white-space: nowrap;
}
.adv-hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.15);
    margin: 0 2rem 0 0;
    flex-shrink: 0;
}

/* ── 2. TRUST BLOCK ── */
.adv-trust {
    background: #f8f7f3;
    border-top: 1px solid var(--border, #e5e7eb);
    border-bottom: 1px solid var(--border, #e5e7eb);
    padding: 1.35rem 0;
}
.adv-trust-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted, #9ca3af);
    text-align: center;
    margin: 0 0 1rem;
}
.adv-trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.adv-trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.1rem;
    background: #fff;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 4px;
    min-width: 72px;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.adv-trust-logo:hover {
    border-color: rgba(201,162,74,.5);
    box-shadow: 0 2px 8px rgba(7,26,45,.05);
}
.adv-trust-logo span {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: .06em;
    color: var(--navy, #071a2d);
    opacity: .55;
}

/* ── 3. BENEFITS ── */
.adv-benefits {
    padding: 3.5rem 0;
    background: var(--white, #fff);
    border-bottom: 1px solid var(--border, #e5e7eb);
}
.adv-benefits-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy, #071a2d);
    text-align: center;
    margin: 0 0 2rem;
    letter-spacing: -.02em;
}
.adv-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.adv-benefit-card {
    padding: 1.75rem 1.5rem;
    background: #f8f7f3;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 6px;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.adv-benefit-card:hover {
    box-shadow: 0 6px 22px rgba(7,26,45,.07);
    border-color: rgba(201,162,74,.4);
}
.adv-benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,162,74,.1);
    border-radius: 8px;
    color: var(--gold, #c9a24a);
    margin-bottom: 1rem;
}
.adv-benefit-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy, #071a2d);
    margin: 0 0 0.65rem;
}
.adv-benefit-card p {
    font-size: 0.83rem;
    color: var(--muted, #6b7280);
    line-height: 1.6;
    margin: 0;
}

/* ── 4. PACKAGES SECTION ── */
.adv-packages-section {
    padding: 3.5rem 0;
    background: #f6f4ef;
    border-bottom: 1px solid var(--border, #e5e7eb);
}
.adv-section-hd {
    text-align: center;
    margin-bottom: 2rem;
}
.adv-section-hd h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy, #071a2d);
    margin: 0 0 0.5rem;
    letter-spacing: -.02em;
}
.adv-section-sub {
    font-size: 0.9rem;
    color: var(--muted, #6b7280);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.55;
}
.adv-success-msg {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 6px;
    font-size: 0.88rem;
    color: #166534;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.adv-success-msg svg { flex-shrink: 0; color: #22c55e; }

/* Package grid */
.adv-pkg-grid {
    grid-template-columns: repeat(3, 1fr);
}
.adv-pkg-card {
    position: relative;
    overflow: visible;
}
.adv-pkg-card--popular {
    border-color: rgba(201,162,74,.6) !important;
    box-shadow: 0 8px 30px rgba(201,162,74,.15);
}
.adv-pkg-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold, #c9a24a);
    color: #03111f;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 0.28rem 0.9rem;
    border-radius: 20px;
    white-space: nowrap;
}
.adv-pkg-exposure {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold, #c9a24a);
    margin-bottom: 0.4rem;
}
.adv-pkg-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy, #071a2d);
    margin: 0 0 0.1rem;
}
.adv-pkg-impressions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--muted, #6b7280);
    margin-bottom: 0.5rem;
}
.adv-pkg-impressions svg { color: var(--gold, #c9a24a); flex-shrink: 0; }
.adv-pkg-desc {
    font-size: 0.82rem;
    color: var(--muted, #6b7280);
    line-height: 1.55;
    margin: 0.5rem 0;
}
.adv-pkg-price--contact {
    font-size: 1.1rem !important;
    color: var(--muted, #6b7280) !important;
    font-weight: 700 !important;
}
.adv-pkg-urgency {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #b45309;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 3px;
    padding: 0.3rem 0.65rem;
    margin-top: 0.85rem;
}
.adv-pkg-urgency svg { flex-shrink: 0; }
.adv-pkg-urgency--soft {
    color: var(--muted, #6b7280);
    background: #f8f7f3;
    border-color: var(--border, #e5e7eb);
}

/* ── 5. SPECS SECTION ── */
.adv-specs-section {
    padding: 3rem 0;
    background: var(--white, #fff);
    border-bottom: 1px solid var(--border, #e5e7eb);
}

/* ── 6. BOOKING SECTION ── */
.adv-booking-section {
    padding: 4rem 0;
    background: var(--navy, #071a2d);
}
.adv-booking-section h2,
.adv-booking-section h3 { color: #fff; }
.adv-booking-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}
.adv-booking-form-col { min-width: 0; }

/* Form header copy */
.adv-form-eyebrow {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold, #c9a24a);
    margin-bottom: 0.75rem;
}
.adv-form-headline {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff !important;
    margin: 0 0 0.75rem;
    letter-spacing: -.02em;
}
.adv-form-sub {
    font-size: 0.88rem;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.adv-form-errors {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    color: #991b1b;
}
.adv-form-errors div + div { margin-top: 0.3rem; }

/* Override booking form for dark context */
.adv-booking-section .adv-booking-form {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
    border-top-color: var(--gold, #c9a24a);
}
.adv-booking-section .adv-form-field label {
    color: rgba(255,255,255,.5);
}
.adv-booking-section .adv-form-field input,
.adv-booking-section .adv-form-field select,
.adv-booking-section .adv-form-field textarea {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.15);
    color: #fff;
}
.adv-booking-section .adv-form-field input::placeholder,
.adv-booking-section .adv-form-field textarea::placeholder {
    color: rgba(255,255,255,.35);
}
.adv-booking-section .adv-form-field select option {
    background: #071a2d;
    color: #fff;
}
.adv-booking-section .adv-form-field input:focus,
.adv-booking-section .adv-form-field select:focus,
.adv-booking-section .adv-form-field textarea:focus {
    border-color: var(--gold, #c9a24a);
    box-shadow: 0 0 0 3px rgba(201,162,74,.15);
}

/* Submit row */
.adv-form-submit-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.adv-form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--gold, #c9a24a);
    color: #03111f;
    font-size: 0.9rem;
    font-weight: 800;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: .03em;
    transition: background .2s ease, transform .15s ease;
    font-family: inherit;
}
.adv-form-submit-btn:hover {
    background: #dbb95c;
    transform: translateY(-1px);
}
.adv-form-response-time {
    font-size: 0.75rem;
    color: rgba(255,255,255,.45);
    font-style: italic;
}

/* Right trust column */
.adv-booking-trust-col { min-width: 0; }
.adv-booking-trust-card {
    padding: 1.75rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
}
.adv-booking-trust-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff !important;
    margin: 0 0 1rem;
}
.adv-trust-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.adv-trust-checklist li {
    font-size: 0.82rem;
    color: rgba(255,255,255,.72);
    padding-inline-start: 1.4rem;
    position: relative;
    line-height: 1.45;
}
.adv-trust-checklist li::before {
    content: '✓';
    position: absolute;
    inset-inline-start: 0;
    color: var(--gold, #c9a24a);
    font-weight: 700;
    font-size: 0.8rem;
}
.adv-booking-contact {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.adv-booking-contact p {
    font-size: 0.78rem;
    color: rgba(255,255,255,.45);
    margin: 0 0 0.5rem;
}
.adv-booking-email {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold, #c9a24a);
    text-decoration: none;
    transition: color .18s ease;
}
.adv-booking-email:hover {
    color: #dbb95c;
    text-decoration: none;
}

/* ── 7. STICKY CTA ── */
.adv-sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    transition: opacity .3s ease, transform .3s ease;
}
.adv-sticky--hidden {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}
.adv-sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--navy, #071a2d);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(7,26,45,.35), 0 0 0 2px rgba(201,162,74,.4);
    letter-spacing: .03em;
    transition: background .2s ease, box-shadow .2s ease, transform .15s ease;
}
.adv-sticky-btn:hover {
    background: #0a2040;
    box-shadow: 0 6px 28px rgba(7,26,45,.45), 0 0 0 2px rgba(201,162,74,.7);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.adv-sticky-btn svg { color: var(--gold, #c9a24a); flex-shrink: 0; }

/* ── Phase 39 responsive ── */
@media (max-width: 1024px) {
    .adv-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .adv-pkg-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .adv-booking-wrap { grid-template-columns: 1fr; gap: 2rem; }
    .adv-booking-trust-col { max-width: 480px; }
}
@media (max-width: 768px) {
    .adv-hero { padding: 3rem 0 2.5rem; }
    .adv-hero-headline { font-size: 1.6rem; }
    .adv-hero-stats { flex-wrap: wrap; gap: 1.2rem; padding-top: 1.5rem; }
    .adv-hero-stat-divider { display: none; }
    .adv-hero-stat { padding: 0; }
    .adv-hero-stat-num { font-size: 1.4rem; }
    .adv-trust-logos { gap: 0.75rem; }
    .adv-benefits { padding: 2.5rem 0; }
    .adv-benefits-grid { grid-template-columns: 1fr; gap: 1rem; }
    .adv-packages-section { padding: 2.5rem 0; }
    .adv-pkg-grid { grid-template-columns: 1fr !important; }
    .adv-booking-section { padding: 2.5rem 0; }
    .adv-booking-wrap { gap: 1.5rem; }
    .adv-form-submit-row { flex-direction: column; align-items: flex-start; }
    .adv-sticky-cta { bottom: 1rem; right: 1rem; }
}
@media (max-width: 480px) {
    .adv-hero-actions { flex-direction: column; align-items: flex-start; }
    .adv-hero-cta, .adv-hero-secondary { width: 100%; text-align: center; }
    .adv-booking-trust-col { max-width: 100%; }
}
