:root{
    /* Refined Champagne/Nude Palette */
    --bg:#fdfaf8;
    --surface:#ffffff;
    --surface-soft:#f9f3ee;
    --surface-rose:#f4e8e1;
    --surface-highlight:#ecdbd0;
    --surface-highlight-2:#dcc0a4;
    --surface-highlight-3:#f7e8da;
    
    /* Champagne & Gold Accents */
    --champagne: #edd2b3;
    --champagne-dark: #dcb991;
    --gold: #c5a075;
    --gold-soft: #dec8bb;
    
    --line:#ebe0d8;
    --line-strong:#d9c5ba;
    --text:#221b1a;
    --text-soft:#524642; /* Darkened from #6e5f5a for better readability */
    --title:#1a1413;
    
    /* Premium Shadows */
    --shadow-soft:0 10px 30px rgba(34, 27, 26, 0.04);
    --shadow-card:0 20px 50px rgba(34, 27, 26, 0.08);
    --shadow-deep:0 30px 80px rgba(34, 27, 26, 0.12);
    --shadow-button:0 12px 28px rgba(221, 185, 145, 0.22);
    
    --radius-xl:40px;
    --radius-lg:32px;
    --radius-md:24px;
    --radius-sm:16px;
    --container:1240px;
    --transition:all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(243,225,204,.18), transparent 28%),
        linear-gradient(180deg,#fffdfb 0%, #fbf7f4 100%);
    color:var(--text);
    line-height:1.65;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
}

ul{
    list-style:none;
}

button,
input,
select,
textarea{
    font:inherit;
}

.site-wrapper{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

.site-main{
    flex:1;
}

.container{
    width:min(var(--container), calc(100% - 40px));
    margin:0 auto;
}

.section{
    padding:86px 0;
}

.section-sm{
    padding:58px 0;
}

.section-compact{
    padding-top:48px;
}

.section-kicker{
    display:inline-block;
    margin-bottom:12px;
    font-size:.78rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#c29966;
    font-weight:700;
}

.section-head{
    max-width:760px;
    margin-bottom:30px;
}

.section-head.center{
    text-align:center;
    margin-inline:auto;
    margin-bottom:38px;
}

.compact-head{
    max-width:860px;
}

h1,h2,h3,h4{
    font-family:'Cormorant Garamond', serif;
    color:var(--title);
    line-height:1.03;
    font-weight:700;
}

h1{
    font-size:clamp(2.45rem, 6vw, 5.15rem);
    letter-spacing:.01em;
}

h2{
    font-size:clamp(2rem, 4vw, 3.4rem);
}

h3{
    font-size:clamp(1.22rem, 3vw, 1.8rem);
}

h4{
    font-size:1rem;
    font-family:'Inter', sans-serif;
}

p{
    color:var(--text-soft);
}

.btn{
    position:relative;
    overflow:hidden;
    min-height:54px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:0 24px;
    border-radius:999px;
    border:1px solid transparent;
    transition:transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease;
    font-weight:600;
    cursor:pointer;
    will-change:transform;
}

.btn:hover{
    transform:translateY(-3px) scale(1.012);
}

.btn:active{
    transform:translateY(-1px) scale(.995);
}

.btn-full{
    width:100%;
}

.btn-primary{
    color:#1b1513;
    background:
        linear-gradient(180deg, rgba(255,255,255,.45) 0%, rgba(255,255,255,0) 48%),
        linear-gradient(135deg, var(--champagne) 0%, var(--champagne-dark) 48%, var(--surface-highlight-3) 100%);
    box-shadow:
        var(--shadow-button),
        inset 0 1px 0 rgba(255,255,255,.5);
    border-color:rgba(214,177,131,.45);
}

.btn-primary::before{
    content:"";
    position:absolute;
    top:0;
    left:-135%;
    width:78%;
    height:100%;
    background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.38) 48%, rgba(255,255,255,0) 100%);
    transform:skewX(-24deg);
    transition:left 1s ease;
}

