/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#0B0A08;--bg2:#151311;--bg3:#1C1A17;--bg4:#252220;
  --cream:#F2EDE5;--cream-mid:#C4BFB5;--cream-dim:#8A857C;--dim:#5C574F;
  --gold:#C8A97E;--gold-hover:#D9BC94;--gold-dim:rgba(200,169,126,.12);
  --border:rgba(242,237,229,.07);--border-h:rgba(242,237,229,.14);
  --ff-serif:'Cormorant Garamond',Georgia,serif;
  --ff-sans:'Outfit',system-ui,-apple-system,sans-serif;
  --ease:cubic-bezier(.16,1,.3,1);--ease2:cubic-bezier(.25,1,.5,1);
  --header-h:76px;
}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
body{font-family:var(--ff-sans);font-weight:300;color:var(--cream);background:var(--bg);line-height:1.7;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
ul,ol{list-style:none}
h1,h2,h3,h4{font-family:var(--ff-serif);font-weight:300;line-height:1.08;letter-spacing:-.025em;color:var(--cream)}
h1{font-size:clamp(2.6rem,6.5vw,5.5rem)}
h2{font-size:clamp(1.9rem,4vw,3.4rem)}
h3{font-size:clamp(1.3rem,2.2vw,1.9rem);font-weight:400}
h4{font-size:clamp(1rem,1.3vw,1.25rem);font-weight:500}
p{font-size:clamp(.92rem,1vw,1.05rem);color:var(--cream-mid);line-height:1.75;max-width:60ch}
em{font-style:italic;color:var(--gold)}
.label{font-family:var(--ff-sans);font-size:.7rem;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);display:inline-flex;align-items:center;gap:.7rem}
.label-line{width:36px;height:1px;background:var(--gold)}

/* ===== LAYOUT ===== */
.container{width:100%;max-width:1280px;margin:0 auto;padding:0 clamp(1.25rem,4vw,3rem)}
.section{padding:clamp(4rem,8vw,8rem) 0;position:relative}

/* ===== GRAIN OVERLAY ===== */
.grain{position:fixed;inset:0;pointer-events:none;z-index:9999;opacity:.03;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:128px}

/* ===== HEADER ===== */
.header{position:fixed;top:0;left:0;right:0;z-index:100;height:var(--header-h);display:flex;align-items:center;transition:background .5s var(--ease),backdrop-filter .5s var(--ease)}
.header.scrolled{background:rgba(11,10,8,.88);backdrop-filter:blur(24px) saturate(180%);-webkit-backdrop-filter:blur(24px) saturate(180%);border-bottom:1px solid var(--border)}
.header-inner{display:flex;align-items:center;justify-content:space-between;width:100%;max-width:1440px;margin:0 auto;padding:0 clamp(1.25rem,4vw,3rem)}
.logo{display:flex;align-items:center}
.logo-img{height:38px;width:auto;display:block}
.nav{display:flex;align-items:center;gap:0}
.nav-link{font-size:.82rem;font-weight:400;letter-spacing:.03em;color:var(--cream-mid);padding:.5rem 1.15rem;position:relative;transition:color .4s var(--ease)}
.nav-link:hover,.nav-link.active{color:var(--cream)}
.nav-link::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%) scaleX(0);width:18px;height:1px;background:var(--gold);transition:transform .4s var(--ease)}
.nav-link:hover::after,.nav-link.active::after{transform:translateX(-50%) scaleX(1)}

/* Dropdown */
.dropdown{position:relative}
.dropdown-arrow{width:10px;height:10px;margin-left:3px;transition:transform .4s var(--ease)}
.dropdown:hover .dropdown-arrow{transform:rotate(180deg)}
.dropdown-menu{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(8px);opacity:0;visibility:hidden;pointer-events:none;min-width:260px;background:var(--bg3);border:1px solid var(--border);border-radius:14px;padding:.6rem;transition:all .4s var(--ease);box-shadow:0 20px 60px rgba(0,0,0,.45);padding-top:1rem}
.dropdown-menu::before{content:'';position:absolute;top:-20px;left:0;right:0;height:20px;background:transparent}
.dropdown:hover .dropdown-menu{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}
.dropdown-cat{font-size:.65rem;font-weight:600;letter-spacing:.13em;text-transform:uppercase;color:var(--gold);padding:.45rem .7rem .3rem}
.dropdown-link{display:block;padding:.5rem .7rem;font-size:.86rem;font-weight:300;color:var(--cream-mid);border-radius:8px;transition:all .3s var(--ease)}
.dropdown-link:hover{background:var(--gold-dim);color:var(--cream)}

