:root {
    --bg: #faf6ef;
    --fg: #351f34;
    --card: #fff;
    --secondary: #f4ecdc;
    --muted: #756b75;
    --primary: #d87928;
    --gold: #d5a94d;
    --cosmic: #21142d;
    --deep: #160e24;
    --border: #dfd1bd;
    --gradient: linear-gradient(160deg, #160e24, #21142d);
    --goldgrad: linear-gradient(100deg, #d5a94d, #d87928);
    --veil: linear-gradient(180deg, rgba(22, 14, 36, .86), rgba(22, 14, 36, .35) 45%, rgba(22, 14, 36, .9));
    --shadow: 0 18px 50px -24px rgba(33, 20, 45, .45);
    --radius: 24px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: 'DM Sans', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased
}

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

button,
input,
textarea {
    font: inherit
}

button {
    cursor: pointer
}

h1,
h2,
h3 {
    font-family: Fraunces, Georgia, serif;
    margin: 0;
    line-height: 1.12
}

p {
    line-height: 1.65
}

.container {
    max-width: 1152px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px
}

.narrow {
    max-width: 820px
}

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

.gradient-text {
    background: var(--goldgrad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .35em;
    font-size: 12px;
    color: var(--primary);
    margin: 0
}

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

.ticker {
    background: var(--gradient);
    color: #f8efe4;
    overflow: hidden;
    padding: 8px 0;
    font-size: 12px
}

.ticker-track {
    display: flex;
    width: max-content;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 26s linear infinite
}

.topbar {
    background: rgba(244, 236, 220, .75);
    border-bottom: 1px solid rgba(223, 209, 189, .7);
    font-size: 12px;
    color: var(--muted)
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px
}

.toplinks {
    display: flex;
    gap: 20px
}

.toplinks a:hover,
.text-link:hover {
    color: var(--primary)
}

.navbar {
    background: rgba(250, 246, 239, .72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(223, 209, 189, .65);
    transition: .3s
}

.scrolled .navbar {
    background: rgba(250, 246, 239, .92);
    box-shadow: var(--shadow)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 16px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand>b,
.brand span:last-child {
    font-family: Fraunces, Georgia, serif
}

.brand small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted)
}

.om {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gradient);
    color: var(--gold);
    font-size: 21px
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-link {
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 14px;
    color: rgba(53, 31, 52, .82);
    transition: .2s
}

.nav-link:hover {
    background: var(--secondary)
}

.book-btn,
.primary-btn {
    display: inline-block;
    background: var(--primary);
    color: #fffaf4;
    border: 0;
    border-radius: 999px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: .25s
}

.book-btn {
    margin-left: 8px
}

.book-btn:hover,
.primary-btn:hover {
    transform: translateY(-2px);
    opacity: .92
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: transparent;
    border-radius: 50%;
    padding: 12px
}

.menu-btn i {
    display: block;
    height: 2px;
    background: var(--fg);
    margin: 4px 0;
    transition: .25s
}

.mobile-menu {
    display: none;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: .4s
}

.mobile-menu.open {
    display: block;
    max-height: 520px;
    opacity: 1
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 20px;
    border-top: 1px solid var(--border)
}

.mobile-link {
    padding: 12px 14px;
    border-radius: 10px
}

.mobile-link:hover {
    background: var(--secondary)
}

.mobile-menu .book-btn {
    text-align: center;
    margin: 8px 0
}

.home-hero {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    color: #f8efe4
}

.home-hero>img,
.veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.veil {
    background: var(--veil)
    
}

.hero-inner {
    position: relative;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px
}

.pill {
    display: inline-flex;
    border: 1px solid rgba(213, 169, 77, .4);
    border-radius: 999px;
    padding: 6px 16px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase
}

.hero-inner h1 {
    font-size: clamp(42px, 7vw, 84px);
    max-width: 820px;
    margin-top: 24px
}

.hero-inner>div>p {
    max-width: 600px;
    color: #cfc1d0;
    font-size: 18px;
    margin-top: 24px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px
}

.outline-btn,
.outline-light {
    display: inline-block;
    border: 1px solid rgba(207, 193, 208, .5);
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 14px;
    transition: .2s
}

.outline-btn:hover {
    background: rgba(255, 255, 255, .1)
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 680px;
    border-top: 1px solid rgba(207, 193, 208, .2);
    padding-top: 30px;
    margin-top: 56px
}

.stats b {
    display: block;
    font: 500 42px Fraunces, serif;
    color: var(--gold)
}

.stats span {
    display: block;
    color: #cfc1d0;
    font-size: 13px;
    margin-top: 4px
}

.section {
    padding: 80px 0
}

.section-alt {
    background: rgba(244, 236, 220, .42);
    padding: 80px 0
}

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

.section-heading h2,
.two-col h2 {
    font-size: clamp(34px, 4vw, 54px);
    margin-top: 12px
}

.section-heading p:last-child {
    color: var(--muted);
    max-width: 620px;
    margin: 16px auto 0
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px
}

.card {
    background: var(--card);
    border: 1px solid rgba(223, 209, 189, .75);
    border-radius: var(--radius);
    padding: 28px
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: .35s
}

.service-card:hover,
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.service-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 25px
}

.service-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    margin-top: 24px
}

.primary {
    color: var(--primary);
    font-size: 14px;
    margin: 4px 0
}

.desc {
    color: var(--muted);
    font-size: 14px;
    flex: 1
}

.text-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    transition: .2s
}