.btn-primary::after{
    content:"";
    position:absolute;
    width:16px;
    height:16px;
    top:12px;
    right:22px;
    background:radial-gradient(circle, rgba(255,255,255,.95) 0%, rgba(255,255,255,.25) 45%, rgba(255,255,255,0) 75%);
    border-radius:50%;
    opacity:.75;
    filter:blur(.4px);
    animation:diamondSpark 3.2s ease-in-out infinite;
    pointer-events:none;
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before,
.btn-shine::before{
    left:132%;
}

.btn-glow:hover{
    box-shadow:
        0 16px 34px rgba(215,178,137,.32),
        0 0 0 1px rgba(235,206,172,.26),
        inset 0 1px 0 rgba(255,255,255,.5);
}

.btn-outline{
    background:
        linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.98) 100%);
    border-color:var(--line);
    color:var(--text);
    box-shadow:0 10px 24px rgba(31,21,18,.05);
}

.btn-outline:hover{
    border-color:#dec8bb;
    box-shadow:0 14px 28px rgba(31,21,18,.07);
}

.btn-soft{
    background:
        linear-gradient(180deg, rgba(255,255,255,.30) 0%, rgba(255,255,255,0) 38%),
        linear-gradient(135deg, #f4ebe4 0%, #efdfd4 100%);
    border-color:#ead7cb;
    color:var(--text);
}

.btn-float{
    position:relative;
}

.btn-float:hover{
    transform:translateY(-3px);
}

/* header */
.site-header{
    position:sticky;
    top:0;
    z-index:1100;
    background:rgba(252,248,245,.88);
    backdrop-filter:blur(22px);
    border-bottom:1px solid rgba(220,202,189,.50);
}

.header-bar{
    min-height:68px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    position:relative;
}

.site-brand{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    width:auto;
    max-width:210px;
    position:relative;
}

.brand-glow{
    position:absolute;
    inset:50% auto auto 50%;
    width:118px;
    height:118px;
    transform:translate(-50%, -50%);
    background:radial-gradient(circle, rgba(243,225,204,.48) 0%, rgba(243,225,204,.16) 34%, rgba(243,225,204,0) 72%);
    filter:blur(6px);
    pointer-events:none;
    opacity:.88;
    animation:brandGlowFloat 5s ease-in-out infinite;
}

.site-brand img{
    width:auto;
    height:54px;
    max-width:100%;
    object-fit:contain;
    transition:all .34s ease;
    position:relative;
    z-index:2;
    animation:brandReveal .75s ease both;
}

.desktop-nav{
    flex:1;
    display:flex;
    justify-content:center;
}

.desktop-nav ul{
    display:flex;
    align-items:center;
    gap:26px;
    flex-wrap:wrap;
}

.desktop-nav a{
    position:relative;
    font-size:.95rem;
    color:#403633;
    padding:8px 0;
    transition:var(--transition);
}

.desktop-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:1px;
    background:#c59d6a;
    transition:var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active{
    color:#1a1412;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after{
    width:100%;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
    position:relative;
    z-index:4;
}

.menu-toggle{
    display:none;
    width:38px;
    height:38px;
    border-radius:50%;
    border:1px solid rgba(228,211,198,.62);
    background:linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.94) 100%);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:4px;
    cursor:pointer;
    box-shadow:0 6px 14px rgba(31,21,18,.035);
    transition:all .28s ease;
}

.menu-toggle:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 18px rgba(31,21,18,.05);
    border-color:rgba(221,201,187,.82);
}

