/* ==============================================
   BEADOVI — style.css
   Brand Colors: Clay #C0392B | Sand #E8D5B7
   Navy #1A2B4A | Jade #5D8A72 | Cream #FAF6EF
============================================== */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --clay:   #C0392B;
  --sand:   #E8D5B7;
  --navy:   #1A2B4A;
  --jade:   #5D8A72;
  --cream:  #FAF6EF;
  --gold:   #C9A030;
  --dark:   #1C1C1E;
  --gray:   #777777;
  --white:  #ffffff;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Montserrat', system-ui, sans-serif;
  --sh1: 0 2px 8px rgba(0,0,0,.08);
  --sh2: 0 8px 24px rgba(0,0,0,.12);
  --sh3: 0 20px 60px rgba(0,0,0,.18);
  --r4: 4px; --r12: 12px; --r20: 20px; --r99: 999px;
  --tr: all .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--cream); color: var(--dark); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--clay); border-radius: 3px; }

/* ──────────────────────────────────
   PRELOADER
────────────────────────────────── */
#pre {
  position: fixed; inset: 0; background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .7s, visibility .7s;
}
#pre.off { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-logo { width: 88px; height: 88px; object-fit: contain; border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; margin-bottom: 16px; }
.pre-name { font-family: var(--serif); color: var(--cream); font-size: 26px; letter-spacing: 4px; margin-bottom: 22px; }
.pre-beads { display: flex; gap: 10px; }
.pb { width: 11px; height: 11px; border-radius: 50%; background: var(--gold); animation: bb 1.4s ease-in-out infinite; }
.pb:nth-child(2) { animation-delay: .2s; background: var(--sand); }
.pb:nth-child(3) { animation-delay: .4s; background: var(--jade); }
.pb:nth-child(4) { animation-delay: .6s; background: var(--clay); }
.pb:nth-child(5) { animation-delay: .8s; background: var(--gold); }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes bb    { 0%,80%,100%{transform:translateY(0)} 40%{transform:translateY(-15px)} }

/* ──────────────────────────────────
   TOAST
────────────────────────────────── */
#toast-wrap { position: fixed; top: 88px; right: 18px; z-index: 8000; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast { background: #fff; border-radius: var(--r12); padding: 13px 16px; box-shadow: var(--sh3); display: flex; align-items: center; gap: 9px; min-width: 270px; animation: tin .4s ease; border-left: 4px solid var(--jade); font-size: 13px; font-weight: 500; pointer-events: all; }
.toast.err { border-color: var(--clay); }
@keyframes tin { from { opacity:0; transform:translateX(70px); } to { opacity:1; transform:none; } }

/* ── BACK TO TOP ── */
#btt { position: fixed; bottom: 26px; right: 26px; width: 44px; height: 44px; background: var(--clay); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--sh2); opacity: 0; transition: var(--tr); z-index: 400; font-size: 18px; }
#btt.on { opacity: 1; }
#btt:hover { background: #a93226; transform: translateY(-3px); }

/* ── COOKIE ── */
.cookie { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); padding: 14px 5%; display: flex; align-items: center; justify-content: space-between; gap: 18px; z-index: 600; transform: translateY(100%); transition: transform .4s; }
.cookie.on { transform: none; }
.cookie p { font-size: 12px; color: rgba(250,246,239,.8); }
.cookie a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }

/* ──────────────────────────────────
   NAVBAR
────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 13px 5%; display: flex; align-items: center;
  justify-content: space-between; transition: var(--tr);
}
#nav.scrolled {
  background: rgba(250,246,239,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--sh1); padding: 9px 5%;
}
.nav-logo { display: flex; align-items: center; gap: 9px; cursor: pointer; }
.nav-logo img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; }
/* Transparent navbar (over dark hero) — cream/white text */
.nav-logo-name { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--cream); letter-spacing: 2px; transition: var(--tr); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream); position: relative; transition: var(--tr); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--clay); transition: width .3s; }
.nav-links a:hover::after, .nav-links a.act::after { width: 100%; }
.nav-links a:hover { color: var(--clay); }
.nav-links a.act { color: var(--clay); }
.nav-acts { display: flex; align-items: center; gap: 12px; }
.nic { position: relative; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--tr); color: var(--cream); cursor: pointer; }
.nic:hover { background: rgba(255,255,255,.15); color: var(--clay); }
.nic svg { width: 18px; height: 18px; }
.cc { position: absolute; top: 2px; right: 2px; width: 15px; height: 15px; background: var(--clay); color: #fff; border-radius: 50%; font-size: 8px; font-weight: 700; display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--tr); }
.cc.on { opacity: 1; }
.ham { display: none; flex-direction: column; gap: 5px; padding: 7px; cursor: pointer; }
.ham span { display: block; width: 21px; height: 2px; background: var(--cream); border-radius: 2px; transition: var(--tr); }
.ham.act span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.act span:nth-child(2) { opacity: 0; }
.ham.act span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Scrolled navbar (light background) — switch back to navy */
#nav.scrolled .nav-logo-name { color: var(--navy); }
#nav.scrolled .nav-links a { color: var(--navy); }
#nav.scrolled .nav-links a:hover { color: var(--clay); }
#nav.scrolled .nav-links a.act { color: var(--clay); }
#nav.scrolled .nic { color: var(--navy); }
#nav.scrolled .nic:hover { background: var(--sand); color: var(--clay); }
#nav.scrolled .ham span { background: var(--navy); }

/* ── MOBILE MENU ── */
.mob-menu { position: fixed; top: 0; right: -100%; width: 290px; height: 100vh; background: var(--navy); z-index: 999; padding: 76px 28px 28px; transition: right .4s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; gap: 26px; }
.mob-menu.on { right: 0; }
.mob-menu ul { display: flex; flex-direction: column; gap: 18px; }
.mob-menu a { font-family: var(--serif); font-size: 21px; color: var(--cream); transition: var(--tr); }
.mob-menu a:hover { color: var(--gold); }
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 998; }
.overlay.on { display: block; }

