/********** Salone Royale Redesign **********/

:root {
    --royal-ink: #14111f;
    --royal-night: #1c1a2b;
    --royal-plum: #35253f;
    --royal-gold: #d6c18a;
    --royal-gold-deep: #b09155;
    --royal-cream: #f7f2ea;
    --royal-pearl: #f1e7da;
    --royal-mauve: #e0d3c4;
    --royal-muted: #6b6574;
    --royal-white: #ffffff;
    --shadow-soft: 0 34px 80px rgba(20, 17, 31, 0.12);
    --shadow-card: 0 28px 45px rgba(20, 17, 31, 0.08);
    --radius-base: 18px;
    --radius-lg: 26px;
    --radius-pill: 999px;
}

:root {
    --bs-primary: var(--royal-gold);
    --bs-secondary: var(--royal-mauve);
    --bs-dark: var(--royal-ink);
    --bs-light: var(--royal-cream);
    --bs-body-bg: var(--royal-cream);
    --bs-body-color: var(--royal-ink);
    --bs-font-sans-serif: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
    --bs-font-serif: "Cormorant Garamond", "Times New Roman", serif;
    --bs-border-radius: var(--radius-base);
    --bs-border-radius-lg: var(--radius-lg);
    --bs-border-radius-xl: 36px;
    --bs-border-radius-pill: var(--radius-pill);
}

html,
body {
    overflow-x: hidden;
}

body {
    background: var(--royal-cream);
    color: var(--royal-ink);
    font-family: var(--bs-font-sans-serif);
    line-height: 1.7;
    letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bs-font-serif);
    font-weight: 600;
    color: var(--royal-night);
    line-height: 1.15;
}

p {
    color: var(--royal-muted);
}

a {
    color: inherit;
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--royal-gold-deep);
}

img {
    border-radius: var(--radius-lg);
}

.accent-script {
    font-family: "Great Vibes", cursive;
    font-size: clamp(1.5rem, 2.4vw, 2.6rem);
    color: var(--royal-gold-deep);
    line-height: 1;
    letter-spacing: 0.04em;
}

.eyebrow {
    letter-spacing: 0.35em;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--royal-muted);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: rgba(20, 17, 31, 0.25);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-heading .display-title {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.section-heading p {
    margin-top: 1rem;
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.badge-soft {
    background: rgba(214, 193, 138, 0.18);
    color: var(--royal-night);
    border-radius: var(--radius-pill);
    padding: 0.35rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: rgba(247, 242, 234, 0.9);
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-grow.text-primary {
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--royal-gold-deep) 100%);
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 24px;
    bottom: 24px;
    z-index: 99;
    width: 54px;
    height: 54px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--royal-gold-deep) 100%);
    color: var(--royal-night);
    border: none;
    box-shadow: 0 18px 40px rgba(176, 145, 85, 0.35);
}

.back-to-top:hover {
    transform: translateY(-4px);
}


/*** Buttons ***/
.btn {
    border-radius: var(--radius-pill);
    padding: 0.75rem 1.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    transition: all 0.35s ease;
}

.btn-primary {
    border: none;
    color: var(--royal-night);
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--royal-gold-deep) 100%);
    box-shadow: 0 20px 48px rgba(181, 149, 82, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(181, 149, 82, 0.45);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--royal-white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--royal-white);
}

.btn-outline-dark {
    border: 1px solid rgba(20, 17, 31, 0.16);
    color: var(--royal-night);
}

.btn-outline-dark:hover {
    border-color: transparent;
    color: var(--royal-night);
    background: rgba(20, 17, 31, 0.08);
}

.btn-soft {
    background: rgba(214, 193, 138, 0.15);
    color: var(--royal-night);
}

.btn-soft:hover {
    background: rgba(214, 193, 138, 0.25);
}

.btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(214, 193, 138, 0.18);
    color: var(--royal-night);
    border: none;
    margin: 0;
}