.menu-toggle span{
    width:15px;
    height:2px;
    border-radius:2px;
    background:#201816;
    transition:var(--transition);
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(6px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){
    opacity:0;
}
.menu-toggle.active span:nth-child(3){
    transform:translateY(-6px) rotate(-45deg);
}

.mobile-menu{
    display:none;
    position:fixed;
    top:68px;
    left:0;
    width:100%;
    height:calc(100vh - 68px);
    background:rgba(255,255,255,.98);
    backdrop-filter:blur(12px);
    z-index:1000;
    overflow-y:auto;
}

.mobile-menu.open{
    display:block;
}

/* Reducer mobile menu items as per user rules */
.mobile-menu ul{
    display:grid;
    gap:10px;
    padding:20px 0;
}

.mobile-menu a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 20px;
    border-radius:18px;
    border:1px solid var(--line);
    background:var(--bg);
    font-weight:500;
}

.mobile-menu a::after{
    content:"→";
    opacity:.4;
}

/* hero home */
.hero-index{
    padding:8px 0 26px;
}

.hero-shell{
    position:relative;
}

.hero-media-wrap{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    background:#eadfd7;
    box-shadow:var(--shadow-deep);
    transform:translateZ(0);
}

.hero-media-wrap::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 24%, rgba(20,14,12,.08) 100%);
    pointer-events:none;
}

.hero-photo{
    width:100%;
    height:auto;
    display:block;
}

.hero-photo-mobile{
    display:none;
}

.hero-content-below{
    max-width:760px;
    padding-top:34px;
}

.hero-content-below h1{
    max-width:680px;
    text-wrap:balance;
}

.hero-content-below p{
    margin:14px 0 22px;
    max-width:640px;
    font-size:1.02rem;
}

.hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

/* generic inner hero */
.inner-hero{
    padding:14px 0 18px;
}

.inner-hero-box{
    position:relative;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:30px;
    padding:28px 24px;
    background:
        radial-gradient(circle at top right, rgba(243,225,204,.45) 0%, rgba(243,225,204,0) 34%),
        linear-gradient(135deg, #fffaf7 0%, #f4e8df 100%);
    box-shadow:var(--shadow-soft);
}

.inner-hero-box p{
    max-width:760px;
    margin-top:12px;
}

/* reveal */
.reveal-up{
    animation:revealUp .8s ease both;
}

/* home cards */
.quick-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.quick-card{
    position:relative;
    background:linear-gradient(180deg,#fff 0%, #f9f3ee 100%);
    border:1px solid var(--line);
    border-radius:22px;
    padding:18px 16px;
    box-shadow:var(--shadow-soft);
    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    min-height:154px;
    overflow:hidden;
}

.quick-card::before{
    content:"";
    position:absolute;
    inset:-40% auto auto -30%;
    width:120px;
    height:120px;
    background:radial-gradient(circle, rgba(243,225,204,.26) 0%, rgba(243,225,204,0) 72%);
    pointer-events:none;
    transition:transform .35s ease, opacity .35s ease;
    opacity:.85;
}

.quick-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-card);
    border-color:#dfcbbf;
}

.quick-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1rem;
    margin-bottom:12px;
    background:linear-gradient(135deg,#f2e6df 0%, #ead7c7 100%);
    color:#4d3e39;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.4);
    transition:transform .3s ease;
}

.quick-card:hover .quick-icon{
    transform:translateY(-2px) scale(1.04);
}

.quick-card h3{
    font-size:1.32rem;
}

.quick-card p{
    margin:6px 0 10px;
    font-size:.89rem;
    line-height:1.45;
}

.quick-link{
    color:#bc9463;
    font-weight:700;
    font-size:.9rem;
}

.value-band{
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:20px;
    align-items:start;
    background:linear-gradient(135deg, #fff 0%, #f4e8df 100%);
    border:1px solid var(--line);
    border-radius:30px;
    padding:28px 26px;
    box-shadow:var(--shadow-soft);
}

.value-copy p{
    max-width:560px;
}

.value-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.value-point{
    border:1px solid rgba(220,202,189,.78);
    background:rgba(255,255,255,.76);
    border-radius:18px;
    padding:14px;
    transition:transform .25s ease, box-shadow .25s ease;
}

.value-point:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(31,21,18,.05);
}

