:root {
    --cream: #fffaf5;
    --warm-white: #fffefc;
    --blush: #f9dce6;
    --peach: #ffdccc;
    --lilac: #ede5ff;
    --rose: #cc6f8c;
    --rose-deep: #a84f73;
    --ink: #3f2f3a;
    --ink-soft: #6e5d67;
    --line: #f0dce5;
    --card-shadow: 0 14px 36px rgba(97, 51, 76, 0.12);
    --section-pad: clamp(4.5rem, 8vw, 7rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fffdfb 0%, var(--cream) 56%, #fffefc 100%);
    line-height: 1.65;
    overflow-x: hidden;
}

body.virtual-scroll-active {
    overflow: hidden;
    height: 100vh;
    overscroll-behavior: none;
    touch-action: none;
}

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

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

*:focus-visible {
    outline: 3px solid #f1a6bc;
    outline-offset: 3px;
    border-radius: 8px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

h1,
h2,
h3 {
    font-family: "Fraunces", "Times New Roman", serif;
    margin: 0 0 0.9rem;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.7rem);
}

h3 {
    font-size: clamp(1.12rem, 2.2vw, 1.4rem);
}

h4 {
    font-family: "Fraunces", "Times New Roman", serif;
    margin: 0 0 0.45rem;
    font-size: 1.03rem;
    line-height: 1.2;
    color: #4f3343;
}

p {
    margin: 0 0 1rem;
    color: var(--ink-soft);
}

.container {
    width: min(1140px, 92vw);
    margin: 0 auto;
}

.narrow {
    width: min(760px, 92vw);
    margin: 0 auto;
    text-align: center;
}

.section {
    position: relative;
    padding: var(--section-pad) 0;
}

.section-soft {
    background:
        radial-gradient(120% 100% at 90% 0%, rgba(248, 220, 230, 0.45), rgba(248, 220, 230, 0) 60%),
        linear-gradient(180deg, #fff7fb 0%, #fffdfd 100%);
}

.center {
    text-align: center;
}

.mini-title {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--rose-deep);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.77rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 252, 248, 0.88);
    border-bottom: 1px solid rgba(240, 220, 229, 0.8);
}

.nav-shell {
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.brand {
    font-family: "Fraunces", serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #4c3142;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
}

.navbar-brand img {
    height: 48px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-nav a {
    font-weight: 600;
    color: var(--ink-soft);
    font-size: 0.92rem;
    padding: 0.35rem 0;
    position: relative;
    transition: color 0.25s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.12rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--rose), #e8a5be);
    transition: transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--rose-deep);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0.2rem;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: #5a3b4c;
}

.hero {
    padding-top: calc(var(--section-pad) - 1.4rem);
    overflow: hidden;
    background:
        radial-gradient(70% 85% at -8% 10%, rgba(249, 220, 230, 0.6), rgba(249, 220, 230, 0) 75%),
        radial-gradient(55% 75% at 105% 15%, rgba(237, 229, 255, 0.7), rgba(237, 229, 255, 0) 80%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(2px);
}

.hero-glow-left {
    width: min(32vw, 350px);
    height: min(32vw, 350px);
    left: -110px;
    top: 70px;
    background: radial-gradient(circle, rgba(255, 223, 206, 0.6) 0%, rgba(255, 223, 206, 0) 70%);
}

.hero-glow-right {
    width: min(28vw, 290px);
    height: min(28vw, 290px);
    right: -80px;
    top: 110px;
    background: radial-gradient(circle, rgba(237, 229, 255, 0.68) 0%, rgba(237, 229, 255, 0) 72%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2.2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tagline {
    display: inline-block;
    margin-bottom: 0.95rem;
    padding: 0.34rem 0.8rem;
    border-radius: 999px;
    border: 1px solid #f1cfdc;
    color: var(--rose-deep);
    background: #fff7fb;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-copy h1 {
    color: #462f3c;
}

.hero-text {
    max-width: 56ch;
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.45rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0.78rem 1.32rem;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(120deg, var(--rose) 0%, #d98ca8 100%);
    border-color: #cb7a97;
    box-shadow: 0 10px 22px rgba(170, 82, 117, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 12px 26px rgba(170, 82, 117, 0.32);
}

.btn-secondary {
    color: var(--rose-deep);
    border-color: #e6b3c6;
    background: #fff7fb;
}

.btn-secondary:hover {
    background: #ffeff6;
}

.btn-outline {
    color: #8e4f6a;
    border-color: #e2b6c8;
    background: #fff;
}

.btn-outline:hover {
    background: #fff3f9;
}

.hero-feature {
    margin: 0;
    padding: 0.6rem;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255, 235, 245, 0.95), rgba(255, 249, 242, 0.95));
    border: 1px solid #f3dae5;
    box-shadow: var(--card-shadow);
}

.hero-feature img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 22px;
}

.hero-feature figcaption {
    padding: 0.82rem 0.82rem 0.3rem;
    color: #896a77;
    font-size: 0.9rem;
}

.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 58px;
    background:
        radial-gradient(130% 66px at 18% 0, transparent 67px, #fff 68px),
        radial-gradient(125% 70px at 82% 0, transparent 69px, #fff 70px);
}

#about::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -180px;
    top: 34px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237, 229, 255, 0.55) 0%, rgba(237, 229, 255, 0) 72%);
    pointer-events: none;
}