/* Nested Dropdown (Mega Menu) */
.dropdown-item{position:relative}
.dropdown-item.has-submenu::after{content:'›';position:absolute;right:.7rem;top:50%;transform:translateY(-50%);color:var(--gold);font-size:1.1rem}
.dropdown-submenu{position:absolute;top:0;left:100%;transform:translateX(-8px);opacity:0;visibility:hidden;pointer-events:none;min-width:220px;background:var(--bg3);border:1px solid var(--border);border-radius:14px;padding:.6rem;transition:all .3s var(--ease);box-shadow:0 20px 60px rgba(0,0,0,.45)}
.dropdown-submenu::before{content:'';position:absolute;top:0;bottom:0;left:-20px;width:20px;background:transparent}
.dropdown-item:hover .dropdown-submenu{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(0)}
.dropdown-submenu .dropdown-link{font-size:.82rem;padding:.4rem .7rem}
.header-cta{font-size:.78rem;font-weight:400;letter-spacing:.04em;color:var(--bg);background:var(--gold);padding:.55rem 1.4rem;border-radius:100px;transition:all .4s var(--ease)}
.header-cta:hover{background:var(--gold-hover);transform:translateY(-1px)}

/* Mobile */
.hamburger{display:none;flex-direction:column;gap:5px;padding:8px;z-index:201}
.hamburger span{display:block;width:22px;height:1.5px;background:var(--cream);transition:all .4s var(--ease)}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(4px,5px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(4px,-5px)}
.mobile-nav{position:fixed;inset:0;z-index:200;background:var(--bg);display:flex;flex-direction:column;justify-content:center;align-items:center;gap:1.8rem;opacity:0;visibility:hidden;transition:all .6s var(--ease);padding:2rem}
.mobile-nav.open{opacity:1;visibility:visible}
.mobile-nav-close{position:absolute;top:1.5rem;right:1.5rem;width:44px;height:44px;display:flex;align-items:center;justify-content:center;background:var(--bg3);border:1px solid var(--border);border-radius:50%;color:var(--cream);font-size:1.5rem;transition:all .3s var(--ease);z-index:202}
.mobile-nav-close:hover{background:var(--gold-dim);border-color:var(--gold);color:var(--gold)}
.mobile-nav a{font-family:var(--ff-serif);font-size:2rem;font-weight:300;color:var(--cream-mid);transition:color .3s}
.mobile-nav a:hover{color:var(--cream)}
.mobile-nav .mob-cat{font-size:.65rem;font-family:var(--ff-sans);font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:var(--gold);margin-top:.5rem}
.mobile-nav .mob-sub{font-family:var(--ff-sans);font-size:1rem;font-weight:300;color:var(--cream-dim)}