.value-point h3{
    font-size:1.04rem;
    margin-bottom:6px;
}

.value-point p{
    font-size:.92rem;
}

.special-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.special-card{
    background:linear-gradient(135deg, #fff 0%, #f3e6de 100%);
    border:1px solid var(--line);
    border-radius:26px;
    padding:24px 22px;
    box-shadow:var(--shadow-soft);
    position:relative;
    overflow:hidden;
    transition:transform .28s ease, box-shadow .28s ease;
}

.special-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-card);
}

.special-card::before{
    content:"";
    position:absolute;
    inset:auto auto -40px -20px;
    width:140px;
    height:140px;
    background:radial-gradient(circle, rgba(243,225,204,.42) 0%, rgba(243,225,204,0) 72%);
    pointer-events:none;
}

.special-card p{
    margin:8px 0 16px;
}

.special-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

/* generic grids and cards */
.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.product-card{
    overflow:hidden;
    background:rgba(255,255,255,.96);
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:0 12px 28px rgba(31,21,18,.06);
    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-card);
    border-color:#e0ccc0;
}

.product-card-media{
    aspect-ratio:1 / 1.03;
    overflow:hidden;
    background:#efe5de;
}

.product-card-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .55s ease;
}

.product-card:hover .product-card-media img{
    transform:scale(1.045);
}

.product-card-body{
    padding:16px 15px 15px;
    display:flex;
    flex-direction:column;
    gap:8px;
    flex:1;
}

.product-meta,
.product-card-meta{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.chip{
    display:inline-flex;
    align-items:center;
    padding:5px 10px;
    border-radius:999px;
    border:1px solid rgba(220,202,189,.8);
    background:#f8f0ea;
    color:#5a4e49;
    font-size:.78rem;
}

.price{
    font-size:1.25rem;
    font-weight:800;
    color:var(--title);
    margin:4px 0;
}

.product-actions,
.product-card-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:auto;
    padding-top:6px;
}