.category-grid {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.category-card {
    display: block;
    background: var(--warm-white);
    border-radius: 20px;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 34px rgba(109, 56, 82, 0.2);
}

.category-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.card-body {
    padding: 1rem 1rem 1.15rem;
}

.card-body p {
    margin: 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.gallery-note {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.instagram-archive-head {
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.instagram-archive-head h3 {
    margin-bottom: 0.35rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 74px;
    gap: 0.9rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid #efd7e2;
    background: #fff;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(91, 55, 76, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.34s ease;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.34s ease;
    pointer-events: none;
}

.gallery-item.gallery-wide {
    grid-column: span 6;
    grid-row: span 4;
}

.gallery-item.gallery-tall {
    grid-column: span 3;
    grid-row: span 8;
}

.gallery-item.gallery-square {
    grid-column: span 3;
    grid-row: span 4;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover video {
    transform: scale(1.05);
}

.instagram-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.archive-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #efd7e2;
    background: #fff;
    box-shadow: 0 10px 24px rgba(118, 63, 91, 0.08);
    min-height: 220px;
    padding: 0;
    text-align: left;
    cursor: pointer;
    appearance: none;
}

.archive-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(91, 55, 76, 0.22) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.archive-item:hover::after {
    opacity: 1;
}

.archive-item img,
.archive-item video {
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: transform 0.34s ease;
}

.archive-item:hover img,
.archive-item:hover video {
    transform: scale(1.04);
}

.archive-bundle-badge,
.archive-count {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.archive-bundle-badge {
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.3rem 0.62rem;
    background: rgba(255, 247, 251, 0.94);
    color: #8b4f68;
    border: 1px solid rgba(239, 198, 215, 0.9);
}

.archive-count {
    top: 0.8rem;
    right: 0.8rem;
    padding: 0.3rem 0.62rem;
    background: rgba(70, 47, 60, 0.78);
    color: #fff;
}

.archive-item-body {
    padding: 0.95rem 1rem 1.05rem;
    border-top: 1px solid #f3dfe8;
    background: linear-gradient(180deg, #fffdfd 0%, #fff8fb 100%);
}

.archive-item-body h4 {
    margin-bottom: 0.35rem;
}

.archive-item-body p {
    margin: 0;
    font-size: 0.88rem;
}

.archive-empty {
    margin: 0;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    border: 1px dashed #e6bfd0;
    background: #fff8fb;
}

.video-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    z-index: 1;
    border-radius: 999px;
    padding: 0.25rem 0.58rem;
    background: rgba(70, 47, 60, 0.78);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.bundle-open {
    overflow: hidden;
}

.bundle-modal[hidden] {
    display: none;
}

.bundle-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.bundle-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(45, 28, 38, 0.58);
    backdrop-filter: blur(6px);
}

.bundle-modal-dialog {
    position: relative;
    width: min(1080px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    margin: 1rem auto;
    overflow: auto;
    border-radius: 28px;
    border: 1px solid #edd6e0;
    background: linear-gradient(180deg, #fffdfd 0%, #fff7fb 100%);
    box-shadow: 0 24px 60px rgba(62, 37, 49, 0.28);
}

.bundle-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #efcfdb;
    border-radius: 999px;
    background: rgba(255, 250, 252, 0.96);
    color: #6f4459;
    font-size: 1.35rem;
    cursor: pointer;
}

.bundle-modal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
    gap: 1.2rem;
    padding: 1.2rem;
}

.bundle-modal-stage {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #efd9e4;
    background: #fff;
}

.bundle-modal-stage img,
.bundle-modal-stage video {
    width: 100%;
    max-height: 72vh;
    display: block;
    object-fit: contain;
    background: #fff;
}

.bundle-modal-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 0.7rem;
    margin-top: 0.9rem;
}

.bundle-thumb {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #edd2df;
    background: #fff;
    cursor: pointer;
}

.bundle-thumb.active {
    border-color: #c87898;
    box-shadow: 0 0 0 2px rgba(200, 120, 152, 0.18);
}

.bundle-thumb img {
    width: 100%;
    height: 84px;
    object-fit: cover;
    display: block;
}

.bundle-thumb-badge {
    position: absolute;
    right: 0.35rem;
    bottom: 0.35rem;
    z-index: 1;
    padding: 0.18rem 0.42rem;
    border-radius: 999px;
    background: rgba(70, 47, 60, 0.82);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
}

.bundle-modal-copy {
    padding: 0.6rem 0.3rem 0.3rem 0;
}

.bundle-modal-meta {
    font-size: 0.88rem;
    font-weight: 700;
    color: #8b4f68;
}

.bundle-modal-caption {
    margin-bottom: 1.1rem;
}

.reviews-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 1.2rem;
    align-items: center;
}

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

.reviews-rotator {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
    gap: 1rem;
    align-items: stretch;
}

.review-media {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #edd6e0;
    background: #fff;
    box-shadow: 0 12px 26px rgba(118, 63, 91, 0.1);
}

.review-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.review-media:hover img {
    transform: scale(1.03);
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
    padding: clamp(1.3rem, 3vw, 2rem);
    border-radius: 24px;
    border: 1px solid #edd6e0;
    background:
        radial-gradient(120% 160px at 0% 0%, rgba(249, 220, 230, 0.28), rgba(249, 220, 230, 0)),
        linear-gradient(180deg, #fffdfd 0%, #fff7fb 100%);
    box-shadow: 0 12px 26px rgba(118, 63, 91, 0.1);
}

.review-text {
    margin-bottom: 1rem;
    color: #4f3343;
    font-family: "Fraunces", "Times New Roman", serif;
    font-size: clamp(1.2rem, 2.6vw, 1.8rem);
    line-height: 1.35;
}

.review-text::before {
    content: "\"";
}

.review-text::after {
    content: "\"";
}

.review-author {
    margin-bottom: 1rem;
    color: #8b4f68;
    font-weight: 700;
}

.steps-grid {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.step-card {
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.15rem 1rem;
    box-shadow: 0 10px 22px rgba(132, 76, 106, 0.08);
}

.step-card span {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--rose-deep);
    border: 1px solid #efc7d7;
    background: #fff4fa;
}

.step-card h3 {
    margin: 0;
}

.contact-shell {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 1.2rem;
    border-radius: 28px;
    border: 1px solid var(--line);
    background:
        radial-gradient(110% 180px at 12% 0, rgba(249, 220, 230, 0.4), rgba(249, 220, 230, 0)),
        linear-gradient(180deg, #fffdfd 0%, #fff9fc 100%);
    box-shadow: var(--card-shadow);
    padding: clamp(1.2rem, 2.8vw, 2rem);
    overflow: hidden;
}

.contact-form-wrap p {
    max-width: 65ch;
}

.pricing-panel {
    margin-bottom: 1.4rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid #edd5e0;
    background:
        radial-gradient(120% 140px at 0% 0%, rgba(249, 220, 230, 0.35), rgba(249, 220, 230, 0)),
        linear-gradient(180deg, #fffafd 0%, #fff 100%);
    box-shadow: 0 10px 24px rgba(118, 63, 91, 0.08);
}

.pricing-panel h3 {
    margin-bottom: 0.4rem;
}

.pricing-grid {
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.price-card {
    border-radius: 14px;
    border: 1px solid #efd8e3;
    background: #fff;
    padding: 0.72rem 0.8rem;
}

.price-card p {
    margin: 0;
    font-size: 0.9rem;
}

.price-card strong {
    color: #7e4760;
}

.availability-note {
    margin-top: 0.85rem;
    margin-bottom: 0.45rem;
    font-size: 0.88rem;
}

.pricing-disclaimer {
    margin: 0;
    padding-top: 0.6rem;
    border-top: 1px solid #f0dbe5;
    font-size: 0.84rem;
    font-weight: 600;
    color: #86556d;
}

.booking-alert {
    display: inline-block;
    margin-bottom: 0.55rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    border: 1px solid #efc6d7;
    background: #fff3f8;
    color: #8b4f68;
    font-size: 0.84rem;
    font-weight: 700;
}

.enquiry-panel {
    margin-top: 1rem;
    padding: clamp(1.2rem, 2.8vw, 1.65rem);
    border-radius: 22px;
    border: 1px solid #edd2df;
    background:
        radial-gradient(120% 160px at 0% 0%, rgba(249, 220, 230, 0.34), rgba(249, 220, 230, 0)),
        linear-gradient(180deg, #fffdfd 0%, #fff7fb 100%);
    box-shadow: 0 12px 28px rgba(130, 73, 101, 0.1);
}

.enquiry-panel h2 {
    margin-bottom: 0.55rem;
}

.enquiry-panel p {
    max-width: 52ch;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.85rem;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    background: #fff1f7;
    border: 1px solid #efc6d7;
    color: #8b4f68;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.enquiry-cta {
    margin-top: 0.55rem;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    font-weight: 700;
    color: #8b4f68;
    padding: 0.58rem 0.82rem;
    border-radius: 999px;
    border: 1px solid #e8c0d0;
    background: #fff;
}

.social-link:hover {
    background: #fff3f9;
}

.contact-email {
    margin-top: 0.9rem;
    margin-bottom: 0;
    font-weight: 600;
    color: #765763;
}

.contact-card {
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 1.2rem;
}

.contact-card p {
    margin-bottom: 0.85rem;
}

.contact-card ul {
    margin: 0;
    padding-left: 1.05rem;
    color: var(--ink-soft);
}

.contact-card li {
    margin-bottom: 0.38rem;
}

.site-footer {
    margin-top: 1.2rem;
    border-top: 1px solid #efdde6;
    background: #fff;
    padding: 1.15rem 0;
}

.credit-footer {
    text-align: center;
}

.credit-footer p {
    margin: 0;
    font-size: 0.82rem;
    color: #9a8b93;
    line-height: 1.6;
}

.credit-footer a {
    color: #84717c;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
    text-decoration: underline;
    text-decoration-color: transparent;
}

.credit-footer a:hover {
    color: #63535d;
    text-decoration-color: currentColor;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 1040px) {
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .instagram-archive-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        grid-auto-rows: 70px;
    }

    .gallery-item.gallery-wide {
        grid-column: span 8;
        grid-row: span 4;
    }

    .gallery-item.gallery-tall,
    .gallery-item.gallery-square {
        grid-column: span 4;
        grid-row: span 4;
    }

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

    .reviews-shell,
    .reviews-rotator {
        grid-template-columns: 1fr;
    }

    .contact-shell {
        grid-template-columns: 1fr;
    }
}

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

    .hero-feature img {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 0.68rem 0;
    }

    .menu-toggle {
        display: inline-block;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 0.6rem);
        left: 4vw;
        right: 4vw;
        border-radius: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
        padding: 0.95rem 1rem;
        background: #fffdfd;
        border: 1px solid #efd8e2;
        box-shadow: 0 12px 24px rgba(100, 56, 79, 0.15);
    }

    .site-nav.open {
        display: flex;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .instagram-archive-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .instagram-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bundle-modal-grid {
        grid-template-columns: 1fr;
    }

    .bundle-modal-copy {
        padding: 0;
    }

    .site-footer {
        padding: 1rem 0;
    }

    .navbar-brand img {
        height: 42px;
        max-width: 190px;
    }
}

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

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

    .instagram-archive-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.gallery-wide,
    .gallery-item.gallery-tall,
    .gallery-item.gallery-square {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item img {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .gallery-item video {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .archive-item {
        min-height: auto;
    }

    .archive-item img,
    .archive-item video {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .review-media img {
        min-height: auto;
        aspect-ratio: 4 / 3;
    }

    .review-card {
        min-height: auto;
    }

    .bundle-modal-dialog {
        width: min(100vw - 1rem, 1080px);
        margin: 0.5rem auto;
        max-height: calc(100vh - 1rem);
    }

    .bundle-modal-stage img,
    .bundle-modal-stage video {
        max-height: 52vh;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1 1 100%;
    }

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

/* ROTATOR */
.ss-rotator {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    margin-bottom: 20px;
    background: #FAD4DC;
}

.ss-rotator-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: block;
}

.ss-rotator-slide.active {
    opacity: 1;
}

.ss-rotator-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ss-rotator-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.ss-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FAD4DC;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.ss-dot.active {
    background: #F2A7B8;
    transform: scale(1.3);
}

/* FILTER BAR */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 32px;
}

.gallery-filter-btn {
    background: #fff;
    border: 1.5px solid #FAD4DC;
    color: #9B6B8A;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.gallery-filter-btn:hover {
    background: #FAD4DC;
    color: #4A2040;
    transform: translateY(-1px);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, #F2A7B8, #E8956D);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 3px 14px rgba(242, 167, 184, 0.4);
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #FAD4DC;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(74, 32, 64, 0.72);
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    letter-spacing: 0.4px;
}

.gallery-item:hover .gallery-tag {
    opacity: 1;
    transform: translateY(0);
}

.gallery-empty {
    text-align: center;
    padding: 40px 20px;
    color: #9B6B8A;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    display: none;
}

.gallery-empty[hidden] {
    display: none !important;
}

.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9500;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(63, 47, 58, 0.42);
    backdrop-filter: blur(8px);
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 880px);
    max-height: calc(100vh - 3rem);
    margin: 1.5rem auto;
    background: rgba(255, 254, 252, 0.94);
    border: 1px solid rgba(240, 220, 229, 0.9);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(63, 47, 58, 0.18);
    overflow: hidden;
}

.gallery-lightbox-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #5f4151;
    font-size: 1.35rem;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(63, 47, 58, 0.12);
}

.gallery-lightbox-media-wrap {
    background: linear-gradient(180deg, #fffdfb 0%, #fdf3f6 100%);
    padding: 1.25rem;
}

.gallery-lightbox-media {
    width: 100%;
    max-height: calc(100vh - 11rem);
    object-fit: contain;
    border-radius: 18px;
}

.gallery-lightbox-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem 1.2rem;
}

.gallery-lightbox-caption {
    margin: 0;
    font-size: 0.95rem;
    color: #5f4151;
    font-weight: 700;
}

.gallery-lightbox-link {
    color: #9B6B8A;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.15rem;
}

@media (max-width: 768px) {
    .gallery-filters {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-bottom: 0.25rem;
    }

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

    .gallery-filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .ss-rotator {
        aspect-ratio: 4 / 3;
        border-radius: 14px;
    }

    #bubbles-mascot {
        display: none !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }
}

@media (max-width: 480px) {
    .gallery-filter-btn {
        font-size: 12px;
        padding: 7px 14px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }

    .ss-rotator {
        aspect-ratio: 1 / 1;
    }

    .gallery-lightbox-dialog {
        width: min(94vw, 880px);
        max-height: calc(100vh - 1.5rem);
        margin: 0.75rem auto;
        border-radius: 18px;
    }

    .gallery-lightbox-media-wrap {
        padding: 0.8rem;
    }

    .gallery-lightbox-media {
        max-height: calc(100vh - 10.5rem);
        border-radius: 14px;
    }

    .gallery-lightbox-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.9rem 1rem 1rem;
    }
}

/* Interactive Refresh */
.site-header {
    padding: 0.55rem 0;
}

.nav-shell {
    min-height: 3.75rem;
    gap: clamp(0.8rem, 2vw, 1.6rem);
}

main,
.section {
    overflow-x: clip;
}

.navbar-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 0;
    padding: 0;
}

.navbar-brand img {
    height: 50px;
    max-height: 50px;
    max-width: min(34vw, 210px);
    width: auto;
    object-fit: contain;
    object-position: left center;
    border-radius: 14px;
}

.site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.category-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.85rem;
}

.card-body p {
    flex: 1 1 auto;
}

.category-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.15rem;
}

