/* ====================================================
   VARIABLES & RESET
==================================================== */
:root {
    --rose: #8B1A4A;
    --rose-dark: #5E0F32;
    --gold: #C9965A;
    --gold-lt: #E8C9A0;
    --cream: #FDF5EC;
    --ivory: #FAF0E6;
    --warm: #F5E6D3;
    --charcoal: #2C1A12;
    --muted: #8A6A5A;
    --white: #FFFFFF;
    --nav-h: 68px;
    --ff-head: 'Playfair Display', Georgia, serif;
    --ff-body: 'Cormorant Garamond', Georgia, serif;
    --ff-ui: 'Noto Sans Devanagari', system-ui, sans-serif;
    --shadow-sm: 0 2px 10px rgba(139, 26, 74, .10);
    --shadow-md: 0 8px 32px rgba(139, 26, 74, .18);
    --shadow-lg: 0 20px 60px rgba(139, 26, 74, .22);
    --radius: 14px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --trans: all .32s var(--ease);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h)
}

body {
    font-family: var(--ff-body);
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
    line-height: 1.7
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--cream)
}

::-webkit-scrollbar-thumb {
    background: var(--rose);
    border-radius: 3px
}

/* ====================================================
   LANGUAGE SYSTEM
==================================================== */
[data-en],
[data-hi],
[data-mr] {
    display: none !important
}

.lang-en [data-en] {
    display: revert !important
}

.lang-hi [data-hi] {
    display: revert !important
}

.lang-mr [data-mr] {
    display: revert !important
}

/* ====================================================
   NAVBAR
==================================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--nav-h);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), background .3s ease, box-shadow .3s ease;
}

nav.scrolled {
    background: rgba(253, 245, 236, .97);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-sm);
}

nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-logo {
    font-family: var(--ff-head);
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: .3rem;
    flex-shrink: 0;
    transition: color .3s;
    line-height: 1.2;
}

nav.scrolled .nav-logo {
    color: var(--rose)
}

.nav-logo .acc {
    color: var(--gold)
}

.nav-links {
    display: flex;
    gap: clamp(.75rem, 1.8vw, 1.75rem);
    align-items: center;
}

.nav-links a {
    font-family: var(--ff-body);
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
    letter-spacing: .05em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: .15rem;
    white-space: nowrap;
    transition: color .25s;
}

nav.scrolled .nav-links a {
    color: var(--charcoal)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--rose);
    transition: width .28s
}

.nav-links a:hover {
    color: var(--gold)
}

nav.scrolled .nav-links a:hover {
    color: var(--rose)
}

.nav-links a:hover::after {
    width: 100%
}

/* Right group */
.nav-right {
    display: flex;
    align-items: center;
    gap: .6rem
}

.nav-cta {
    font-family: var(--ff-body);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .42rem 1.1rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--gold), #E8A85A);
    color: var(--rose-dark);
    box-shadow: 0 4px 14px rgba(201, 150, 90, .4);
    transition: var(--trans);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(201, 150, 90, .55)
}

/* Language Dropdown */
.lang-drop {
    position: relative
}

@media(max-width: 1100px) {
    .desktop-only {
        display: none !important;
    }
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .32);
    color: rgba(255, 255, 255, .92);
    font-family: var(--ff-ui);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    padding: .38rem .8rem;
    border-radius: 30px;
    transition: var(--trans);
    white-space: nowrap;
    backdrop-filter: blur(6px);
}

nav.scrolled .lang-trigger {
    background: var(--warm);
    border-color: rgba(201, 150, 90, .35);
    color: var(--rose-dark);
}

.lang-trigger:hover {
    background: rgba(255, 255, 255, .22)
}

nav.scrolled .lang-trigger:hover {
    background: var(--gold-lt)
}

.lang-trigger .arr {
    font-size: .58rem;
    transition: transform .24s;
    display: inline-block
}

