:root {
    --bg-white: #fff;
    --bg-off: #faf8f4;
    --bg-warm: #f5efe6;
    --bg-cream: #ede4d6;
    --bg-dark: #0d0b09;
    --bg-dark-2: #1a1611;
    --bg-dark-3: #231e18;
    --text-primary: #1c1612;
    --text-body: #3d3028;
    --text-muted: #7a6654;
    --text-light: #b09882;
    --text-inverse: #f8f4ef;
    --gold: #727651;
    --gold-dark: #a8843e;
    --gold-light: #e8d5b0;
    --gold-pale: #f5edd8;
    --border-light: rgba(26, 18, 8, .08);
    --border-gold: rgba(201, 169, 110, .22);
    --border-warm: rgba(201, 169, 110, .12);
    --shadow-sm: 0 2px 12px rgba(26, 18, 8, .06);
    --shadow-md: 0 6px 32px rgba(26, 18, 8, .10);
    --shadow-lg: 0 16px 64px rgba(26, 18, 8, .14);
    --section-pad: 4.5rem 2.5rem;
    --section-pad-sm: 3rem 1.5rem;
    --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'DM Sans', sans-serif
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}
a:hover{
    text-decoration: none !important;
}

body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-body);
    overflow-x: hidden;
    font-size: 16px;
    margin: 0;
    -webkit-font-smoothing: antialiased
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background: var(--bg-off)
}

::-webkit-scrollbar-thumb {
    background: var(--gold)
}

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

a {
    text-decoration: none
}

.t-serif {
    font-family: var(--font-serif)
}

.t-display {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.02em
}

.eyebrow {
    font-family: var(--font-body);
    font-size: .75rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500
}

.rule-center {
    width: 52px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto
}

.rule-left {
    width: 52px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent)
}

.rule-gold {
    width: 2.5rem;
    height: 2px;
    background: var(--gold)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .9rem 2.2rem;
    border: 0;
    cursor: pointer;
    transition: all .25s ease;
    text-decoration: none
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff
}

.btn-gold:hover {
    opacity: .88;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, .35);
    color: #fff
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold)
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--text-primary)
}

.btn-outline-dark:hover {
    background: var(--text-primary);
    color: var(--bg-white)
}

.btn-dark {
    background: var(--bg-dark);
    color: var(--text-inverse)
}

.btn-dark:hover {
    background: var(--bg-dark-2)
}

.btn-white {
    background: #fff;
    color: var(--text-primary)
}

.btn-white:hover {
    background: var(--gold-pale)
}

.site-nav {
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    /* transition: background .4s ease, padding .3s ease, box-shadow .3s ease; */
    padding: .5rem 2rem;
    background: #fff;
}

.site-nav.scrolled {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-light), 0 4px 24px rgba(0, 0, 0, .04);
    padding: .8rem 2.5rem
}

.site-nav.nav-dark {
    background: var(--bg-dark)
}

.site-nav.nav-dark.scrolled {
    background: rgba(13, 11, 9, .97);
    box-shadow: 0 1px 0 var(--border-gold)
}

.nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav-logo img {
    height: 80px;
    width: auto;
    display: block
}

.site-nav.scrolled .nav-logo-dark {
    display: none
}

.site-nav:not(.scrolled) .nav-logo-light {
    display: none
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-links a {
    font-size: 16px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgb(0 0 0);
    transition: color .2s;
    font-family: var(--font-body);
    font-weight: 400
}

.site-nav.scrolled .nav-links a {
    color: var(--text-muted)
}

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

.nav-dropdown {
    position: relative
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: .75rem
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + .75rem);
    left: 50%;
    min-width: 220px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-top: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    visibility: hidden;
    transform: translateX(-50%) translateY(6px);
    list-style: none;
    margin: 0;
    padding: .4rem 0;
    z-index: 9;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.nav-dropdown-menu a {
    display: block;
    padding: .65rem 1.2rem;
    font-size: .75rem;
    color: var(--text-muted) !important;
    transition: background .15s, color .15s
}

.nav-dropdown-menu a:hover {
    background: var(--bg-off);
    color: var(--gold) !important
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff !important;
    padding: .6rem 1.5rem;
    font-weight: 500;
    letter-spacing: .08em;
    font-size: .75rem;
    text-transform: uppercase;
    transition: opacity .2s, transform .2s !important
}

.nav-cta:hover {
    opacity: .9;
    transform: translateY(-1px) !important;
    color: #fff !important
}

.nav-ham {
    display: none;
    background: 0;
    border: 0;
    cursor: pointer;
    padding: .3rem;
    color: rgb(0 0 0 / 90%);
    transition: color .2s
}

.site-nav.scrolled .nav-ham {
    color: var(--text-primary)
}

.nav-ham .ham-close {
    display: none
}

.nav-ham.is-open .ham-icon {
    display: none
}

.nav-ham.is-open .ham-close {
    display: block
}

#nav-mobile {
    display: none;
    background: var(--bg-white);
    border-top: 2px solid var(--gold);
    padding: .5rem 1.5rem 1.5rem;
    max-height: calc(100vh - 70px);
    overflow-y: auto
}

#nav-mobile.open {
    display: block
}

#nav-mobile>a {
    display: block;
    padding: .85rem 0;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
    transition: color .2s
}

#nav-mobile>a:hover {
    color: var(--gold)
}

.mob-group {
    border-bottom: 1px solid var(--border-light)
}

.mob-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .85rem 0;
    background: 0;
    border: 0;
    cursor: pointer;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: var(--font-body);
    transition: color .2s
}

.mob-group-toggle:hover {
    color: var(--gold)
}

.mob-group-toggle svg {
    transition: transform .25s ease;
    flex-shrink: 0
}

.mob-group.open .mob-group-toggle {
    color: var(--gold)
}

.mob-group.open .mob-group-toggle svg {
    transform: rotate(180deg)
}

.mob-group-links {
    display: none;
    padding: 0 0 .5rem .75rem;
    border-left: 2px solid var(--border-gold)
}