.btn-icon:hover {
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--royal-gold-deep) 100%);
    color: var(--royal-night);
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-square { width: 46px; height: 46px; }
.btn-sm-square { width: 38px; height: 38px; }
.btn-lg-square { width: 58px; height: 58px; }


/*** Navbar ***/
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: .4s ease;
}

.royal-navbar {
    background: rgba(247, 242, 234, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(20, 17, 31, 0.06);
}

.sticky-top.is-scrolled {
    box-shadow: 0 22px 48px rgba(20, 17, 31, 0.12);
    background: rgba(247, 242, 234, 0.95);
}

.royal-navbar .navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--bs-font-serif);
}

.navbar-brand .brand-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(214, 193, 138, 0.35), rgba(176, 145, 85, 0.55));
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-night);
    font-size: 1.4rem;
}

.navbar-brand .brand-wordmark {
    line-height: 1;
}

.navbar-brand .brand-wordmark span {
    display: block;
}

.brand-title {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--royal-muted);
}

.navbar-toggler {
    border: none;
    background: rgba(214, 193, 138, 0.25);
    padding: 0.6rem 0.8rem;
}

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

.navbar-toggler-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1.4rem;
    color: var(--royal-night);
    background-image: none;
}

.navbar .navbar-nav .nav-link {
    margin: 0 14px;
    padding: 0.35rem 0;
    font-family: var(--bs-font-sans-serif);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--royal-muted);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--royal-night);
}

.navbar .dropdown-menu {
    border: none;
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    box-shadow: var(--shadow-soft);
    background: var(--royal-white);
}

.navbar .dropdown-item {
    border-radius: var(--radius-base);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(214, 193, 138, 0.18);
    color: var(--royal-night);
}

.navbar .nav-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.navbar .nav-social .btn-icon {
    width: 42px;
    height: 42px;
}

.navbar .cta-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        align-items: center;
        margin-top: 1.5rem;
        gap: 0.5rem;
    }

    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.75rem 0;
        width: 100%;
        text-align: center;
    }

    .navbar .nav-social,
    .navbar .cta-wrapper {
        margin-top: 1rem;
    }

    .navbar .cta-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(20, 17, 31, 0.08);
    }

    .navbar .nav-social {
        justify-content: center;
    }

    .navbar .cta-wrapper .btn {
        width: 100%;
        justify-content: center;
    }
}


/*** Hero Header ***/
.hero-header {
    position: relative;
    padding: clamp(4rem, 10vw, 7.5rem) 0;
    background: radial-gradient(circle at top right, rgba(214, 193, 138, 0.22), transparent 45%),
                linear-gradient(140deg, rgba(247, 242, 234, 0.95), rgba(226, 208, 187, 0.65));
    overflow: hidden;
}

.hero-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/pattern.svg");
    background-size: 280px;
    opacity: 0.12;
    pointer-events: none;
}

.hero-header .container {
    position: relative;
    z-index: 2;
}

.hero-header .hero-header-text {
    padding-right: 2rem;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    margin: 1.25rem 0 1.75rem;
}

.hero-lede {
    font-size: 1rem;
    max-width: 520px;
}

.hero-actions {
    gap: 1rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-meta .meta-item {
    min-width: 140px;
}

.hero-meta .meta-value {
    font-family: var(--bs-font-serif);
    font-size: 2rem;
    color: var(--royal-night);
}

.hero-meta .meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--royal-muted);
}

.hero-media {
    position: relative;
    padding: 2rem;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 12%;
    background: rgba(214, 193, 138, 0.25);
    border-radius: 280px 280px 80px 80px;
    filter: blur(0px);
}

.hero-media .media-frame {
    position: relative;
    z-index: 2;
    border-radius: 260px 260px 40px 40px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-media .media-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--royal-white);
    padding: 1rem 1.4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-media .media-badge i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(214, 193, 138, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-night);
}