.lang-drop.open .arr {
    transform: rotate(180deg)
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 150, 90, .18);
    min-width: 138px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(.97);
    pointer-events: none;
    transition: opacity .22s, transform .22s;
    z-index: 999;
}

.lang-drop.open .lang-menu {
    opacity: 1;
    transform: none;
    pointer-events: auto
}

.lang-opt {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .68rem 1.1rem;
    font-family: var(--ff-ui);
    font-size: .8rem;
    font-weight: 600;
    color: var(--charcoal);
    width: 100%;
    background: none;
    text-align: left;
    transition: background .18s;
}

.lang-opt:hover {
    background: var(--warm);
    color: var(--rose)
}

.lang-opt.active {
    color: var(--rose);
    background: rgba(139, 26, 74, .06)
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: .4rem;
}

.hamburger span {
    display: block;
    width: 23px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .9);
    transition: var(--trans)
}

nav.scrolled .hamburger span {
    background: var(--charcoal)
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* Mobile drawer */
.mob-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(253, 245, 236, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 8%;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.mob-nav.open {
    transform: translateX(0);
    visibility: visible;
}

.mob-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mob-nav-logo {
    font-family: var(--ff-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--rose);
}

.mob-close {
    background: none;
    font-size: 1.8rem;
    color: var(--rose);
    padding: 0.5rem;
}

.mob-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mob-links a {
    font-family: var(--ff-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.mob-nav.open .mob-links a {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mob-nav.open .mob-links a:nth-child(1) { transition-delay: 0.1s; }
.mob-nav.open .mob-links a:nth-child(2) { transition-delay: 0.15s; }
.mob-nav.open .mob-links a:nth-child(3) { transition-delay: 0.2s; }
.mob-nav.open .mob-links a:nth-child(4) { transition-delay: 0.25s; }
.mob-nav.open .mob-links a:nth-child(5) { transition-delay: 0.3s; }
.mob-nav.open .mob-links a:nth-child(6) { transition-delay: 0.35s; }

.mob-links a:hover {
    color: var(--rose);
    transform: translateX(10px);
}

.mob-cta {
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--gold), #E8A85A) !important;
    color: var(--rose-dark) !important;
    padding: 1rem !important;
    border-radius: 12px;
    font-size: 1.2rem !important;
    text-align: center;
    box-shadow: var(--shadow-md);
    transform: none !important;
}

.mob-nav-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 150, 90, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.mob-nav-footer p {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Mobile Language Picker */
.mob-lang-picker {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    background: rgba(139, 26, 74, 0.05);
    padding: 0.5rem;
    border-radius: 12px;
}

.mob-lang-btn {
    flex: 1;
    padding: 0.6rem;
    border-radius: 8px;
    font-family: var(--ff-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    background: transparent;
    transition: all 0.3s ease;
}

.mob-lang-btn.active {
    background: var(--rose);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(139, 26, 74, 0.2);
}

/* ====================================================
   HERO
==================================================== */
.hero {
    min-height: 100svh;
    background: linear-gradient(140deg, var(--rose-dark) 0%, var(--rose) 48%, #B5365E 78%, var(--charcoal) 100%);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 6rem);
    padding: calc(var(--nav-h) + 4rem) 8% 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='8' fill='%23fff' fill-opacity='0.025'/%3E%3C/svg%3E");
}

.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(201, 150, 90, .22) 0%, transparent 70%);
    animation: fl 9s ease-in-out infinite
}

.orb.a {
    width: 420px;
    height: 420px;
    top: -110px;
    right: -90px
}

.orb.b {
    width: 240px;
    height: 240px;
    bottom: 50px;
    left: 3%;
    animation-duration: 12s;
    animation-direction: reverse
}

@keyframes fl {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-26px) scale(1.04)
    }
}

.hero-content {
    z-index: 2;
    position: relative
}

.h-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 150, 90, .4);
    border-radius: 30px;
    padding: .32rem 1rem;
    font-size: .7rem;
    color: var(--gold-lt);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.4rem;
    animation: sD .8s ease both;
}

.h-badge::before {
    content: '✦';
    color: var(--gold);
    margin-right: .08rem
}

.h-title {
    font-family: var(--ff-head);
    font-size: clamp(2.2rem, 4.2vw, 4.5rem);
    font-weight: 800;
    line-height: 1.06;
    color: #fff;
    margin-bottom: .9rem;
    animation: sU .9s .1s ease both;
}

.h-title em {
    font-style: italic;
    color: var(--gold-lt);
    display: block
}

.h-sub {
    font-size: clamp(.95rem, 1.4vw, 1.18rem);
    color: rgba(255, 255, 255, .74);
    font-weight: 300;
    max-width: 450px;
    margin-bottom: 2.4rem;
    animation: sU .9s .2s ease both;
    font-family: var(--ff-ui);
    line-height: 1.65;
}

.h-btns {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    animation: sU .9s .3s ease both
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #E8A85A);
    color: var(--rose-dark);
    font-weight: 700;
    font-family: var(--ff-body);
    font-size: .97rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .78rem 1.9rem;
    border-radius: 40px;
    transition: var(--trans);
    box-shadow: 0 6px 20px rgba(201, 150, 90, .4);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 150, 90, .55)
}