.mob-group.open .mob-group-links {
    display: block
}

.mob-group-links a {
    display: block;
    padding: .6rem 0;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-light);
    border-bottom: 0;
    transition: color .2s
}

.mob-group-links a:hover {
    color: var(--gold)
}

#nav-mobile .mob-cta {
    display: block;
    margin-top: 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff !important;
    padding: .85rem;
    font-weight: 500;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-bottom: none !important
}

@media(max-width:1200px) {
    .nav-links a {
        font-size: .8rem
    }
}

@media(max-width:1100px) {
    .nav-links {
        gap: 1.2rem
    }
}

@media(max-width:900px) {
    .nav-links {
        display: none
    }

    .nav-ham {
        display: block
    }
}

.hero {
    position: relative;
    overflow: hidden;
    /* min-height: 100vh; */
    z-index: 0;
}
.hero .mySwiper{
    position: relative;
}
.hero .mySwiper::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a3;
    z-index: 2;
}
.swiper-button-next, .swiper-button-prev{
    background: #ddd;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 50%;
    color: #000;
}
.swiper-button-prev{
    left: 25px !important;
}
.swiper-button-next {
    right: 25px !important;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(13, 11, 9, .82) 0, rgba(13, 11, 9, .55) 55%, rgba(13, 11, 9, .35) 100%)
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-75%, -50%);
    z-index: 1;
    padding: 7rem 2.5rem 5rem;
    width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(201, 169, 110, .3);
    padding: .5rem 1rem;
    margin-bottom: 1.6rem;
    backdrop-filter: blur(8px)
}

.hero h1 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 60px;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -.02em;
    margin: 0 0 1.2rem
}

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

.hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 2.2rem
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-light)
}

.hero-stats-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1.4rem 2.5rem
}

.hero-stat {
    text-align: center
}

.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1
}

.hero-stat-num span {
    color: var(--gold)
}

.hero-stat-label {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: .25rem
}

.section {
    padding: var(--section-pad)
}

.section-white {
    background: var(--bg-white)
}

.section-off {
    background: var(--bg-off)
}

.section-warm {
    background: var(--bg-warm)
}

.section-cream {
    background: var(--bg-cream)
}

.section-dark {
    background: var(--bg-dark)
}

.section-dark-2 {
    background: var(--bg-dark-2)
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%
}

.container-sm {
    max-width: 880px;
    margin: 0 auto
}

.container-xs {
    max-width: 640px;
    margin: 0 auto
}

.section-head {
    text-align: center;
    margin-bottom: 3.5rem
}

.section-head-left {
    text-align: left;
    margin-bottom: 3.5rem
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 28px;
    color: var(--text-primary);
    line-height: 1.12;
    margin: 0;
    letter-spacing: -.01em
}

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

.section-title-inv {
    color: var(--text-inverse)
}

.section-title-inv em {
    color: var(--gold)
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.85;
    /* max-width: 600px; */
    margin: .85rem auto 0
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light)
}

.service-card {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 4/5;
    text-decoration: none;
    background: var(--bg-white)
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease
}

.service-card:hover img {
    transform: scale(1.07)
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0, rgba(13, 11, 9, .88) 0, rgba(13, 11, 9, .2) 50%, transparent 100%);
    transition: background .3s
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(0, rgba(13, 11, 9, .92) 0, rgba(13, 11, 9, .4) 60%, rgba(13, 11, 9, .1) 100%)
}

.service-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.6rem
}

.service-card-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.35rem;
    color: #fff;
    margin: 0 0 .5rem
}

.service-card-price {
    font-size: .78rem;
    color: var(--gold-light);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .75rem
}

.service-card-bar {
    width: 1.8rem;
    height: 2px;
    background: var(--gold);
    transition: width .3s ease
}

.service-card:hover .service-card-bar {
    width: 3rem
}

.card-white {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: border-color .3s, box-shadow .3s, transform .3s
}

.card-white:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px)
}

.card-warm {
    background: var(--bg-off);
    border: 1px solid var(--border-light);
    transition: border-color .3s, transform .3s
}

.card-warm:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px)
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start
}

.pkg-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: 2.2rem;
    position: relative;
    transition: border-color .3s, box-shadow .3s, transform .3s
}

.pkg-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md)
}

.pkg-card.featured {
    border-color: var(--gold);
    border-width: 2px;
    box-shadow: 0 8px 40px rgba(201, 169, 110, .2);
    transform: translateY(-8px) scale(1.01)
}

.pkg-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-size: .68rem;
    padding: .32rem 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    white-space: nowrap
}

.pkg-tier {
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem
}

.pkg-name {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    color: var(--text-primary);
    margin-bottom: .3rem
}

.pkg-price {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 400
}

.pkg-period {
    font-size: .75rem;
    color: var(--text-light);
    margin-bottom: 1.4rem
}

.pkg-features {
    list-style: none;
    margin: 0 0 1.8rem;
    padding: 0
}

.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .875rem;
    color: var(--text-muted);
    padding: .45rem 0;
    border-bottom: 1px solid var(--border-light)
}

.pkg-features li::before {
    content: "✓";
    color: var(--gold);
    flex-shrink: 0;
    font-weight: 600;
    margin-top: .05rem
}

.feature-row {
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: 4rem;
    align-items: center
}

.feature-row.reverse {
    direction: rtl
}

.feature-row.reverse>* {
    direction: ltr
}

.feature-img-wrap {
    position: relative
}

.feature-img-wrap img {
    width: 100%;
    display: block
}

.feature-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--bg-dark);
    padding: 1.5rem;
    border: 1px solid var(--border-gold);
    min-width: 140px;
    text-align: center
}

.feature-img-badge-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1
}

.feature-img-badge-label {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: .3rem
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm)
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: .75rem;
    letter-spacing: .1em
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem
}

.testimonial-author {
    font-size: .75rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: .05em
}

.location-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 1.8rem;
    transition: border-color .3s, transform .3s, box-shadow .3s
}

.location-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md)
}

