/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #1c1919;
    background-color: #1c1919;
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background-color: #1c1919;
    color: #ffffff;
}

/* ============================================
   STICKY CTA (mobile only, scroll-triggered)
   ============================================ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 20px;
    background: rgba(28, 25, 25, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(194, 168, 89, 0.25);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.is-visible {
    transform: translateY(0);
}

.btn-sticky {
    display: block;
    width: 100%;
    text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 48px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 14px rgba(194, 168, 89, 0.35), 0 8px 24px rgba(194, 168, 89, 0.2); }
    50%       { box-shadow: 0 0 28px rgba(194, 168, 89, 0.65), 0 8px 28px rgba(194, 168, 89, 0.35); }
}

.btn-gold {
    background-color: #c2a859;
    color: #1c1919;
    box-shadow: 0 0 14px rgba(194, 168, 89, 0.35), 0 8px 24px rgba(194, 168, 89, 0.2);
    animation: glow-pulse 2.8s ease-in-out infinite;
}

.btn-gold:hover {
    background-color: #a89148;
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(194, 168, 89, 0.7), 0 12px 32px rgba(194, 168, 89, 0.4);
    animation: none;
}

.btn-red {
    background-color: #E93D3D;
    color: #ffffff;
    box-shadow: 0 0 14px rgba(233, 61, 61, 0.35), 0 8px 24px rgba(233, 61, 61, 0.2);
    animation: glow-pulse 2.8s ease-in-out infinite;
}

.btn-red:hover {
    background-color: #cc2e2e;
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(233, 61, 61, 0.7), 0 12px 32px rgba(233, 61, 61, 0.4);
    animation: none;
}

.btn-large {
    font-size: 15px;
    padding: 22px 56px;
}

/* ============================================
   CALLOUT PILL & EYEBROW
   ============================================ */
.callout-pill {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #c2a859;
    padding: 9px 20px;
    border: 1px solid rgba(194, 168, 89, 0.45);
    border-radius: 100px;
    margin-bottom: 28px;
    background-color: rgba(194, 168, 89, 0.06);
}

.callout-pill-gold {
    color: #c2a859;
    border-color: rgba(194, 168, 89, 0.55);
    background-color: rgba(194, 168, 89, 0.1);
}

.eyebrow {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #c2a859;
    margin-bottom: 14px;
}

.eyebrow-center {
    display: block;
    text-align: center;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
    font-size: clamp(22px, 3.4vw, 36px);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 0;
}

.section-heading::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background-color: #c2a859;
    border-radius: 2px;
    margin: 18px auto 40px;
}

.section-heading-no-bar::after {
    display: none;
}

.section-heading-left {
    text-align: left;
}

.section-heading-left::after {
    margin-left: 0;
    margin-right: auto;
}

/* ============================================
   EDITORIAL COPY
   ============================================ */
.editorial-copy p {
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 22px;
    color: inherit;
}

.editorial-copy p:last-child {
    margin-bottom: 0;
}

.standout-line {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 3.8vw, 36px) !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin-top: 14px !important;
    margin-bottom: 14px !important;
}

.standout-gold {
    color: #c2a859 !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: radial-gradient(ellipse 100% 70% at 50% -5%, rgba(194, 168, 89, 0.12) 0%, transparent 55%), #1c1919;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 40px;
}

.hero-inner {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-logo {
    width: 260px;
    height: auto;
    margin: 0 auto 32px;
    opacity: 0.95;
}

.hero-host {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-headshot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(194, 168, 89, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-host-name {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
}

.hero h1 {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.hero-underline {
    text-decoration: underline;
    text-decoration-color: #c2a859;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
    white-space: nowrap;
}

.hero-tagline {
    display: inline;
    font-size: 0.6em;
    font-style: italic;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.01em;
    color: #1c1919;
    background: #c2a859;
    padding: 4px 10px 6px;
    border-radius: 2px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.hero-sub {
    font-size: clamp(16px, 1.7vw, 18px);
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.event-meta {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.meta-label {
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.45);
}

.meta-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.meta-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

.meta-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, rgba(194, 168, 89, 0.45), transparent);
}

.hero-scarcity {
    margin-top: 20px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
}

/* ============================================
   SECTION: PROBLEM
   ============================================ */
.section-problem {
    background-color: #ffffff;
    color: #1c1919;
}

.section-problem .section-heading {
    color: #1c1919;
}

.section-problem .editorial-copy {
    color: #333;
}

/* ============================================
   STAT BREAK
   ============================================ */
.section-stat-break {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background-color: #0d0e10;
}

.stat-break-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.stat-break-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.14;
}

.stat-break-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(194, 168, 89, 0.07), transparent 70%);
}

.stat-break-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.stat-eyebrow {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.stat-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(56px, 11vw, 128px);
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 40px);
    flex-wrap: wrap;
}