.btn-ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 600;
    font-family: var(--ff-body);
    font-size: .97rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .78rem 1.9rem;
    border-radius: 40px;
    border: 1.5px solid rgba(255, 255, 255, .4);
    transition: var(--trans);
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .75)
}

.h-visual {
    z-index: 2;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: .85rem;
    animation: fI 1.2s .4s ease both;
    max-width: 480px;
    margin-left: auto;
}

.h-img {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative
}

.h-img:nth-child(1) {
    grid-row: 1/3;
    border-radius: 48px 13px 13px 13px;
    aspect-ratio: 3/5
}

.h-img:nth-child(2) {
    border-radius: 13px 13px 4px 13px;
    aspect-ratio: 1/1
}

.h-img:nth-child(3) {
    border-radius: 13px 4px 48px 13px;
    aspect-ratio: 1/1
}

.h-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.h-img:hover img {
    transform: scale(1.06)
}

.h-chip {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--rose-dark);
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: .74rem;
    padding: .32rem 1rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    z-index: 10;
}

@keyframes sD {
    from {
        opacity: 0;
        transform: translateY(-18px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes sU {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fI {
    from {
        opacity: 0;
        transform: scale(.96)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ====================================================
   SECTION UTILS
==================================================== */
section {
    padding: clamp(3.5rem, 7vw, 6rem) 6%
}

.sec-lbl {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--gold);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: .55rem;
}

.sec-lbl::before,
.sec-lbl::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold)
}

.sec-ttl {
    font-family: var(--ff-head);
    font-size: clamp(1.65rem, 3vw, 2.65rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--rose-dark);
    margin-bottom: .75rem;
}

.sec-dsc {
    font-size: clamp(.95rem, 1.3vw, 1.18rem);
    color: var(--muted);
    max-width: 540px;
    font-weight: 300
}

.divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    border-radius: 2px;
    margin: .65rem 0 1.35rem
}

.tc {
    text-align: center
}

.tc .sec-dsc,
.tc .divider {
    margin-left: auto;
    margin-right: auto
}

/* ====================================================
   ABOUT
==================================================== */
.about {
    background: var(--ivory)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    margin-top: 2.8rem
}

.aimg-wrap {
    position: relative
}

.aimg-main {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 58px 18px 58px 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.aimg-main img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.aimg-acc {
    position: absolute;
    width: 42%;
    aspect-ratio: 1;
    bottom: -26px;
    right: -16px;
    border-radius: 18px 50px 18px 18px;
    overflow: hidden;
    border: 5px solid var(--ivory);
    box-shadow: var(--shadow-md);
}

.aimg-acc img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.a-yrs {
    position: absolute;
    top: 26px;
    left: -20px;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    padding: .75rem 1rem;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.a-yrs .n {
    font-family: var(--ff-head);
    font-size: 1.7rem;
    font-weight: 800;
    display: block;
    line-height: 1
}

.a-yrs .l {
    font-size: .58rem;
    letter-spacing: .1em;
    opacity: .82;
    font-family: var(--ff-ui)
}

.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    margin-top: 1.65rem
}

.feat {
    display: flex;
    align-items: center;
    gap: .55rem;
    background: var(--warm);
    border-radius: 11px;
    padding: .62rem .85rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--rose);
    transition: var(--trans);
}

.feat:hover {
    background: var(--rose);
    color: #fff;
    transform: translateY(-2px)
}

/* ====================================================
   QUOTE
==================================================== */
.q-sec {
    background: linear-gradient(140deg, var(--rose-dark), var(--rose));
    text-align: center;
    padding: clamp(4rem, 8vw, 7rem) 6%;
    position: relative;
    overflow: hidden;
}

.q-sec::before {
    content: '\201C';
    font-family: var(--ff-head);
    font-size: 18rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .04);
    position: absolute;
    top: -55px;
    left: 4%;
    line-height: 1;
    pointer-events: none;
}

.q-wrap {
    position: relative;
    max-width: 750px;
    margin: 0 auto
}

.q-slide {
    display: none;
    animation: fI .6s ease
}

.q-slide.active {
    display: block
}

.q-txt {
    font-family: var(--ff-head);
    font-style: italic;
    font-size: clamp(1.2rem, 2.3vw, 2rem);
    color: #fff;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.q-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    color: var(--gold-lt);
    font-size: .82rem;
    letter-spacing: .1em;
    text-transform: uppercase
}

.q-auth::before,
.q-auth::after {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--gold-lt);
    opacity: .5
}

