:root {
    --gold: #bd8d32;
    --gold-2: #d8b46c;
    --gold-3: #8e651f;
    --ink: #121826;
    --muted: #657083;
    --cream: #fbf7ef;
    --soft: #fffdf8;
    --line: rgba(189, 141, 50, 0.22);
    --shadow: 0 24px 70px rgba(18, 24, 38, 0.09);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: Inter, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 85% 8%,
            rgba(216, 180, 108, 0.2),
            transparent 32%),
        radial-gradient(circle at 5% 35%,
            rgba(189, 141, 50, 0.1),
            transparent 28%),
        #fffdf9;
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
.serif {
    font-family: "Playfair Display", serif;
}

.script {
    font-family: Allura, cursive;
    color: var(--gold);
    font-size: 1.35em;
    font-weight: 400;
}

.gold {
    color: var(--gold);
}

.section-space {
    padding: 100px 0;
}

.small-title {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 800;
    font-size: 0.78rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 700;
    line-height: 1.05;
}

.section-line {
    width: 58px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    border-radius: 10px;
    margin: 16px auto 0;
}

.navbar {
    padding: 5px 0;
    background: rgba(255, 253, 249, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(189, 141, 50, 0.08);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img.brand-logo {
    height: 60px;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border: 1.8px solid var(--gold);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--gold);
    transform: rotate(45deg);
}

.logo-mark i {
    transform: rotate(-45deg);
}

.nav-link {
    font-weight: 600;
    color: var(--ink) !important;
    margin: 0 12px;
    font-size: 0.94rem;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-gold {
    border: 0;
    color: #fff !important;
    font-weight: 800;
    border-radius: 14px;
    padding: 14px 25px;
    background: linear-gradient(135deg, #d8b46c, #bd8d32, #93651d);
    box-shadow: 0 16px 34px rgba(189, 141, 50, 0.3);
    transition: 0.35s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(189, 141, 50, 0.42);
}

.btn-soft {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    border-radius: 14px;
    padding: 14px 25px;
    font-weight: 800;
    transition: 0.35s;
}

.btn-soft:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(55px);
    z-index: -1;
    opacity: 0.75;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 320px;
    height: 320px;
    background: rgba(216, 180, 108, 0.22);
    right: -120px;
    top: 120px;
}

.shape-2 {
    width: 240px;
    height: 240px;
    background: rgba(189, 141, 50, 0.1);
    left: -120px;
    top: 820px;
    animation-delay: 1.3s;
}

.shape-3 {
    width: 220px;
    height: 220px;
    background: rgba(216, 180, 108, 0.16);
    right: 10%;
    bottom: 380px;
    animation-delay: 2s;
}

@keyframes float {
    50% {
        transform: translateY(-24px);
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 70px;
    display: flex;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 17px;
    border-radius: 999px;
    background: #f7efe2;
    color: var(--gold);
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-pill:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.055em;
    margin: 26px 0 10px;
}

p.hero-tagline {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.2vw, 1.55rem);
    color: var(--gold) !important;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin: 0 0 22px;
}

.hero p {
    max-width: 580px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.event-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin: 35px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 145px;
}

.meta-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--gold);
}

.meta-item strong {
    display: block;
    font-size: 0.9rem;
}

.meta-item span {
    font-size: 0.8rem;
    color: var(--muted);
}

.hero-photo {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    min-height: 560px;
    box-shadow: var(--shadow);
    background: #eee;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    filter: saturate(0.98);
}

.hero-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 253, 249, 0.2),
            transparent 50%);
}

.founder-card {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 22px;
    padding: 18px 22px;
    box-shadow: 0 18px 50px rgba(18, 24, 38, 0.14);
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.founder-card strong {
    display: block;
    font-size: 0.92rem;
}

.founder-card span {
    font-size: 0.78rem;
    color: var(--muted);
}

.premium-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(189, 141, 50, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-card {
    padding: 52px;
    position: relative;
    overflow: hidden;
}

.about-card:before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(189, 141, 50, 0.14);
    left: -90px;
    bottom: -90px;
}

.profile-wrap {
    position: relative;
    max-width: 360px;
    margin: auto;
}

.profile-wrap img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(18, 24, 38, 0.12);
}

.signature {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -28px;
    white-space: nowrap;
    background: #fff;
    border-radius: 20px;
    padding: 10px 28px;
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--gold);
    box-shadow: 0 16px 40px rgba(18, 24, 38, 0.1);
}

@media (max-width: 991px) {
    .profile-wrap {
        padding-bottom: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    .signature {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        display: inline-block;
        margin-top: 12px;
    }
}




.goal-card,
.contact-card,
.agenda-card {
    height: 100%;
    padding: 34px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(189, 141, 50, 0.1);
    box-shadow: 0 16px 45px rgba(18, 24, 38, 0.06);
    transition: 0.38s ease;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.goal-card:hover,
.contact-card:hover,
.agenda-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 65px rgba(18, 24, 38, 0.12);
    border-color: rgba(189, 141, 50, 0.32);
}

.icon-circle {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff6e4, #f1dfbc);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 1.55rem;
    margin-bottom: 22px;
}

.goal-card p,
.agenda-card p,
.contact-card p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 0;
}