.category-gallery-btn {
    width: 100%;
    justify-content: center;
}

.category-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    width: fit-content;
    color: var(--rose-deep);
    font-size: 0.9rem;
    font-weight: 700;
}

.category-instagram-link:hover {
    color: #7f3f5d;
}

.about-intro {
    text-align: left;
}

.about-intro h2,
.about-intro .mini-title {
    text-align: center;
}

.about-highlights {
    display: flex;
    gap: 1.1rem 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 246, 249, 0.82);
    border: 1px solid rgba(239, 207, 219, 0.9);
    color: #6e5d67;
    font-size: 0.95rem;
}

.highlight-item .emoji {
    font-size: 1.35rem;
}

.intro-text {
    font-size: 1.08rem;
    color: #4a2c4a;
    font-weight: 500;
}

.closing-text {
    margin-top: 1.5rem;
    color: var(--rose-deep);
    font-weight: 600;
}

.showcase-stack {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(280px, 42vw, 420px);
    margin: 0 auto 1.8rem;
    perspective: 1500px;
}

.showcase-card {
    position: absolute;
    width: min(88%, 560px);
    aspect-ratio: 16 / 10;
    padding: 0;
    border: 0;
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #fff7fb, #fffefc);
    box-shadow: 0 18px 36px rgba(112, 63, 87, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.showcase-card:nth-child(1) {
    left: 2%;
    transform: translate3d(-24px, 0, 0) rotate(-3deg) scale(1);
    z-index: 3;
}

.showcase-card:nth-child(2) {
    left: 50%;
    transform: translate3d(-50%, 26px, 0) rotate(1.5deg) scale(0.97);
    z-index: 2;
}

.showcase-card:nth-child(3) {
    right: 2%;
    transform: translate3d(24px, 58px, 0) rotate(-2deg) scale(0.94);
    z-index: 1;
}

.showcase-card.active,
.showcase-card:hover,
.showcase-card.is-selected {
    transform: translate3d(0, -18px, 0) scale(1.04) rotate(0deg);
    box-shadow: 0 28px 50px rgba(112, 63, 87, 0.24);
    filter: saturate(1.05);
    z-index: 6;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43, 22, 33, 0) 35%, rgba(43, 22, 33, 0.34) 100%);
}