.q-dots {
    display: flex;
    justify-content: center;
    gap: .48rem;
    margin-top: 1.9rem
}

.q-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    padding: 0;
    transition: var(--trans)
}

.q-dot.active {
    background: var(--gold);
    width: 22px;
    border-radius: 4px
}

/* ====================================================
   COLLECTIONS
==================================================== */
.collections {
    background: var(--cream)
}

.col-hdr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.4rem;
    flex-wrap: wrap;
    gap: 1rem
}

.col-hdr-r {
    max-width: 280px
}

.col-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem
}

.col-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer
}

.col-card:nth-child(1) {
    grid-column: 1/3;
    aspect-ratio: 16/9
}

.col-card:nth-child(2) {
    aspect-ratio: 3/4
}

.col-card:nth-child(3) {
    aspect-ratio: 3/4
}

.col-card:nth-child(4) {
    aspect-ratio: 3/4
}

.col-card:nth-child(5) {
    aspect-ratio: 3/4
}

.col-card:nth-child(6) {
    grid-column: 3/5;
    aspect-ratio: 16/9
}

.col-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease)
}

.col-card:hover img {
    transform: scale(1.08)
}

.col-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(94, 15, 50, .92) 0%, rgba(94, 15, 50, .4) 40%, transparent 100%);
    opacity: 1;
    transition: transform .38s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
}

.col-card:hover .col-ov {
    transform: translateY(-5px);
}

.col-ov h3 {
    font-family: var(--ff-head);
    color: #fff;
    font-size: clamp(.95rem, 1.5vw, 1.3rem);
    margin-bottom: .18rem
}

.col-ov p {
    color: rgba(255, 255, 255, .7);
    font-size: .8rem
}

.col-chip {
    position: absolute;
    top: .8rem;
    left: .8rem;
    background: var(--gold);
    color: var(--rose-dark);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .2rem .65rem;
    border-radius: 20px;
}

/* ====================================================
   GALLERY
==================================================== */
.gallery {
    background: var(--warm)
}

.gal-masonry {
    columns: 4;
    column-gap: .85rem;
    margin-top: 2.5rem
}

.gal-item {
    break-inside: avoid;
    margin-bottom: .85rem;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative
}