/* Mobile Accordion Menu */
.mob-dropdown{position:relative}
.mob-dropdown-toggle{display:flex;align-items:center;justify-content:center;width:100%;font-family:var(--ff-serif);font-size:2rem;font-weight:300;color:var(--cream-mid);background:none;border:none;padding:0;cursor:pointer;transition:color .3s}
.mob-dropdown-toggle:hover{color:var(--cream)}
.mob-dropdown-arrow{margin-left: 20px;width:16px;height:16px;transition:transform .3s var(--ease);color:var(--gold)}
.mob-dropdown.open .mob-dropdown-arrow{transform:rotate(180deg)}
.mob-dropdown-menu{max-height:0;overflow:hidden;transition:max-height .4s var(--ease),padding .4s var(--ease);padding-left:1.5rem}
.mob-dropdown.open .mob-dropdown-menu{max-height:500px;padding-top:1rem;padding-bottom:1rem}
.mob-dropdown-item{display:block;font-family:var(--ff-sans);font-size:1.1rem;font-weight:300;color:var(--cream-dim);padding:.5rem 0;transition:color .3s}
.mob-dropdown-item:hover{color:var(--cream)}
.mob-dropdown-subitem{display:block;font-family:var(--ff-sans);font-size:.95rem;font-weight:300;color:var(--dim);padding:.35rem 0 .35rem 1.5rem;transition:color .3s}
.mob-dropdown-subitem:hover{color:var(--cream-mid)}
.mob-dropdown-submenu{max-height:0;overflow:hidden;transition:max-height .3s var(--ease),padding .3s var(--ease);padding-left:1rem}
.mob-dropdown-item.open + .mob-dropdown-submenu{max-height:300px;padding-top:.5rem;padding-bottom:.5rem}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;gap:.7rem;font-family:var(--ff-sans);font-size:.82rem;font-weight:400;letter-spacing:.05em;padding:.9rem 2rem;border-radius:100px;transition:all .4s var(--ease);position:relative}
.btn-primary{background:var(--gold);color:var(--bg)}
.btn-primary:hover{background:var(--gold-hover);transform:translateY(-2px);box-shadow:0 8px 30px rgba(200,169,126,.22)}
.btn-outline{border:1px solid var(--border-h);color:var(--cream)}
.btn-outline:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-2px)}
.btn-ghost{color:var(--gold);padding:0;border-radius:0}
.btn-ghost:hover{color:var(--gold-hover)}
.btn-arrow{width:15px;height:15px;transition:transform .4s var(--ease)}
.btn:hover .btn-arrow{transform:translateX(4px)}

/* ===== PAGE MANAGEMENT ===== */
.page{display:none}
.page.active{display:block}

/* ===== HERO ===== */
.hero{min-height:100vh;display:flex;align-items:center;position:relative;overflow:hidden;padding-top:var(--header-h)}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;opacity:.4;filter:brightness(.55);transition:transform 12s linear}
.hero-bg-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(11,10,8,.25) 0%,rgba(11,10,8,.55) 50%,rgba(11,10,8,1) 100%)}
.hero-content{position:relative;z-index:1;width:100%;max-width:1280px;margin:0 auto;padding:clamp(3rem,6vw,6rem) clamp(1.25rem,4vw,3rem)}
.hero-content .label{margin-bottom:1.4rem}
.hero-content h1{margin-bottom:1.8rem}
.hero-content p{font-size:clamp(1rem,1.15vw,1.15rem);margin-bottom:2.5rem;max-width:520px}
.hero-content .label{margin-bottom:1.4rem}
.hero-content h1{margin-bottom:1.8rem}
.hero-content p{font-size:clamp(1rem,1.15vw,1.15rem);margin-bottom:2.5rem;max-width:520px}
.hero-actions{display:flex;align-items:center;gap:1.2rem;flex-wrap:wrap}
.scroll-indicator{position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:.6rem;z-index:1}
.scroll-indicator span{font-size:.65rem;letter-spacing:.16em;text-transform:uppercase;color:var(--dim)}
.scroll-line{width:1px;height:44px;background:var(--border);position:relative;overflow:hidden}
.scroll-line::after{content:'';position:absolute;top:-100%;left:0;width:100%;height:100%;background:var(--gold);animation:scrollAnim 2.2s var(--ease) infinite}
@keyframes scrollAnim{0%{top:-100%}100%{top:100%}}

/* ===== MARQUEE ===== */
.marquee{overflow:hidden;white-space:nowrap;padding:clamp(1rem,2vw,1.5rem) 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.marquee-track{display:inline-flex;animation:marqueeScroll 35s linear infinite}
.marquee-item{font-family:var(--ff-serif);font-size:clamp(1.4rem,2.8vw,2.4rem);font-weight:300;color:var(--dim);white-space:nowrap;padding:0 clamp(1.5rem,3vw,2.5rem);display:flex;align-items:center;gap:clamp(1.5rem,3vw,2.5rem)}
.marquee-item::after{content:'◆';font-size:.4em;color:var(--gold);opacity:.6}
@keyframes marqueeScroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ===== SECTION HEADERS ===== */
.sec-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:clamp(2rem,4vw,3.5rem);gap:2rem}
.sec-header-left{max-width:650px}
.sec-header .label{margin-bottom:.8rem}
.sec-header h2{margin-bottom:.8rem}