.stat-from {
    color: rgba(255, 255, 255, 0.38);
}

.stat-arrow {
    color: #c2a859;
    font-weight: 400;
    font-size: 0.65em;
}

.stat-to {
    color: #c2a859;
}

.stat-foot {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

.stat-foot em {
    color: #c2a859;
    font-style: italic;
    font-weight: 600;
}

/* ============================================
   SECTION: WALK AWAY
   ============================================ */
.section-walkaway {
    background-color: #f0f0f0;
    color: #1c1919;
}

.section-walkaway .section-heading {
    color: #1c1919;
}

.walkaway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 1060px;
    margin: 0 auto;
}

.walkaway-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px 30px 30px 26px;
    border-left: 4px solid #c2a859;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.walkaway-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
}

.walkaway-card-wide {
    grid-column: 1 / -1;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.walkaway-arrow {
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #c2a859;
    line-height: 1.3;
}

.walkaway-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #333;
    margin: 0;
}

.walkaway-card strong {
    color: #1c1919;
    font-weight: 700;
}

/* ============================================
   SECTION: 4 PILLARS
   ============================================ */
.section-pillars {
    background-color: #f0f0f0;
}

.pillars-header {
    padding-top: 100px;
    padding-bottom: 48px;
    text-align: center;
}

.pillars-header .section-heading {
    color: #1c1919;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(28, 25, 25, 0.08);
}

.pillar-card {
    background: #1c1919;
    padding: 52px 32px 56px;
    border-top: 3px solid #c2a859;
    border-right: 1px solid rgba(194, 168, 89, 0.12);
}

.pillar-card:last-child {
    border-right: none;
}

.pillar-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #c2a859;
    opacity: 0.28;
    line-height: 1;
    margin-bottom: 18px;
}

.pillar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.pillar-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin: 0;
}

/* ============================================
   SECTION: HOST
   ============================================ */
.section-host {
    position: relative;
    overflow: hidden;
}

.section-host-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-host-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.07;
}

.section-host .container {
    position: relative;
    z-index: 1;
}

.host-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
}

.host-image img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid rgba(194, 168, 89, 0.18);
}

.host-content .section-heading {
    color: #ffffff;
}

.host-content .editorial-copy {
    color: rgba(255, 255, 255, 0.92);
}

.host-content .editorial-copy strong {
    color: #ffffff;
}

.host-callout {
    margin-top: 32px !important;
    padding: 22px 26px;
    border-left: 3px solid #c2a859;
    background-color: rgba(194, 168, 89, 0.07);
    border-radius: 0 8px 8px 0;
    font-size: 16px !important;
    color: #ffffff !important;
}

.host-callout em {
    color: #c2a859;
    font-style: italic;
    font-weight: 600;
}

/* ============================================
   PHOTO STRIP
   ============================================ */
.photo-strip {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.photo-strip img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   SECTION: TESTIMONIALS (VIDEO)
   ============================================ */
.section-testimonials {
    background-color: #f0f0f0;
    color: #1c1919;
}

.section-testimonials .section-heading {
    color: #1c1919;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    border: 4px solid #c2a859;
    border-radius: 6px;
    background: #0d0e10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.video-embed-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.video-pillar {
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #c2a859;
    margin-bottom: 2px;
}

.video-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #1c1919;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.video-role {
    font-size: 12px;
    color: #888;
}

/* ============================================
   SECTION: URGENCY
   ============================================ */
.section-urgency {
    padding-top: 50px;
    padding-bottom: 70px;
}

.section-urgency .editorial-copy {
    color: rgba(255, 255, 255, 0.92);
}

.section-urgency .editorial-copy em {
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
}

.section-urgency .section-heading {
    color: #ffffff;
}

.callout-block {
    margin-top: 40px;
    padding: 32px 28px;
    border-left: 4px solid #c2a859;
    background-color: rgba(194, 168, 89, 0.07);
    border-radius: 0 8px 8px 0;
    text-align: center;
}