.hero-media .media-badge span {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--royal-muted);
}

.header-carousel .owl-nav {
    position: absolute;
    right: 30px;
    bottom: 30px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.header-carousel .owl-nav button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85) !important;
    color: var(--royal-night) !important;
    border: none !important;
    box-shadow: 0 18px 40px rgba(20, 17, 31, 0.12);
}

.header-carousel .owl-nav button:hover {
    background: linear-gradient(135deg, var(--royal-gold), var(--royal-gold-deep)) !important;
}

@media (max-width: 991.98px) {
    .hero-header {
        text-align: center;
    }

    .hero-header .hero-header-text {
        padding-right: 0;
    }

    .hero-actions {
        justify-content: center;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        flex: 1 1 160px;
        margin: 0;
    }

    .hero-meta {
        justify-content: center;
        gap: 1.25rem;
    }

    .hero-meta .meta-item {
        flex: 1 1 160px;
        min-width: 0;
        text-align: center;
    }

    .hero-media {
        margin-top: 2.5rem;
        padding: 1.5rem 0;
    }

    .hero-media::before {
        inset: 8%;
    }

    .hero-media .media-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}


/*** Generic Section Layouts ***/
.section-drape {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-drape::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(214, 193, 138, 0.12), transparent);
    opacity: 0.6;
    pointer-events: none;
}

.section-drape > .container,
.section-drape > .row,
.section-drape > .container-fluid {
    position: relative;
    z-index: 2;
}


/*** About & Feature ***/
.about-highlight {
    background: var(--royal-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-card);
}

.about-highlight .icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(214, 193, 138, 0.22);
    color: var(--royal-night);
    font-size: 1.8rem;
}

.list-chevron {
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-chevron li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    font-weight: 600;
    color: var(--royal-night);
}

.list-chevron li i {
    color: var(--royal-gold-deep);
}


/*** Services ***/
.service {
    background: var(--royal-pearl);
    position: relative;
}

.service .service-item {
    background: var(--royal-white);
    border-radius: var(--radius-lg);
    padding: 2.3rem;
    height: 100%;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(20, 17, 31, 0.04);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.service .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 70px rgba(20, 17, 31, 0.14);
}

.service .service-item img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    background: rgba(214, 193, 138, 0.16);
    padding: 1rem;
    border-radius: 24px;
}

.service .service-item h3 {
    margin-bottom: 1rem;
}

.service .service-item p {
    margin-bottom: 1.5rem;
}

.service .service-item .btn-primary {
    padding: 0.65rem 1.6rem;
    font-size: 0.75rem;
}


/*** Pricing ***/
.price {
    background: linear-gradient(120deg, rgba(20, 17, 31, 0.98), rgba(53, 37, 63, 0.92));
    color: var(--royal-white);
}

.price .headline {
    color: var(--royal-white);
}

.price .lead {
    color: rgba(255, 255, 255, 0.72);
}

.price .offer-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.price .offer-card h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    letter-spacing: 0.18em;
}

.price .price-list {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.price .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.6rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.35s ease, background 0.35s ease;
}

.price .price-item:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.18);
}

.price .price-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 22px;
    margin-right: 1.2rem;
}

.price .price-item .title {
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.price .price-item .value {
    font-family: var(--bs-font-serif);
    font-size: 1.8rem;
    color: var(--royal-white);
}


/*** Gallery ***/
.gallery {
    background: var(--royal-cream);
}

.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

.gallery .gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20, 17, 31, 0.62));
    opacity: 0;
    transition: opacity 0.45s ease;
}

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

.gallery .gallery-item img {
    transition: transform 0.6s ease;
}

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

.gallery .gallery-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery .gallery-icon .btn {
    background: var(--royal-white);
    color: var(--royal-night);
    border-radius: var(--radius-pill);
    padding: 0.65rem 1.4rem;
    font-size: 0.78rem;
}


/*** Team ***/
.team {
    position: relative;
}