.location-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-light);
    font-weight: 400;
    line-height: 1;
    margin-bottom: .75rem
}

.location-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: .3rem
}

.location-dist {
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem
}

.location-body {
    font-size: .93rem;
    color: var(--text-muted);
    line-height: 1.78
}

.card-white img {
    max-width: 100%;
    height: auto
}

.location-images img {
    object-fit: cover
}

.card-white-padded {
    padding: 2.5rem
}

.card-white-padded-sm {
    padding: 1.6rem
}

.card-white-spaced {
    margin-bottom: 2.5rem
}

.card-white-gap-top {
    margin-top: 2rem
}

.card-white-center {
    text-align: center
}

.card-white-heading {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: .5rem
}

.card-white-heading-lg {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: .5rem
}

.card-white-subheading-gold {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem
}

.card-white-desc {
    font-size: .93rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 1.5rem
}

.card-white-note {
    font-size: .93rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin-top: 1rem
}

.card-white-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: .5rem
}

.card-white-text {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7
}

.card-white-full-img {
    width: 100%;
    margin-bottom: 1rem
}

.pkg-card-img {
    width: 100%;
    margin-bottom: 1.2rem
}

.pkg-card-btn {
    display: block;
    text-align: center
}

.grid-gap {
    gap: 1.5rem
}

.grid-gap-sm {
    gap: .5rem
}

.grid-gap-lg {
    gap: 2rem
}

.quick-facts-wrap {
    margin-top: -1px
}

.section-sub-gap {
    margin-top: 1rem
}

.feature-row-spaced {
    margin-bottom: 2rem
}

.feature-item {
    margin-bottom: 1.2rem
}

.feature-img-full {
    width: 100%;
    height: auto
}

.section-center-img {
    text-align: center;
    margin-top: 2rem
}

.section-img-medium {
    width: 100%;
    max-width: 600px;
    height: auto
}

.article-heading {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: .8rem
}

.article-heading-sm {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: .6rem
}

.article-heading-gap {
    margin-top: 2rem
}

.article-text {
    font-size: .93rem;
    color: var(--text-muted);
    line-height: 1.78
}

.article-text-gap {
    margin-top: 1rem
}

.article-img-center {
    text-align: center;
    margin: 2rem 0
}

.article-img {
    width: 100%;
    max-width: 800px;
    height: auto
}

.article-img-portrait {
    width: 100%;
    max-width: 500px;
    height: auto
}

.article-text-dropcap::first-letter {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    float: left;
    line-height: 1;
    margin-right: .6rem;
    margin-top: .1rem;
    color: var(--text-primary)
}

.article-content-block {
    margin-bottom: 1rem
}

.article-link {
    color: var(--gold)
}

.maternity-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.maternity-gallery-img {
    width: 100%;
    height: auto;
    border: 1px solid var(--border-light);
    transition: transform .3s, box-shadow .3s
}

.maternity-gallery-img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.maternity-gallery-3col {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2rem
}

.engage-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
    margin-top: 2rem
}

.engage-photo-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    display: block;
    transition: transform .4s ease, box-shadow .4s ease
}

.engage-photo-grid-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md)
}

@media(max-width:768px) {
    .engage-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .5rem
    }
}

@media(max-width:480px) {
    .engage-photo-grid {
        grid-template-columns: 1fr;
        gap: .5rem
    }
}

.mumbai-service-card {
    text-decoration: none;
    display: block;
    padding: 0;
    overflow: hidden;
    text-align: center
}

.mumbai-service-img {
    width: 100%;
    height: auto;
    transition: transform .4s
}

.mumbai-service-card:hover .mumbai-service-img {
    transform: scale(1.03)
}

.mumbai-service-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-primary);
    padding: 1.2rem 1rem;
    margin: 0
}

.svc-round-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, .10);
    transition: transform .4s ease, box-shadow .4s ease
}

.svc-round-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .16)
}

.feature-row-svc {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center
}

.feature-row-svc .article-heading {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    padding-bottom: .9rem;
    position: relative
}

.feature-row-svc .article-heading::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
    position: absolute;
    left: 0;
    bottom: 0
}

.feature-row-svc .article-text {
    font-size: .98rem;
    line-height: 1.85
}

.section:has(.feature-row-svc) {
    padding: 3.5rem 2.5rem
}

.feature-row-balanced {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center
}

.feature-row-balanced .feature-img-full {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, .10);
    transition: transform .4s ease, box-shadow .4s ease
}

.feature-row-balanced .feature-img-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .14)
}

.feature-row-balanced .article-heading {
    font-size: 1.2rem;
    margin-bottom: .7rem
}

.section:has(.feature-row-balanced) {
    padding: 3.5rem 2.5rem
}

.grid-2-uniform img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08)
}

.about-shoot-cta-row {
    margin: 1.6rem 0 0
}

.locations-we-cover {
    padding-top: 4rem;
    padding-bottom: 4rem
}

.locations-we-cover .section-head {
    margin-bottom: 0
}

.locations-we-cover .section-sub {
    color: rgba(248, 244, 239, .8);
    max-width: 820px
}

.locations-we-cover .section-sub strong {
    color: var(--gold)
}

.matloc-intro-rule {
    margin-bottom: 1.2rem
}

.matloc-gallery {
    gap: .75rem
}

.matloc-gallery .maternity-gallery-img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    border: 0
}

.bshower-img-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem
}

.bshower-stack-img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .10);
    display: block;
    transition: transform .3s, box-shadow .3s
}

.bshower-stack-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .14)
}

.bshower-card-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

@media(max-width:600px) {
    .bshower-img-stack {
        grid-template-columns: 1fr;
        gap: .75rem
    }
}

.bshower-gallery {
    grid-template-columns: repeat(5, 1fr);
    gap: .75rem;
    margin-top: 2.5rem
}

.bshower-gallery .maternity-gallery-img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    border: 0;
    transition: transform .3s, box-shadow .3s
}

.bshower-gallery .maternity-gallery-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12)
}

@media(max-width:1024px) {
    .bshower-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: .6rem
    }
}