.showcase-card-chip {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 251, 253, 0.94);
    color: var(--rose-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-item:hover,
.gallery-item.is-selected {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 30px rgba(118, 63, 91, 0.18);
    z-index: 2;
}

.gallery-modal-open {
    overflow: hidden;
}

.gallery-modal[hidden] {
    display: none;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9500;
}

.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 35, 0.62);
    backdrop-filter: blur(10px);
}

.gallery-modal-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 1rem;
    width: min(1000px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 30px;
    border: 1px solid rgba(240, 220, 229, 0.85);
    background: linear-gradient(180deg, rgba(255, 253, 252, 0.98) 0%, rgba(255, 247, 251, 0.98) 100%);
    box-shadow: 0 28px 60px rgba(44, 24, 35, 0.28);
    overflow: auto;
    transform: translateY(0) scale(1);
    animation: modalRise 0.8s ease-out;
}

.gallery-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #efcfdb;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #6f4459;
    font-size: 1.35rem;
    cursor: pointer;
}

.gallery-modal-media-wrap {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #efd9e4;
    background: #fff;
}

.gallery-modal-media {
    width: 100%;
    max-height: calc(100vh - 8rem);
    object-fit: contain;
    display: block;
    background: #fff;
}

.gallery-modal-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.9rem;
    padding: 0.8rem 0.35rem 0.35rem 0;
}