.gal-item img {
    width: 100%;
    display: block;
    transition: transform .5s ease
}

.gal-item:hover img {
    transform: scale(1.04)
}

.gal-hrt {
    position: absolute;
    top: .6rem;
    right: .6rem;
    background: rgba(255, 255, 255, .88);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    opacity: 0;
    transition: opacity .3s
}

.gal-item:hover .gal-hrt {
    opacity: 1
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(44, 26, 18, .95);
    align-items: center;
    justify-content: center
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    pointer-events: none
}

.lb-close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    color: #fff;
    font-size: 1.75rem;
    background: none;
    transition: var(--trans);
    line-height: 1
}

.lb-close:hover {
    color: var(--gold);
    transform: rotate(90deg)
}

/* ====================================================
   STATS
==================================================== */
.stats {
    background: var(--ivory)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-top: 2.4rem
}

.stat-card {
    text-align: center;
    background: linear-gradient(135deg, var(--white), var(--cream));
    border-radius: 20px;
    padding: 2.1rem 1.2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 150, 90, .14);
    position: relative;
    overflow: hidden;
    transition: var(--trans);
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 26, 74, .07), transparent)
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md)
}

.s-icon {
    font-size: 2.2rem;
    margin-bottom: .6rem
}

.s-num {
    font-family: var(--ff-head);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 800;
    color: var(--rose);
    line-height: 1;
    margin-bottom: .4rem
}

.s-suf {
    color: var(--gold);
    font-weight: 800
}

.s-lbl {
    font-size: .72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700
}

.s-sub {
    font-family: var(--ff-ui);
    font-size: .65rem;
    color: var(--muted);
    margin-top: .18rem
}

/* ====================================================
   TESTIMONIALS
==================================================== */
.testimonials {
    background: var(--cream)
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
    margin-top: 2.4rem
}

.testi-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.65rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 150, 90, .1);
    transition: var(--trans);
    position: relative
}

.testi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px)
}

.testi-card::before {
    content: '\201C';
    font-family: var(--ff-head);
    font-size: 3.6rem;
    color: var(--gold-lt);
    position: absolute;
    top: .85rem;
    right: 1.2rem;
    line-height: 1;
    font-weight: 800;
    pointer-events: none
}

.stars {
    color: var(--gold);
    font-size: .98rem;
    margin-bottom: .8rem;
    letter-spacing: .1em
}

.t-txt {
    font-size: .96rem;
    color: var(--charcoal);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 1.3rem
}

.t-auth {
    display: flex;
    align-items: center;
    gap: .65rem
}

.t-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--gold-lt);
    flex-shrink: 0;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-head);
    font-weight: 700;
    color: var(--rose);
    font-size: 1rem
}

.t-nm {
    font-weight: 700;
    font-size: .83rem;
    color: var(--rose)
}

.t-lc {
    font-size: .7rem;
    color: var(--muted)
}

/* ====================================================
   LOCATION
==================================================== */
.location {
    background: var(--ivory)
}

.loc-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    margin-top: 2.4rem
}

.map-box {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 370px;
    background: linear-gradient(135deg, #e8d5c4, #d4b896);
    display: flex;
    align-items: center;
    justify-content: center
}

.map-in {
    text-align: center;
    padding: 2rem
}

.map-pin {
    font-size: 3.4rem;
    display: block;
    animation: bnc 2.2s ease-in-out infinite
}

@keyframes bnc {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.map-in p {
    font-family: var(--ff-head);
    font-size: 1.1rem;
    color: var(--rose);
    margin: .5rem 0;
    font-weight: 600
}

.map-in small {
    color: var(--muted);
    font-size: .8rem;
    line-height: 1.55
}

.map-open {
    display: inline-block;
    margin-top: .9rem;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .55rem 1.4rem;
    border-radius: 30px;
    transition: var(--trans);
    box-shadow: 0 4px 14px rgba(139, 26, 74, .3);
}

.map-open:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(139, 26, 74, .4)
}

.loc-info {
    display: flex;
    flex-direction: column;
    gap: 1.15rem
}

.loc-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    background: var(--warm);
    border-radius: 15px;
    padding: 1.05rem;
    transition: var(--trans)
}