.callout-block p {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 1.55 !important;
    color: #ffffff !important;
    margin-bottom: 0 !important;
}

/* ============================================
   FINAL CTA
   ============================================ */
.section-final-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.final-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(28, 25, 25, 0.90) 0%,
        rgba(28, 25, 25, 0.85) 40%,
        rgba(28, 25, 25, 0.92) 100%
    );
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.section-final-cta .section-heading {
    color: #ffffff;
}

.final-sub {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-logo {
    width: 180px;
    margin: 44px auto 0;
    opacity: 0.55;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: #0d0e10;
    padding: 48px 0;
    text-align: center;
}

.footer-logo {
    width: 160px;
    margin: 0 auto 18px;
    opacity: 0.55;
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c2a859;
}

/* ============================================
   RESPONSIVE: TABLET
   ============================================ */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }

    .host-grid {
        gap: 44px;
    }

    .walkaway-grid {
        gap: 14px;
    }

    /* Pillars: 2x2 */
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillar-card:nth-child(2) {
        border-right: none;
    }

    .pillar-card:nth-child(3) {
        border-right: 1px solid rgba(194, 168, 89, 0.12);
        border-top: 1px solid rgba(194, 168, 89, 0.12);
    }

    .pillar-card:nth-child(4) {
        border-right: none;
        border-top: 1px solid rgba(194, 168, 89, 0.12);
    }

    /* Videos: 2 per row on tablet */
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ============================================
   RESPONSIVE: MOBILE
   ============================================ */
@media (max-width: 768px) {

    /* Sticky CTA - visible on mobile, shown via JS after hero scrolls out */
    .sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 76px;
    }

    .section {
        padding: 64px 0;
    }

    .section-heading {
        font-size: clamp(18px, 5.5vw, 26px);
        letter-spacing: 0.03em;
    }

    .section-heading::after {
        margin-bottom: 28px;
    }

    .section-heading-left {
        text-align: center;
    }

    .section-heading-left::after {
        margin-left: auto;
        margin-right: auto;
    }

    .editorial-copy p {
        font-size: 16px;
    }

    /* Hero */
    .hero {
        padding: 64px 0;
        min-height: auto;
    }

    .hero-inner {
        padding: 0 20px;
    }

    .hero-logo {
        width: 180px;
        margin-bottom: 24px;
    }

    .hero-headshot {
        width: 68px;
        height: 68px;
    }

    .callout-pill {
        font-size: 10px;
        padding: 8px 16px;
        letter-spacing: 0.14em;
    }

    .hero h1 {
        font-size: clamp(22px, 5.8vw, 32px);
        margin-bottom: 44px;
    }

    .hero-sub {
        font-size: 16px;
        margin-bottom: 32px;
        margin-top: 0;
    }

    .hero-tagline {
        display: inline-block;
        white-space: nowrap;
        margin-top: 10px;
    }

    .event-meta {
        gap: 18px;
        margin-bottom: 32px;
    }

    .meta-divider {
        display: none;
    }

    .meta-value {
        font-size: 15px;
    }

    .btn {
        padding: 15px 32px;
        font-size: 13px;
    }

    .btn-large {
        padding: 17px 36px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    /* Stat break */
    .section-stat-break {
        padding: 80px 0;
    }

    /* Walkaway */
    .walkaway-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .walkaway-card {
        padding: 24px 22px;
    }

    .walkaway-card p {
        font-size: 15px;
    }

    /* Pillars */
    .pillars-header {
        padding-top: 64px;
        padding-bottom: 36px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .pillar-card {
        padding: 40px 28px;
        border-right: none;
        border-top: 3px solid #c2a859;
        border-bottom: 1px solid rgba(194, 168, 89, 0.1);
    }

    .pillar-card:last-child {
        border-bottom: none;
    }

    /* Ensure nth-child overrides don't linger on mobile */
    .pillar-card:nth-child(3),
    .pillar-card:nth-child(4) {
        border-top: 3px solid #c2a859;
        border-right: none;
    }

    /* Host */
    .host-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .host-image {
        max-width: 340px;
        margin: 0 auto;
    }

    .section-heading-left {
        text-align: center;
    }

    .host-callout {
        padding: 18px 20px;
        font-size: 15px !important;
    }

    /* Videos: 1 column on mobile */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Urgency */
    .callout-block {
        padding: 26px 22px;
    }

    .callout-block p {
        font-size: 18px !important;
    }

    /* Final CTA */
    .final-sub {
        font-size: 15px;
    }

    .standout-line {
        font-size: clamp(22px, 5.5vw, 30px) !important;
    }
}

/* ============================================
   SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 16px;
    }

    .pillars-header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pillars-header .section-heading {
        font-size: clamp(14px, 4.2vw, 18px);
    }

    .pillar-card {
        padding: 36px 20px;
    }

    .hero h1 {
        font-size: clamp(20px, 5.5vw, 24px);
        letter-spacing: 0.03em;
    }

    .hero-sub {
        font-size: 14px;
    }

    .event-meta {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .stat-headline {
        font-size: 52px;
    }

    .testimonial-grid {
        max-width: 100%;
    }
}

/* ============================================
   EMBEDDED CHECKOUT SECTION (replaces final CTA)
   ============================================ */
.section-embedded-checkout {
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
    text-align: center;
    color: #ffffff;
}

.section-embedded-checkout .final-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-embedded-checkout .final-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.section-embedded-checkout .final-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(28, 25, 25, 0.92) 0%,
        rgba(28, 25, 25, 0.90) 40%,
        rgba(28, 25, 25, 0.95) 100%
    );
}