.team::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -35%;
    width: 170%;
    height: 230px;
    background: rgba(214, 193, 138, 0.22);
    transform: translateY(-50%);
    border-radius: 120px;
    z-index: 0;
}

.team-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.team-item img {
    transition: transform 0.6s ease;
}

.team-item:hover img {
    transform: scale(1.08);
}

.team-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 30%, rgba(20, 17, 31, 0.78));
    transition: opacity 0.35s ease;
}

.team-overlay p,
.team-overlay h4 {
    color: var(--royal-white);
}

.team-overlay .btn-icon {
    background: rgba(255, 255, 255, 0.18);
    color: var(--royal-white);
}

.team-overlay .btn-icon:hover {
    background: var(--royal-white);
    color: var(--royal-night);
}

.team-overlay .socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.4rem;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(120deg, rgba(20, 17, 31, 0.95), rgba(53, 37, 63, 0.92));
    color: var(--royal-white);
}

.testimonial .section-heading .eyebrow::before {
    background: rgba(255, 255, 255, 0.35);
}

.testimonial-carousel .item-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
    min-height: 100%;
}

.testimonial-carousel .item-card p {
    color: rgba(255, 255, 255, 0.72);
}

.testimonial-carousel .client {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-carousel .client img {
    width: 86px;
    height: 86px;
    border: 3px solid rgba(214, 193, 138, 0.5);
    border-radius: 50%;
}

.testimonial-carousel .owl-nav {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.testimonial-carousel .owl-nav button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.testimonial-carousel .owl-nav button:hover {
    background: var(--royal-white) !important;
    color: var(--royal-night) !important;
}


/*** Blog ***/
.blog {
    overflow: hidden;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--royal-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(20, 17, 31, 0.04);
}

.blog-card .meta {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--royal-muted);
}

.blog-card h3 {
    font-size: 1.5rem;
}

.blog-card .btn {
    align-self: flex-start;
}

.blog-image {
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-image:hover img {
    transform: scale(1.06);
}


/*** Footer ***/
.footer {
    position: relative;
    background: linear-gradient(160deg, var(--royal-night), #0f1320);
    color: rgba(255, 255, 255, 0.7);
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(214, 193, 138, 0.18), transparent 55%);
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer .navbar-brand .brand-icon {
    background: rgba(214, 193, 138, 0.25);
}

.footer .navbar-brand .brand-title {
    color: var(--royal-white);
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
    color: var(--royal-gold);
}

.footer .btn-icon {
    background: rgba(255, 255, 255, 0.12);
    color: var(--royal-white);
}

.footer .btn-icon:hover {
    background: var(--royal-white);
    color: var(--royal-night);
}

.footer .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--royal-white);
    border-radius: var(--radius-pill);
    padding: 0.85rem 1.2rem;
}

.footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer .newsletter-button {
    position: absolute;
    top: 50%;
    right: 0.6rem;
    transform: translateY(-50%);
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--royal-gold), var(--royal-gold-deep));
    border: none;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-night);
}

.footer .newsletter-button:hover {
    transform: translateY(-50%) translateX(-2px);
}

.footer .divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    margin: 2.5rem 0;
}

.footer .footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.footer .footer-links a::before {
    content: "";
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    transition: width 0.3s ease;
}

.footer .footer-links a:hover::before {
    width: 48px;
}

.footer .copyright {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/*** Subpage Hero ***/
.page-header {
    position: relative;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    background: linear-gradient(160deg, rgba(20, 17, 31, 0.92), rgba(53, 37, 63, 0.78));
    overflow: hidden;
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(214, 193, 138, 0.4), transparent 60%);
    opacity: 0.45;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1,
.page-header .breadcrumb a,
.page-header .breadcrumb-item.active {
    color: var(--royal-white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}


/*** Cards & Utilities ***/
.royal-card {
    background: var(--royal-white);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(20, 17, 31, 0.04);
}

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

.meta {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--royal-muted);
}

.icon-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(214, 193, 138, 0.18);
    color: var(--royal-night);
}