@media(max-width:600px) {
    .bshower-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: .5rem
    }
}

.roka-grid-uniform img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
    transition: transform .4s ease, box-shadow .4s ease
}

.roka-grid-uniform img:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .12)
}

.roka-grid-uniform {
    align-items: start
}

.feature-row-natural {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.feature-row-natural .feature-img-wrap img,
.feature-row-natural .feature-img-full {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, .10);
    transition: transform .4s ease, box-shadow .4s ease
}

.feature-row-natural .feature-img-wrap img:hover,
.feature-row-natural .feature-img-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .14)
}

.feature-row-natural .article-heading {
    font-size: 1.35rem;
    margin-bottom: .85rem
}

.feature-row-natural .article-heading-sm {
    font-size: 1.2rem;
    margin-bottom: .7rem
}

.section:has(.feature-row-natural) {
    padding: 3.5rem 2.5rem
}

.pw-collage {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: .8rem
}

.pw-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px
}

.pw-collage-tall {
    grid-row: span 2
}

.pw-collage-wide {
    grid-column: span 1
}

.pw-collage-sm {
    grid-column: span 1
}

.section-head-gap {
    margin-top: 2.5rem
}

.enquire-section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--gold);
    text-align: center;
    margin-bottom: 1.5rem
}

.enquire-section-bold {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic
}

.enquire-section-sub {
    font-size: .93rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.78;
    margin-bottom: 2.5rem
}

.enquire-contact-card {
    background: var(--bg-off);
    border: 1px solid var(--border-light);
    padding: 2.5rem;
    height: 100%
}

.enquire-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.enquire-contact-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 4px
}

.enquire-contact-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff
}

.enquire-contact-link {
    font-size: 16px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500
}

.enquire-contact-link:hover {
    opacity: .8
}

.enquire-contact-text {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 1.5rem
}

.enquire-form-card {
    background: var(--bg-off);
    border: 1px solid var(--border-light);
    padding: 2.5rem
}

.enquire-form-label {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .4rem;
    display: block
}

.enquire-form-field {
    margin-bottom: 1.2rem
}

.enquire-form-input,
.enquire-form-textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--text-primary);
    transition: border-color .3s;
    border-radius: 4px
}

.enquire-form-input:focus,
.enquire-form-textarea:focus {
    border-color: var(--gold);
    outline: 0
}

.enquire-form-textarea {
    resize: vertical;
    min-height: 100px
}

.enquire-form-submit {
    width: 100%;
    padding: .9rem;
    background: var(--gold);
    color: #fff;
    border: 0;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity .3s;
    margin-top: .5rem
}

.enquire-form-submit:hover {
    opacity: .88
}

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

.pkg-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .88rem;
    color: var(--text-muted);
    padding: .5rem 0;
    border-bottom: 1px solid var(--border-light);
    line-height: 1.6
}

.pkg-detail-list li::before {
    content: "\2713";
    color: var(--gold);
    flex-shrink: 0;
    font-weight: 600;
    margin-top: .1rem
}

.addons-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem
}

.addons-table td {
    padding: .6rem .5rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    vertical-align: top
}

.addons-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap
}

.addons-table td:last-child {
    color: var(--gold);
    font-weight: 500;
    white-space: nowrap;
    text-align: right
}

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

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: box-shadow .3s, transform .3s;
    display: flex;
    flex-direction: column
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px)
}

.blog-card-img {
    overflow: hidden;
    aspect-ratio: 16/10
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

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

.blog-card-body {
    padding: 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.blog-card-cat {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem
}

.blog-card-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.45;
    margin: 0 0 .7rem;
    flex: 1
}

.blog-card-excerpt {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.2rem
}

.blog-card-meta {
    font-size: .75rem;
    color: var(--text-light);
    letter-spacing: .04em;
    margin-bottom: .75rem
}

.blog-card-link {
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: gap .2s;
    margin-top: auto
}

.blog-card-link:hover {
    gap: .7rem;
    color: var(--gold-dark)
}

.blog-card-link::after {
    content: "→"
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .35rem;
    padding: 0;
    font-size: .81rem;
    font-family: var(--font-body);
    background: none;
    margin-bottom: 0;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color .2s
}

.breadcrumb a:hover {
    color: var(--gold)
}

.breadcrumb-sep {
    color: var(--text-light);
    font-size: .72rem
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 500
}

.breadcrumb-wrap {
    background: var(--bg-off);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-gold);
    padding: .75rem 2.5rem;
    margin-bottom: 20px
}

.faq-item {
    border-bottom: 1px solid var(--border-light)
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    gap: 1rem;
    background: 0;
    border: 0;
    width: 100%;
    text-align: left
}

.faq-trigger:hover .faq-q {
    color: var(--gold)
}

.faq-q {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
    flex: 1
}

.faq-icon {
    color: var(--gold);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform .3s;
    line-height: 1
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease
}

.faq-body.open {
    max-height: 600px
}

.faq-body p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.82;
    padding-bottom: 1.2rem;
    margin: 0
}

.faq-body a {
    color: var(--gold)
}

.site-footer {
    background: var(--bg-dark);
    padding: 5rem 2.5rem 0
}

.footer-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 4fr 2fr 2fr 4fr;
    gap: 4rem;
    padding-bottom: 3.5rem
}

.footer-brand-text {
    color: rgb(255 255 255);
    font-size: 16px;
    line-height: 1.8;
    margin: 1.2rem 0 0;
    /* max-width: 280px */
}

.footer-col-title {
    font-size: .75rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-family: var(--font-body);
    font-weight: 600
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.footer-links a {
    color: rgb(255 255 255);
    font-size: 16px;
    transition: color .2s
}

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

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 110, .1);
    padding: 1.5rem 0;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem
}

.footer-copy {
    color: rgb(255 255 255);
    font-size: 16px;
}

.footer-socials {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem
}

.footer-social {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 169, 110, .2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(201, 169, 110, .55);
    transition: color .2s, border-color .2s, background-color .2s
}

.footer-social svg {
    width: 16px;
    height: 16px;
    display: block
}