.fee {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    margin-top: 40px
}

.fee span {
    font: 500 26px Fraunces, serif;
    color: var(--fg)
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.image-wrap {
    position: relative
}

.image-wrap img,
.portrait {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.om-badge {
    position: absolute;
    right: -16px;
    bottom: -24px;
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(213, 169, 77, .4);
    border-radius: 50%;
    background: var(--card);
    color: var(--primary);
    font-size: 32px;
    animation: float 6s ease-in-out infinite
}

.two-col>div>p:not(.eyebrow) {
    color: var(--muted);
    font-size: 15px
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px
}

.mini-grid .card {
    padding: 20px
}

.mini-grid h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px
}

.mini-grid p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 0
}

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px
}

.gallery-preview figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius)
}

.gallery-preview img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .7s
}

.gallery-preview figure:hover img {
    transform: scale(1.05)
}

.gallery-preview figcaption,
.photo span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
    font-size: 18px
}

.center {
    text-align: center;
    margin-top: 40px
}

.outline-light {
    border-color: var(--border)
}

.outline-light:hover {
    background: var(--secondary)
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px
}

.review-card {
    transition: .35s
}

.stars {
    color: var(--gold);
    letter-spacing: 5px;
    font-size: 14px
}

.review-card>p {
    color: var(--muted);
    font-size: 14px;
    min-height: 120px
}

.review-person {
    display: flex;
    gap: 12px;
    align-items: center
}

.review-person>span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    display: grid;
    place-items: center;
    font-family: Fraunces, serif
}

.review-person b,
.review-person small {
    display: block;
    font-size: 13px
}

.review-person small {
    color: var(--muted);
    margin-top: 3px
}

.cta-wrap {
    padding: 0 0 16px
}

.cta {
    position: relative;
    overflow: hidden;
    background: var(--gradient);
    color: #f8efe4;
    border-radius: 32px;
    padding: 64px 30px;
    text-align: center
}

.cta h2 {
    font-size: clamp(34px, 4vw, 54px);
    margin-top: 16px
}

.cta p:not(.eyebrow) {
    color: #cfc1d0;
    max-width: 600px;
    margin: 16px auto
}

.cta .primary-btn {
    margin-top: 20px
}

.orbit {
    position: absolute;
    border: 1px solid rgba(213, 169, 77, .18);
    border-radius: 50%;
    width: 290px;
    height: 290px;
    right: -100px;
    top: -100px;
    animation: spin 14s linear infinite
}

.orbit2 {
    left: -120px;
    bottom: -140px;
    top: auto;
    width: 320px;
    height: 320px;
    border-style: dashed;
    border-color: rgba(216, 121, 40, .2)
}

.orbit.small {
    left: -40px;
    top: -60px;
    right: auto;
    width: 220px;
    height: 220px
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--gradient);
    color: #f8efe4;
    padding: 80px 0 100px
}

.hero-content {
    position: relative;
    text-align: center
}

.page-hero h1 {
    font-size: clamp(44px, 6vw, 68px);
    margin-top: 14px
}