.embedded-checkout-content {
    position: relative;
    z-index: 1;
}

.section-embedded-checkout .section-heading {
    color: #ffffff;
}

.section-embedded-checkout .final-sub {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   EMBEDDED CHECKOUT CARD
   ============================================ */
.embed-checkout-card {
    background-color: #ffffff;
    color: #1c1919;
    border-radius: 14px;
    padding: 0;
    max-width: 620px;
    margin: 12px auto 36px;
    text-align: left;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45), 0 2px 10px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(194, 168, 89, 0.25);
    overflow: hidden;
}

/* Summary header */
.embed-summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #1c1919 0%, #2a2523 100%);
    color: #ffffff;
    border-bottom: 3px solid #c2a859;
}

.embed-summary-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    text-transform: none;
}

.embed-summary-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.embed-summary-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.embed-summary-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #c2a859;
    line-height: 1;
    letter-spacing: -0.02em;
}

.embed-summary-note {
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

/* Step */
.embed-step {
    padding: 26px 28px 8px;
    border-bottom: 1px solid #f0efeb;
}

.embed-step:last-of-type {
    border-bottom: none;
    padding-bottom: 26px;
}

.embed-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.embed-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1c1919;
    color: #c2a859;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.embed-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #1c1919;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

.embed-methods {
    display: flex;
    gap: 5px;
    margin-left: auto;
}

.embed-method-chip {
    font-family: 'Sora', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    padding: 4px 9px;
    background-color: #f0f0f0;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Form */
.embed-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.embed-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.embed-field-label {
    font-family: 'Sora', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #666;
}

.embed-field input {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #1c1919;
    padding: 13px 15px;
    border: 1.5px solid #e0dfdb;
    border-radius: 6px;
    background-color: #fafaf7;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.embed-field input::placeholder { color: #b8b8b8; }

.embed-field input:focus {
    outline: none;
    border-color: #c2a859;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(194, 168, 89, 0.15);
}

.embed-field-help {
    font-size: 12.5px;
    color: #888;
    line-height: 1.5;
    margin-top: 2px;
}

/* Stripe mount */
.embed-stripe-mount {
    min-height: 200px;
    border: 1.5px dashed #d5d2ca;
    border-radius: 8px;
    background-color: #fafaf7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.embed-stripe-placeholder {
    text-align: center;
    max-width: 340px;
}

.embed-stripe-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(194, 168, 89, 0.12);
    border-radius: 50%;
    color: #c2a859;
}

.embed-stripe-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #1c1919;
    margin-bottom: 6px;
}

.embed-stripe-note {
    font-size: 12.5px;
    color: #777;
    line-height: 1.55;
}

/* Submit button - positioned inside card */
.btn-embed-submit {
    display: block;
    width: calc(100% - 56px);
    margin: 4px 28px 22px;
    text-align: center;
}

/* Trust lines */
.embed-trust {
    background-color: #f9f8f4;
    padding: 18px 28px;
    border-top: 1px solid #f0efeb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.embed-trust-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: #666;
    line-height: 1.55;
}

.embed-trust-line svg {
    color: #c2a859;
    flex-shrink: 0;
    margin-top: 2px;
}

.embed-trust-line strong {
    color: #1c1919;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE: EMBEDDED CHECKOUT
   ============================================ */
@media (max-width: 768px) {
    .section-embedded-checkout {
        padding: 70px 0 70px;
    }

    .embed-summary {
        padding: 20px 22px;
        flex-wrap: wrap;
    }

    .embed-summary-amount {
        font-size: 28px;
    }

    .embed-step {
        padding: 22px 22px 6px;
    }

    .embed-step:last-of-type {
        padding-bottom: 22px;
    }

    .embed-step-header {
        gap: 10px;
    }

    .embed-methods {
        margin-left: 0;
        width: 100%;
    }

    .btn-embed-submit {
        width: calc(100% - 40px);
        margin: 4px 20px 18px;
        padding: 17px 20px;
        font-size: 13px;
    }

    .embed-trust {
        padding: 16px 22px;
    }

    .embed-stripe-mount {
        min-height: 180px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .embed-checkout-card {
        margin-left: -4px;
        margin-right: -4px;
    }

    .embed-summary-name { font-size: 15px; }
    .embed-summary-desc { font-size: 12px; }
}

/* ============================================
   TEXT TESTIMONIAL QUOTE CARDS
   ============================================ */
.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
}

.quote-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 34px 32px 30px;
    border-left: 4px solid #c2a859;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quote-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
}

.quote-card .quote-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #c2a859;
    line-height: 0.4;
    opacity: 0.85;
}