.footer-social:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.cta-section {
    padding: 5.5rem 2.5rem;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
    text-align: center
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvgwidth='60'height='60'viewBox='006060'xmlns='http://www.w3.org/2000/svg'%3E%3Cgfill='none'fill-rule='evenodd'%3E%3Cgfill='%23C9A96E'fill-opacity='0.04'%3E%3Cpathd='M3634v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM634v-4H4v4H0v2h4v4h2v-4h4v-2H6zM64V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.cta-dark {
    background: var(--bg-dark-2)
}

.cta-dark::before {
    background: 0;
    background-image: repeating-linear-gradient(45deg, rgba(201, 169, 110, .03) 0, rgba(201, 169, 110, .03) 1px, transparent 0, transparent 50%);
    background-size: 18px 18px
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem
}

.cta-dark .cta-title {
    color: var(--text-inverse)
}

.cta-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.8
}

.cta-dark .cta-sub {
    color: rgba(248, 244, 239, .5)
}

.cta-section-inner {
    position: relative;
    z-index: 1;
    text-align: center
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem
}

.page-hero-content-inner {
    max-width: 860px
}

.page-hero-eyebrow {
    margin-bottom: .8rem
}

.page-hero-rule {
    width: 52px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 1.4rem
}

.page-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.8rem
}

.section-head-eyebrow {
    margin-bottom: .7rem
}

.section-head-rule {
    margin-bottom: 1.4rem
}

.section-related-pages {
    padding: 2.5rem;
    background: var(--bg-warm);
    border-top: 1px solid var(--border-light)
}

.section-related-eyebrow {
    margin-bottom: .9rem
}

.mumbai-list-gap {
    margin-top: 1rem;
    margin-bottom: .25rem
}

.mumbai-office-card {
    border-left: 3px solid var(--gold);
    margin-top: 2.5rem;
    text-align: left
}

.mumbai-office-item {
    align-items: flex-start;
    margin-bottom: 0
}

.mumbai-office-divider {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    margin-top: 1.5rem
}

.mumbai-office-body {
    flex: 1
}

.mumbai-office-label {
    font-family: var(--font-body);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 .3rem;
    font-weight: 600
}

.mumbai-office-text {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0
}

.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 999;
    background: #25d366;
    border: 2px solid #109f46;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none
}
.wa-float i{
    color: #fff;
    font-size: 28px;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .6)
}

.wa-float svg {
    width: 28px;
    height: 28px
}

.page-hero {
    padding: 8rem 2.5rem 5rem;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden
}

.page-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 11, 9, .92) 0, rgba(13, 11, 9, .6) 100%)
}

.page-hero-img {
    position: absolute;
    inset: 0
}

.page-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4
}

.page-hero-engage .page-hero-img img {
    object-position: center 25%;
    opacity: .5
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #fff;
    font-weight: 400;
    margin: 1rem 0;
    letter-spacing: -.01em
}

.page-hero h1 em {
    color: var(--gold);
    font-style: italic
}

.page-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    max-width: 560px;
    margin-top: .5rem
}

.quick-facts {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px
}

.quick-fact {
    padding: 1.2rem 1.5rem;
    border-right: 1px solid var(--border-light)
}

.quick-fact:last-child {
    border-right: 0
}

.quick-fact-label {
    font-size: .72rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .3rem
}

.quick-fact-value {
    font-size: .92rem;
    font-weight: 500;
    color: var(--text-primary)
}

.quick-fact-value.gold {
    color: var(--gold)
}

.tag-links {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.tag-link {
    border: 1px solid var(--border-gold);
    padding: .45rem .9rem;
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all .2s
}

.tag-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale)
}

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh
}

.admin-sidebar {
    background: var(--bg-dark);
    padding: 1.5rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto
}

.admin-sidebar-logo {
    padding: .5rem 0 2rem;
    border-bottom: 1px solid rgba(201, 169, 110, .15);
    margin-bottom: 1.5rem
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .7rem 1rem;
    color: rgba(248, 244, 239, .5);
    font-size: .8rem;
    border-radius: 4px;
    margin-bottom: .2rem;
    transition: all .2s
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(201, 169, 110, .1);
    color: var(--gold)
}

.admin-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.admin-main {
    background: #f8f7f5;
    padding: 0
}

.admin-topbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.admin-topbar-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary)
}

.admin-content {
    padding: 2rem;
    max-width: 1100px
}

.admin-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem
}

.admin-table {
    width: 100%;
    border-collapse: collapse
}

.admin-table th {
    text-align: left;
    padding: .75rem 1rem;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border-light);
    background: var(--bg-off)
}

.admin-table td {
    padding: .9rem 1rem;
    font-size: .875rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-body);
    vertical-align: middle
}

.admin-table tr:hover td {
    background: var(--bg-off)
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    padding: .2rem .65rem;
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 500
}

.admin-badge-green {
    background: #e8f5e9;
    color: #2e7d32
}

.admin-badge-yellow {
    background: #fff8e1;
    color: #f57f17
}

.form-group {
    margin-bottom: 1.4rem
}

.form-label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: .45rem;
    letter-spacing: .02em
}

.form-control {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--border-light);
    background: var(--bg-white);
    color: var(--text-primary);
    font-size: .88rem;
    font-family: var(--font-body);
    outline: 0;
    transition: border-color .2s
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, .12)
}

.form-hint {
    font-size: .78rem;
    color: var(--text-light);
    margin-top: .3rem
}

.btn-sm {
    padding: .45rem 1rem;
    font-size: .75rem
}

.btn-danger {
    background: #ef4444;
    color: #fff
}

.btn-danger:hover {
    background: #dc2626
}

.btn-success {
    background: #22c55e;
    color: #fff
}

.btn-success:hover {
    background: #16a34a
}

.alert {
    padding: .9rem 1.2rem;
    margin-bottom: 1.2rem;
    font-size: .84rem;
    border-left: 3px solid
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border-color: #22c55e
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #ef4444
}

