
/* ── SCROLL REVEAL — disabled, content always visible ── */
[data-sr] { opacity: 1; transform: none; }
[data-sr].visible { opacity: 1; transform: none; }

/* ── BUTTONS ── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 16px 40px;
    background: var(--gold);
    color: #1E1208;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background .25s, transform .2s, box-shadow .25s;
}

.btn-gold:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 110, 0.3);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: border-color .25s, color .25s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    border: 1px solid rgba(15, 15, 15, 0.25);
    color: var(--dark);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background .25s, color .25s, border-color .25s;
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--cream);
    border-color: var(--dark);
}

/* ══════════════════════════════════════════
       HERO — Two Panel Grid
    ══════════════════════════════════════════ */
@keyframes hero-zoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes line-up {
    from {
        opacity: 0;
        transform: translateY(110%);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes slide-right {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.wh {
    display: grid;
    grid-template-columns: 3fr 2fr;
    height: 72vh;
    min-height: 480px;
    overflow: hidden;
}

/* ── Left: venue ── */
.wh__left {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.wh__venue {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.wh__left-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 5, 5, 0.92) 0%,
            rgba(5, 5, 5, 0.5) 35%,
            rgba(5, 5, 5, 0.15) 70%,
            transparent 100%);
}

.wh__inner {
    position: relative;
    z-index: 2;
    padding: 0 52px 60px;
    width: 100%;
}

.wh__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.wh__kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
    display: block;
}

.wh__title {
    font-family: var(--serif);
    font-size: clamp(42px, 5.5vw, 88px);
    font-weight: 300;
    line-height: .92;
    color: #fff;
    letter-spacing: -.025em;
    margin-bottom: 24px;
}

.wh__title em {
    font-style: italic;
    color: var(--gold);
}

.reveal-wrap {
    overflow: hidden;
    display: block;
}

.reveal-line {
    display: block;
    opacity: 0;
    transform: translateY(110%);
    animation: line-up .9s cubic-bezier(.16, 1, .3, 1) forwards;
}

.reveal-line.l2 {
    animation-delay: .1s;
}

.reveal-line.l3 {
    animation-delay: .2s;
}

.wh__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}

.wh__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.52);
    font-weight: 300;
    letter-spacing: .04em;
}

.wh__meta-item i {
    color: var(--gold);
    font-size: 10px;
}

.wh__cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Right: couple — angled left edge ── */
.wh__right {
    position: relative;
    overflow: hidden;
    /* slide in angled left edge */
    clip-path: polygon(200px 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -200px;
    z-index: 1;
}

.wh__couple-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

.wh__right-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 5, 5, 0.78) 0%,
            rgba(5, 5, 5, 0.18) 50%,
            rgba(5, 5, 5, 0.05) 100%);
}

/* Gold angled divider line on top of both panels */
.wh__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    /* sits at the seam between the two panels */
    left: calc(60% - 72px);
    width: 1.5px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(201, 169, 110, 0.9) 15%,
            rgba(226, 201, 138, 1) 50%,
            rgba(201, 169, 110, 0.9) 85%,
            transparent 100%);
    transform-origin: top center;
    transform: skewX(-8deg);
    z-index: 4;
    pointer-events: none;
}

.wh__couple-caption {
    position: absolute;
    bottom: 32px;
    left: 44px;
    right: 24px;
}

.wh__couple-caption__tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 7px;
}

.wh__couple-caption__tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.wh__couple-caption__name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.25;
    display: block;
    margin-bottom: 4px;
}

.wh__couple-caption__sub {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: .06em;
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .wh {
        grid-template-columns: 1fr;
        grid-template-rows: 58vw 62vw;
        height: auto;
        min-height: unset;
    }

    .wh__left {
        grid-row: 1;
    }

    .wh__right {
        grid-row: 2;
        clip-path: none;
        margin-left: 0;
        animation: none;
        opacity: 1;
        border-top: 1px solid rgba(201, 169, 110, 0.3);
    }

    .wh__divider {
        display: none;
    }

    .wh__inner {
        padding: 0 24px 32px;
    }

    .wh__title {
        font-size: clamp(34px, 9vw, 52px);
    }

    .wh__meta {
        gap: 12px;
    }

    .wh__couple-caption {
        bottom: 24px;
        left: 20px;
        right: 20px;
        animation: none;
        opacity: 1;
    }

    .wh__couple-caption__name {
        font-size: 18px;
    }
}

