.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

.reveal {
    opacity: 1;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.19, 1, .22, 1), transform .8s cubic-bezier(.19, 1, .22, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* placeholder page content so the footer has context when previewed */
.page-stub {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.page-stub p {
    color: var(--ink-soft);
    font-size: 14px;
}

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--plum-deep);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 30px;
    border-radius: 100px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 6px rgba(245, 200, 76, 0.18), 0 14px 30px rgba(245, 200, 76, 0.35);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 15px 28px;
    border-radius: 100px;
    transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ============ TOP CTA BANNER ============ */
.top-cta {
    position: relative;
    background: linear-gradient(120deg, var(--plum-deep), var(--plum) 55%, #4d1a37);
    overflow: hidden;
    padding: 100px 24px;
    text-align: center;
}

.top-cta-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.top-cta-lines path {
    fill: none;
    stroke: url(#ctaLineGrad);
    stroke-width: 1.4;
    stroke-dasharray: 6 10;
    animation: ctaFlow 14s linear infinite;
}

.top-cta-lines path:nth-child(2) {
    animation-duration: 18s;
    animation-direction: reverse;
}

.top-cta-lines path:nth-child(3) {
    animation-duration: 22s;
}

@keyframes ctaFlow {
    to {
        stroke-dashoffset: -320;
    }
}

.top-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.top-cta h2 {
    color: #fff;
    font-size: clamp(28px, 4.2vw, 42px);
    line-height: 1.18;
    margin-bottom: 18px;
}

.top-cta p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    margin-bottom: 34px;
}

.top-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ MAIN FOOTER ============ */
footer.site-footer {
    background: var(--plum-deep);
    color: #fff;
    padding: 80px 24px 0;
    /* margin-top: 10rem; */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1180px;
    margin: 0 auto;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--footer-hairline);
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    margin-bottom: 18px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-desc {
    font-size: 14px;
    color: var(--footer-text-soft);
    max-width: 280px;
    margin-bottom: 24px;
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--footer-hairline);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.social-icon:hover svg path,
.social-icon:hover svg circle,
.social-icon:hover svg rect {
    stroke: var(--plum-deep) !important;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a {
    font-size: 14.5px;
    color: var(--footer-text-soft);
    position: relative;
    transition: color .25s ease;
}

.footer-col a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col a:hover::after {
    width: 100%;
}

@media (max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
}

@media (max-width:560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ CONTACT STRIP ============ */
.contact-strip {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.contact-card {
    background: #fff;
    color: var(--ink);
    border-radius: 18px;
    padding: 22px 20px;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 14px 30px -18px rgba(0, 0, 0, 0.35);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 38px -16px rgba(0, 0, 0, 0.4);
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(245, 200, 76, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.contact-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
}

@media (max-width:900px) {
    .contact-strip {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .contact-strip {
        grid-template-columns: 1fr;
    }
}

/* ============ PHILOSOPHY LINE ============ */
.philosophy-line-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 0 40px;
}

.philosophy-track {
    position: relative;
    height: 2px;
    margin: 0 6px 20px;
    background: var(--footer-hairline);
    border-radius: 2px;
}

.philosophy-particle {
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #fff, var(--gold) 60%);
    box-shadow: 0 0 14px 4px rgba(245, 200, 76, 0.7);
    animation: philMove 8s linear infinite;
}

@keyframes philMove {
    0% {
        left: 0%;
        opacity: 0;
    }

    6% {
        opacity: 1;
    }

    94% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.philosophy-words {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.philosophy-words span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--footer-text-soft);
}

.philosophy-words span:last-child {
    color: var(--gold);
}

/* ============ BOTTOM BAR ============ */
.bottom-bar {
    max-width: 1180px;
    margin: 0 auto;
    padding: 26px 0 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    border-top: 1px solid var(--footer-hairline);
}

.bottom-left p {
    font-size: 12.5px;
    color: var(--footer-text-soft);
}

.bottom-left p:first-child {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2px;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bottom-links a {
    font-size: 12.5px;
    color: var(--footer-text-soft);
    transition: color .2s ease;
}

.bottom-links a:hover {
    color: #fff;
}

.bottom-links .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--footer-hairline);
}