.loc-item:hover {
    background: var(--cream);
    box-shadow: var(--shadow-sm)
}

.loc-ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem
}

.loc-det h4 {
    font-family: var(--ff-head);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: .18rem;
    font-size: .98rem
}

.loc-det p,
.loc-det a {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.6
}

.loc-det a:hover {
    color: var(--rose)
}

.t-tbl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .18rem .75rem;
    margin-top: .3rem
}

.t-tbl span {
    font-size: .76rem;
    color: var(--muted)
}

.t-tbl strong {
    font-size: .76rem;
    color: var(--charcoal)
}

/* ====================================================
   CONTACT
==================================================== */
.contact {
    background: linear-gradient(160deg, var(--cream) 55%, var(--warm) 100%)
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 5rem);
    margin-top: 2.4rem
}

.c-side h3 {
    font-family: var(--ff-head);
    font-size: clamp(1.45rem, 2.4vw, 1.95rem);
    color: var(--rose-dark);
    margin-bottom: .8rem
}

.c-side p {
    color: var(--muted);
    font-size: .97rem;
    margin-bottom: 1.65rem;
    line-height: 1.7
}

.clink-list {
    display: flex;
    flex-direction: column;
    gap: .85rem
}

.clink {
    display: flex;
    align-items: center;
    gap: .85rem;
    font-size: .93rem;
    color: var(--charcoal);
    transition: var(--trans)
}

.clink:hover {
    color: var(--rose)
}

.clink-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--trans);
    flex-shrink: 0
}

.clink:hover .clink-ico {
    background: var(--rose);
    color: #fff
}

.clink-lbl {
    font-weight: 700;
    font-size: .86rem
}

.clink-val {
    font-size: .77rem;
    color: var(--muted)
}

.c-form {
    background: var(--white);
    border-radius: 24px;
    padding: 2.1rem;
    box-shadow: var(--shadow-md)
}

.form-ttl {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    color: var(--rose-dark);
    margin-bottom: 1.4rem;
    font-weight: 700
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem
}

.fgrp {
    display: flex;
    flex-direction: column;
    gap: .32rem;
    margin-bottom: .85rem
}

.fgrp label {
    font-size: .68rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .12em;
    text-transform: uppercase
}

.fgrp input,
.fgrp select,
.fgrp textarea {
    padding: .7rem .95rem;
    border-radius: 10px;
    border: 1.5px solid rgba(201, 150, 90, .25);
    background: var(--cream);
    font-family: var(--ff-body);
    font-size: .96rem;
    color: var(--charcoal);
    transition: var(--trans);
    outline: none;
}

.fgrp input:focus,
.fgrp select:focus,
.fgrp textarea:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(139, 26, 74, .07)
}

.fgrp textarea {
    resize: vertical;
    min-height: 88px
}

.btn-submit {
    width: 100%;
    padding: .88rem;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    font-family: var(--ff-body);
    font-size: .98rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    border-radius: 12px;
    transition: var(--trans);
    box-shadow: 0 6px 20px rgba(139, 26, 74, .28);
    margin-top: .3rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(139, 26, 74, .42)
}

/* ====================================================
   FOOTER
==================================================== */
footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, .68);
    padding: clamp(3rem, 5vw, 4.5rem) 6% 1.8rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.4rem;
    margin-bottom: 2.4rem
}

.f-brand p {
    font-size: .83rem;
    line-height: 1.82;
    max-width: 250px;
    margin-top: .85rem
}

.f-logo {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-lt);
    display: flex;
    align-items: center;
    gap: .3rem
}

.f-logo .acc {
    color: var(--gold)
}

.soc-row {
    display: flex;
    gap: .6rem;
    margin-top: 1.1rem
}

.soc {
    width: 35px;
    height: 35px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    transition: var(--trans)
}