/* ══════════════════════════════════════════
       STATS STRIP
    ══════════════════════════════════════════ */
.stats-strip {
    background: var(--darker);
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.stats-strip__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide-gap: 1px;
}

.stat-item {
    padding: 44px 40px;
    text-align: center;
    border-right: 1px solid rgba(201, 169, 110, 0.1);
    position: relative;
    overflow: hidden;
    transition: background .3s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(201, 169, 110, 0.04);
}

.stat-item__num {
    font-family: var(--serif);
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.stat-item__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(240, 235, 224, 0.38);
}

/* ══════════════════════════════════════════
       STORY / ABOUT
    ══════════════════════════════════════════ */
.story {
    background: var(--cream);
    padding: 130px 60px;
}

.story__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
    align-items: center;
}

.story__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.story__label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
    display: block;
}

.story__title {
    font-family: var(--serif);
    font-size: clamp(38px, 4.2vw, 62px);
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: -.025em;
    color: var(--dark);
    margin-bottom: 36px;
}

.story__title em {
    font-style: italic;
    color: var(--gold-dk);
}

.story__body {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(15, 15, 15, 0.62);
    margin-bottom: 22px;
}

.story__body strong {
    font-weight: 500;
    color: var(--dark);
}

.story__img-wrap {
    position: relative;
}

.story__img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.story__img-badge {
    position: absolute;
    bottom: -28px;
    left: -28px;
    width: 130px;
    height: 130px;
    background: var(--dark);
    border: 1px solid rgba(201, 169, 110, 0.28);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
}

.story__img-badge strong {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.story__img-badge span {
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(240, 235, 224, 0.42);
}

/* ══════════════════════════════════════════
       INSTAGRAM REEL SECTION
    ══════════════════════════════════════════ */
.reel-section {
    background: var(--darker);
    padding: 130px 60px;
    overflow: hidden;
}

.reel-section__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.reel-section__copy {
    order: 1;
}

.reel-section__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reel-section__label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
    display: block;
}

.reel-section__title {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -.025em;
    color: var(--cream);
    margin-bottom: 28px;
}

.reel-section__title em {
    font-style: italic;
    color: var(--gold);
}

.reel-section__body {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(240, 235, 224, 0.5);
    margin-bottom: 36px;
}

.reel-section__social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.reel-section__social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 24px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(240, 235, 224, 0.7);
    letter-spacing: .04em;
    transition: border-color .25s, color .25s, background .25s;
}

.reel-section__social a i {
    color: var(--gold);
    font-size: 14px;
}

.reel-section__social a:hover {
    border-color: var(--gold);
    color: var(--cream);
    background: rgba(201, 169, 110, 0.07);
}

.reel-section__phone {
    order: 2;
    display: flex;
    justify-content: center;
}

.phone-frame {
    position: relative;
    width: 300px;
    flex-shrink: 0;
}

.phone-shell {
    position: relative;
    background: #111;
    border-radius: 44px;
    padding: 14px 10px;
    box-shadow:
        0 0 0 2px #2a2a2a,
        0 0 0 4px #1a1a1a,
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(201, 169, 110, 0.08);
}

.phone-shell::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #1e1e1e;
    border-radius: 3px;
    z-index: 10;
}

.phone-screen {
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    background: #000;
    aspect-ratio: 9/16;
}

.phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-screen__ui {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.phone-screen__top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px 16px 10px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-screen__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    overflow: hidden;
    flex-shrink: 0;
}

.phone-screen__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-screen__handle {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .01em;
}

.phone-screen__follow {
    margin-left: auto;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 3px 10px;
    border-radius: 4px;
}

.phone-screen__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.phone-screen__caption {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 8px;
}

.phone-screen__caption strong {
    color: #fff;
}

