@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --ivory: #fbf7f0;
    --cream: #f4eadc;
    --taupe: #aa9277;
    --gold: #b88a4a;
    --charcoal: #23211f;
    --muted: #756d65;
    --white: #fff
}

* {
    box-sizing: border-box
}

body {
    font-family: Inter, sans-serif;
    color: var(--charcoal);
    background: var(--ivory);
    overflow-x: hidden
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif
}

h1 {
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: .95;
    letter-spacing: -.05em
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -.03em
}

p {
    color: var(--muted);
    line-height: 1.8
}

.luxury-nav {
    padding: 18px 0;
    background: rgba(251, 247, 240, .72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(184, 138, 74, .12)
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none
}

.brand span {
    color: var(--gold);
    margin-left: 3px
}

.brand.light {
    color: #fff
}

.nav-link {
    font-weight: 600;
    color: var(--charcoal) !important
}

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

.btn {
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 700
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border: 1px solid var(--gold);
    box-shadow: 0 14px 35px rgba(184, 138, 74, .25)
}

.btn-gold:hover {
    background: #9d733a;
    color: #fff
}

.btn-light-luxury,
.btn-outline-luxury {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(35, 33, 31, .14);
    color: var(--charcoal)
}

.hero-section {
    position: relative;
    background: url('../../assets/img/hero-banner.avif') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 247, 240, .96), rgba(251, 247, 240, .72), rgba(251, 247, 240, .18))
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 800;
    color: var(--gold)
}

.eyebrow.dark {
    color: #8b6a3e
}

.hero-section p {
    font-size: 20px;
    max-width: 680px
}

.floating-card {
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(15px);
    padding: 24px;
    border-radius: 28px;
    box-shadow: 0 25px 80px rgba(35, 33, 31, .12);
    border: 1px solid rgba(255, 255, 255, .7);
    max-width: 260px;
    animation: float 5s ease-in-out infinite
}

.floating-card strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 34px
}

.card-one {
    margin-left: auto
}

.card-two {
    margin-top: 40px
}

.section {
    padding: 105px 0
}

.soft-bg {
    background: linear-gradient(180deg, #fff8ef, #f4eadc)
}

.image-frame {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(35, 33, 31, .13)
}

.image-frame img,
.before-after img,
.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.link-arrow {
    font-weight: 800;
    color: var(--gold);
    text-decoration: none
}

.service-card,
.why-card {
    height: 100%;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(184, 138, 74, .16);
    border-radius: 30px;
    padding: 34px;
    transition: .35s;
    box-shadow: 0 20px 60px rgba(35, 33, 31, .06)
}

.service-card:hover,
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 90px rgba(35, 33, 31, .13)
}

.service-card i {
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 25px;
    display: inline-block
}

.service-card h3 {
    font-size: 28px
}

.before-after {
    position: relative;
    height: 560px;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(35, 33, 31, .15)
}

.ba-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, .85);
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 800;
    color: var(--gold)
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    grid-auto-rows: 330px;
    gap: 18px
}

.gallery-grid img {
    border-radius: 28px;
    transition: .4s
}

.gallery-grid img:hover {
    transform: scale(1.025)
}

.gallery-grid img:first-child {
    grid-row: span 2
}

.cta-section {
    background: linear-gradient(rgba(35, 33, 31, .62), rgba(35, 33, 31, .62)), url('../../assets/img/cta-section.avif') center/cover;
    color: #fff
}

.cta-section p {
    color: rgba(255, 255, 255, .78);
    max-width: 650px;
    margin: 18px auto 30px
}

.footer {
    background: #211e1a;
    color: #fff;
    padding: 70px 0 25px
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, .68);
    display: block;
    text-decoration: none;
    margin: 8px 0
}

.footer h5 {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 40px;
    padding-top: 22px;
    color: rgba(255, 255, 255, .5)
}

.offcanvas-body a {
    display: block;
    padding: 14px 0;
    color: var(--charcoal);
    font-weight: 700;
    text-decoration: none
}