.quote-card .quote-body {
    font-size: 16px;
    line-height: 1.65;
    color: #333;
    font-style: italic;
    flex-grow: 1;
    margin: 0;
}

.quote-card .quote-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 12px;
    border-top: 1px solid rgba(28, 25, 25, 0.08);
}

.quote-card .quote-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1c1919;
}

.quote-card .quote-role {
    font-size: 12px;
    color: #888;
}

@media (max-width: 768px) {
    .quote-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 520px;
    }

    .quote-card {
        padding: 28px 26px 26px;
    }
}

/* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */
.section-google-reviews {
    background-color: #f6f5f2;
    color: #1c1919;
}

.section-google-reviews .section-heading {
    color: #1c1919;
}

.google-badge-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
    margin-bottom: 36px;
}

.google-reviews-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.google-reviews-more {
    margin-top: 28px;
    text-align: center;
}

.google-reviews-more > summary {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #c2a859;
    padding: 13px 28px;
    border: 1.5px solid rgba(194, 168, 89, 0.4);
    border-radius: 100px;
    background-color: rgba(194, 168, 89, 0.06);
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    list-style: none;
}

.google-reviews-more > summary::-webkit-details-marker { display: none; }

.google-reviews-more > summary::after {
    content: '▾';
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    transition: transform 0.25s ease;
}

.google-reviews-more[open] > summary::after {
    transform: rotate(180deg);
}

.google-reviews-more > summary:hover {
    background-color: rgba(194, 168, 89, 0.12);
    border-color: #c2a859;
    color: #a89148;
}

.google-reviews-long-wrap {
    margin-top: 32px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.section-faq {
    background-color: #f6f5f2;
    color: #1c1919;
    padding-top: 40px;
}

.section-faq .section-heading {
    color: #1c1919;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(28, 25, 25, 0.05);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 20px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1c1919;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #c2a859;
    transition: transform 0.25s ease;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '\2013';
}

.faq-item:hover summary { color: #c2a859; }

.faq-body { padding: 0 24px 22px; }

.faq-body p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
}

@media (max-width: 768px) {
    .section-faq { padding-top: 28px; }
    .faq-item summary { padding: 18px 20px; font-size: 14px; }
    .faq-body { padding: 0 20px 18px; }
    .google-reviews-more > summary { padding: 12px 22px; font-size: 11px; }
}

/* ============================================
   POST-FAQ CTA
   ============================================ */
.section-post-faq-cta {
    background-color: #1c1919;
    color: #ffffff;
    text-align: center;
    padding: 72px 0;
}

.section-post-faq-cta .section-heading {
    color: #ffffff;
    margin-bottom: 14px;
}

.post-faq-cta-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 auto 36px;
    max-width: 520px;
}

.post-faq-cta-scarcity {
    margin-top: 22px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .section-post-faq-cta { padding: 52px 0; }
    .post-faq-cta-sub { font-size: 15px; margin-bottom: 28px; }
}