.agenda-image {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    background: #111;
    box-shadow: var(--shadow);
}

.agenda-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    opacity: 0.62;
}

.agenda-content {
    position: absolute;
    inset: 0;
    padding: 45px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.1));
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.check-list li {
    margin: 14px 0;
    font-weight: 600;
}

.check-list i {
    color: var(--gold-2);
    margin-right: 10px;
}

.form-card {
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, #fff, #fbf3e6);
    border: 1px solid rgba(189, 141, 50, 0.18);
    box-shadow: var(--shadow);
}

.form-control {
    height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(18, 24, 38, 0.12);
    font-size: 0.94rem;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.22rem rgba(189, 141, 50, 0.14);
}

.upload-note {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    display: block;
}

.file-upload-area {
    position: relative;
    border: 1.5px dashed rgba(189, 141, 50, 0.45);
    border-radius: 12px;
    background: rgba(189, 141, 50, 0.04);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
    overflow: hidden;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: var(--gold);
    background: rgba(189, 141, 50, 0.09);
}

.file-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.file-upload-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(189, 141, 50, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.file-upload-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.file-upload-text span {
    font-size: 0.76rem;
    color: var(--muted);
}

.file-upload-badge {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(189, 141, 50, 0.12);
    border-radius: 6px;
    padding: 4px 10px;
    white-space: nowrap;
}

#file-name-display {
    font-size: 0.76rem;
    color: var(--gold);
    margin-top: 6px;
    min-height: 1em;
    font-weight: 500;
    padding-left: 2px;
}

.upload-notes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.upload-notes-list li {
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.55;
    padding: 2px 0 2px 14px;
    position: relative;
}

.upload-notes-list li::before {
    content: '*';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.quote-band {
    padding: 40px 48px;
    border-radius: 28px;
    background: linear-gradient(135deg, #fff, #fbf4e8);
    border: 1px solid rgba(189, 141, 50, 0.1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.quote-mark {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ink);
}

.stat-label {
    font-size: 0.86rem;
    color: var(--muted);
}

.contact-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.contact-card-link:hover .contact-card {
    transform: translateY(-10px);
    box-shadow: 0 26px 65px rgba(18, 24, 38, 0.12);
    border-color: rgba(189, 141, 50, 0.32);
}

.contact-card-link:hover .contact-icon {
    background: linear-gradient(135deg, #f1dfbc, #e8c97a);
}

.contact-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #f7efe2;
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
}

footer {
    padding: 28px 0;
    background: #111827;
    color: #fff;
    border-top: 4px solid var(--gold);
}

footer .script {
    font-size: 1.7rem;
}

/* ── QR Payment Modal ── */
.qr-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(18, 24, 38, 0.65);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: flex-start;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}

.qr-modal-overlay.active {
    display: flex;
}

.qr-modal-box {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px 28px;
    max-width: 440px;
    width: 100%;
    margin: auto;
    box-shadow: 0 32px 80px rgba(18, 24, 38, 0.22);
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(40px) scale(0.96);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.qr-modal-box .qr-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    border: 2px solid var(--line);
    margin-bottom: 16px;
}

/* ── Plan Selector ── */
.plan-selector {
    margin-bottom: 18px;
    text-align: left;
}

.plan-selector-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.plan-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
}

.plan-option {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.plan-option input[type="radio"] {
    display: none;
}

.plan-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1.5px solid rgba(189, 141, 50, 0.2);
    border-radius: 14px;
    padding: 14px 16px;
    background: #fff;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.plan-option input[type="radio"]:checked + .plan-card {
    border-color: var(--gold);
    background: #fdf6e9;
    box-shadow: 0 4px 18px rgba(189, 141, 50, 0.15);
}

.plan-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.plan-badge {
    font-size: 0.65rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #fff;
    border-radius: 20px;
    padding: 2px 7px;
    letter-spacing: 0.02em;
}

.plan-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.plan-price small {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
}

.plan-desc {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 3px;
}

.qr-amount-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fdf6e9;
    border: 1px solid rgba(189, 141, 50, 0.25);
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 14px;
}

.qr-amount-persons {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
}

.qr-amount-total {
    font-size: 1rem;
    font-weight: 800;
    color: var(--gold);
}

.qr-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid rgba(189, 141, 50, 0.35);
    border-radius: 8px;
    padding: 6px 14px;
    text-decoration: none;
    margin-bottom: 14px;
    transition: background 0.2s, border-color 0.2s;
}