.gallery-modal-copy h3 {
    margin-bottom: 0;
}

.gallery-modal-label {
    margin: 0;
    font-weight: 700;
    color: #8b4f68;
}

.gallery-modal-caption {
    margin: 0;
    color: #6e5d67;
    line-height: 1.65;
}

.gallery-modal-comment {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 246, 249, 0.95), rgba(255, 252, 246, 0.95));
    border: 1px solid rgba(239, 207, 219, 0.95);
}

.gallery-modal-comment strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--rose-deep);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gallery-modal-comment p {
    margin: 0;
    color: #4f3343;
    font-style: italic;
}

.review-controls-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review-nav-btn,
.review-pause-btn {
    border: 1px solid #efcfdb;
    border-radius: 999px;
    background: #fff;
    color: #6f4459;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.review-nav-btn {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1rem;
}

.review-pause-btn {
    padding: 0.65rem 1rem;
}

.review-nav-btn:hover,
.review-pause-btn:hover,
.review-dot:hover {
    transform: translateY(-1px);
    background: #fff3f8;
}

.review-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.review-dot {
    width: 0.8rem;
    height: 0.8rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #f2c9d8;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.review-dot.active {
    background: var(--rose);
    transform: scale(1.2);
}

.reviews-rotator.review-transition-next .review-media,
.reviews-rotator.review-transition-next .review-card,
.reviews-rotator.review-transition-prev .review-media,
.reviews-rotator.review-transition-prev .review-card {
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
}