/* ===== PRODUCT CARDS ===== */
.products-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(.8rem,1.2vw,1.2rem)}
.p-card{position:relative;overflow:hidden;border-radius:14px;aspect-ratio:4/5;cursor:pointer;display:block}
.p-card.featured{grid-column:1/-1;aspect-ratio:21/9}
.p-card-img{position:absolute;inset:0}
.p-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 1.4s var(--ease)}
.p-card:hover .p-card-img img{transform:scale(1.07)}
.p-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(11,10,8,.88) 0%,rgba(11,10,8,.08) 55%,transparent 100%);transition:background .8s var(--ease)}
.p-card:hover .p-card-overlay{background:linear-gradient(to top,rgba(11,10,8,.92) 0%,rgba(11,10,8,.25) 60%,rgba(11,10,8,.08) 100%)}
.p-card-content{position:absolute;bottom:0;left:0;right:0;padding:clamp(1.2rem,2vw,2rem);z-index:1}
.p-card-cat{font-family:var(--ff-sans);font-size:.68rem;font-weight:500;letter-spacing:.13em;text-transform:uppercase;color:var(--gold);margin-bottom:.4rem}
.p-card-name{font-family:var(--ff-serif);font-size:clamp(1.2rem,1.8vw,1.65rem);font-weight:400;margin-bottom:.35rem}
.p-card-price{font-family:var(--ff-sans);font-size:.92rem;font-weight:300;color:var(--gold);margin-bottom:.8rem}
.p-card-link{display:inline-flex;align-items:center;gap:.4rem;font-size:.78rem;font-weight:400;letter-spacing:.04em;color:var(--cream);opacity:0;transform:translateY(8px);transition:all .6s var(--ease)}
.p-card:hover .p-card-link{opacity:1;transform:translateY(0)}
.arrow-sm{width:14px;height:14px}

/* ===== VALUE CARDS ===== */
.vals-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(.8rem,1.2vw,1.2rem)}
.v-card{padding:clamp(1.8rem,2.5vw,2.5rem) clamp(1.5rem,2vw,2rem);background:var(--bg3);border:1px solid var(--border);border-radius:14px;transition:all .6s var(--ease);position:relative;overflow:hidden}
.v-card::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);opacity:0;transition:opacity .6s var(--ease)}
.v-card:hover::before{opacity:1}
.v-card:hover{border-color:var(--border-h);transform:translateY(-4px)}
.v-card-icon{width:40px;height:40px;margin-bottom:1.5rem;color:var(--gold)}
.v-card h4{margin-bottom:.6rem}
.v-card p{font-size:.88rem;color:var(--cream-dim)}

/* ===== STATS ===== */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;padding:clamp(2.5rem,4vw,3.5rem) 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.stat{text-align:center}
.stat-num{font-family:var(--ff-serif);font-size:clamp(2.2rem,3.5vw,3rem);font-weight:300;color:var(--gold);line-height:1;margin-bottom:.35rem}
.stat-label{font-size:.78rem;font-weight:300;color:var(--cream-dim);letter-spacing:.02em}

/* ===== ABOUT STORY ===== */
.story{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2.5rem,5vw,5rem);align-items:center}
.story-img{border-radius:14px;overflow:hidden;aspect-ratio:4/5}
.story-img img{width:100%;height:100%;object-fit:cover;transition:transform 1.2s var(--ease)}
.story-img:hover img{transform:scale(1.04)}
.story-text .label{margin-bottom:.6rem}
.story-text h2{margin:.4rem 0 1rem}
.story-text p+p{margin-top:.8rem}