.phone-screen__actions {
    position: absolute;
    right: 10px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.phone-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.phone-action i {
    font-size: 20px;
    color: #fff;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.phone-action span {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.phone-glow {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(201, 169, 110, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* ══════════════════════════════════════════
       GALLERY — Editorial
    ══════════════════════════════════════════ */
.gallery-section {
    background: var(--dark);
    padding: 130px 0 0;
    overflow: hidden;
}

.gallery-section__header {
    max-width: 1240px;
    margin: 0 auto 72px;
    padding: 0 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.gallery-section__left {}

.section-kicker {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 300;
    letter-spacing: -.025em;
    color: var(--cream);
    line-height: 1.06;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.gallery-section__count {
    font-family: var(--serif);
    font-size: clamp(46px, 6vw, 82px);
    font-weight: 300;
    color: rgba(201, 169, 110, 0.1);
    line-height: 1;
    letter-spacing: -.04em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Feature grid */
.gallery-feature {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 340px 260px;
    gap: 5px;
}

.gf-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gf-item--tall {
    grid-row: 1 / span 2;
}

.gf-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .85s cubic-bezier(.16, 1, .3, 1);
    filter: brightness(.92);
}

.gf-item:hover img {
    transform: scale(1.06);
    filter: brightness(1);
}

.gf-item__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0));
    transition: background .4s;
}

.gf-item:hover .gf-item__veil {
    background: rgba(5, 5, 5, 0.1);
}

.gf-item__label {
    position: absolute;
    bottom: 20px;
    left: 24px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0);
    transition: color .35s;
}

.gf-item:hover .gf-item__label {
    color: rgba(255, 255, 255, 0.6);
}

/* Horizontal scroll strip */
.gallery-strip {
    margin-top: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 60px 60px;
    cursor: grab;
}

.gallery-strip::-webkit-scrollbar {
    display: none;
}

.gallery-strip:active {
    cursor: grabbing;
}

.gallery-strip__track {
    display: flex;
    gap: 5px;
    width: max-content;
}

.gs-thumb {
    width: 260px;
    height: 180px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.gs-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .4s;
    filter: brightness(.8) saturate(.85);
}

.gs-thumb:hover img {
    transform: scale(1.07);
    filter: brightness(1) saturate(1);
}

/* Gallery CTA bar */
.gallery-cta-bar {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 60px 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    padding-top: 40px;
}

.gallery-cta-bar__text {
    font-size: 14px;
    font-weight: 300;
    color: rgba(240, 235, 224, 0.38);
    letter-spacing: .02em;
}

.gallery-cta-bar__text strong {
    color: rgba(240, 235, 224, 0.7);
    font-weight: 500;
}

/* ══════════════════════════════════════════
       FEATURES
    ══════════════════════════════════════════ */
.features {
    background: var(--dark);
    padding: 130px 60px;
}

.features__inner {
    max-width: 1240px;
    margin: 0 auto;
}

.features__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.features__kicker {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features__kicker::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
    display: block;
}

.features__title {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.08;
    letter-spacing: -.025em;
}

.features__title em {
    font-style: italic;
    color: var(--gold);
}

.features__desc {
    font-size: 18px;
    font-weight: 300;
    color: rgba(240, 235, 224, 0.46);
    line-height: 1.85;
    align-self: end;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.feat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 110, 0.09);
    padding: 44px 38px;
    position: relative;
    overflow: hidden;
    transition: background .3s, border-color .3s;
}

.feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    transition: width .55s cubic-bezier(.16, 1, .3, 1);
}

.feat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 169, 110, 0.22);
}

.feat-card:hover::after {
    width: 100%;
}

.feat-card__icon {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(201, 169, 110, 0.28);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    transition: background .3s, border-color .3s;
}

.feat-card__icon i {
    color: var(--gold);
    font-size: 17px;
}

.feat-card:hover .feat-card__icon {
    background: var(--gold);
    border-color: var(--gold);
}

.feat-card:hover .feat-card__icon i {
    color: #1E1208;
}

.feat-card__title {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 14px;
    line-height: 1.2;
}