.qr-download-btn:hover {
    background: #fdf4e3;
    border-color: var(--gold);
    color: var(--gold-3);
}

.qr-warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff8ec;
    border: 1px solid #f0c96b;
    border-radius: 12px;
    padding: 12px 14px;
    text-align: left;
    font-size: 0.82rem;
    color: #7a5000;
    margin-bottom: 20px;
}

.qr-warning i {
    color: #e0a000;
    margin-top: 1px;
    flex-shrink: 0;
}

.qr-txn-input {
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid rgba(18, 24, 38, 0.15);
    font-size: 0.94rem;
    width: 100%;
    padding: 0 16px;
    outline: none;
    transition: border-color 0.2s;
}

.qr-txn-input:focus {
    border-color: var(--gold);
}

.qr-txn-input.is-invalid {
    border-color: #dc3545;
}

#txn-error {
    font-size: 0.78rem;
    color: #dc3545;
    min-height: 1.2em;
    text-align: left;
    margin-top: 4px;
}

.qr-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.qr-modal-close:hover {
    color: var(--ink);
}

/* ── Thank You Modal ── */
.ty-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(18, 24, 38, 0.65);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.ty-modal-overlay.active {
    display: flex;
}

.ty-modal-box {
    background: linear-gradient(135deg, #fff, #fbf4e8);
    border-radius: 24px;
    padding: 44px 36px 36px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 32px 80px rgba(18, 24, 38, 0.22);
    text-align: center;
    animation: modalSlideIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ty-check {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d8b46c, #bd8d32);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
}

@media (max-width: 767px) {
    .about-card {
        padding: 28px;
    }

    .form-card {
        padding: 28px;
    }

    .quote-band {
        padding: 28px 24px;
    }

    .agenda-content {
        padding: 28px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .section-space {
        padding: 48px 0;
    }

    section.opportunity {
        padding: 48px 0 60px;
    }

    .hero-photo,
    .hero-photo img {
        min-height: 220px;
        max-height: 260px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        margin-top: 14px;
        padding: 18px;
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .hero {
        text-align: center;
        padding-top: 130px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .event-meta {
        justify-content: center;
    }

    .hero-photo,
    .hero-photo img {
        min-height: 420px;
    }

    .about-card {
        padding: 30px;
    }

    .section-space {
        padding: 72px 0;
    }

    .founder-card {
        left: 50%;
        transform: translateX(-50%);
        width: 86%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero h1 {
        letter-spacing: -0.035em;
    }

    .event-meta {
        gap: 14px;
    }

    .meta-item {
        width: 100%;
        justify-content: center;
    }

    .btn-gold,
    .btn-soft {
        width: 100%;
        justify-content: center;
    }

    .about-card,
    .form-card,
    .quote-band {
        padding: 24px;
    }

    .signature {
        font-size: 1.1rem;
    }

    .agenda-content {
        padding: 26px;
    }

    .hero-photo,
    .hero-photo img {
        min-height: 190px;
        max-height: 230px;
    }

    .founder-card {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        margin-top: 16px;
    }
}

/* ── Opportunity Section ── */
section.opportunity {
    padding: 30px 0;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-head {
    text-align: center;
    margin-bottom: 52px;
}

.section-eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

h2.section-title {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0;
}

.title-underline {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    margin: 20px auto 0;
    border-radius: 2px;
}

.opportunity-lede {
    max-width: 620px;
    margin: 24px auto 0;
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    text-align: center;
}

.opp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 52px;
}

.opp-card {
    background: #fff;
    border: 1px solid rgba(189, 141, 50, 0.15);
    border-radius: 18px;
    padding: 32px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 18px rgba(18, 24, 38, 0.05);
}

.opp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px -10px rgba(189, 141, 50, 0.18);
    border-color: rgba(189, 141, 50, 0.32);
}

.opp-card-highlight {
    background: linear-gradient(135deg, var(--gold-2), var(--gold), #93651d);
    border-color: transparent;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 44px 40px;
    box-shadow: 0 16px 40px rgba(189, 141, 50, 0.35);
}

.opp-card-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(189, 141, 50, 0.42);
    border-color: transparent;
}

.opp-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 14px;
    text-transform: uppercase;
}

h3.opp-card-title {
    font-family: "Playfair Display", serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--ink);
}

p.opp-card-body {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.opp-card-highlight .opp-tag {
    color: rgba(255, 255, 255, 0.85);
    display: block;
}

.opp-card-highlight h3.opp-card-title {
    font-size: 24px;
    color: #fff;
}

.opp-card-highlight p.opp-card-body {
    max-width: 480px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 991px) {
    .opp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    section.opportunity {
        padding: 60px 0 80px;
    }

    h2.section-title {
        font-size: 30px;
    }

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

    .opp-card-highlight {
        padding: 36px 28px;
    }
}