/* ===== TESTIMONIALS ===== */
.test-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(.8rem,1.2vw,1.2rem)}
.test-card{background:var(--bg3);border:1px solid var(--border);border-radius:14px;padding:clamp(1.8rem,2.5vw,2.5rem);transition:border-color .5s var(--ease)}
.test-card:hover{border-color:var(--border-h)}
.test-quote{font-family:var(--ff-serif);font-size:clamp(1.05rem,1.3vw,1.25rem);font-style:italic;font-weight:300;color:var(--cream);line-height:1.65;margin-bottom:1.8rem;position:relative;padding-top:2.5rem}
.test-quote::before{content:'"';position:absolute;top:0;left:0;font-size:3.5rem;color:var(--gold);font-family:var(--ff-serif);line-height:1;opacity:.4}
.test-author{display:flex;align-items:center;gap:.8rem}
.test-avatar{width:44px;height:44px;border-radius:50%;object-fit:cover;border:2px solid var(--gold-dim)}
.test-name{font-weight:500;font-size:.88rem;color:var(--cream)}
.test-role{font-size:.76rem;color:var(--cream-dim)}

/* ===== CTA BANNER ===== */
.cta-banner{background:var(--bg3);border:1px solid var(--border);border-radius:20px;padding:clamp(3rem,5vw,5rem) clamp(2rem,4vw,4rem);text-align:center;position:relative;overflow:hidden}
.cta-banner::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent)}
.cta-banner h2{margin-bottom:1rem}
.cta-banner p{margin:0 auto 2rem;text-align:center}
.cta-actions{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap}

/* ===== FAQ ===== */
.faq-list{max-width:760px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--border)}
.faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;padding:1.3rem 0;font-family:var(--ff-sans);font-size:1rem;font-weight:400;color:var(--cream);text-align:left;cursor:pointer;transition:color .3s}
.faq-q:hover{color:var(--gold)}
.faq-icon{width:22px;height:22px;flex-shrink:0;color:var(--gold);transition:transform .4s var(--ease)}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .6s var(--ease),padding .6s var(--ease)}
.faq-item.open .faq-a{max-height:300px;padding-bottom:1.3rem}
.faq-a p{font-size:.92rem;color:var(--cream-dim);line-height:1.75}

/* ===== CONTACT FORM ===== */
.contact-layout{display:grid;grid-template-columns:1fr 1fr;gap:clamp(3rem,6vw,6rem);align-items:start}
.contact-form{max-width:600px}
.form-group{margin-bottom:1.2rem}
.form-label{display:block;font-size:.78rem;font-weight:400;letter-spacing:.04em;color:var(--cream-mid);margin-bottom:.4rem}
.form-input,.form-textarea,.form-select{width:100%;padding:.85rem 1.1rem;font-family:var(--ff-sans);font-size:.92rem;font-weight:300;color:var(--cream);background:var(--bg3);border:1px solid var(--border);border-radius:8px;transition:all .4s var(--ease);outline:none}
.form-input:focus,.form-textarea:focus,.form-select:focus{border-color:var(--gold);box-shadow:0 0 0 3px var(--gold-dim)}
.form-input::placeholder,.form-textarea::placeholder{color:var(--dim)}
.form-textarea{resize:vertical;min-height:140px}
.form-select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238A857C' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center;cursor:pointer}
.form-select option{background:var(--bg3);color:var(--cream)}
.form-success{display:none;padding:2rem;text-align:center;background:var(--gold-dim);border:1px solid rgba(200,169,126,.25);border-radius:14px}
.form-success.show{display:block}
.form-success h3{color:var(--gold);margin-bottom:.6rem}
.contact-info-item{margin-bottom:1.8rem}
.contact-info-item h4{font-family:var(--ff-sans);font-size:.68rem;font-weight:600;letter-spacing:.13em;text-transform:uppercase;color:var(--gold);margin-bottom:.35rem}
.contact-info-item p{font-size:.95rem;color:var(--cream-mid)}
.contact-info-item a{color:var(--cream);transition:color .3s}
.contact-info-item a:hover{color:var(--gold)}
.trust-box{margin-top:2.5rem;padding:1.8rem;background:var(--bg3);border:1px solid var(--border);border-radius:14px}
.trust-box h4{font-family:var(--ff-sans);font-size:.68rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:.8rem}
.trust-box p{font-size:.86rem;color:var(--cream-dim);margin-bottom:.5rem}
.trust-box p:last-child{margin-bottom:0}