.feat-card__body {
    font-size: 16px;
    font-weight: 300;
    color: rgba(240, 235, 224, 0.42);
    line-height: 1.8;
}

/* ══════════════════════════════════════════
       CTA BAND
    ══════════════════════════════════════════ */
.cta-band {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding: 110px 60px;
    text-align: center;
}

.cta-band__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.15;
}

.cta-band__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-band__inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.cta-band__kicker {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    display: block;
}

.cta-band__title {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 74px);
    font-weight: 300;
    color: #fff;
    line-height: 1.02;
    letter-spacing: -.025em;
    margin-bottom: 24px;
}

.cta-band__title em {
    font-style: italic;
    color: var(--gold);
}

.cta-band__sub {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.8;
    margin-bottom: 48px;
}

.cta-band__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════
       FAQ
    ══════════════════════════════════════════ */
.faq-section {
    background: #fff;
    padding: 96px 0;
}

.faq-w {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 30px;
}

.faq-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 52px;
}

.faq-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.faq-heading {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 300;
    line-height: .96;
    letter-spacing: -.03em;
    color: var(--dark);
}

.faq-heading em {
    font-style: italic;
    color: var(--gold);
}

.faq-sub {
    font-size: 18px;
    font-weight: 300;
    color: rgba(15, 15, 15, 0.55);
    line-height: 1.85;
    align-self: end;
}

.faq-sub a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.faq-item.open {
    border-color: rgba(201, 169, 110, .3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-family: var(--sans);
    transition: background .25s;
}

.faq-q:hover {
    background: rgba(201, 169, 110, .04);
}

.faq-item.open .faq-q {
    background: rgba(201, 169, 110, .06);
}

.faq-q-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.35;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(201, 169, 110, .1);
    border: 1px solid rgba(201, 169, 110, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 11px;
    transition: background .3s, transform .35s;
}

.faq-item.open .faq-icon {
    background: linear-gradient(135deg, var(--gold), #8a6c28);
    border-color: var(--gold);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.16, 1, .3, 1);
}

.faq-item.open .faq-a {
    max-height: 400px;
}

.faq-a-inner {
    padding: 16px 28px 24px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(15, 15, 15, 0.58);
    line-height: 1.85;
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.faq-a-inner a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 768px) {
    .faq-top {
        grid-template-columns: 1fr;
    }

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

/* ══════════════════════════════════════════
       RELATED
    ══════════════════════════════════════════ */
.related {
    background: var(--dark);
    padding: 110px 60px;
}

.related__inner {
    max-width: 1240px;
    margin: 0 auto;
}

.related__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
    gap: 24px;
}

.related__title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: -.025em;
}

.related__all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    transition: gap .25s;
}

.related__all:hover {
    gap: 14px;
}

.related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.rel-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border-radius: 3px;
}

.rel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s cubic-bezier(.16, 1, .3, 1);
}

.rel-card:hover img {
    transform: scale(1.08);
}

.rel-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.1) 55%);
}

.rel-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
}

.rel-card__tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.rel-card__title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
}

.rel-card__arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 169, 110, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s, transform .3s;
}

.rel-card__arrow i {
    color: var(--gold);
    font-size: 11px;
}

.rel-card:hover .rel-card__arrow {
    opacity: 1;
    transform: none;
}

/* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
@media (max-width: 1100px) {
    .story__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story__img-wrap {
        order: -1;
    }

    .story__img {
        aspect-ratio: 16/9;
    }

    .reel-section__inner {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .reel-section__phone {
        order: -1;
    }

    .features__header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

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

    .timeline__steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .timeline__steps::before {
        display: none;
    }

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

    .gg-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 320px 320px 290px;
    }

    .gg-item:first-child {
        grid-row: 1;
        grid-column: 1 / span 2;
    }

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

    .stat-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .wh__inner {
        padding: 0 20px 48px;
    }

    .story {
        padding: 52px 20px;
    }

    .reel-section {
        padding: 52px 20px;
    }

    .gallery-section {
        padding: 0 0 0;
    }

    .features {
        padding: 52px 20px;
    }

    .packages {
        padding: 52px 20px;
    }

    .timeline {
        padding: 52px 20px;
    }

    .testi {
        padding: 52px 20px;
    }

    .cta-band {
        padding: 52px 20px;
    }

    .faq {
        padding: 52px 20px;
    }

    .related {
        padding: 52px 20px;
    }

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

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

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

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

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

    .gg-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gg-item {
        aspect-ratio: 4/3;
    }

    .gg-item:first-child {
        grid-row: auto;
        grid-column: auto;
    }

    .wh__meta {
        gap: 16px;
    }

    .wh__cta-row {
        flex-wrap: wrap;
    }

    .phone-frame {
        width: 240px;
    }

    .wh__scroll {
        display: none;
    }

    .stats-strip__inner {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .lf__form {
        padding: 28px 20px;
    }

    .lf {
        padding: 52px 20px;
    }
}

/* ── Lead Form / Quote Section ─────────────────────────────── */
.lf {
    background: var(--brownish);
    padding: 120px 48px;
    border-top: 1px solid rgba(201, 169, 110, .1);
}

.lf__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.lf__left-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.lf__left-h {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 24px;
}

.lf__left-h em {
    font-style: italic;
    color: var(--gold);
}

.lf__left-p {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, .45);
    line-height: 1.85;
    margin-bottom: 32px;
}

.lf__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lf__ci {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, .55);
    font-weight: 300;
    text-decoration: none;
    transition: color .25s;
}

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

.lf__ci-icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 169, 110, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lf__ci-icon i {
    color: var(--gold);
    font-size: 13px;
}

.lf__form {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(201, 169, 110, .12);
    padding: 44px 40px;
    border-radius: 4px;
}

.lf__form-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 6px;
}

.lf__form-sub {
    font-size: 14px;
    font-weight: 300;
    color: rgba(240, 235, 224, .35);
    margin-bottom: 28px;
}

.qrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.qf-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.qf-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(240, 235, 224, .4);
}

.qf {
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(201, 169, 110, .15);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    padding: 12px 16px;
    border-radius: 3px;
    outline: none;
    width: 100%;
    transition: border-color .25s, background .25s;
}

.qf::placeholder {
    color: rgba(240, 235, 224, .25);
}

.qf:focus {
    border-color: rgba(201, 169, 110, .45);
    background: rgba(255, 255, 255, .08);
}

select.qf,
input[type="date"].qf {
    background: #111 !important;
    color: var(--cream);
}

select.qf:focus,
input[type="date"].qf:focus {
    background: #1a1a1a !important;
}

.qf option {
    background: #111;
    color: var(--cream);
}

.qf-ta {
    min-height: 90px;
    resize: vertical;
}

.qsubmit {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: #1E1208;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity .25s;
    margin-top: 8px;
}

.qsubmit:hover {
    opacity: .88;
}

/* ══════════════════════════════════════════
   UTILITY — matches homepage tokens
══════════════════════════════════════════ */
/* .w / .eyebrow / .heading — now global in style.css */
.pad { padding: 96px 0; }
p.body-txt { font-size: 18px; font-weight: 300; color: var(--sub); line-height: 1.85; }

/* ══════════════════════════════════════════
   PROCESS SECTION — How It Works
══════════════════════════════════════════ */
.process-section {
    background: var(--darker);
    padding: 96px 0;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}

/* Connecting line — dots are centred in each column, so bar runs 12.5% → 87.5% */
.process-row::before {
    content: '';
    position: absolute;
    top: 28px;           /* half of 56 px dot = vertical centre */
    left: 12.5%;         /* centre of column 1 (25% ÷ 2) */
    right: 12.5%;        /* centre of column 4 from right edge */
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(201,169,110,.15) 0%,
        rgba(201,169,110,.55) 15%,
        rgba(201,169,110,.55) 85%,
        rgba(201,169,110,.15) 100%
    );
    z-index: 0;
}

.proc-item {
    padding: 0 16px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;   /* centre dot & text horizontally in column */
    text-align: center;
}

.proc-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201,169,110,.1);
    border: 1px solid rgba(201,169,110,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    transition: background .3s, border-color .3s;
    flex-shrink: 0;
}