.hero-sub {
    max-width: 650px;
    color: #cfc1d0;
    margin: 18px auto 0;
    font-size: 16px
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.service-row {
    display: flex;
    gap: 20px;
    height: 100%;
    transition: .35s
}

.service-row:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.service-row h2 {
    font: 600 21px 'DM Sans', sans-serif
}

.service-row p {
    color: var(--muted);
    font-size: 14px
}

.fee-box {
    max-width: 760px;
    margin: 56px auto 0;
    text-align: center;
    background: rgba(244, 236, 220, .42);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 32px
}

.fee-box h2 {
    font-size: 30px
}

.fee-box p {
    color: var(--muted);
    font-size: 14px
}

.portrait {
    aspect-ratio: 4/5
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px
}

.about-stats .card {
    text-align: center;
    padding: 16px
}

.about-stats b {
    display: block;
    color: var(--primary);
    font: 500 28px Fraunces, serif
}

.about-stats span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px
}

.journey {
    list-style: none;
    padding: 0;
    margin: 48px 0
}

.journey li {
    display: flex;
    gap: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px
}

.journey li>span {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gradient);
    color: var(--gold);
    font-size: 13px
}

.journey h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px
}

.journey p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 0
}

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

.photo {
    position: relative;
    padding: 0;
    border: 0;
    background: none;
    overflow: hidden;
    border-radius: 24px;
    text-align: left;
    width: 100%;
}

.photo img {
    display: block;
    width: 100%;
    height: 300px;
    aspect-ratio: 1;
    object-fit: cover;
    transition: .7s
}

.photo:hover img {
    transform: scale(1.05)
}

.photo span {
    font-size: 14px;
    padding: 20px
}

.video-placeholder {
    aspect-ratio: 16/9;
    border-radius: 16px;
    background: var(--gradient);
    display: grid;
    place-items: center;
    color: #cfc1d0;
    margin-top: 20px;
    font-size: 14px
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 24px
}

.modal.show {
    display: flex
}

.modal img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 20px
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    background: none;
    border: 0;
    font-size: 40px
}

.review-shot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px
}

.review-shot {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--border);
}

.review-shot>div {
    aspect-ratio: 4/5;
    color: #cfc1d0;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 12px
}

.review-shot>span {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    font-size: 14px
}

.review-shot small {
    color: var(--muted)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px
}

.contact-card h2 {
    font-size: 27px
}

.contact-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0
}

.contact-card li {
    margin-bottom: 20px
}

.contact-card small {
    display: block;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px
}

.contact-card li a {
    color: var(--primary);
    font-size: 16px
}

.contact-card>p {
    color: var(--muted);
    font-size: 14px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.contact-card label {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-top: 16px
}

.contact-card input,
.contact-card textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg);
    color: var(--fg);
    outline: none;
    resize: vertical
}

.contact-card input:focus,
.contact-card textarea:focus {
    border-color: var(--primary)
}

.wide {
    width: 100%;
    text-align: center;
    margin-top: 22px
}

.legal {
    max-width: 800px
}

.legal .card {
    margin-bottom: 20px
}

.legal h2 {
    font: 500 20px 'DM Sans', sans-serif
}

.legal p {
    color: var(--muted);
    font-size: 14px
}

.footer {
    margin-top: 96px;
    background: var(--gradient);
    color: #f8efe4;
    padding: 64px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px
}

.footer-brand {
    font-size: 22px
}

.footer p,
.footer li,
.footer a {
    color: #cfc1d0;
    font-size: 14px
}

.footer h3 {
    font-family: 'DM Sans', sans-serif;
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .25em
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 16px 0
}

.footer li {
    margin: 8px 0
}

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

.footer-bottom {
    border-top: 1px solid rgba(207, 193, 208, .2);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 48px
}

.footer-bottom div {
    display: flex;
    gap: 20px
}

.floating {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.floating a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600
}

.floating .call {
    background: var(--cosmic);
    color: #fff
}

.floating .wa {
    background: var(--primary);
    color: #fff
}

.pulse {
    animation: pulse 2.2s ease-out infinite
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #f8efe4;
    transition: opacity .7s
}

.loader.done {
    opacity: 0;
    pointer-events: none
}

.loader-ring {
    position: relative;
    width: 128px;
    height: 128px;
    border: 2px solid rgba(213, 169, 77, .25);
    border-top-color: var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    animation: spin 14s linear infinite
}

.loader-ring:after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px dashed rgba(216, 121, 40, .35);
    border-radius: 50%;
    animation: spin 14s linear infinite reverse
}