.page-hero {
    padding: 160px 0 90px;
    background: linear-gradient(180deg, #fff8ef, #f4eadc)
}

.content-card {
    background: #fff;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 20px 60px rgba(35, 33, 31, .08)
}

.form-control {
    border-radius: 18px;
    padding: 15px;
    border-color: #eadcca
}

.accordion-button {
    font-weight: 700
}

.accordion-item {
    border: 0;
    border-radius: 20px !important;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 12px 35px rgba(35, 33, 31, .06)
}

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

[data-animate] {
    opacity: 0;
    transform: translateY(35px);
    transition: .8s ease
}

[data-animate].show {
    opacity: 1;
    transform: none
}

@media(max-width:991px) {
    .section {
        padding: 75px 0
    }

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

    .gallery-grid img:first-child {
        grid-row: auto
    }

    .before-after {
        height: 360px
    }

    .hero-overlay {
        background: rgba(251, 247, 240, .86)
    }

    .card-one,
    .card-two {
        margin: 20px 0 0
    }

    .luxury-nav {
        padding: 12px 0
    }
}

@media(max-width:575px) {
    h1 {
        font-size: 3.2rem
    }

    .hero-section p {
        font-size: 17px
    }

    .service-card,
    .why-card,
    .content-card {
        padding: 25px
    }

    .page-hero {
        padding: 130px 0 70px
    }
}

/* Contact Modal CSS */

.custom-modal .modal-content {
    background: #23211f !important;
    border: 2px solid #b88a4a;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35)
}

.custom-modal .modal-body {
    padding: 35px 25px
}

.modal-title {
    color: #b88a4a;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .5px
}

.modal-text {
    color: #d8d8d8;
    font-size: 16px;
    margin-bottom: 25px
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    border: 2px solid #b88a4a;
    background: rgba(184, 138, 74, .12);
    color: #b88a4a
}

.custom-btn {
    min-width: 120px;
    padding: 10px 24px;
    border: none !important;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s
}

.success-btn,
.error-btn {
    background: #b88a4a !important;
    color: #23211f !important
}

.success-btn:hover,
.error-btn:hover {
    background: #d7a45a !important;
    color: #23211f !important;
    transform: translateY(-2px)
}

.custom-modal .btn:focus {
    box-shadow: none
}

.modal.fade .modal-dialog {
    transform: scale(.9);
    transition: .3s
}

.modal.show .modal-dialog {
    transform: scale(1)
}

/* Portfolio - Index Page */

.square-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.square-gallery img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.square-gallery img:first-child {
    grid-row: auto;
}

@media(max-width:768px) {

    .square-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .square-gallery img {
        aspect-ratio: 1/1;
        border-radius: 20px;
    }

}

/* Portfolio Page */

.portfolio-reel-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(35, 33, 31, .08);
    transition: .3s ease;
}

.reel-top {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.reel-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #b88a4a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.reel-top h6 {
    margin: 0;
    line-height: 1;
    font-size: 14px;
    font-weight: 700;
    color: #23211f;
}

.reel-top .d-flex>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reel-top span {
    font-size: 11px;
    color: #777;
}

.reel-btn {
    background: #0095f6;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.reel-video {
    position: relative;
    height: 420px;
    overflow: hidden;
}

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

.custom-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.custom-play i {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: #23211f;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    transition: .3s ease;
}

.portfolio-reel-card:hover .custom-play i {
    transform: scale(1.08);
}

.reel-bottom {
    padding: 16px;
    border-top: 1px solid #eee;
}

.reel-bottom a {
    color: #0095f6;
    font-weight: 600;
    text-decoration: none;
}

/* Checkbox */

.consent-label {
    display: flex;
    align-items: flex-start;
}

.consent-label .checkBox {
    margin-top: 5px;
    /* aligns checkbox with first line */
    margin-right: 15px;
    /* space between checkbox and text */
}

.consent-label span {
    display: block;
    line-height: 1.5;
    font-size: 12px;
}

.small {
    font-size: 12px !important;
}

/* PRIVACY POLICY */

.hero-subtext {
    max-width: 760px;
    margin: auto;
    font-size: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.privacy-section {
    position: relative;
}

.privacy-wrapper {
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(184, 138, 74, .12);
    backdrop-filter: blur(16px);
    border-radius: 36px;
    padding: 60px;
    box-shadow: 0 30px 90px rgba(35, 33, 31, .08);
}

.mini-badge {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(184, 138, 74, .12);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.privacy-intro h2 {
    margin-bottom: 18px;
}

.privacy-intro p {
    max-width: 760px;
}

.privacy-block {
    display: flex;
    gap: 24px;
    padding: 34px 0;
    border-bottom: 1px solid rgba(35, 33, 31, .08);
}

.privacy-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 22px;
    background: rgba(184, 138, 74, .12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.privacy-block h4 {
    margin-bottom: 10px;
    font-size: 24px;
}

.privacy-block p {
    margin-bottom: 0;
    line-height: 1.9;
}

@media(max-width:768px) {

    .privacy-wrapper {
        padding: 35px 24px;
        border-radius: 28px;
    }

    .privacy-block {
        flex-direction: column;
        gap: 18px;
    }

    .privacy-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 24px;
    }

}

/* Contact Page - Mobile view */

html,
body {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 768px) {

    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .page-hero {
        padding: 110px 0 50px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
        line-height: 1.15;
        margin-bottom: 0;
    }

    .section {
        padding: 50px 0;
    }

    .row.g-5 {
        --bs-gutter-x: 18px;
        --bs-gutter-y: 24px;
    }

    .contact-form .row.g-3 {
        --bs-gutter-x: 14px;
        --bs-gutter-y: 14px;
    }

    .content-card {
        padding: 22px;
        border-radius: 24px;
    }

    .form-control {
        height: 54px;
        border-radius: 16px;
        padding: 14px 16px;
        font-size: 16px !important;
    }

    textarea.form-control {
        height: 130px;
        resize: none;
        padding-top: 16px;
    }

    .btn-gold {
        width: 100%;
        height: 54px;
        font-size: 15px;
    }

    .consent-label {
        gap: 10px;
    }

    .consent-label span,
    .small {
        font-size: 11px !important;
        line-height: 1.6;
    }

    .g-recaptcha {
        transform: scale(0.94);
        transform-origin: left top;
        max-width: 100%;
    }

    .content-card,
    .section,
    .page-hero {
        overflow: hidden;
    }
}

@media (max-width: 480px) {

    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .content-card {
        padding: 18px;
        border-radius: 20px;
    }

    .page-hero h1 {
        font-size: 1.9rem;
    }

    .g-recaptcha {
        transform: scale(0.88);
    }
}





/* ── Testimonials ── */
.testimonial-card {
    background: #fff;
    border: 1px solid rgba(184,138,74,.15);
    border-radius: 30px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(35,33,31,.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.testimonial-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--charcoal);
    flex: 1;
    margin: 0 0 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(184,138,74,.12);
    padding-top: 20px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--taupe));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}