.proc-item:hover .proc-dot {
    background: rgba(201,169,110,.18);
    border-color: var(--gold);
}

.proc-arrow {
    display: none; /* hidden — line replaces it */
}

.proc-n {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(201,169,110,.5);
    margin-bottom: 8px;
}

.proc-title {
    font-family: var(--serif);
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -.01em;
}

.proc-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(240,235,224,.42);
    line-height: 1.78;
}

@media (max-width: 900px) {
    .process-row {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
    }
    .process-row::before { display: none; }
}

@media (max-width: 520px) {
    .process-row { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    /* How It Works — icon + title yan yana */
    .proc-item{display:grid;grid-template-columns:56px 1fr;column-gap:14px;text-align:left;align-items:start;padding:0}
    .proc-dot{grid-column:1;grid-row:1/3;margin:0;width:56px;height:56px;align-self:center}
    .proc-n{grid-column:2;grid-row:1;margin-bottom:4px;align-self:end}
    .proc-title{grid-column:2;grid-row:2;font-size:clamp(16px,4.5vw,20px);margin-bottom:0;align-self:start}
    .proc-desc{grid-column:1/-1;grid-row:3;margin-top:10px;font-size:14px}
}

@media (max-width: 768px) {
    .process-header {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-bottom: 32px;
    }

    .process-header .body-txt {
        font-size: 14px !important;
        align-self: auto !important;
        color: rgba(255,255,255,.60) !important;
    }
}

/* ══════════════════════════════════════════
   OPTIONS SECTION — Venue Packages A / B / C
══════════════════════════════════════════ */
.opts-section {
    background: var(--cream);
    padding: 96px 0;
}

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

.opt-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 18px;
    padding: 44px 36px 40px;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}

.opt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    border-color: rgba(201,169,110,.28);
}

/* Gold top bar on hover */
.opt-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    opacity: 0;
    transition: opacity .3s;
}

.opt-card:hover::before { opacity: 1; }

.opt-letter {
    font-family: var(--serif);
    font-size: 72px;
    font-weight: 300;
    color: rgba(201,169,110,.1);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 28px;
    letter-spacing: -.04em;
    pointer-events: none;
}

.opt-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.opt-title {
    font-family: var(--serif);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 300;
    color: var(--black);
    margin-bottom: 14px;
    letter-spacing: -.02em;
    line-height: 1.1;
}

.opt-desc {
    font-size: 18px;
    font-weight: 300;
    color: rgba(10,10,10,.52);
    line-height: 1.78;
    margin-bottom: 28px;
}

.opt-checklist {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.opt-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 300;
    color: rgba(10,10,10,.6);
    line-height: 1.5;
}

.opt-checklist li i {
    color: var(--gold);
    font-size: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.opt-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap .25s;
}

.opt-link:hover { gap: 12px; }

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

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

/* Mobile wedding packages: one long card per row, compact vertical layout */
@media (max-width: 768px) {
    .opts-section {
        padding: 44px 18px !important;
    }

    .opts-section .w {
        padding: 0 !important;
    }

    .opts-section .w > div:first-child {
        margin-bottom: 22px !important;
        padding: 15px 14px 16px;
        text-align: left !important;
        border: 1px solid rgba(201,169,110,.24);
        border-left: 4px solid var(--gold);
        border-radius: 8px;
        background: rgba(255,255,255,.55);
    }

    .opts-section .eyebrow {
        margin-bottom: 8px;
        font-size: 7.5px;
        letter-spacing: .24em;
    }

    .opts-section .heading {
        font-size: clamp(25px, 7.8vw, 34px) !important;
        line-height: 1.03;
        margin: 0;
    }

    .opts-section .body-txt {
        max-width: none !important;
        margin: 9px 0 0 !important;
        font-size: 12.5px !important;
        line-height: 1.48 !important;
    }

    .opts-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 13px !important;
        margin-top: 0 !important;
    }

    .opt-card {
        width: 100%;
        border-radius: 10px;
        padding: 17px 15px 16px !important;
    }

    .opt-letter {
        top: 8px;
        right: 13px;
        font-size: 48px;
    }

    .opt-tag {
        margin-bottom: 5px;
        font-size: 7.5px;
        letter-spacing: .24em;
    }

    .opt-title {
        max-width: calc(100% - 50px);
        margin-bottom: 8px;
        font-size: 23px;
    }

    .opt-desc {
        margin-bottom: 12px;
        font-size: 12.5px !important;
        line-height: 1.48 !important;
    }

    .opt-checklist {
        gap: 6px;
        margin-bottom: 14px;
    }

    .opt-checklist li {
        gap: 8px;
        font-size: 12.5px;
        line-height: 1.35;
    }

    .opt-checklist li i {
        margin-top: 2px;
        font-size: 9px;
    }

    .opt-link {
        min-height: 36px;
        width: 100%;
        justify-content: center;
        border: 1px solid rgba(201,169,110,.32);
        border-radius: 999px;
        font-size: 8px;
    }
}