/* ===== PRODUCT DETAIL ===== */
.pd-hero{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2.5rem,5vw,5rem);align-items:center;min-height:80vh;padding-top:calc(var(--header-h) + clamp(2rem,4vw,4rem))}
.pd-gallery{border-radius:14px;overflow:hidden;aspect-ratio:1;background:var(--bg3)}
.pd-gallery img{width:100%;height:100%;object-fit:cover}
.pd-gallery-wrap{display:flex;flex-direction:column;gap:.75rem}
.pd-gallery-main{border-radius:14px;overflow:hidden;aspect-ratio:1;background:var(--bg3)}
.pd-gallery-main img{width:100%;height:100%;object-fit:cover;transition:opacity .25s ease}
.pd-gallery-main img.fade{opacity:0}
.pd-gallery-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:.5rem}
.pd-thumb{border:none;padding:0;cursor:pointer;border-radius:8px;overflow:hidden;aspect-ratio:1;background:var(--bg3);outline:2px solid transparent;outline-offset:2px;transition:outline-color .2s}
.pd-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s}
.pd-thumb:hover img{transform:scale(1.06)}
.pd-thumb.active{outline-color:var(--gold)}
.pd-breadcrumb{font-size:.76rem;color:var(--cream-dim);margin-bottom:1rem}
.pd-breadcrumb a{color:var(--cream-dim);transition:color .3s}
.pd-breadcrumb a:hover{color:var(--gold)}
.pd-breadcrumb span{margin:0 .4rem;color:var(--dim)}
.pd-tag{display:inline-block;padding:.3rem .9rem;font-size:.68rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);border:1px solid var(--gold-dim);border-radius:100px;margin-bottom:1rem}
.pd-price{font-family:var(--ff-serif);font-size:1.7rem;font-weight:400;color:var(--gold);margin:0 0 1.5rem}
.pd-desc{margin-bottom:2rem}
.pd-desc p+p{margin-top:.7rem}
.pd-specs{border-top:1px solid var(--border);padding-top:1.5rem;margin-bottom:2rem}
.pd-specs h4{font-family:var(--ff-sans);font-size:.68rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem}
.spec-row{display:flex;justify-content:space-between;padding:.55rem 0;border-bottom:1px solid var(--border);font-size:.88rem}
.spec-label{color:var(--cream-dim)}
.spec-val{color:var(--cream);font-weight:400}

/* ===== PRODUCTS PAGE GRID ===== */
.prod-page-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(.8rem,1.2vw,1.2rem)}
.filter-bar{display:flex;gap:.6rem;margin-bottom:2.5rem;flex-wrap:wrap}
.filter-btn{padding:.5rem 1.15rem;font-size:.78rem;font-weight:400;letter-spacing:.03em;color:var(--cream-dim);border:1px solid var(--border);border-radius:100px;transition:all .3s var(--ease);cursor:pointer;background:transparent}
.filter-btn:hover,.filter-btn.active{border-color:var(--gold);color:var(--gold);background:var(--gold-dim)}

/* ===== PAGE HERO (sub pages) ===== */
.page-hero{padding:calc(var(--header-h) + clamp(3rem,5vw,5rem)) 0 clamp(2rem,3vw,3rem);text-align:center}
.page-hero h1{margin-bottom:1rem}
.page-hero p{margin:0 auto;text-align:center;max-width:540px}

/* ===== FOOTER ===== */
.footer{background:var(--bg2);border-top:1px solid var(--border);padding:clamp(3rem,5vw,4.5rem) 0 clamp(1.5rem,2vw,2rem)}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:clamp(2rem,3vw,3rem);padding-bottom:clamp(2.5rem,4vw,3.5rem);border-bottom:1px solid var(--border)}
.footer-brand p{margin-top:.8rem;font-size:.86rem;max-width:280px}
.footer-col h5{font-family:var(--ff-sans);font-size:.65rem;font-weight:600;letter-spacing:.13em;text-transform:uppercase;color:var(--gold);margin-bottom:1.1rem}
.footer-link{display:block;font-size:.86rem;font-weight:300;color:var(--cream-dim);padding:.25rem 0;transition:color .3s}
.footer-link:hover{color:var(--cream)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding-top:1.5rem}
.footer-copy{font-size:.76rem;color:var(--dim)}
.footer-socials{display:flex;gap:.7rem}
.social-link{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:1px solid var(--border);border-radius:50%;color:var(--cream-dim);transition:all .3s var(--ease)}
.social-link:hover{border-color:var(--gold);color:var(--gold)}
.social-link svg{width:14px;height:14px}