/* ──────────────────────────────────
   CART DRAWER
────────────────────────────────── */
.cart-dr { position: fixed; top: 0; right: -410px; width: 410px; height: 100vh; background: #fff; z-index: 1001; box-shadow: -8px 0 32px rgba(0,0,0,.15); transition: right .4s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.cart-dr.on { right: 0; }
.cart-head { padding: 20px 22px; border-bottom: 1px solid var(--sand); display: flex; align-items: center; justify-content: space-between; }
.cart-head h3 { font-family: var(--serif); font-size: 17px; color: var(--navy); }
.cart-cls { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--tr); cursor: pointer; font-size: 16px; }
.cart-cls:hover { background: var(--sand); }
.cart-body { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 12px; color: var(--gray); text-align: center; }
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f0ebe3; }
.ci-img { width: 68px; height: 68px; border-radius: var(--r12); background: var(--sand); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 26px; }
.ci-info { flex: 1; }
.ci-name { font-weight: 600; font-size: 12px; margin-bottom: 3px; color: var(--navy); }
.ci-price { color: var(--clay); font-weight: 700; font-size: 13px; }
.ci-qty { display: flex; align-items: center; gap: 9px; margin-top: 7px; }
.qb { width: 25px; height: 25px; border: 1px solid var(--sand); border-radius: var(--r4); display: flex; align-items: center; justify-content: center; font-size: 13px; cursor: pointer; background: #fff; transition: var(--tr); }
.qb:hover { background: var(--sand); }
.qv { font-weight: 600; font-size: 12px; min-width: 16px; text-align: center; }
.ci-rm { font-size: 10px; color: var(--gray); cursor: pointer; transition: var(--tr); }
.ci-rm:hover { color: var(--clay); }
.cart-foot { padding: 18px 20px; border-top: 1px solid var(--sand); }
.cart-tot { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cart-tot span:first-child { font-size: 13px; color: var(--gray); }
.cart-tot span:last-child { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--navy); }

/* ──────────────────────────────────
   BUTTONS
────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 12px 26px; border-radius: var(--r99); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; transition: var(--tr); cursor: pointer; border: none; }
.btn-p  { background: var(--clay); color: #fff; }
.btn-p:hover  { background: #a93226; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192,57,43,.35); }
.btn-s  { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-s:hover  { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-g  { background: var(--gold); color: #fff; }
.btn-g:hover  { background: #b8911f; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,160,48,.35); }
.btn-oc { background: transparent; color: var(--cream); border: 1.5px solid var(--cream); }
.btn-oc:hover { background: var(--cream); color: var(--navy); }
.btn-w  { width: 100%; }

/* ──────────────────────────────────
   PAGES
────────────────────────────────── */
.page { display: none; min-height: 100vh; }
.page.act { display: block; }
.ph { background: var(--navy); padding: 128px 5% 68px; text-align: center; }
.ph h1 { font-family: var(--serif); font-size: clamp(32px,5vw,58px); color: #fff; font-weight: 700; margin-bottom: 10px; }
.ph p  { color: rgba(250,246,239,.7); font-size: 14px; }
.bc { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 11px; color: rgba(250,246,239,.45); margin-top: 10px; }
.bc span { color: var(--gold); }

/* ── SECTION ── */
.sec { padding: 88px 5%; max-width: 1400px; margin: 0 auto; }
.sh  { text-align: center; margin-bottom: 52px; }
.stag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--clay); margin-bottom: 12px; }
.st   { font-family: var(--serif); font-size: clamp(26px,4vw,42px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 10px; }
.ss   { font-size: 14px; color: var(--gray); max-width: 480px; margin: 0 auto; line-height: 1.7; }

/* ── REVEAL ── */
.rev { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s ease; }
.rev.vis { opacity: 1; transform: none; }

/* ──────────────────────────────────
   HERO
────────────────────────────────── */
#hero { position: relative; min-height: 100vh; background: var(--navy); display: flex; align-items: center; overflow: hidden; }
.h-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(93,138,114,.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(192,57,43,.12) 0%, transparent 40%), radial-gradient(ellipse at 60% 80%, rgba(201,160,48,.1) 0%, transparent 40%); }
.h-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ptcl { position: absolute; border-radius: 50%; opacity: .15; animation: flt linear infinite; }
@keyframes flt { 0%{transform:translateY(100vh) rotate(0);opacity:0} 10%{opacity:.15} 90%{opacity:.15} 100%{transform:translateY(-100px) rotate(720deg);opacity:0} }
.h-inner { position: relative; z-index: 2; padding: 118px 5% 68px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; max-width: 1400px; margin: 0 auto; width: 100%; }
.h-badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; background: rgba(201,160,48,.15); border: 1px solid rgba(201,160,48,.3); border-radius: var(--r99); color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.h-title { font-family: var(--serif); font-size: clamp(38px,5.5vw,68px); font-weight: 700; color: var(--cream); line-height: 1.1; margin-bottom: 18px; }
.h-title .ac { color: var(--gold); }
.h-sub { font-size: 14px; color: rgba(250,246,239,.7); line-height: 1.75; margin-bottom: 34px; max-width: 440px; }
.h-acts { display: flex; gap: 12px; flex-wrap: wrap; }
.h-stats { display: flex; gap: 34px; margin-top: 46px; padding-top: 34px; border-top: 1px solid rgba(250,246,239,.12); }
.hs-num { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--gold); }
.hs-lbl { font-size: 10px; color: rgba(250,246,239,.5); letter-spacing: 1px; text-transform: uppercase; }
.h-vis { display: flex; align-items: center; justify-content: center; }
.h-logo-wrap { position: relative; width: 340px; height: 340px; }
.h-logo-main { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 20px 60px rgba(0,0,0,.45)); animation: hfloat 6s ease-in-out infinite; }
@keyframes hfloat { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-18px) rotate(2deg)} }
.orbit  { position: absolute; inset: -38px; border: 1px solid rgba(201,160,48,.15); border-radius: 50%; animation: orb 20s linear infinite; }
.orbit2 { position: absolute; inset: -76px; border: 1px solid rgba(250,246,239,.07); border-radius: 50%; animation: orb 30s linear infinite reverse; }
@keyframes orb { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.ob { position: absolute; width: 12px; height: 12px; border-radius: 50%; top: -6px; left: 50%; margin-left: -6px; }

/* ── MARQUEE ── */
.mq { background: var(--clay); padding: 13px 0; overflow: hidden; }
.mq-track { display: flex; animation: mq 24s linear infinite; white-space: nowrap; }
.mqi { display: inline-flex; align-items: center; gap: 13px; padding: 0 26px; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; }
.mqd { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── TRUST ── */
.trust { background: #fff; padding: 42px 5%; }
.trust-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.ti { display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center; }
.ti-ico { width: 50px; height: 50px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.ti-title { font-weight: 700; font-size: 12px; color: var(--navy); }
.ti-txt { font-size: 10px; color: var(--gray); }

/* ── COLLECTIONS ── */
.cg { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.cc-card { position: relative; border-radius: var(--r20); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; transition: var(--tr); }
.cc-card:first-child { grid-row: span 2; aspect-ratio: auto; }
.cc-bg { position: absolute; inset: 0; transition: transform .6s ease; }
.cc-card:hover .cc-bg { transform: scale(1.06); }
.cc1 { background: linear-gradient(135deg, var(--navy) 0%, #2c3e6b 100%); }
.cc2 { background: linear-gradient(135deg, var(--jade) 0%, #3d6b52 100%); }
.cc3 { background: linear-gradient(135deg, var(--clay) 0%, #922b21 100%); }
.cc4 { background: linear-gradient(135deg, #8B7355 0%, #6b5a42 100%); }
.cc-pat { position: absolute; inset: 0; opacity: .07; background-image: radial-gradient(circle,#fff 1px,transparent 1px); background-size: 27px 27px; }
.cc-cnt { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%); color: #fff; }
.cc-tag { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 5px; }
.cc-name { font-family: var(--serif); font-size: 21px; font-weight: 700; margin-bottom: 5px; }
.cc-cnt2 { font-size: 11px; color: rgba(255,255,255,.65); }
.cc-arr { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; transition: var(--tr); }
.cc-card:hover .cc-arr { opacity: 1; }

/* ── PRODUCTS ── */
.prods { background: var(--cream); padding: 88px 5%; }
.prods-in { max-width: 1400px; margin: 0 auto; }
.ftabs { display: flex; gap: 7px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.ftab { padding: 8px 20px; border-radius: var(--r99); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border: 1.5px solid var(--sand); color: var(--gray); background: #fff; cursor: pointer; transition: var(--tr); }
.ftab:hover, .ftab.act { background: var(--navy); color: #fff; border-color: var(--navy); }
.pg { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 24px; }
.pc { background: #fff; border-radius: var(--r20); overflow: hidden; transition: var(--tr); position: relative; }
.pc:hover { transform: translateY(-7px); box-shadow: var(--sh3); }
.pc-img { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--sand); }
.pc-em { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 64px; background: linear-gradient(135deg,var(--sand),#f0e6d3); transition: transform .6s ease; }
.pc:hover .pc-em { transform: scale(1.06); }
.pc-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 4px; }
.bdg { padding: 3px 9px; border-radius: var(--r99); font-size: 8px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.bnew  { background: var(--jade); color: #fff; }
.bhot  { background: var(--clay); color: #fff; }
.bsale { background: var(--gold); color: #fff; }
.pc-acts { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 6px; opacity: 0; transition: var(--tr); }
.pc:hover .pc-acts { opacity: 1; }
.pac { width: 36px; height: 36px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--tr); box-shadow: var(--sh1); color: var(--navy); }
.pac:hover { background: var(--clay); color: #fff; }
.pac svg { width: 16px; height: 16px; }
.pac.wl { background: var(--clay); color: #fff; }
.pc-qadd { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; background: var(--navy); color: #fff; text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transform: translateY(100%); transition: var(--tr); cursor: pointer; }
.pc:hover .pc-qadd { transform: none; }
.pc-qadd:hover { background: var(--clay); }
.pc-info { padding: 16px; }
.pc-cat  { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--clay); margin-bottom: 4px; font-weight: 700; }
.pc-name { font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 7px; line-height: 1.3; }
.pc-pr-row { display: flex; align-items: center; justify-content: space-between; }
.pc-pr     { font-size: 16px; font-weight: 700; color: var(--clay); }
.pc-pr-old { font-size: 11px; color: var(--gray); text-decoration: line-through; margin-left: 4px; }
.pc-stars  { color: var(--gold); font-size: 10px; }

/* ── STORY ── */
.story { background: var(--navy); padding: 88px 5%; }
.story-in { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.s-vis { position: relative; }
.s-img { border-radius: var(--r20); width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, rgba(93,138,114,.3), rgba(201,160,48,.2)); display: flex; align-items: center; justify-content: center; }
.s-logo { width: 55%; filter: brightness(0) invert(1); opacity: .85; }
.s-fc { position: absolute; background: #fff; border-radius: var(--r12); padding: 16px; box-shadow: var(--sh3); }
.s-fc1 { bottom: -18px; right: -18px; width: 170px; }
.s-fc2 { top: -18px; left: -18px; width: 145px; }
.s-fnum { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--clay); }
.s-flbl { font-size: 10px; color: var(--gray); }
.s-cnt { color: var(--cream); }
.s-tag2 { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.s-title { font-family: var(--serif); font-size: clamp(26px,3.5vw,42px); font-weight: 700; color: var(--cream); line-height: 1.2; margin-bottom: 18px; }
.s-txt   { font-size: 13px; color: rgba(250,246,239,.7); line-height: 1.8; margin-bottom: 12px; }
.s-vals  { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin: 24px 0; }
.sv { display: flex; align-items: flex-start; gap: 9px; }
.sv-ico { width: 36px; height: 36px; background: rgba(201,160,48,.15); border-radius: var(--r4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; }
.sv-h4 { font-size: 12px; font-weight: 700; color: var(--cream); margin-bottom: 2px; }
.sv-p  { font-size: 10px; color: rgba(250,246,239,.5); }

/* ── TESTIMONIALS ── */
.testi { background: var(--sand); padding: 88px 5%; }
.testi-in { max-width: 1400px; margin: 0 auto; }
.tg { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tc { background: #fff; border-radius: var(--r20); padding: 26px; transition: var(--tr); }
.tc:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.tq { font-size: 40px; color: var(--sand); font-family: Georgia,serif; line-height: 1; margin-bottom: 10px; }
.t-stars { color: var(--gold); font-size: 11px; margin-bottom: 9px; }
.t-txt   { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.t-auth  { display: flex; align-items: center; gap: 9px; }
.t-av    { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.t-name  { font-weight: 700; font-size: 12px; color: var(--navy); }
.t-loc   { font-size: 10px; color: var(--gray); }

/* ── NEWSLETTER ── */
.nl { background: var(--jade); padding: 68px 5%; text-align: center; }
.nl-in { max-width: 540px; margin: 0 auto; }
.nl-ico   { font-size: 34px; margin-bottom: 12px; }
.nl-title { font-family: var(--serif); font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 9px; }
.nl-sub   { color: rgba(255,255,255,.8); margin-bottom: 26px; font-size: 13px; }
.nl-form  { display: flex; gap: 9px; max-width: 440px; margin: 0 auto; }
.nl-input { flex: 1; padding: 12px 16px; border-radius: var(--r99); border: none; font-size: 13px; background: #fff; }
.nl-ok { display: none; color: #fff; font-weight: 600; font-size: 14px; padding: 14px; background: rgba(255,255,255,.2); border-radius: var(--r12); }

/* ──────────────────────────────────
   SHOP PAGE
────────────────────────────────── */
.shop-lay { display: grid; grid-template-columns: 240px 1fr; gap: 32px; max-width: 1400px; margin: 0 auto; padding: 52px 5%; }
.sidebar  { position: sticky; top: 88px; height: fit-content; }
.sb-sec   { margin-bottom: 26px; }
.sb-tit   { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; padding-bottom: 9px; border-bottom: 1px solid var(--sand); }
.sb-opt   { display: flex; align-items: center; gap: 7px; padding: 6px 0; cursor: pointer; font-size: 12px; color: var(--gray); transition: var(--tr); }
.sb-opt:hover { color: var(--clay); }
.sb-opt input[type=checkbox] { accent-color: var(--clay); }
.pr { width: 100%; accent-color: var(--clay); }
.pr-vals { display: flex; justify-content: space-between; font-size: 11px; color: var(--gray); margin-top: 5px; }
.swatches { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 7px; }
.sw { width: 24px; height: 24px; border-radius: 50%; cursor: pointer; transition: var(--tr); }
.sw:hover { transform: scale(1.2); }

/* ── ABOUT PAGE ── */
.ab-cnt { max-width: 1400px; margin: 0 auto; padding: 52px 5%; }
.ab-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.ab-img  { width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg,var(--navy),#2c4a7c); border-radius: var(--r20); display: flex; align-items: center; justify-content: center; }
.ab-logo { width: 55%; filter: brightness(0) invert(1); opacity: .85; }
.ab-txt h2 { font-family: var(--serif); font-size: 36px; color: var(--navy); margin-bottom: 18px; }
.ab-txt p  { font-size: 13px; color: var(--gray); line-height: 1.8; margin-bottom: 12px; }
.ab-stats  { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; background: var(--navy); border-radius: var(--r20); padding: 40px; margin-bottom: 64px; }
.abs     { text-align: center; }
.abs-num { font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--gold); display: block; }
.abs-lbl { font-size: 11px; color: rgba(250,246,239,.65); letter-spacing: 1px; }
.vals-g  { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 64px; }
.vc { background: #fff; border-radius: var(--r20); padding: 32px 26px; text-align: center; box-shadow: var(--sh1); transition: var(--tr); }
.vc:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.vc-ico { font-size: 40px; margin-bottom: 16px; }
.vc h3  { font-family: var(--serif); font-size: 18px; color: var(--navy); margin-bottom: 9px; }
.vc p   { font-size: 12px; color: var(--gray); line-height: 1.7; }

/* ── CONTACT PAGE ── */
.ct-cnt { max-width: 1200px; margin: 0 auto; padding: 52px 5%; }
.ct-g   { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; }
.ct-info { background: var(--navy); border-radius: var(--r20); padding: 40px; color: #fff; height: fit-content; }
.ct-info h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 9px; }
.ct-info > p { font-size: 12px; color: rgba(255,255,255,.65); margin-bottom: 32px; line-height: 1.7; }
.cd { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.cd-ico { width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: var(--r4); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.cd-lbl { font-size: 9px; color: rgba(255,255,255,.4); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; }
.cd-val { font-size: 13px; color: #fff; }
.ct-form { background: #fff; border-radius: var(--r20); padding: 40px; box-shadow: var(--sh2); }
.ct-form h3 { font-family: var(--serif); font-size: 24px; color: var(--navy); margin-bottom: 7px; }
.ct-form > p { font-size: 12px; color: var(--gray); margin-bottom: 26px; }
.fg { margin-bottom: 16px; }
.fl { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.fi, .fs, .fta { width: 100%; padding: 12px 14px; border: 1.5px solid var(--sand); border-radius: var(--r12); font-size: 13px; color: var(--dark); background: #fff; transition: var(--tr); }
.fi:focus, .fs:focus, .fta:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(192,57,43,.1); }
.fta { resize: vertical; min-height: 100px; }
.fr2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── TRACK PAGE ── */
.tr-cnt { max-width: 760px; margin: 0 auto; padding: 52px 5%; }
.tr-card { background: #fff; border-radius: var(--r20); padding: 40px; box-shadow: var(--sh2); margin-bottom: 24px; }
.tr-card h3 { font-family: var(--serif); font-size: 24px; color: var(--navy); margin-bottom: 7px; }
.tr-card > p { font-size: 12px; color: var(--gray); margin-bottom: 26px; }
.tr-res { display: none; background: #fff; border-radius: var(--r20); padding: 32px; box-shadow: var(--sh2); }
.tr-res.on { display: block; }
.tr-ig { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 26px; padding: 18px; background: var(--cream); border-radius: var(--r12); }
.tri { text-align: center; }
.tri-lbl { font-size: 9px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.tri-val { font-weight: 700; font-size: 12px; color: var(--navy); }
.tl-step { display: flex; gap: 16px; position: relative; padding-bottom: 26px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before { content: ''; position: absolute; left: 18px; top: 40px; bottom: 0; width: 2px; background: var(--sand); }
.tl-step:last-child::before { display: none; }
.tl-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; border: 3px solid #fff; box-shadow: 0 0 0 2px var(--sand); }
.tl-step.done .tl-dot { background: var(--jade); box-shadow: 0 0 0 2px var(--jade); }
.tl-step.cur  .tl-dot { background: var(--clay); box-shadow: 0 0 0 2px var(--clay); animation: cpulse 2s ease-in-out infinite; }
@keyframes cpulse { 0%,100%{box-shadow:0 0 0 2px var(--clay)} 50%{box-shadow:0 0 0 6px rgba(192,57,43,.2)} }
.tl-h4   { font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 3px; }
.tl-p    { font-size: 11px; color: var(--gray); }
.tl-date { font-size: 10px; color: var(--clay); font-weight: 700; margin-top: 3px; }

/* ── QUICK VIEW MODAL ── */
.modal-ov { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 2000; align-items: center; justify-content: center; padding: 18px; }
.modal-ov.on { display: flex; }
.modal { background: #fff; border-radius: var(--r20); max-width: 860px; width: 100%; max-height: 90vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.m-img  { aspect-ratio: 1; background: var(--sand); border-radius: var(--r20) 0 0 var(--r20); display: flex; align-items: center; justify-content: center; font-size: 72px; }
.m-body { padding: 40px; }
.m-cls  { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--sh1); font-size: 17px; line-height: 1; }

/* ──────────────────────────────────
   FOOTER
────────────────────────────────── */
footer { background: var(--navy); color: var(--cream); padding: 68px 5% 26px; }
.f-in { max-width: 1400px; margin: 0 auto; }
.f-g  { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 52px; }
.f-logo-img { width: 60px; height: 60px; object-fit: contain; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: .85; }
.f-brand    { font-family: var(--serif); font-size: 20px; font-weight: 700; color: #fff; letter-spacing: 2px; margin-bottom: 9px; }
.f-desc     { font-size: 12px; color: rgba(250,246,239,.55); line-height: 1.7; margin-bottom: 18px; }
.socials { display: flex; gap: 9px; }
.sb { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--tr); cursor: pointer; }
.sb:hover { background: var(--clay); transform: translateY(-3px); }
.sb svg { width: 16px; height: 16px; color: #fff; }
.f-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.f-links { display: flex; flex-direction: column; gap: 9px; }
.f-links a { font-size: 12px; color: rgba(250,246,239,.6); transition: var(--tr); }
.f-links a:hover { color: #fff; padding-left: 5px; }
.f-ci { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 12px; }
.f-ci-ico { width: 28px; height: 28px; background: rgba(201,160,48,.15); border-radius: var(--r4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; }
.f-ci-txt { font-size: 11px; color: rgba(250,246,239,.6); line-height: 1.5; }
.f-bot { padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.f-bot p { font-size: 11px; color: rgba(250,246,239,.35); }
.f-bot-links { display: flex; gap: 18px; }
.f-bot-links a { font-size: 11px; color: rgba(250,246,239,.35); transition: var(--tr); }
.f-bot-links a:hover { color: #fff; }

/* ──────────────────────────────────
   RESPONSIVE
────────────────────────────────── */
@media (max-width: 1024px) {
  .h-inner { grid-template-columns: 1fr; text-align: center; }
  .h-vis { justify-content: center; }
  .h-logo-wrap { width: 250px; height: 250px; }
  .h-sub, .h-acts, .h-stats { margin-left: auto; margin-right: auto; justify-content: center; }
  .cg { grid-template-columns: repeat(2,1fr); }
  .cc-card:first-child { grid-row: auto; }
  .story-in { grid-template-columns: 1fr; }
  .s-vis { display: none; }
  .tg { grid-template-columns: 1fr; }
  .f-g { grid-template-columns: 1fr 1fr; }
  .ab-hero { grid-template-columns: 1fr; }
  .ab-stats { grid-template-columns: repeat(2,1fr); }
  .ct-g { grid-template-columns: 1fr; }
  .shop-lay { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .trust-inner { grid-template-columns: repeat(2,1fr); }
  .vals-g { grid-template-columns: 1fr 1fr; }
  .tr-ig { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .ham { display: flex; }
  .cg  { grid-template-columns: 1fr; }
  .pg  { grid-template-columns: repeat(2,1fr); gap: 13px; }
  .f-g { grid-template-columns: 1fr; }
  .cart-dr { width: 100%; right: -100%; }
  .nl-form { flex-direction: column; }
  .h-logo-wrap { width: 200px; height: 200px; }
  .modal { grid-template-columns: 1fr; }
  .m-img { display: none; }
  .fr2 { grid-template-columns: 1fr; }
  .vals-g { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pg { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .ab-stats { grid-template-columns: 1fr 1fr; }
}