.loader-ring span {
    font: 50px Fraunces, serif;
    color: var(--gold);
    animation: float 6s ease-in-out infinite
}

.loader p {
    font: 22px Fraunces, serif;
    margin: 32px 0 0
}

.loader small {
    margin-top: 6px;
    color: #cfc1d0;
    letter-spacing: .35em;
    text-transform: uppercase;
    font-size: 10px
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(216, 121, 40, .5)
    }

    70% {
        box-shadow: 0 0 0 18px rgba(216, 121, 40, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(216, 121, 40, 0)
    }
}

@media(max-width:900px) {

    .desktop-nav,
    .topbar {
        display: none
    }

    .menu-btn {
        display: block
    }

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

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

    .two-col,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .service-list {
        grid-template-columns: 1fr
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 310px;
        margin-left: -20px;
    }

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

    .floating {
        left: 8px;
        right: 8px;
        bottom: 8px;
        flex-direction: row
    }

    .floating a {
        flex: 1
    }

    .footer {
        padding-bottom: 70px
    }
}

@media(max-width:600px) {
    .container {
        padding-left: 18px;
        padding-right: 18px
    }

    .section,
    .section-alt {
        padding: 64px 0
    }

    .hero-inner h1 {
        font-size: 43px
    }

    .hero-inner>div>p {
        font-size: 16px
    }

    .stats {
        gap: 12px
    }

    .stats b {
        font-size: 32px
    }

    .stats span {
        font-size: 11px
    }

    .service-grid,
    .review-grid,
    .gallery-preview,
    .photo-grid,
    .review-shot-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr
    }

     .photo-grid {
        grid-template-columns: repeat(1, 1fr);
        width: 310px;
        margin-left: -20px;
    }
    .service-card,
    .service-row,
    .card {
        padding: 22px
    }

    .about-stats {
        gap: 7px
    }

    .about-stats .card {
        padding: 12px 7px
    }

    .about-stats span {
        font-size: 10px
    }

    .page-hero {
        padding: 68px 0 78px
    }

    .page-hero h1 {
        font-size: 43px
    }

    .footer-bottom {
        flex-direction: column
    }

    .footer-bottom div {
        flex-wrap: wrap
    }

    .floating a {
        padding: 11px 12px
    }

    .floating span {
        font-size: 13px
    }

    .om-badge {
        right: 0
    }

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

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

    .reveal {
        opacity: 1;
        transform: none
    }

    .ticker-track,
    .loader-ring,
    .loader-ring:after,
    .loader-ring span,
    .om-badge,
    .pulse {
        animation: none
    }
}


/* Shalini profile section */
.shalini-section .portrait-home {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-soft)
}

.shalini-section .image-wrap {
    position: relative
}

.shalini-section .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px
}

.shalini-section .about-stats .card {
    padding: 16px;
    text-align: center
}

.shalini-section .about-stats b {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary)
}

.shalini-section .about-stats span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: var(--muted-foreground)
}

@media(max-width:700px) {
    .shalini-section .about-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px
    }

    .shalini-section .about-stats .card {
        padding: 12px 8px
    }
     .photo-grid {
        grid-template-columns: repeat(1, 1fr);
        width: 370px;
        margin-left: -20px;
    }

}

/* Page banners - added without changing existing sections */
.page-banner {
    position: relative;
    width: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.page-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .30), rgba(0, 0, 0, .62))
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 70px 20px
}

.page-banner-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    text-transform: capitalize;
    text-shadow: 0 3px 15px rgba(0, 0, 0, .45)
}

@media(max-width:700px) {
    .page-banner {
        min-height: 210px
    }

    .page-banner-content {
        padding: 55px 15px
    }

    .page-banner-content h1 {
        font-size: 36px
    }
}

.page-banner {
    position: relative;
    width: 100%;
    height: clamp(230px, 31vw, 390px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #160d21
}

.page-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 6, 20, .72), rgba(12, 6, 20, .30), rgba(12, 6, 20, .72))
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 35px 20px;
    max-width: 1000px
}

.page-banner-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4.7vw, 58px);
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 4px 22px rgba(0, 0, 0, .55)
}
.footer-i i{
   color: white;
   margin: 10px;
   font-size: 18px;
} 
.footer-i i:hover{
  color:#d5a94d;
} 
