/* =========================================================
   ROOT VARIABLES
   ========================================================= */
:root {
    --blush: #f1e4df;
    --rose: #b78670;
    --ink: #4a3a35;
    --paper: #fffaf7;
    --muted: #f7f0ec;
    --navbar-offset: 90px;
}


/* =========================================================
   GLOBAL / BASE STYLES
   ========================================================= */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-offset);
}

body {
    font-family: var(--site-body-font-family, Inter, sans-serif);
    font-weight: var(--site-body-font-weight, 400);
    letter-spacing: var(--site-body-letter-spacing, 0px);
    background: var(--paper);
    color: var(--ink);
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--site-heading-font-family, "Cormorant Garamond", serif);
    font-weight: var(--site-heading-font-weight, 600);
    letter-spacing: var(--site-heading-letter-spacing, 0px);
}

.brand-script {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 600;
}


/* =========================================================
   NAVBAR
   Desktop: overlay on hero
   Mobile/Tablet: still overlay hero, dropdown stays readable
   ========================================================= */

.navbar-logo {
    height: 55px;
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.site-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background: var(--nav-bg, transparent);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-navbar .container {
    align-items: center;
}

.site-navbar .navbar-brand {
    color: var(--nav-brand, var(--nav-text, #fff)) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-navbar .navbar-toggler {
    border: 0;
    box-shadow: none;
    padding: 0.4rem 0.65rem;
}

.site-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.site-navbar .navbar-toggler-icon {
    filter: none;
}

.site-navbar .nav-link {
    color: var(--nav-text, #fff) !important;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.site-navbar .navbar-brand:hover,
.site-navbar .nav-link:hover {
    color: var(--nav-hover, #f1e4df) !important;
}

.site-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--nav-underline, #fff);
    transition: width 0.3s ease;
}

.site-navbar .nav-link:hover::after {
    width: 100%;
}

.site-navbar.scrolled {
    background: var(--nav-scrolled-bg, rgba(255, 250, 247, 0.95));
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
    position: relative;
    margin-top: 0;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

@supports (height: 100dvh) {
    .hero-slider {
        height: 100dvh;
        min-height: 100dvh;
    }
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.hero-card {
    background: transparent;
    max-width: 760px;
}

.hero-card h1 {
    font-family: var(--site-body-font-family);
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    font-style: italic;
    color: var(--heading-color, #ffffff);
}

.hero-card p {
    color: var(--desc-color, #ffffff);
    max-width: 640px;
}

.eyebrow {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--eyebrow-color, var(--rose));
    margin-bottom: 1rem;
}

.hero-card h1,
.hero-card p,
.eyebrow {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-split-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-base-image {
    opacity: 1;
    display: none;
}

.hero-piece {
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    opacity: 0;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: opacity 0.8s ease, transform 0.9s ease;
}

.hero-slide.active .hero-piece {
    opacity: 1;
    transform: translate(0, 0);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
}


/* =========================================================
   BUTTONS
   ========================================================= */
.btn-brand,
.btn-outline-brand,
.dynamic-btn {
    position: relative;
    overflow: hidden;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.btn-brand {
    background: var(--btn-bg, var(--rose));
    border: 1px solid var(--btn-border, var(--btn-bg, var(--rose)));
    color: var(--btn-text, #fff);
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
}

.btn-outline-brand {
    background: var(--btn-bg, transparent);
    border: 1px solid var(--btn-border, var(--rose));
    color: var(--btn-text, var(--rose));
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
}

.dynamic-btn {
    background-color: var(--btn-bg, transparent);
    color: var(--btn-text, inherit);
    border-color: var(--btn-border, currentColor);
}

.dynamic-btn:hover,
.dynamic-btn:focus {
    background-color: var(--btn-hover-bg, var(--btn-bg, transparent));
    color: var(--btn-hover-text, var(--btn-text, inherit));
    border-color: var(--btn-hover-border, var(--btn-border, currentColor));
    text-decoration: none;
}

/* effects */
.dynamic-btn[data-hover-effect="none"]:hover,
.dynamic-btn[data-hover-effect="none"]:focus {
    transform: none;
    box-shadow: none;
    filter: none;
}

.dynamic-btn[data-hover-effect="lift"]:hover,
.dynamic-btn[data-hover-effect="lift"]:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.dynamic-btn[data-hover-effect="scale"]:hover,
.dynamic-btn[data-hover-effect="scale"]:focus {
    transform: scale(1.04);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.dynamic-btn[data-hover-effect="glow"]:hover,
.dynamic-btn[data-hover-effect="glow"]:focus {
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(183, 134, 112, 0.18), 0 10px 24px rgba(0, 0, 0, 0.12);
}

.dynamic-btn[data-hover-effect="shine"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.18) 50%,
            transparent 100%);
    transition: left 0.55s ease;
}

.dynamic-btn[data-hover-effect="shine"]:hover::before,
.dynamic-btn[data-hover-effect="shine"]:focus::before {
    left: 130%;
}


/* =========================================================
   GENERIC SECTION / TYPOGRAPHY HELPERS
   ========================================================= */
.section-shell {
    padding: 5rem 0;
    position: relative;
}

.section-muted {
    background: linear-gradient(180deg, #fff, #f9f2ef);
}

.section-heading h1,
.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.story-body p {
    line-height: 1.9;
}

.shadow-soft {
    box-shadow: 0 22px 40px rgba(86, 64, 55, 0.1);
}


/* =========================================================
   PILLS / FILTER TAGS
   ========================================================= */
.pill-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pill {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(183, 134, 112, 0.3);
    text-decoration: none;
    color: var(--ink);
    transition: all 0.25s ease;
}

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

.pill.active {
    background: var(--rose);
    color: #fff;
}


/* =========================================================
   AUTO SCROLL / MARQUEE
   JS-driven scrolling only
   ========================================================= */
.auto-scroll {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.scroll-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.9rem;
    width: max-content;
    padding: 0.5rem 0;
}

.scroll-track>* {
    flex: 0 0 auto;
}


/* =========================================================
   CARD PATTERNS
   ========================================================= */
.photo-card,
.story-card,
.gallery-item,
.testimonial-card,
.contact-card {
    background: #fff;
    border: 1px solid rgba(183, 134, 112, 0.12);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(86, 64, 55, 0.06);
}

.photo-card {
    width: 320px;
    transition: transform 0.25s ease;
}

.photo-card:hover {
    transform: scale(1.04);
}

.photo-card img,
.story-card img,
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.story-card {
    display: block;
    color: inherit;
    text-decoration: none;
    width: 340px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(86, 64, 55, 0.12);
}

.testimonial-card,
.contact-card {
    padding: 1.5rem;
    height: 100%;
}


/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}


/* =========================================================
   FOOTER (BASE)
   ========================================================= */
.site-footer {
    background: #f6ece7;
    border-top: 1px solid rgba(183, 134, 112, 0.18);
}


/* =========================================================
   FEATURED MOMENTS SECTION
   ========================================================= */
.featured-moments-section {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    margin-top: 0;
    background: transparent;
    isolation: isolate;
    scroll-margin-top: var(--navbar-offset);
}

.featured-moments-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--featured-bg-image, none);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.6;
}

.featured-moments-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 1;
}

.featured-container {
    width: min(98vw, 1720px);
    max-width: 1720px;
    margin: 0 auto;
    padding-inline: 0.25rem;
}

.featured-moments-section .container,
.featured-moments-section .featured-container {
    position: relative;
    z-index: 2;
}

.featured-heading,
.featured-moments-section .section-heading {
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 1.75rem;
}

.featured-heading h2,
.featured-moments-section .section-heading h2 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    color: var(--ink);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.featured-heading p,
.featured-moments-section .section-heading p {
    font-size: 1.05rem;
    color: rgba(74, 58, 53, 0.85);
    margin-bottom: 0;
}

.section-decor {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.45;
}

.decor-left {
    width: 340px;
    height: 340px;
    left: -100px;
    top: 120px;
    background: radial-gradient(circle at 30% 30%,
            rgba(183, 134, 112, 0.18),
            rgba(241, 228, 223, 0.02) 70%);
}

.decor-right {
    width: 400px;
    height: 400px;
    right: -120px;
    bottom: 40px;
    background: radial-gradient(circle at 50% 50%,
            rgba(214, 186, 173, 0.2),
            rgba(255, 250, 247, 0.02) 72%);
}

.section-texture {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image: radial-gradient(rgba(183, 134, 112, 0.12) 0.7px, transparent 0.7px);
    background-size: 18px 18px;
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
}

.featured-pills,
.featured-moments-section .pill-row {
    margin-bottom: 2.2rem !important;
    gap: 0.85rem;
}

.featured-pills .pill,
.featured-moments-section .pill-row .pill {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(183, 134, 112, 0.22);
    box-shadow: 0 6px 18px rgba(86, 64, 55, 0.05);
}

.featured-pills .pill:hover,
.featured-moments-section .pill-row .pill:hover {
    border-color: rgba(183, 134, 112, 0.45);
}

.featured-pills .pill.active,
.featured-moments-section .pill-row .pill.active {
    background: var(--rose);
    color: #fff;
    border-color: var(--rose);
}

.featured-frame {
    position: relative;
    padding: 1rem 0;
}

.featured-edge-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    z-index: 3;
    pointer-events: none;
}

.featured-edge-left {
    left: 0;
    background: linear-gradient(to right, #f9f3ef 0%, rgba(249, 243, 239, 0) 100%);
}

.featured-edge-right {
    right: 0;
    background: linear-gradient(to left, #f9f3ef 0%, rgba(249, 243, 239, 0) 100%);
}

.featured-card {
    width: clamp(360px, 31vw, 540px);
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(183, 134, 112, 0.14);
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 14px 32px rgba(86, 64, 55, 0.08),
        0 2px 8px rgba(86, 64, 55, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 24px 48px rgba(86, 64, 55, 0.14),
        0 4px 12px rgba(86, 64, 55, 0.08);
    border-color: rgba(183, 134, 112, 0.28);
}

.featured-card-image-wrap {
    position: relative;
    overflow: hidden;
    background: #f4ece8;
}

.featured-card-image-wrap::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.08), transparent);
    pointer-events: none;
}

.featured-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.featured-card:hover img {
    transform: scale(1.05);
}

.featured-card-body {
    padding: 1.15rem 1.15rem 1.25rem;
}

.featured-card-body::before {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    background: linear-gradient(90deg, var(--rose), rgba(183, 134, 112, 0.15));
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

.featured-card h5 {
    margin: 0 0 0.35rem;
    font-size: 1.45rem;
    line-height: 1.2;
    color: var(--ink);

    font-family: var(--site-heading-font-family) !important;
    font-weight: var(--site-heading-font-weight) !important;
    letter-spacing: var(--site-heading-letter-spacing) !important;
}

.featured-card p {
    margin: 0;
    color: rgba(74, 58, 53, 0.72);
    font-size: 1rem;

    font-family: var(--site-body-font-family) !important;
    font-weight: var(--site-body-font-weight) !important;
    letter-spacing: var(--site-body-letter-spacing) !important;
}

.section-shell.featured-moments-section+.section-shell {
    padding-top: 5rem;
}


/* =========================================================
   QUOTE SECTION
   ========================================================= */
.home-quote-section {
    position: relative;
    min-height: var(--quote-height, 420px);
    padding: var(--quote-padding-y, 100px) 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--quote-bg-color, #f8f1ec);
    overflow: hidden;
    isolation: isolate;
}

.home-quote-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(var(--quote-overlay, rgba(0, 0, 0, 0.35)),
            var(--quote-overlay, rgba(0, 0, 0, 0.35))),
        var(--quote-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.home-quote-content {
    max-width: var(--quote-max-width, 800px);
    margin: 0 auto;
    text-align: var(--quote-align, center);
}

.home-quote-heading {
    margin: 0 0 18px;
    color: var(--quote-heading-color, #fff);
    font-family: var(--quote-heading-font, serif);
    font-size: var(--quote-heading-size, 3rem);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.home-quote-text {
    margin: 0;
    color: var(--quote-text-color, #fff);
    font-family: var(--quote-text-font, sans-serif);
    font-size: var(--quote-text-size, 1.1rem);
    line-height: 1.8;
    font-style: italic;
    border: 0;
}


/* =========================================================
   STORIES SECTION
   ========================================================= */
.films-moments-section {
    position: relative;
}

.films-featured-card {
    width: clamp(360px, 31vw, 540px);
    flex: 0 0 auto;
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.films-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.films-featured-image-wrap {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.films-featured-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.films-featured-body {
    padding: 22px 22px 26px;
}

.films-featured-body small {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(80, 58, 49, 0.65);
}

.films-featured-body h5 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #3d2a23;
}

.films-featured-body p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(61, 42, 35, 0.78);
}


/* =========================================================
   HOME ABOUT SECTION
   ========================================================= */
.home-about-section {
    position: relative;
    background-color: var(--about-bg-color, #ffffff);
    overflow: hidden;
    isolation: isolate;
    min-height: var(--about-height, 420px);
    padding: var(--about-padding-y, 100px) 20px;
}

.home-about-bg,
.home-about-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-about-bg {
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-about-overlay {
    z-index: 1;
    background: var(--about-overlay, rgba(0, 0, 0, 0));
}

.home-about-section .container {
    position: relative;
    z-index: 2;
}

.home-about-title {
    color: var(--about-title-color, #b78670);
}

.home-about-heading {
    color: var(--about-heading-color, #2f1f19);
    margin-bottom: 16px;
}

.home-about-description {
    color: var(--about-desc-color, #5f4b43);
    line-height: 1.8;
    margin-bottom: 24px;
}


/* =========================================================
   TESTIMONIALS / CLIENT REVIEWS
   ========================================================= */
.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    position: relative;
    height: 100%;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.testimonial-quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: rgba(183, 134, 112, 0.25);
    margin-bottom: 0.75rem;
    font-family: "Cormorant Garamond", serif;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-location {
    font-size: 0.92rem;
    opacity: 0.9;
}

/* Card entrance animations */
.testimonial-fade-up {
    animation: testimonialFadeUp 0.8s ease both;
}

.testimonial-zoom-in {
    animation: testimonialZoomIn 0.8s ease both;
}

.testimonial-flip-up {
    animation: testimonialFlipUp 0.8s ease both;
    transform-origin: center bottom;
}

@keyframes testimonialFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes testimonialZoomIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

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

@keyframes testimonialFlipUp {
    from {
        opacity: 0;
        transform: perspective(800px) rotateX(10deg) translateY(20px);
    }

    to {
        opacity: 1;
        transform: perspective(800px) rotateX(0) translateY(0);
    }
}


/* =========================================================
   FOOTER / SOCIAL LINKS
   ========================================================= */
.social-icons {
    margin-top: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.05);
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-4px);
}

.social-link.instagram:hover {
    background: #e1306c;
    color: #fff;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: #fff;
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: #fff;
}


/* =========================================================
   RESPONSIVE - TABLET / MOBILE NAV + FEATURED
   Important:
   Keep navbar transparent/absolute so hero stays at top
   ========================================================= */
@media (max-width: 991.98px) {
    .site-navbar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1030;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }

    .site-navbar .navbar-brand {
        max-width: calc(100% - 80px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-navbar .navbar-collapse {
        margin-top: 0.75rem;
        padding: 0.75rem 1rem 1rem;
        background: rgba(255, 250, 247, 0.98);
        border-radius: 1rem;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .site-navbar .navbar-nav {
        gap: 0 !important;
    }

    .site-navbar .nav-item+.nav-item {
        margin-top: 0.35rem;
    }

    .site-navbar .navbar-collapse .nav-link {
        display: block;
        padding: 0.7rem 0;
        color: var(--ink) !important;
    }

    .site-navbar .navbar-collapse .nav-link::after {
        display: none;
    }

    .featured-moments-section {
        padding: 4.75rem 0;
    }

    .featured-container {
        width: min(99vw, 100%);
        padding-inline: 0.2rem;
    }

    .featured-heading h2,
    .featured-moments-section .section-heading h2 {
        font-size: clamp(2.1rem, 7vw, 3.4rem);
    }

    .featured-heading p,
    .featured-moments-section .section-heading p {
        font-size: 1rem;
    }

    .featured-edge-fade {
        width: 18px;
    }

    .featured-card {
        width: 320px;
    }

    .featured-card img {
        height: 240px;
    }

    .decor-left {
        width: 240px;
        height: 240px;
        left: -80px;
    }

    .decor-right {
        width: 280px;
        height: 280px;
        right: -90px;
    }

    .scroll-track {
        gap: 0.8rem;
    }

    .featured-moments-section::before {
        background-position: center top;
        background-size: cover;
        opacity: 0.6;
    }

    /* About Us */
    .home-about-section .container {
        padding-inline: 1rem;
    }

    .home-about-section .row {
        row-gap: 1.5rem;
    }

    .home-about-section img {
        width: 100%;
        display: block;
    }

    .home-about-title {
        text-align: center;
    }

    .home-about-heading {
        text-align: center;
        font-size: 2rem;
        line-height: 1.2;
    }

    .home-about-description {
        text-align: center;
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 1.25rem;
    }

    .home-about-section .btn,
    .home-about-section .btn-outline-brand {
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .home-about-section .col-lg-6:last-child {
        text-align: center;
    }

    /* Stories */
    .films-moments-section .featured-container {
        padding-inline: 0.75rem;
    }

    .films-featured-card {
        width: min(84vw, 420px);
    }

    .films-featured-image-wrap {
        height: 260px;
    }

    .films-featured-body {
        padding: 18px 18px 22px;
    }

    .films-featured-body h5 {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    .films-featured-body p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    /* Testimonials */
    .testimonial-section .container {
        padding-inline: 1rem;
    }

    .testimonial-section .section-heading {
        margin-bottom: 2rem !important;
    }

    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }

    .testimonial-quote {
        font-size: 0.98rem;
        line-height: 1.7;
    }
}


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

    .hero-slider,
    .hero-slide,
    .hero-media,
    .hero-overlay,
    .hero-split-wrapper {
        height: 100vh;
        min-height: 100vh;
    }

    @supports (height: 100dvh) {

        .hero-slider,
        .hero-slide,
        .hero-media,
        .hero-overlay,
        .hero-split-wrapper {
            height: 100dvh;
            min-height: 100dvh;
        }
    }

    .hero-card {
        padding: 1.5rem;
    }

    .section-shell {
        padding: 3.5rem 0;
    }

    .photo-card,
    .story-card {
        width: 280px;
    }

    .home-quote-section {
        min-height: auto;
        padding: 70px 20px;
    }

    .home-quote-heading {
        font-size: 2rem;
    }

    .home-quote-text {
        font-size: 1rem;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE (UNDER 767.98px)
   ========================================================= */
@media (max-width: 767.98px) {
    .featured-moments-section {
        padding: 3.75rem 0;
    }

    .featured-container {
        width: 100%;
        padding-inline: 0.15rem;
    }

    .featured-moments-section::before {
        background-position: center center;
        background-size: cover;
        opacity: 0.6;
    }

    .featured-heading,
    .featured-moments-section .section-heading {
        margin-bottom: 1rem;
        padding-inline: 0.25rem;
    }

    .featured-heading h2,
    .featured-moments-section .section-heading h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        margin-bottom: 0.6rem;
    }

    .featured-heading p,
    .featured-moments-section .section-heading p {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .scroll-track {
        gap: 0.75rem;
    }

    .featured-pills,
    .featured-moments-section .pill-row {
        justify-content: center;
        gap: 0.6rem;
        margin-bottom: 1.5rem !important;
    }

    .featured-pills .pill,
    .featured-moments-section .pill-row .pill {
        padding: 0.5rem 0.9rem;
        font-size: 0.92rem;
    }

    .featured-frame {
        padding: 0.35rem 0;
    }

    .featured-edge-fade {
        display: none;
    }

    .featured-card {
        width: 84vw;
        max-width: 320px;
        border-radius: 22px;
    }

    .featured-card img {
        height: 210px;
    }

    .featured-card-body {
        padding: 0.95rem;
    }

    .featured-card h5 {
        font-size: 1.2rem;
    }

    .featured-card p {
        font-size: 0.94rem;
    }

    .section-texture {
        opacity: 0.1;
    }

    .decor-left,
    .decor-right {
        opacity: 0.3;
        filter: blur(55px);
    }

    /* About Us */
    .home-about-section {
        padding: 3.5rem 0;
    }

    .home-about-section .container {
        padding-inline: 1rem;
    }

    .home-about-title {
        font-size: 2.1rem;
        margin-bottom: 0.5rem;
    }

    .home-about-heading {
        font-size: 1.7rem;
        margin-bottom: 0.85rem;
    }

    .home-about-description {
        font-size: 0.96rem;
        line-height: 1.7;
        margin-bottom: 1.1rem;
    }

    .home-about-section .btn-outline-brand,
    .home-about-section .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.85rem 1.2rem;
    }

    /* Stories */
    .films-moments-section {
        padding: 3.5rem 0;
    }

    .films-moments-section .section-heading {
        margin-bottom: 1rem;
        padding-inline: 0.5rem;
    }

    .films-featured-card {
        width: 88vw;
        max-width: 340px;
        border-radius: 20px;
    }

    .films-featured-image-wrap {
        height: 220px;
    }

    .films-featured-body {
        padding: 16px 16px 20px;
    }

    .films-featured-body small {
        font-size: 0.75rem;
        letter-spacing: 0.06em;
    }

    .films-featured-body h5 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .films-featured-body p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Testimonials */
    .testimonial-section {
        padding: 3.5rem 0 !important;
    }

    .testimonial-section .section-heading {
        margin-bottom: 1.25rem !important;
        padding-inline: 0.5rem;
    }

    .testimonial-section .brand-script {
        font-size: clamp(2rem, 9vw, 2.7rem);
    }

    .testimonial-section .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial-slide .row {
        row-gap: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem 1rem;
        border-radius: 18px !important;
    }

    .testimonial-quote-mark {
        font-size: 2.3rem;
        margin-bottom: 0.5rem;
    }

    .testimonial-quote {
        font-size: 0.93rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }

    .testimonial-name {
        font-size: 0.98rem;
    }

    .testimonial-location {
        font-size: 0.88rem;
    }

    /* Gallery items move to center */
    .section-shell .row {
        justify-content: center;
    }

    .section-shell .col-md-6,
    .section-shell .col-lg-4 {
        display: flex;
        justify-content: center;
    }

    .story-card {
        width: 100%;
        max-width: 320px;
    }
}


/* =========================================================
   RESPONSIVE - SMALL MOBILE (UNDER 575.98px)
   ========================================================= */
@media (max-width: 575.98px) {

    /* About Us */
    .home-about-section .container {
        padding-inline: 0.9rem;
    }

    .home-about-title {
        font-size: 1.9rem;
    }

    .home-about-heading {
        font-size: 1.45rem;
    }

    .home-about-description {
        font-size: 0.92rem;
    }

    /* Stories */
    .films-featured-card {
        width: 90vw;
        max-width: 320px;
    }

    .films-featured-image-wrap {
        height: 200px;
    }

    .films-featured-body {
        padding: 14px 14px 18px;
    }

    /* Testimonials */
    .testimonial-section .container {
        padding-inline: 0.9rem;
    }

    .testimonial-card {
        padding: 1.15rem 0.95rem;
    }
}


/* =========================================================
   RESPONSIVE - EXTRA SMALL MOBILE (UNDER 479.98px)
   ========================================================= */
@media (max-width: 479.98px) {
    .featured-card {
        width: 86vw;
        max-width: 285px;
    }

    .featured-card img {
        height: 185px;
    }

    .featured-heading p,
    .featured-moments-section .section-heading p {
        max-width: 92%;
        margin-inline: auto;
    }
}


/* =========================================================
   STORY DETAIL / BACK BUTTON
   ========================================================= */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.back-btn:hover {
    color: #c59d5f;
}

.back-btn:hover .arrow {
    transform: translateX(-4px);
}

.story-title {
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.story-body {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.story-card img {
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.story-card:hover img {
    transform: scale(1.03);
}

.site-message-wrap {
    position: relative;
    z-index: 1;
    margin-top: 90px;
    margin-bottom: 1rem;
}

/* Blogs Start */

.blog-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 1rem;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-detail-image {
    max-height: 600px;
    object-fit: cover;
}

.blog-content {
    max-width: 850px;
    margin: 0 auto;
}

.letter-spacing {
    letter-spacing: 0.18em;
}

/* Blogs End */


/* Start Reviews */

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

.testimonial-footer {
    margin-top: auto;
}

.read-more-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #b78670;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    text-decoration: underline;
    transform: translateX(3px);
}

/* End Reviews */