/* info cards / highlight */
.info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.info-card{
    border:1px solid var(--line);
    border-radius:22px;
    padding:20px 18px;
    background:linear-gradient(180deg,#fff 0%, #f9f3ee 100%);
    box-shadow:var(--shadow-soft);
}

.highlight-panel{
    border:1px solid var(--line);
    border-radius:28px;
    padding:24px 22px;
    background:
        radial-gradient(circle at top left, rgba(243,225,204,.30) 0%, rgba(243,225,204,0) 30%),
        linear-gradient(135deg, #fffaf7 0%, #f3e7de 100%);
    box-shadow:var(--shadow-soft);
}

.highlight-panel-grid{
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:18px;
    align-items:center;
}

.highlight-panel-actions{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    flex-wrap:wrap;
}

/* mia page */
.mia-experience{
    padding:14px 0 18px;
}

.mia-experience-grid{
    display:grid;
    grid-template-columns:1.02fr .98fr;
    gap:18px;
    align-items:start;
}

.mia-experience-main,
.mia-experience-side{
    border:1px solid var(--line);
    border-radius:28px;
    padding:24px 22px;
    background:linear-gradient(135deg, #fffaf7 0%, #f3e7de 100%);
    box-shadow:var(--shadow-soft);
}

.mia-steps{
    display:grid;
    gap:14px;
    margin:20px 0;
}

.mia-step{
    border:1px solid rgba(220,202,189,.78);
    border-radius:18px;
    padding:14px;
    background:rgba(255,255,255,.78);
}

.select-control{
    width:100%;
    min-height:52px;
    margin-top:10px;
    border-radius:16px;
    border:1px solid var(--line);
    background:#fff;
    padding:0 14px;
    color:var(--text);
}

.result-box{
    border:1px solid rgba(220,202,189,.78);
    border-radius:20px;
    padding:16px;
    background:#fff;
    margin-bottom:18px;
}

.contact-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.mia-experience-side img{
    width:100%;
    max-width:280px;
    margin:0 auto 16px;
    border-radius:24px;
    object-fit:cover;
}

.detail-list{
    display:grid;
    gap:12px;
    margin-top:18px;
}

.detail-list li{
    border:1px solid rgba(220,202,189,.78);
    border-radius:16px;
    padding:14px;
    background:rgba(255,255,255,.76);
}

.detail-list span{
    display:block;
    color:var(--text-soft);
    font-size:.9rem;
    margin-bottom:4px;
}

/* footer refined */
.site-footer{
    margin-top:46px;
    padding:58px 0 132px;
    background:linear-gradient(180deg,#f8f1ec 0%, #f3ebe6 100%);
    border-top:1px solid rgba(220,202,189,.7);
}

.footer-shell{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:28px;
    align-items:start;
}

.footer-brand,
.footer-brand-main{
    max-width:420px;
}

.footer-brand img,
.footer-brand-main img{
    width:auto;
    height:60px;
    max-width:100%;
    object-fit:contain;
    margin-bottom:14px;
}

.footer-brand-actions{
    margin-top:18px;
}

.footer-main-cta{
    min-width:220px;
}

.footer-desktop-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.footer-col h4{
    margin-bottom:12px;
    color:var(--title);
}

.footer-col ul{
    display:grid;
    gap:10px;
}

.footer-col a{
    color:var(--text-soft);
    transition:var(--transition);
}

.footer-col a:hover{
    color:var(--title);
}

.footer-phone{
    color:#1a1412;
    font-weight:700;
    margin-bottom:16px;
}

.footer-mobile-btn{
    display:none;
    margin-top:16px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    margin-top:30px;
    padding-top:18px;
    border-top:1px solid rgba(220,202,189,.7);
}

/* dock */
.bottom-dock{
    position:fixed;
    left:50%;
    bottom:14px;
    transform:translateX(-50%);
    width:min(92%, 500px);
    display:none;
    justify-content:space-between;
    gap:8px;
    padding:8px;
    border-radius:100px;
    background:rgba(255,255,255,.85);
    border:1px solid rgba(220,202,189,.5);
    box-shadow:0 12px 34px rgba(34, 27, 26, 0.08);
    backdrop-filter:blur(24px);
    z-index:1200;
}

.dock-item{
    flex:1;
    min-height:48px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2px;
    border-radius:100px;
    color:var(--text-soft);
    font-size:.62rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.02em;
    transition:var(--transition);
}

.dock-icon{
    font-size:.95rem;
    line-height:1;
}

.dock-item.active{
    background:var(--surface-highlight-3);
    color:var(--title);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.6);
}

.dock-item:hover:not(.active){
    background:rgba(255,255,255,.4);
}

.dock-wa{
    background:linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color:#fff !important;
}

.desktop-cta{
    display:inline-flex;
}

/* catalogo premium */
.catalog-hero{
    padding:14px 0 18px;
}

.catalog-hero-shell{
    position:relative;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:30px;
    padding:28px 24px;
    background:
        radial-gradient(circle at top right, rgba(243,225,204,.45) 0%, rgba(243,225,204,0) 34%),
        linear-gradient(135deg, #fffaf7 0%, #f4e8df 100%);
    box-shadow:var(--shadow-soft);
}

.catalog-hero-shell p{
    max-width:760px;
    margin-top:12px;
}

.catalog-hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:22px;
}

.catalog-shortcuts{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.catalog-shortcut{
    position:relative;
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:14px;
    align-items:start;
    padding:18px;
    border-radius:24px;
    border:1px solid var(--line);
    background:linear-gradient(180deg,#fff 0%, #f9f3ee 100%);
    box-shadow:var(--shadow-soft);
    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    overflow:hidden;
}

.catalog-shortcut::before{
    content:"";
    position:absolute;
    inset:auto auto -42px -26px;
    width:120px;
    height:120px;
    background:radial-gradient(circle, rgba(243,225,204,.34) 0%, rgba(243,225,204,0) 72%);
    pointer-events:none;
}

.catalog-shortcut:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-card);
    border-color:#dfcbbf;
}

.catalog-shortcut-icon{
    width:44px;
    height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#f2e6df 0%, #ead7c7 100%);
    color:#4d3e39;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.42);
    font-size:1rem;
}

.catalog-shortcut-copy h3{
    font-size:1.35rem;
    margin-bottom:4px;
}

.catalog-shortcut-copy p{
    font-size:.92rem;
    line-height:1.5;
}

.catalog-shortcut-link{
    color:#bc9463;
    font-weight:700;
    font-size:.88rem;
    align-self:center;
}

.catalog-value-band{
    display:grid;
    grid-template-columns:1.04fr .96fr;
    gap:20px;
    align-items:start;
    background:linear-gradient(135deg, #fff 0%, #f4e8df 100%);
    border:1px solid var(--line);
    border-radius:30px;
    padding:28px 26px;
    box-shadow:var(--shadow-soft);
}

.catalog-value-copy p{
    max-width:560px;
}

.catalog-value-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.catalog-value-point{
    border:1px solid rgba(220,202,189,.78);
    background:rgba(255,255,255,.78);
    border-radius:18px;
    padding:14px;
    transition:transform .25s ease, box-shadow .25s ease;
}

.catalog-value-point:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(31,21,18,.05);
}

.catalog-value-point h3{
    font-size:1.05rem;
    margin-bottom:6px;
}

.catalog-value-point p{
    font-size:.92rem;
}

.catalog-grid .product-card{
    min-height:100%;
}

.catalog-cta-panel{
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:18px;
    align-items:center;
    border:1px solid var(--line);
    border-radius:28px;
    padding:24px 22px;
    background:
        radial-gradient(circle at top left, rgba(243,225,204,.30) 0%, rgba(243,225,204,0) 30%),
        linear-gradient(135deg, #fffaf7 0%, #f3e7de 100%);
    box-shadow:var(--shadow-soft);
}

.catalog-cta-actions{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    flex-wrap:wrap;
}

/* animations */
@keyframes diamondSpark{
    0%, 100%{
        opacity:.4;
        transform:scale(.85);
    }
    35%{
        opacity:.95;
        transform:scale(1.08);
    }
    60%{
        opacity:.65;
        transform:scale(.92);
    }
}

@keyframes revealUp{
    from{
        opacity:0;
        transform:translateY(18px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes brandGlowFloat{
    0%,100%{
        opacity:.7;
        transform:translate(-50%, -50%) scale(.95);
    }
    50%{
        opacity:.95;
        transform:translate(-50%, -50%) scale(1.05);
    }
}

@keyframes brandReveal{
    from{
        opacity:0;
        transform:translateY(6px) scale(.98);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce){
    *,
    *::before,
    *::after{
        animation:none !important;
        transition:none !important;
        scroll-behavior:auto !important;
    }
}

@media (max-width: 1180px){
    .value-band,
    .catalog-value-band,
    .catalog-cta-panel,
    .footer-shell,
    .highlight-panel-grid,
    .mia-experience-grid{
        grid-template-columns:1fr;
    }

    .special-grid{
        grid-template-columns:1fr;
    }

    .product-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width: 960px){
    .desktop-nav{
        display:none !important;
    }

    .desktop-cta{
        display:none !important;
    }

    .menu-toggle{
        display:inline-flex !important;
    }

    .quick-grid,
    .info-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .catalog-shortcuts{
        grid-template-columns:1fr;
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .catalog-cta-actions,
    .highlight-panel-actions{
        justify-content:flex-start;
    }

    .hero-photo-desktop{
        display:none;
    }

    .hero-photo-mobile{
        display:block;
    }
}

@media (max-width: 760px){
    .container{
        width:min(var(--container), calc(100% - 24px));
    }

    .section{
        padding:60px 0;
    }

    .section-sm{
        padding:46px 0;
    }

    .section-compact{
        padding-top:54px;
    }

    .site-header{
        background:rgba(252,248,245,.93);
    }

    .header-bar{
        min-height:74px;
        justify-content:center;
        position:relative;
    }

    .site-brand{
        max-width:198px;
        margin:0 auto;
    }

    .brand-glow{
        width:132px;
        height:132px;
        filter:blur(7px);
    }

    .site-brand img{
        height:62px;
    }

    .header-actions{
        position:absolute;
        right:0;
        top:50%;
        transform:translateY(-50%);
        gap:0;
    }

    .menu-toggle{
        width:36px;
        height:36px;
        box-shadow:0 6px 12px rgba(31,21,18,.03);
        border-color:rgba(228,211,198,.54);
    }

    .menu-toggle span{
        width:14px;
    }

    .hero-index{
        padding-top:6px;
        padding-bottom:34px;
    }

    .hero-media-wrap{
        border-radius:24px;
    }

    .hero-content-below{
        padding-top:30px;
        max-width:100%;
    }

    .hero-content-below h1{
        max-width:100%;
        font-size:clamp(2.08rem, 9.2vw, 3.18rem);
        line-height:.98;
    }

    .hero-content-below p{
        max-width:100%;
        font-size:.98rem;
        margin:14px 0 20px;
    }

    .inner-hero{
        padding-top:8px;
        padding-bottom:12px;
    }

    .inner-hero-box{
        border-radius:24px;
        padding:22px 16px;
    }

    .catalog-hero{
        padding-top:8px;
        padding-bottom:12px;
    }

    .catalog-hero-shell{
        border-radius:24px;
        padding:22px 16px;
    }

    .catalog-hero-actions,
    .catalog-cta-actions,
    .hero-actions,
    .special-actions,
    .product-actions,
    .product-card-actions,
    .contact-actions,
    .highlight-panel-actions{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }

    .quick-grid,
    .info-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .quick-card{
        min-height:140px;
        padding:14px 13px;
    }

    .catalog-shortcut{
        grid-template-columns:auto 1fr;
        gap:12px;
        padding:16px 14px;
    }

    .catalog-shortcut-link{
        grid-column:2;
        justify-self:start;
    }

    .value-band,
    .special-card,
    .catalog-value-band,
    .catalog-cta-panel,
    .highlight-panel,
    .mia-experience-main,
    .mia-experience-side{
        padding:20px 16px;
        border-radius:22px;
    }

    .value-points,
    .catalog-value-points{
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .value-point,
    .catalog-value-point{
        padding:12px;
    }

    .footer-desktop-grid,
    .footer-col{
        display:none;
    }

    .footer-shell,
    .footer-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .footer-brand,
    .footer-brand-main{
        max-width:100%;
        margin:0 auto;
        text-align:center;
    }

    .footer-brand img,
    .footer-brand-main img{
        margin-inline:auto;
        height:54px;
    }

    .footer-brand p{
        font-size:.9rem;
    }

    .footer-brand-actions{
        display:flex;
        justify-content:center;
    }

    .footer-mobile-btn{
        display:inline-flex;
    }

    .footer-bottom{
        justify-content:center;
        text-align:center;
        font-size:.78rem;
        gap:6px;
    }

    .bottom-dock{
        display:flex;
    }

    .site-footer{
        padding-top:38px;
        padding-bottom:138px;
    }
}

@media (max-width: 520px){
    .quick-grid,
    .value-points,
    .product-grid,
    .catalog-value-points,
    .info-grid{
        grid-template-columns:1fr;
    }

    .product-card-body{
        padding:15px 14px 14px;
    }
}

@media (max-width: 430px){
    .header-bar{
        min-height:70px;
    }

    .site-brand{
        max-width:182px;
    }

    .brand-glow{
        width:118px;
        height:118px;
    }

    .site-brand img{
        height:56px;
    }

    .menu-toggle{
        width:34px;
        height:34px;
    }

    .bottom-dock{
        bottom:7px;
        width:min(95%, 620px);
        padding:7px 8px;
    }

    .dock-item{
        min-height:48px;
        font-size:.68rem;
    }

    .dock-icon{
        font-size:.88rem;
    }
}
/* --- Mia Curatory Note --- */
.mia-curatory-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.1); /* brand-primary-rgb approx */
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.mia-curatory-badge {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.mia-curatory-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #FDF5E6; /* brand-soft approx */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.mia-curatory-content {
    flex: 1;
}

.mia-curatory-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a1a; /* brand-dark approx */
}

.mia-curatory-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.mia-curatory-actions {
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {
    .mia-curatory-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .mia-curatory-badge {
        width: 100px;
        height: 100px;
    }
    .mia-curatory-content h2 {
        font-size: 1.8rem;
    }
    .mia-curatory-actions {
        flex-direction: column;
    }
}

/* --- Product Detail Polish --- */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.product-main-img {
    background: white;
    border-radius: 30px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.product-main-img img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.product-detail-body h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--brand-dark);
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 300;
    color: var(--brand-primary);
    margin-bottom: 30px;
}

.product-detail-desc {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.product-specs-card {
    background: #FAFAFA;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.product-specs-card h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #999;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #EEE;
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list span {
    color: #888;
}

.product-detail-actions {
    display: flex;
    gap: 15px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #999;
    display: flex;
    gap: 10px;
    align-items: center;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb .sep {
    color: #CCC;
}

@media (max-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-detail-body h1 {
        font-size: 2.2rem;
    }
    .product-detail-actions {
        flex-direction: column;
    }
}

/* --- Animation Refinement --- */
.reveal-up {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s;
}

.reveal-up.revealed {
    transform: translateY(0);
    opacity: 1;
}

/* Delay staggered reveals for grids */
.product-grid .product-card:nth-child(2) { transition-delay: 0.1s; }
.product-grid .product-card:nth-child(3) { transition-delay: 0.2s; }
.product-grid .product-card:nth-child(4) { transition-delay: 0.3s; }

/* --- Product Gallery Carousel --- */
.product-gallery {
    position: relative;
    width: 100%;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.gallery-nav:hover {
    background: var(--surface-soft);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev { left: 15px; }
.gallery-next { right: 15px; }

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0d5cd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .gallery-nav { display: none; } /* On mobile we rely on points or swipe */
}

/* --- Search Bar Improvements --- */
.header-search {
    flex: 0 1 280px;
    position: relative;
    margin: 0 15px;
}

.search-form {
    display: flex;
    align-items: center;
    background: #fdfaf7;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: 6px 14px;
    transition: var(--transition);
}

.search-form:focus-within {
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(197, 160, 117, 0.15);
    background: #fff;
}

.search-form input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.88rem;
    padding: 4px 8px;
    width: 100%;
    color: var(--text);
}

.search-form button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    transition: transform 0.2s ease;
}

.search-form button:hover {
    transform: scale(1.1);
}

/* --- Mia Bubble CTA --- */
.mia-pill-trigger {
    position: relative;
}

.mia-bubble-cta {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 12px;
    background: var(--surface);
    color: var(--text);
    padding: 10px 18px;
    border-radius: 18px 18px 4px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line);
    animation: bubbleFloat 3s ease-in-out infinite;
    pointer-events: none;
}

.mia-bubble-cta::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 15px;
    border-width: 8px;
    border-style: solid;
    border-color: var(--surface) transparent transparent transparent;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 1100px) {
    .header-search {
        flex: 0 1 200px;
    }
}

@media (max-width: 992px) {
    .header-search {
        display: none;
    }
}