.soc:hover {
    background: var(--rose);
    transform: translateY(-2px)
}

.f-col h5 {
    font-family: var(--ff-head);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    font-size: .93rem
}

.f-col ul li {
    margin-bottom: .5rem
}

.f-col ul li a {
    font-size: .82rem;
    transition: color .22s
}

.f-col ul li a:hover {
    color: var(--gold)
}

.f-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 1.3rem;
    display: flex;
    justify-content: flex-end
}

/* ====================================================
   SCROLL REVEAL
==================================================== */
.reveal,
.rv-l,
.rv-r {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease
}

.reveal {
    transform: translateY(34px)
}

.rv-l {
    transform: translateX(-34px)
}

.rv-r {
    transform: translateX(34px)
}

.reveal.vis,
.rv-l.vis,
.rv-r.vis {
    opacity: 1;
    transform: none
}

.stagger>* {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease
}

.stagger.vis>*:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: .05s
}

.stagger.vis>*:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: .13s
}

.stagger.vis>*:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: .21s
}

.stagger.vis>*:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: .29s
}

.stagger.vis>*:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: .37s
}

.stagger.vis>*:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: .45s
}

/* ====================================================
   RESPONSIVE — TABLET (≤1100px)
==================================================== */
@media(max-width:1100px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding-top: calc(var(--nav-h) + 2.5rem);
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .h-btns {
        justify-content: center;
    }

    .h-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .h-sub {
        max-width: 580px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem
    }

    .aimg-wrap {
        max-width: 460px;
        margin: 0 auto
    }

    .col-grid {
        grid-template-columns: 1fr 1fr
    }

    .col-card:nth-child(1),
    .col-card:nth-child(6) {
        grid-column: 1/3;
        aspect-ratio: 16/9
    }

    .col-card:nth-child(2),
    .col-card:nth-child(3),
    .col-card:nth-child(4),
    .col-card:nth-child(5) {
        aspect-ratio: 3/4
    }

    .gal-masonry {
        columns: 3
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr
    }

    .loc-wrap {
        grid-template-columns: 1fr
    }

    .contact-wrap {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.8rem
    }
}

/* ====================================================
   RESPONSIVE — MOBILE (≤640px)
==================================================== */
@media(max-width:640px) {
    :root {
        --nav-h: 58px
    }

    section {
        padding: 3rem 5%
    }

    .hero {
        padding: calc(var(--nav-h) + 2.5rem) 7% 3rem
    }

    .h-title {
        font-size: 2rem
    }

    .h-visual {
        max-width: 320px;
        gap: .6rem
    }

    .h-img:nth-child(1) {
        border-radius: 34px 10px 10px 10px
    }

    .h-btns {
        flex-direction: column;
        align-items: flex-start
    }

    .btn-gold,
    .btn-ghost {
        width: 100%;
        justify-content: center
    }

    .aimg-wrap {
        max-width: 340px
    }

    .a-yrs {
        left: -8px;
        padding: .85rem .95rem
    }

    .col-grid {
        grid-template-columns: 1fr
    }

    .col-card:nth-child(1),
    .col-card:nth-child(6) {
        grid-column: auto;
        aspect-ratio: 4/3
    }

    .col-card:nth-child(2),
    .col-card:nth-child(3),
    .col-card:nth-child(4),
    .col-card:nth-child(5) {
        aspect-ratio: 4/3
    }

    .col-hdr {
        flex-direction: column;
        align-items: flex-start
    }

    .col-hdr-r {
        max-width: 100%
    }

    .gal-masonry {
        columns: 2;
        column-gap: .6rem
    }

    .gal-item {
        margin-bottom: .6rem
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: .9rem
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .map-box {
        height: 290px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem
    }

    .f-bottom {
        justify-content: center
    }
}

@media(max-width:380px) {
    .stats-grid {
        grid-template-columns: 1fr
    }

    .h-visual {
        max-width: 260px
    }
}