/* ===== SCROLL ANIMATIONS ===== */
.reveal{opacity:0;transform:translateY(35px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
.reveal.vis{opacity:1;transform:translateY(0)}
.reveal-d1{transition-delay:.1s}.reveal-d2{transition-delay:.2s}.reveal-d3{transition-delay:.3s}.reveal-d4{transition-delay:.4s}
.reveal-scale{opacity:0;transform:scale(.96);transition:opacity 1.1s var(--ease),transform 1.1s var(--ease)}
.reveal-scale.vis{opacity:1;transform:scale(1)}

/* ===== EMOTIONAL HOOK SECTION ===== */
.emotion-section{background:var(--bg2);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.emotion-inner{max-width:820px;margin:0 auto;text-align:center;display:flex;flex-direction:column;align-items:center}
.emotion-pre{font-family:var(--ff-serif);font-size:clamp(1rem,1.4vw,1.2rem);font-style:italic;color:var(--cream-dim);margin-bottom:1.25rem}
.emotion-h{font-size:clamp(2rem,4.5vw,3.6rem);line-height:1.1;letter-spacing:-.03em;margin-bottom:1.5rem}
.emotion-body{font-size:clamp(.95rem,1.1vw,1.1rem);color:var(--cream-mid);max-width:56ch;line-height:1.8}
.emotion-body strong{color:var(--cream);font-weight:500}

/* ===== 6-STEP JOURNEY ===== */
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,1.5vw,1.5rem);margin-top:3rem}
.step-card{display:block;padding:clamp(1.5rem,2.5vw,2.2rem);background:var(--bg3);border:1px solid var(--border);border-radius:14px;transition:border-color .35s var(--ease),background .35s var(--ease)}
.step-card:hover{border-color:var(--gold-dim);background:var(--bg4)}
.step-num{font-family:var(--ff-serif);font-size:3rem;font-weight:300;color:var(--gold);opacity:.35;line-height:1;margin-bottom:1rem;letter-spacing:-.04em}
.step-card h4{margin-bottom:.6rem;font-size:clamp(.95rem,1.2vw,1.15rem)}
.step-card p{font-size:.88rem;line-height:1.7;color:var(--cream-dim);max-width:none}

/* ===== TWO AUDIENCES ===== */
.audience-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1rem,2vw,2rem)}
.audience-card{padding:clamp(2rem,3.5vw,3.5rem);background:var(--bg3);border:1px solid var(--border);border-radius:14px}
.audience-card--alt{background:var(--bg2)}
.audience-card h3{margin:1rem 0 1.2rem;font-size:clamp(1.4rem,2vw,2rem)}
.audience-card p{max-width:none;font-size:clamp(.88rem,1vw,1rem)}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .products-grid,.test-grid{grid-template-columns:1fr}
  .p-card.featured{aspect-ratio:16/9}
  .vals-grid{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(2,1fr);gap:1.5rem}
  .contact-layout,.story,.pd-hero{grid-template-columns:1fr}
  .pd-hero{min-height:auto;padding-top:calc(var(--header-h) + 2rem)}
  .prod-page-grid{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr 1fr;gap:2rem}
  .sec-header{flex-direction:column;align-items:flex-start}
  .steps-grid{grid-template-columns:repeat(2,1fr)}
  .audience-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .nav,.header-cta{display:none}
  .hamburger{display:flex}
  .prod-page-grid{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:1rem;text-align:center}
  .hero-actions{flex-direction:column;align-items:flex-start}
  .scroll-indicator{display:none}
  .steps-grid{grid-template-columns:1fr}
}