.reviews-rotator.review-transition-next .review-media,
.reviews-rotator.review-transition-next .review-card {
    animation-name: reviewSlideNext;
}

.reviews-rotator.review-transition-prev .review-media,
.reviews-rotator.review-transition-prev .review-card {
    animation-name: reviewSlidePrev;
}

#bubbles-mascot {
    position: fixed !important;
    left: 0;
    top: 0;
    z-index: 9998 !important;
    width: 150px !important;
    height: 150px !important;
    pointer-events: auto !important;
    cursor: pointer;
    transform-origin: 50% 80%;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

#bubbles-mascot:hover {
    transform: scale(1.08);
}

#bubbles-canvas {
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

#bubbles-mascot[data-state="falling"] {
    animation: bubbles-topple 0.5s ease-out forwards;
}

.bubbles-modal[hidden] {
    display: none;
}

.bubbles-modal {
    position: fixed;
    inset: 0;
    z-index: 9997;
    display: grid;
    place-items: center;
    padding: 24px;
}

.bubbles-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(74, 32, 64, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bubbles-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(420px, 92vw);
    padding: 28px 24px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff9f9 0%, #ffffff 100%);
    box-shadow: 0 24px 54px rgba(74, 32, 64, 0.22);
    text-align: center;
}

.bubbles-modal__eyebrow {
    margin: 0 0 12px;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #cc6f8c;
}