.alert-warning {
    background: #fffbeb;
    color: #7a4f00;
    border-color: #e6a700
}

.alert-list {
    margin: .4rem 0 0;
    padding-left: 1.2rem
}

.alert-list li {
    list-style: disc
}

.mt-1 {
    margin-top: .5rem
}

.mt-2 {
    margin-top: 1rem
}

.mt-3 {
    margin-top: 1.5rem
}

.mt-4 {
    margin-top: 2rem
}

.mt-6 {
    margin-top: 3rem
}

.mb-1 {
    margin-bottom: .5rem
}

.mb-2 {
    margin-bottom: 1rem
}

.mb-3 {
    margin-bottom: 1.5rem
}

.mb-4 {
    margin-bottom: 2rem
}

.gap-2 {
    gap: 1rem
}

.gap-3 {
    gap: 1.5rem
}

.gap-4 {
    gap: 2rem
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.flex {
    display: flex
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.flex-wrap {
    flex-wrap: wrap
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-gold {
    color: var(--gold)
}

.text-muted {
    color: var(--text-muted)
}

.text-primary {
    color: var(--text-primary)
}

.w-full {
    width: 100%
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-off);
    border: 1px solid var(--border-light);
    text-decoration: none;
    transition: box-shadow .3s
}

.featured-post:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, .1)
}

.featured-post-img {
    overflow: hidden
}

.featured-post-img img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
    transition: transform .5s
}

.featured-post:hover .featured-post-img img {
    transform: scale(1.04)
}

.featured-post-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.featured-post-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 1rem
}

.featured-post-excerpt {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.82;
    margin: 0 0 1.8rem
}

.featured-post-link {
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

.services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.services-split+.services-split {
    margin-top: 4rem
}

.services-split.alt .services-split-img {
    order: 2
}

.services-split.alt .services-split-text {
    order: 1
}

.services-split-img img {
    width: 100%;
    display: block
}

.services-split-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.82;
    margin: 0 0 1rem
}

.services-split-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 1rem
}

.why-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center
}

.why-icon-box {
    padding: 1.5rem
}

.why-icon-box-icon {
    width: 64px;
    height: 64px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gold);
    transition: background .2s, color .2s
}

.why-icon-box:hover .why-icon-box-icon {
    background: var(--gold);
    color: #fff
}

.why-icon-box h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 400;
    margin: 0 0 .5rem
}

.why-icon-box p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.about-stat-card {
    background: #fff;
    text-align: center;
    padding: 2.5rem 1rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06)
}

.about-stat-num {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #e31837;
    font-weight: 400;
    line-height: 1;
    margin-bottom: .5rem
}

.about-stat-label {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--text-primary);
    text-transform: capitalize
}

.about-quote-gallery {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center
}

.about-quote-gallery-img img {
    width: 100%;
    display: block;
    object-fit: cover
}

.about-quote-gallery-text {
    text-align: center;
    padding: 1rem
}

.about-quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.5;
    font-style: italic
}

.packages-terms-note {
    margin-top: 2.5rem;
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: .98rem;
    color: var(--text-muted);
    letter-spacing: .01em
}

.about-team-photo {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 3px solid var(--gold);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .08);
    overflow: hidden
}

.about-team-photo img {
    width: 100%;
    height: auto;
    display: block
}

.home-about-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: center
}

.home-about-images-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: .75rem
}

.home-about-images-top img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
}

.home-about-images-bottom {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    align-items: stretch
}

.home-about-images-bottom img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block
}

.home-about-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-off);
    border: 1px solid var(--border-light)
}

.home-about-counter-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1
}

.home-about-counter-num span {
    color: var(--gold)
}

.home-about-counter-label {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: .3rem
}

.home-about-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.82
}

.home-about-services {
    display: flex;
    gap: 1rem;
    margin-top: 1.8rem;
    flex-wrap: wrap
}

.home-about-service-card {
    flex: 1;
    min-width: 140px;
    padding: 1rem .75rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    text-align: center;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: border-color .2s, box-shadow .2s
}

.home-about-service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 2px 12px rgba(201, 169, 110, .15)
}

.home-whychoose-boxes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem
}

.home-whychoose-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.home-whychoose-box-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: background .2s, color .2s
}

.home-whychoose-box:hover .home-whychoose-box-icon {
    background: var(--gold);
    color: #fff
}

.home-whychoose-box h5 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 400;
    margin: 0 0 .3rem
}

.home-whychoose-box p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0
}

.home-whychoose-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem
}

.home-whychoose-img-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold)
}

.home-whychoose-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.home-whychoose-img-rect {
    width: 280px;
    height: 180px;
    overflow: hidden
}

.home-whychoose-img-rect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.home-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.home-video-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000
}

.home-video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.film-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
}

.film-grid-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border: 1px solid var(--border-light)
}

.film-grid-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.film-grid-title {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: .5rem;
    line-height: 1.4
}

.home-tagline {
    text-align: center;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.25;
    max-width: 820px;
    margin: 3rem auto 0
}

.home-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.home-offer-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 2/1
}

.home-offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s
}

.home-offer-card:hover img {
    transform: scale(1.05)
}

.home-offer-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0, rgba(0, 0, 0, .55) 0, transparent 60%)
}

.home-offer-card-title {
    position: absolute;
    bottom: .8rem;
    left: .8rem;
    right: .8rem;
    font-family: var(--font-serif);
    font-size: .9rem;
    color: #fff;
    font-weight: 400
}

.home-contact-form-wrap {
    max-width: 700px;
    margin: 0 auto
}

.home-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.home-contact-field input {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid var(--border-light);
    background: var(--bg-off);
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--text-primary);
    transition: border-color .2s
}

.home-contact-field input:focus {
    outline: 0;
    border-color: var(--gold)
}

.contact-hero {
    padding: 3rem 2.5rem 3rem;
    background: var(--bg-off);
    text-align: center
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.contact-icon-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}
.contact-icon i{
    color: #fff;
}

.contact-icon-label {
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 .3rem;
    font-family: var(--font-body)
}