/* ── Real Weddings gallery — mobile redesign ──────────────────── */
@media (max-width: 768px) {

  /* Compact section padding */
  .gallery-section {
    padding-top: 64px;
    overflow: hidden;
  }

  /* Header: stack kicker + title, hide giant faded number */
  .gallery-section__header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 20px;
    margin-bottom: 24px;
    gap: 6px;
  }

  .gallery-section__count {
    display: none;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  /* Hide the complex desktop mosaic entirely */
  .gallery-feature {
    display: none;
  }

  /* Strip becomes the hero carousel */
  .gallery-strip {
    margin-top: 0;
    padding: 0 0 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-strip__track {
    display: flex;
    gap: 12px;
    padding: 0 20px 20px;
    width: max-content;
  }

  .gs-thumb {
    width: 78vw;
    height: 52vw;
    min-height: 200px;
    border-radius: 12px;
    flex-shrink: 0;
    scroll-snap-align: start;
    overflow: hidden;
  }

  .gs-thumb img {
    filter: brightness(.88) saturate(.9);
  }

  /* Scroll hint dot strip */
  .gallery-strip::after {
    content: 'Swipe to explore →';
    display: block;
    text-align: center;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(201,169,110,.45);
    padding: 0 0 8px;
  }

  /* CTA bar: stack vertically */
  .gallery-cta-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px 40px;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  /* Large body text too big on mobile */
  p.body-txt { font-size: 14px; line-height: 1.65; }

  /* Feature cards — icon + title yan yana */
  .feat-card{display:grid;grid-template-columns:38px 1fr;column-gap:14px;align-items:start;padding:20px 16px}
  .feat-card__icon{grid-column:1;grid-row:1;width:38px;height:38px;margin-bottom:0;align-self:center}
  .feat-card__title{grid-column:2;grid-row:1;font-size:16px;margin-bottom:0;align-self:center}
  .feat-card__body{grid-column:1/-1;grid-row:2;margin-top:8px;font-size:13px;line-height:1.6}

  /* Package cards */
  .pkg-card { padding: 28px 20px; }

  /* Lead form (lf-left/right) */
  .lf-left, .lf-right { padding: 32px 20px; }
  .lf-left::before { font-size: 120px; }

  /* Story section image */
  .story__img { max-height: 280px; object-fit: cover; }

  /* Story / features / packages body text */
  .story__body,
  .feat-card__body,
  .proc-desc,
  .opt-desc,
  .faq-a-inner,
  .testi__body,
  .pkg-desc { font-size: 13px; line-height: 1.6; }

  /* Heading sizes */
  .story__title,
  .features__title,
  .packages__title { font-size: clamp(24px, 7vw, 32px); }

  /* Section paddings already set above — reinforce */
  .story { padding: 52px 20px; }
  .features { padding: 52px 20px; }
  .packages { padding: 52px 20px; }
  .testi { padding: 52px 20px; }
  .faq { padding: 52px 20px; }
  .lf { padding: 52px 20px; }

  /* Reel section */
  .reel-section { padding: 52px 20px; }

  /* Process header */
  .process-header { margin-bottom: 20px; }
  .process-header .body-txt { font-size: 13px !important; }
}