.bubbles-modal__dialog h2 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    color: #4a2040;
}

.bubbles-modal__dialog p {
    margin: 0;
    color: #6c5563;
}

.bubbles-modal__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.bubbles-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 999px;
    background: rgba(74, 32, 64, 0.08);
    color: #7e6673;
    font-size: 1.5rem;
    cursor: pointer;
}

.bubbles-modal__status {
    min-height: 1.4em;
    margin-top: 14px !important;
    font-size: 0.92rem;
    color: #b05177 !important;
}

@keyframes modalRise {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes reviewSlideNext {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes reviewSlidePrev {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes confettiBurst {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-70px) rotate(180deg);
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 0.45rem 0;
    }

    .nav-shell {
        min-height: 3.1rem;
    }

    .navbar-brand img {
        height: 40px;
        max-height: 40px;
        max-width: 148px;
    }

    .showcase-stack {
        min-height: 260px;
    }

    .showcase-card {
        width: min(92%, 520px);
    }

    .gallery-modal-dialog {
        grid-template-columns: 1fr;
    }

    .gallery-modal-copy {
        padding: 0;
    }

    .review-controls-top {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    #bubbles-mascot {
        width: 110px !important;
        height: 110px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.virtual-scroll-viewport {
    position: relative;
    height: calc(100vh - var(--header-offset, 0px));
    overflow: hidden;
}

.virtual-scroll-content {
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

body:not(.virtual-scroll-active) .virtual-scroll-viewport {
    height: auto;
    overflow: visible;
}

body:not(.virtual-scroll-active) .virtual-scroll-content {
    will-change: auto;
    transform: none !important;
}

.site-header {
    position: sticky;
    top: 0;
}

.showcase-card {
    transition: transform 0.8s ease, box-shadow 0.8s ease, filter 0.8s ease, opacity 0.8s ease;
}

.showcase-card.is-lifted,
.gallery-item.is-lifted {
    transform: translate3d(0, -30px, 0) scale(1.05);
    z-index: 8;
}

.showcase-card.is-returning,
.gallery-item.is-returning {
    transform: translate3d(0, 0, 0) scale(1);
}

body.modal-open-blur .virtual-scroll-viewport,
body.modal-open-blur .site-header {
    filter: blur(5px) saturate(0.96);
    transition: filter 0.4s ease;
}

.gallery-item {
    transition: transform 0.6s ease, box-shadow 0.6s ease, opacity 0.6s ease;
}

.gallery-modal.is-open .gallery-modal-backdrop {
    animation: backdropFadeIn 0.8s ease forwards;
}

.gallery-modal.is-closing .gallery-modal-backdrop {
    animation: backdropFadeOut 0.6s ease forwards;
}

.gallery-modal.is-closing .gallery-modal-dialog {
    animation: modalDrop 0.6s ease forwards;
}

.review-media,
.review-card {
    will-change: transform, opacity;
}

.review-card .btn[hidden] {
    display: none;
}

.game-intro-modal {
    background: linear-gradient(135deg, #fff9f9 0%, #fff 100%);
    border: 1px solid rgba(242, 167, 184, 0.35);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
    color: #4a2c4a;
}

.game-intro-modal .modal-header {
    margin-bottom: 24px;
}

.game-intro-modal .brand-label {
    margin: 0 0 12px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cc6f8c;
    font-weight: 600;
    opacity: 0.72;
}

.game-intro-modal .modal-title {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4a2c4a;
}

.game-intro-modal .cupcake-emoji {
    font-size: 36px;
    display: inline-block;
    animation: gameCupcakeBounce 2s ease-in-out infinite;
}

.game-intro-modal .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.game-intro-modal .game-description {
    margin: 0;
    max-width: 340px;
    font-size: 16px;
    line-height: 1.5;
    color: #6e5d67;
}

.game-intro-modal .btn-play-game {
    margin-top: 8px;
    padding: 18px 48px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: #4a2c4a;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(255, 154, 158, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.game-intro-modal .btn-play-game:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 154, 158, 0.45);
    filter: saturate(1.03);
}

.game-intro-modal .btn-play-game:active {
    transform: translateY(-1px);
}

.game-intro-modal .btn-play-game:focus-visible,
.game-intro-modal .link-open-direct:focus-visible,
.game-intro-modal .modal-close:focus-visible {
    outline-color: #f1a6bc;
}

.game-intro-modal .link-open-direct {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    color: #999;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.game-intro-modal .link-open-direct:hover {
    color: #ff9a9e;
}

.game-intro-modal .disclaimer {
    margin: 8px 0 0;
    font-size: 12px;
    color: #aaa;
    font-style: italic;
}

.game-intro-modal .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.game-intro-modal .modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #666;
    transform: rotate(90deg);
}

@media (max-width: 480px) {
    .game-intro-modal {
        padding: 32px 24px;
    }

    .game-intro-modal .modal-title {
        font-size: 28px;
    }

    .game-intro-modal .btn-play-game {
        width: 100%;
    }
}

@keyframes gameCupcakeBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes bubbles-topple {
    0% {
        transform: rotate(0deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(10px);
    }
    100% {
        transform: rotate(90deg) translateY(20px);
    }
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes backdropFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes modalDrop {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
}