/*** Forms ***/
.form-control {
    border-radius: var(--radius-pill);
    border: 1px solid rgba(20, 17, 31, 0.12);
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.85);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--royal-gold);
    box-shadow: 0 0 0 0.2rem rgba(214, 193, 138, 0.2);
}


/*** Contact ***/
.contact-card {
    background: var(--royal-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info .info-item .icon-circle {
    width: 52px;
    height: 52px;
}


/*** Misc ***/
.border-soft {
    border: 1px solid rgba(20, 17, 31, 0.08);
    border-radius: var(--radius-lg);
}

.bg-soft {
    background: rgba(214, 193, 138, 0.12);
}

.ratio-3x4 {
    position: relative;
    padding-top: calc(4 / 3 * 100%);
}

.ratio-3x4 > * {
    position: absolute;
    inset: 0;
}

.object-fit-cover {
    object-fit: cover;
}


/*** Owl Carousel Overrides ***/
.owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 6px;
    background: rgba(214, 193, 138, 0.32);
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: linear-gradient(135deg, var(--royal-gold), var(--royal-gold-deep));
}


/*** Media Queries ***/
@media (max-width: 767.98px) {
    .section-drape {
        padding: 3.5rem 0;
    }

    .section-heading {
        margin-bottom: 2.5rem;
    }

    .about-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .about-highlight .icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .hero-meta {
        justify-content: center;
        gap: 1rem;
    }

    .hero-meta .meta-item {
        flex: 1 1 140px;
    }

    .hero-meta .meta-value {
        font-size: 1.8rem;
    }

    .service .service-item {
        padding: 2rem;
        text-align: center;
    }

    .price .price-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .price .price-item .d-flex {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .gallery .gallery-icon {
        padding: 1.5rem;
    }

    .footer .footer-links {
        gap: 0.75rem;
    }

    .footer .navbar-brand {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .section-drape {
        padding: 3rem 0;
    }

    .navbar-brand .brand-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .brand-title {
        font-size: 1.35rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0.65rem;
        padding: 0 0.5rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 230px;
        margin: 0;
        padding: 0.6rem 1.3rem;
        font-size: clamp(0.74rem, 2.6vw, 0.82rem);
        letter-spacing: 0.045em;
        border-radius: var(--radius-pill);
        text-align: center;
    }

    .hero-actions .btn.me-3 {
        margin-right: 0 !important;
    }

    .hero-lede {
        margin: 0 auto;
        padding: 0 1rem;
        max-width: 100%;
        font-size: 0.96rem;
    }

    .hero-meta {
        gap: 1.25rem;
    }

    .hero-meta .meta-item {
        flex: 1 1 100%;
    }

    .hero-meta .meta-value {
        font-size: 1.6rem;
    }

    .hero-media .media-badge {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 1.5rem;
    }

    .about-highlight {
        align-items: center;
        text-align: center;
    }

    .about-highlight .icon {
        margin-bottom: 0.5rem;
    }

    .royal-card {
        padding: 1.6rem;
    }

    .price .offer-card {
        padding: 1.75rem;
    }

    .price .price-item {
        padding: 1.25rem;
    }

    .price .price-item .value {
        font-size: 1.6rem;
    }

    .gallery .gallery-icon {
        padding: 1.25rem;
    }

    .footer .navbar-brand {
        justify-content: center;
        text-align: center;
    }

    .footer .d-flex.gap-3 {
        justify-content: center;
    }

    .footer .footer-links {
        align-items: center;
        text-align: center;
    }

    .footer .position-relative {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .footer .position-relative .form-control {
        padding-right: 1rem;
    }

    .footer .position-relative .newsletter-button {
        position: static;
        width: 100%;
        margin-top: 0;
    }
}