.contact-icon-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    display: block;
    line-height: 1.5
}

.contact-icon-value:hover {
    color: var(--gold)
}

.contact-icon-value-sm {
    font-size: .88rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0
}

.contact-services-box {
    padding: 1.4rem;
    background: var(--bg-warm);
    border-left: 3px solid var(--gold)
}

.contact-services-label {
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 .8rem;
    font-family: var(--font-body)
}

.contact-services-text {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.9
}

.contact-services-cities {
    font-size: .78rem;
    color: var(--text-muted);
    margin: .7rem 0 0
}

.contact-info-heading {
    text-align: left;
    font-size: 1.9rem
}

.contact-info-desc {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 1.2rem 0 2rem
}

.contact-form-heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 400;
    margin: 0 0 .4rem
}

.contact-form-subtext {
    font-size: .8rem;
    color: var(--text-muted);
    margin: 0 0 2rem
}

.contact-form-required {
    color: #c0392b
}

.contact-form-field-gap {
    margin-bottom: 2rem
}

.contact-offices-head {
    margin-bottom: 2.5rem
}

.contact-map {
    line-height: 0
}

.contact-map iframe {
    border: 0;
    display: block
}

.contact-h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-primary);
    margin-bottom: .5rem
}

.contact-h6 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: .8rem
}

.contact-ornament {
    display: block;
    margin: 1rem auto;
    max-width: 80px
}

.contact-appointment-heading {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: .5rem
}

.contact-form-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--gold)
}

.contact-form-field {
    margin-bottom: 1.4rem
}

.contact-form-label {
    display: block;
    font-size: .7rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .45rem;
    font-family: var(--font-body)
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    width: 100%;
    box-sizing: border-box;
    padding: .75rem 1rem;
    border: 1px solid var(--border-light);
    background: var(--bg-off);
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--text-primary);
    outline: 0;
    transition: border-color .2s, background .2s
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    border-color: var(--gold);
    background: var(--bg-white)
}

.contact-form-select {
    appearance: none;
    cursor: pointer
}

.contact-form-textarea {
    resize: vertical
}

.contact-form-submit {
    width: 100%;
    padding: .9rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: 0;
    font-family: var(--font-body);
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity .2s
}

.contact-form-submit:hover {
    opacity: .88
}

.contact-offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem
}

.contact-office-card {
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--gold);
    padding: 1.8rem;
    background: var(--bg-off)
}

.contact-office-label {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 400;
    margin: 0 0 1rem;
    letter-spacing: .02em
}

.contact-office-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem
}

.contact-office-row {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    margin-bottom: .9rem
}

.contact-office-row:last-child {
    margin-bottom: 0
}

.contact-office-row p {
    font-size: .9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65
}

.contact-office-row a {
    font-size: .88rem;
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none
}

.contact-office-row a:hover {
    color: var(--gold)
}

.contact-office-icon {
    flex-shrink: 0;
    margin-top: 2px
}

@media(max-width:1024px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .feature-row.reverse {
        direction: ltr
    }

    .feature-img-badge {
        display: none
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem
    }

    .hero-stats-inner {
        grid-template-columns: repeat(4, 1fr)
    }

    .pkg-grid {
        gap: 1rem
    }

    .admin-layout {
        grid-template-columns: 200px 1fr
    }
}

@media(max-width:768px) {
    :root {
        --section-pad: 3.5rem 1.5rem
    }

    .section-title {
        font-size: 1.9rem
    }

    .hero h1 {
        font-size: 2.4rem
    }

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

    .blog-grid {
        grid-template-columns: 1fr 1fr
    }

    .pkg-grid {
        grid-template-columns: 1fr
    }

    .pkg-card.featured {
        transform: none
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .admin-layout {
        grid-template-columns: 1fr
    }

    .admin-sidebar {
        display: none
    }

    .quick-facts {
        grid-template-columns: repeat(2, 1fr)
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .services-split {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .services-split.alt .services-split-img {
        order: unset
    }

    .services-split.alt .services-split-text {
        order: unset
    }

    .why-icon-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .home-about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .home-offer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .home-video-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .home-contact-form-grid {
        grid-template-columns: 1fr
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .home-whychoose-images {
        flex-direction: row;
        justify-content: center
    }

    .home-whychoose-img-circle {
        width: 180px;
        height: 180px
    }

    .home-whychoose-img-rect {
        width: 200px;
        height: 140px
    }

    .about-quote-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .about-quote-gallery-img:last-child {
        display: none
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .contact-layout .contact-form-card {
        order: 1
    }

    .contact-layout .contact-info {
        order: 2
    }

    .contact-hero {
        padding: 5rem 1.5rem 3.5rem
    }

    .featured-post {
        grid-template-columns: 1fr
    }

    .featured-post-img img {
        min-height: 240px
    }

    .featured-post-body {
        padding: 1.8rem
    }
}

@media(max-width:480px) {

    .service-grid,
    .blog-grid,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 2rem
    }

    .quick-facts {
        grid-template-columns: 1fr 1fr
    }

    .home-offer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .home-video-grid {
        grid-template-columns: 1fr
    }

    .film-grid {
        grid-template-columns: 1fr
    }

    .maternity-gallery {
        grid-template-columns: repeat(2, 1fr)
    }

    .home-about-services {
        flex-direction: column
    }

    .home-about-images-top,
    .home-about-images-bottom {
        grid-template-columns: 1fr
    }

    .home-about-images-bottom img {
        height: 200px
    }
}

.intro-strip-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem
}

.intro-strip-badge {
    text-align: center;
    border-left: 1px solid var(--border-light);
    padding-left: 2.5rem
}

.intro-strip-badge-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1
}

.intro-strip-badge-label {
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted)
}

@media(max-width:768px) {
    .intro-strip-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center
    }

    .intro-strip-badge {
        border-left: 0;
        border-top: 1px solid var(--border-light);
        padding-left: 0;
        padding-top: 1.5rem
    }

    .intro-strip-badge-num {
        font-size: 2.4rem
    }
}

html {
    overflow-x: clip
}