.testimonial-author-info strong {
    display: block;
    font-weight: 700;
    color: var(--charcoal);
    font-size: 15px;
}
.testimonial-author-info span {
    font-size: 13px;
    color: var(--muted);
}

/* ── Stats Bar ── */
.stats-bar {
    background: var(--charcoal);
    padding: 42px 0;
}
.stat-item {
    text-align: center;
}
.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.stat-item .stat-label {
    color: rgba(255,255,255,.65);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    display: block;
    margin-top: 8px;
}
.stats-divider {
    width: 1px;
    background: rgba(255,255,255,.12);
    height: 60px;
    margin: auto;
}

/* ── Process Strip ── */
.process-strip {
    background: linear-gradient(180deg, #fff8ef, #f4eadc);
    padding: 80px 0;
}
.process-step {
    text-align: center;
    position: relative;
}
.process-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 12px 30px rgba(184,138,74,.3);
}
.process-step h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 14px;
    margin: 0;
}
.process-connector {
    position: absolute;
    top: 32px;
    right: -50%;
    width: 100%;
    height: 1px;
    border-top: 2px dashed rgba(184,138,74,.3);
}

/* ── Meet the Stager ── */
.founder-card {
    background: linear-gradient(135deg, #fff8ef, #f4eadc);
    border: 1px solid rgba(184,138,74,.18);
    border-radius: 36px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.founder-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 220px;
    color: rgba(184,138,74,.07);
    position: absolute;
    top: -30px;
    right: 30px;
    line-height: 1;
    pointer-events: none;
}
.founder-img-wrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 20px 50px rgba(184,138,74,.2);
}
.founder-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Service Area ── */
.area-badge {
    display: inline-block;
    background: rgba(184,138,74,.1);
    border: 1px solid rgba(184,138,74,.25);
    color: var(--gold);
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    margin: 5px;
}

@media(max-width:991px) {
    .process-connector { display: none; }
    .stats-divider { display: none; }
    .founder-card { padding: 30px; }
}
@media(max-width:575px) {
    .testimonial-card { padding: 24px; }
    .founder-img-wrap { width: 110px; height: 110px; }
}

/* ── Logo image ── */
.nav-logo {
    height: 52px;
    width: auto;
    display: block;
}
.footer-logo-img {
    height: 64px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    margin-bottom: 14px;
    display: block;
}
@media(max-width:991px) {
    .nav-logo { height: 42px; }
}

/* ── Signature ── */
.founder-signature {
    max-width: 220px;
    height: auto;
    display: block;
    margin-top: 24px;
    opacity: 0.9;
}

/* ── Instagram Reel Cards ── */
.insta-reel-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.insta-reel-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: .3s;
}
.insta-reel-thumb i {
    font-size: 3.5rem;
    color: var(--gold);
    transition: .3s;
}
.insta-reel-thumb span {
    color: rgba(255,255,255,.8);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.insta-reel-link:hover .insta-reel-thumb {
    background: linear-gradient(135deg, #222, #3a3a3a);
}
.insta-reel-link:hover .insta-reel-thumb i {
    transform: scale(1.15);
    color: #fff;
}
/* Override reel-logo to handle image */
.reel-logo {
    background: transparent !important;
    overflow: hidden;
}

/* ── Instagram Embed Cards ── */
.insta-embed-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(35,33,31,.12);
    background: #fff;
    border: 1px solid rgba(184,138,74,.15);
}
.insta-embed-card iframe {
    width: 100%;
    height: 480px;
    display: block;
    border: 0;
}
.insta-embed-card .reel-bottom {
    border-top: 1px solid rgba(184,138,74,.12);
    padding: 14px 18px;
    background: #fff;
    border-radius: 0;
}
.insta-embed-card .reel-bottom a {
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}
.insta-embed-card .reel-bottom a:hover {
    color: var(--charcoal);
}
@media(max-width:767px) {
    .insta-embed-card iframe { height: 420px; }
}