iframe,
table {
    max-width: 100%
}

@media(max-width:768px) {
    .page-hero {
        padding: 6.5rem 1.5rem 3.5rem
    }

    .page-hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        margin: .75rem 0
    }

    .page-hero-sub {
        font-size: .88rem;
        line-height: 1.65
    }

    .quick-facts-wrap {
        padding: 0 1.5rem
    }

    .addons-table {
        font-size: .78rem
    }

    .addons-table td {
        padding: .55rem .4rem
    }

    .addons-table td:first-child,
    .addons-table td:last-child {
        white-space: normal
    }

    .section-related-pages {
        padding: 2rem 1.5rem
    }

    .cta-section {
        padding: 3.5rem 1.5rem
    }

    .feature-img-wrap img,
    .card-white-full-img,
    .section-img-medium {
        max-width: 100%;
        height: auto
    }
}

@media(max-width:480px) {
    .page-hero {
        padding: 5rem 1rem 2.5rem
    }

    .page-hero-buttons {
        gap: .6rem
    }

    .page-hero-buttons .btn {
        padding: .7rem 1.1rem;
        font-size: .78rem
    }

    .quick-facts-wrap {
        padding: 0 1rem
    }

    .quick-fact {
        padding: .9rem 1rem
    }

    .section-related-pages {
        padding: 1.8rem 1rem
    }

    .cta-section {
        padding: 3rem 1rem
    }

    .tag-links {
        gap: .5rem;
        flex-wrap: wrap
    }

    .tag-link {
        font-size: .78rem;
        padding: .45rem .9rem
    }

    .addons-table td {
        padding: .5rem .3rem;
        font-size: .75rem
    }
}

.home-video-item .yt-facade {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    background: #000;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none
}

.home-video-item .yt-facade picture,
.home-video-item .yt-facade img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    transition: transform .4s ease
}

.home-video-item .yt-facade:hover img,
.home-video-item .yt-facade:focus-visible img {
    transform: scale(1.04)
}

.home-video-item .yt-facade::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .35) 100%);
    pointer-events: none
}

.home-video-item .yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(0, 0, 0, .55);
    border-radius: 14%/50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
    pointer-events: none;
    z-index: 1
}

.home-video-item .yt-facade:hover .yt-play,
.home-video-item .yt-facade:focus-visible .yt-play {
    background: #e62117
}

.home-video-item .yt-play svg {
    width: 32px;
    height: 32px;
    display: block
}

.home-video-item .yt-facade:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: -3px
}
.trust-bar-section {
    background: #101010;
    padding: 0;
    width: 100%;
    overflow: hidden;
}
.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0 24px;
}
.trust-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 32px;
    flex: 1 1 160px;
    min-width: 140px;
    justify-content: center;
}
.trust-icon {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}
.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #E9B947;
    line-height: 1.1;
    white-space: nowrap;
}
.trust-label {
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}
.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(233, 185, 71, 0.25);
    flex-shrink: 0;
}
.mb-none {
    display: block !important;
}

.des-none {
    display: none !important;
}
@media (max-width: 600px) {
    .trust-divider {
        display: none;
    }
    .mb-none{
        display: none !important;
    }
    .des-none{
        display: block !important;
    }
}

@media (max-width: 900px) {
    .trust-divider {
        height: 32px;
    }
}
@media (max-width: 600px) {
    .trust-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0;
        gap: 0;
    }
    .trust-stat:nth-child(odd) {
        border-right: 1px solid rgba(233, 185, 71, 0.12);
    }
    .trust-stat {
        padding: 18px 16px;
        border-bottom: 1px solid rgba(233, 185, 71, 0.12);
        flex: none;
        justify-content: flex-start;
        gap: 10px;
    }
    .trust-icon {
        font-size: 22px;
    }
    .trust-number {
        font-size: 17px;
    }
    .trust-label {
        font-size: 10px;
    }
}

.why-choose {
    /* padding: 60px 0 60px; */
    background: #faf8f4;
}
.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}
.why-content span {
    color: #e7ad2f;
    font-weight: 600;
    letter-spacing: 1px;
}
.why-content h2 {
    font-size: 42px;
    margin: 15px 0;
    font-family: serif;
    color: #111;
}
.why-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.why-card {
    background: #fff;
    padding: 25px 28px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    border-bottom: 4px solid transparent;
}
.why-card i {
    font-size: 34px;
    color: #727651;
    margin-bottom: 0px;
}

.fa-solid,
.fas {
    font-weight: 900;
}
.why-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
    margin-top: 10px;
}
.why-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}
.why-card:hover {
    transform: translateY(-8px);
    border-bottom-color: #c9a97b;
}
@media (max-width: 991px) {
    .why-wrapper {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(43, 43, 43, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: var(--ivory);
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
    height: 350px;
}
.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transition: transform 0.5s;
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(233, 185, 71, 0.9));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 30px;
}
.gallery-label {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(43, 43, 43, 0.18);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(233, 185, 71, 0.15);
    border-radius: 16px;
    padding: 0;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(43, 43, 43, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    min-height: 140px;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(233, 185, 71, 0.2);
    border-color: var(--gold);
}

.testimonial-content {
    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 18px;
    width: 100%;
    align-items: flex-start;
}

.avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E9B947 0%, #c9922a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1208;
    letter-spacing: 1px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(233, 185, 71, 0.35);
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.testimonial-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    font-style: italic;
    font-weight: 400;
    margin: 0;
}

.testimonial-footer {
    border: none;
    padding: 0;
    margin: 0;
    background: none;
}

.couple-names {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
    letter-spacing: 0.2px;
}

.wedding-location {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

@media screen and (max-width: 767px){
    .hero-content{
        position:unset;
        background: #727651;
        transform:unset;
        width: auto;
        padding: 1rem 2rem 1rem;
    }
    .btn{
        padding: .9rem 1rem;
    }
    .section{
        padding: 3.5rem .5rem
    }
    .hero .mySwiper::after{
        background: none;
    }
    .gallery-item{
        height: auto;
    }
}