/* ================================
   Balaji Creations — Shared Styles
   Palette: Maroon / Gold / Warm Ivory (no blue)
================================= */

:root{
  --maroon:#6E2142;
  --maroon-dark:#481029;
  --maroon-light:#9A3F63;
  --gold:#CC9A3E;
  --gold-light:#E8C878;
  --gold-pale:#F3DFA8;
  --cream:#FBF5E8;
  --cream-2:#F3E7CE;
  --ink:#2B2119;
  --ink-soft:#5B5147;
  --green:#3F7D58;
  --line: rgba(43,33,25,0.12);
  --shadow: 0 22px 48px -24px rgba(74,16,41,0.38);
  --shadow-sm: 0 10px 24px -14px rgba(74,16,41,0.28);
  --radius: 18px;
  --radius-sm: 10px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4,.display{
  font-family:'Fraunces', serif;
  font-weight:600;
  margin:0;
  color:var(--maroon-dark);
  letter-spacing:-0.01em;
}
.mono{font-family:'IBM Plex Mono', monospace; letter-spacing:0.04em;}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
ul{padding:0;margin:0;}
button{font-family:inherit;}
.wrap{max-width:1220px; margin:0 auto; padding:0 28px;}

/* ---------- Reveal on scroll ---------- */
.reveal{opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);}
.reveal.in{opacity:1; transform:translateY(0);}
.reveal-delay-1.in{transition-delay:.08s;}
.reveal-delay-2.in{transition-delay:.16s;}
.reveal-delay-3.in{transition-delay:.24s;}
.reveal-delay-4.in{transition-delay:.32s;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 28px;
  font-weight:600; font-size:14.5px;
  border-radius:999px;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  position:relative; overflow:hidden;
}
.btn:active{transform:scale(.97);}
.btn-gold{background:var(--gold); color:var(--maroon-dark);}
.btn-gold:hover{background:var(--gold-light); transform:translateY(-2px); box-shadow:var(--shadow-sm);}
.btn-maroon{background:var(--maroon); color:var(--cream);}
.btn-maroon:hover{background:var(--maroon-light); transform:translateY(-2px); box-shadow:var(--shadow-sm);}
.btn-outline{border-color:var(--maroon); color:var(--maroon-dark); background:transparent;}
.btn-outline:hover{background:var(--maroon); color:var(--cream);}
.btn-outline-light{border-color:rgba(251,245,232,0.55); color:var(--cream);}
.btn-outline-light:hover{background:var(--cream); color:var(--maroon-dark); border-color:var(--cream);}
.btn-sm{padding:9px 18px; font-size:13px;}
.btn-block{width:100%; justify-content:center;}

/* ---------- Header ---------- */
header{
  position:sticky; top:0; z-index:80;
  background:rgba(251,245,232,0.9);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 28px; max-width:1220px; margin:0 auto; gap:20px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:'Fraunces', serif; font-weight:700; font-size:23px; color:var(--maroon-dark);
  flex-shrink:0;
}
.brand .dot{width:14px; height:14px; border-radius:50%; background:var(--gold); border:3px solid var(--maroon-dark);}
.navlinks{display:flex; gap:30px; font-size:14.5px; font-weight:500; align-items:center;}
.navlinks a{position:relative; padding-bottom:4px; color:var(--ink);}
.navlinks a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--gold);
  transition:width .25s ease;
}
.navlinks a:hover::after, .navlinks a.active::after{width:100%;}
.navlinks a.active{color:var(--maroon-dark); font-weight:700;}
.nav-actions{display:flex; align-items:center; gap:14px;}
.icon-btn{
  position:relative; width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--cream-2); border:1px solid var(--line); cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.icon-btn:hover{background:var(--gold-pale); transform:translateY(-1px);}
.icon-btn svg{width:18px; height:18px; stroke:var(--maroon-dark);}
.cart-count{
  position:absolute; top:-4px; right:-4px;
  background:var(--maroon); color:var(--cream);
  font-size:10px; font-weight:700; min-width:17px; height:17px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-family:'IBM Plex Mono';
  transition:transform .2s ease;
}
.cart-count.bump{animation:bump .35s ease;}
@keyframes bump{ 0%{transform:scale(1);} 40%{transform:scale(1.4);} 100%{transform:scale(1);} }
.menu-btn{display:none; background:none; border:none; cursor:pointer;}
.menu-btn svg{width:26px; height:26px; stroke:var(--maroon-dark);}

.mobile-nav{
  max-height:0; overflow:hidden; background:var(--cream); border-bottom:1px solid var(--line);
  transition:max-height .35s ease;
}
.mobile-nav.open{max-height:320px;}
.mobile-nav a{display:block; padding:14px 28px; font-size:15px; border-top:1px solid var(--line); font-weight:500;}

@media (max-width:920px){
  .navlinks{display:none;}
  .menu-btn{display:flex; align-items:center;}
}

/* ---------- Button-trail divider (signature element) ---------- */
.button-trail{
  height:26px;
  background-image:
    radial-gradient(circle 3px at 14px 13px, var(--gold) 98%, transparent 100%),
    linear-gradient(90deg, transparent 0 10px, var(--line) 10px 11px, transparent 11px 28px);
  background-size:28px 26px;
  background-repeat:repeat-x;
  opacity:.9;
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background:linear-gradient(180deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  color:var(--cream);
  overflow:hidden;
  padding:100px 0 76px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 12% 24%, rgba(232,200,120,0.16), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(232,200,120,0.12), transparent 46%);
  pointer-events:none;
}
.floaty{
  position:absolute; opacity:.5; pointer-events:none;
  animation:floaty 7s ease-in-out infinite;
}
@keyframes floaty{
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-18px) rotate(8deg);}
}
.hero-inner{position:relative; display:grid; grid-template-columns:1.15fr 0.85fr; gap:50px; align-items:center;}
.eyebrow{
  font-family:'IBM Plex Mono'; font-size:12px; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--gold-light); margin-bottom:18px; display:flex; align-items:center; gap:10px;
}
.eyebrow::before{content:""; width:24px; height:1px; background:var(--gold-light);}
.hero h1{
  font-size:clamp(40px,5.6vw,68px); line-height:1.02; color:var(--cream);
}
.hero h1 .word{display:inline-block; opacity:0; transform:translateY(18px); animation:wordIn .7s ease forwards;}
@keyframes wordIn{ to{opacity:1; transform:translateY(0);} }
.hero h1 em{font-style:normal; color:var(--gold-light);}
.hero p.lead{margin-top:22px; font-size:17px; line-height:1.65; max-width:520px; color:rgba(251,245,232,0.85);}
.hero-ctas{display:flex; gap:14px; margin-top:32px; flex-wrap:wrap;}
.hero-stats{display:flex; gap:0; margin-top:46px; border-top:1px solid rgba(251,245,232,0.18); padding-top:22px; flex-wrap:wrap;}
.hero-stats div{flex:1; min-width:120px; padding-right:16px;}
.hero-stats .num{font-family:'Fraunces'; font-size:32px; font-weight:700; color:var(--cream);}
.hero-stats .lbl{font-size:11.5px; color:rgba(251,245,232,0.6); text-transform:uppercase; letter-spacing:0.06em; margin-top:2px;}

.tag-visual{
  position:relative; background:var(--cream); color:var(--maroon-dark);
  border-radius:20px; padding:32px 28px; box-shadow:var(--shadow);
  transform:rotate(3deg); max-width:340px; margin-left:auto;
  transition:transform .4s ease;
}
.tag-visual:hover{transform:rotate(0deg) translateY(-6px);}
.tag-visual::before{
  content:""; position:absolute; top:-14px; left:34px;
  width:22px; height:22px; border-radius:50%; background:var(--maroon-dark); border:4px solid var(--cream);
}
.tag-visual .mono{font-size:11px; color:var(--maroon); display:block; margin-bottom:10px;}
.tag-visual h3{font-size:25px; line-height:1.05; margin-bottom:14px;}
.tag-visual ul{list-style:none; font-size:13px; line-height:2;}
.tag-visual ul li{border-top:1px dashed rgba(110,33,66,0.22); padding:6px 0; display:flex; justify-content:space-between;}
.tag-visual ul li:first-child{border-top:none;}
.tag-visual .price{font-family:'IBM Plex Mono'; color:var(--maroon); font-weight:600;}

/* ---------- Marquee ---------- */
.marquee{background:var(--gold); color:var(--maroon-dark); overflow:hidden; white-space:nowrap; border-top:1px solid var(--maroon-dark); border-bottom:1px solid var(--maroon-dark);}
.marquee-track{display:inline-block; padding:10px 0; animation:scroll 34s linear infinite; font-family:'IBM Plex Mono'; font-size:13px; letter-spacing:0.05em; font-weight:600;}
.marquee-track span{margin:0 24px;}
@keyframes scroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ---------- Section shells ---------- */
section{padding:90px 0;}
.section-head{max-width:640px; margin-bottom:50px;}
.section-head .eyebrow{color:var(--maroon);}
.section-head .eyebrow::before{background:var(--maroon);}
.section-head h2{font-size:clamp(30px,4vw,46px); line-height:1.05;}
.section-head p{margin-top:16px; font-size:16px; line-height:1.6; color:var(--ink-soft);}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head.center .eyebrow{justify-content:center;}
.section-head.center .eyebrow::before{display:none;}

/* ---------- Category grid ---------- */
.cat-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
.cat-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:26px 22px; position:relative; min-height:196px;
  display:flex; flex-direction:column; justify-content:space-between;
  transition:transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
  cursor:pointer;
}
.cat-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-sm); border-color:transparent;}
.cat-card .icon-wrap{
  width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  transition:transform .3s ease;
}
.cat-card:hover .icon-wrap{transform:rotate(-8deg) scale(1.08);}
.cat-card .icon-wrap svg{width:22px; height:22px;}
.cat-card h3{font-size:20px; margin-top:16px; color:var(--maroon-dark);}
.cat-card p{font-size:12.5px; color:var(--ink-soft); margin-top:8px; line-height:1.5;}
.cat-card .count{font-family:'IBM Plex Mono'; font-size:11px; color:var(--ink-soft); margin-top:14px; display:flex; align-items:center; gap:6px;}
.cat-card .count::after{content:"→"; transition:transform .25s ease;}
.cat-card:hover .count::after{transform:translateX(4px);}
@media (max-width:980px){ .cat-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .cat-grid{grid-template-columns:1fr;} }

/* ---------- Product cards ---------- */
.prod-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
.prod-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.prod-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-sm);}
.prod-media{
  aspect-ratio:1/0.85; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.prod-media svg{width:52px; height:52px; transition:transform .4s ease;}
.prod-card:hover .prod-media svg{transform:scale(1.12) rotate(-6deg);}
.prod-badge{
  position:absolute; top:12px; left:12px; background:rgba(251,245,232,0.92);
  color:var(--maroon-dark); font-size:10.5px; font-weight:700; padding:4px 10px; border-radius:999px;
  font-family:'IBM Plex Mono'; letter-spacing:0.03em;
}
.prod-body{padding:16px 18px 18px; display:flex; flex-direction:column; gap:8px; flex:1;}
.prod-cat{font-family:'IBM Plex Mono'; font-size:10.5px; color:var(--maroon); text-transform:uppercase; letter-spacing:0.05em;}
.prod-name{font-family:'Fraunces'; font-size:17px; font-weight:600; color:var(--ink); line-height:1.25;}
.prod-meta{font-size:12px; color:var(--ink-soft);}
.prod-foot{display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:8px;}
.prod-price{font-family:'IBM Plex Mono'; font-size:12.5px; color:var(--maroon-dark); font-weight:600;}
.add-btn{
  border:1px solid var(--maroon); color:var(--maroon-dark); background:transparent;
  padding:8px 14px; border-radius:999px; font-size:12.5px; font-weight:600; cursor:pointer;
  transition:background .2s ease, color .2s ease, transform .15s ease;
}
.add-btn:hover{background:var(--maroon); color:var(--cream);}
.add-btn.added{background:var(--green); border-color:var(--green); color:#fff;}
.add-btn:active{transform:scale(.95);}
@media (max-width:1040px){ .prod-grid{grid-template-columns:repeat(3,1fr);} }
@media (max-width:760px){ .prod-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:460px){ .prod-grid{grid-template-columns:1fr;} }

/* ---------- Why / stats cards ---------- */
.why{background:var(--maroon-dark); color:var(--cream);}
.why .section-head p{color:rgba(251,245,232,0.75);}
.why .section-head .eyebrow{color:var(--gold-light);}
.why .section-head .eyebrow::before{background:var(--gold-light);}
.why-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
.why-card{background:rgba(251,245,232,0.05); border:1px solid rgba(251,245,232,0.14); padding:30px 24px; border-radius:var(--radius); transition:background .3s ease, transform .3s ease;}
.why-card:hover{background:rgba(251,245,232,0.09); transform:translateY(-4px);}
.why-card .icon-wrap{width:44px;height:44px;border-radius:50%;background:rgba(232,200,120,0.16); display:flex;align-items:center;justify-content:center;}
.why-card .icon-wrap svg{width:20px;height:20px;stroke:var(--gold-light);}
.why-card h4{font-size:18px; margin-top:16px; font-weight:600; font-family:'Fraunces'; color:var(--cream);}
.why-card p{font-size:13.5px; color:rgba(251,245,232,0.65); margin-top:8px; line-height:1.6;}
@media (max-width:980px){ .why-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .why-grid{grid-template-columns:1fr;} }

/* ---------- Testimonials ---------- */
.testi-wrap{position:relative; max-width:720px; margin:0 auto; text-align:center; min-height:180px;}
.testi{position:absolute; inset:0; opacity:0; transition:opacity .6s ease; display:flex; flex-direction:column; align-items:center; justify-content:center;}
.testi.active{opacity:1; position:relative;}
.testi p{font-family:'Fraunces'; font-size:22px; line-height:1.5; color:var(--maroon-dark); font-style:italic;}
.testi .who{margin-top:16px; font-size:13px; color:var(--ink-soft); font-family:'IBM Plex Mono';}
.testi-dots{display:flex; justify-content:center; gap:8px; margin-top:26px;}
.testi-dots button{width:8px; height:8px; border-radius:50%; border:none; background:var(--line); cursor:pointer; padding:0; transition:background .2s ease, transform .2s ease;}
.testi-dots button.active{background:var(--maroon); transform:scale(1.3);}

/* ---------- Process ---------- */
.process{background:var(--cream-2);}
.process-row{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
.process-step{background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px 24px; transition:transform .3s ease, box-shadow .3s ease;}
.process-step:hover{transform:translateY(-4px); box-shadow:var(--shadow-sm);}
.process-step .step-num{
  width:34px; height:34px; border-radius:50%; background:var(--maroon); color:var(--cream);
  display:flex; align-items:center; justify-content:center; font-family:'Fraunces'; font-weight:700; font-size:15px;
}
.process-step p{font-size:14.5px; margin-top:14px; line-height:1.6; color:var(--ink-soft);}
.process-step strong{color:var(--ink);}
@media (max-width:800px){ .process-row{grid-template-columns:1fr;} }

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  border-radius:28px; padding:56px 48px; color:var(--cream);
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-banner::after{
  content:""; position:absolute; right:-60px; top:-60px; width:220px; height:220px; border-radius:50%;
  background:rgba(232,200,120,0.14);
}
.cta-banner h2{color:var(--cream); font-size:clamp(26px,3.4vw,36px);}
.cta-banner p{color:rgba(251,245,232,0.75); margin-top:10px; font-size:15px;}
@media (max-width:700px){ .cta-banner{flex-direction:column; align-items:flex-start; padding:40px 28px;} }

/* ---------- Sidebar filters (shop page) ---------- */
.shop-layout{display:grid; grid-template-columns:260px 1fr; gap:40px; align-items:start;}
.filter-box{background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:24px; position:sticky; top:96px;}
.filter-box h4{font-size:13px; text-transform:uppercase; letter-spacing:0.06em; color:var(--ink-soft); margin-bottom:14px; font-family:'IBM Plex Mono'; font-weight:600;}
.filter-list{list-style:none; display:flex; flex-direction:column; gap:2px;}
.filter-list li a{
  display:flex; justify-content:space-between; padding:9px 10px; border-radius:8px; font-size:13.5px; color:var(--ink);
  transition:background .2s ease, color .2s ease;
}
.filter-list li a:hover, .filter-list li a.active{background:var(--gold-pale); color:var(--maroon-dark); font-weight:600;}
.filter-list li a span.n{font-family:'IBM Plex Mono'; font-size:11px; color:var(--ink-soft);}
.search-box{position:relative; margin-bottom:22px;}
.search-box input{
  width:100%; padding:12px 40px 12px 16px; border:1px solid var(--line); border-radius:999px;
  font-family:'Inter'; font-size:14px; background:var(--cream);
}
.search-box svg{position:absolute; right:14px; top:50%; transform:translateY(-50%); width:16px; height:16px; stroke:var(--ink-soft);}
.results-bar{display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; flex-wrap:wrap; gap:12px;}
.results-bar select{padding:9px 14px; border:1px solid var(--line); border-radius:999px; font-family:'Inter'; font-size:13px; background:#fff;}
.empty-state{text-align:center; padding:80px 20px; color:var(--ink-soft);}
.load-more-wrap{display:flex; justify-content:center; margin-top:40px;}

/* ---------- Cart drawer ---------- */
.overlay{position:fixed; inset:0; background:rgba(43,33,25,0.45); opacity:0; pointer-events:none; transition:opacity .3s ease; z-index:120;}
.overlay.open{opacity:1; pointer-events:auto;}
.cart-drawer{
  position:fixed; top:0; right:0; height:100%; width:400px; max-width:92vw;
  background:var(--cream); z-index:130; box-shadow:-20px 0 50px rgba(0,0,0,0.2);
  transform:translateX(100%); transition:transform .35s cubic-bezier(.2,.7,.2,1);
  display:flex; flex-direction:column;
}
.cart-drawer.open{transform:translateX(0);}
.cart-head{display:flex; align-items:center; justify-content:space-between; padding:22px 24px; border-bottom:1px solid var(--line);}
.cart-head h3{font-size:20px;}
.cart-close{background:none; border:none; cursor:pointer; font-size:22px; color:var(--ink-soft); line-height:1;}
.cart-items{flex:1; overflow-y:auto; padding:16px 24px;}
.cart-item{display:flex; gap:12px; padding:14px 0; border-bottom:1px solid var(--line);}
.cart-item .ci-icon{width:44px;height:44px;border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.cart-item .ci-icon svg{width:22px;height:22px;}
.cart-item .ci-info{flex:1;}
.cart-item .ci-name{font-size:13.5px; font-weight:600; color:var(--ink);}
.cart-item .ci-meta{font-size:11.5px; color:var(--ink-soft); margin-top:2px;}
.cart-item .ci-remove{font-size:11.5px; color:var(--maroon); cursor:pointer; margin-top:6px; display:inline-block;}
.cart-empty{padding:60px 10px; text-align:center; color:var(--ink-soft); font-size:14px;}
.cart-foot{padding:20px 24px; border-top:1px solid var(--line);}
.cart-foot p{font-size:12px; color:var(--ink-soft); margin-bottom:14px; line-height:1.5;}

/* ---------- Product modal ---------- */
.modal-overlay{position:fixed; inset:0; background:rgba(43,33,25,0.55); opacity:0; pointer-events:none; transition:opacity .3s ease; z-index:150; display:flex; align-items:center; justify-content:center; padding:20px;}
.modal-overlay.open{opacity:1; pointer-events:auto;}
.modal-box{
  background:#fff; border-radius:24px; max-width:560px; width:100%; padding:0; overflow:hidden;
  transform:scale(.94) translateY(10px); transition:transform .3s ease; display:grid; grid-template-columns:1fr 1fr;
}
.modal-overlay.open .modal-box{transform:scale(1) translateY(0);}
.modal-media{display:flex; align-items:center; justify-content:center; padding:30px;}
.modal-media svg{width:88px; height:88px;}
.modal-info{padding:28px 26px; position:relative;}
.modal-close{position:absolute; top:14px; right:16px; background:none; border:none; font-size:22px; cursor:pointer; color:var(--ink-soft);}
.modal-info .prod-cat{margin-bottom:8px;}
.modal-info h3{font-size:22px; margin-bottom:10px;}
.modal-info .specs{list-style:none; font-size:13px; margin:14px 0 18px; display:flex; flex-direction:column; gap:6px;}
.modal-info .specs li{display:flex; justify-content:space-between; border-top:1px dashed var(--line); padding:6px 0;}
.modal-info .specs li:first-child{border-top:none;}
@media (max-width:560px){ .modal-box{grid-template-columns:1fr;} }

/* ---------- FAQ accordion ---------- */
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  display:flex; justify-content:space-between; align-items:center; padding:20px 4px; cursor:pointer;
  font-family:'Fraunces'; font-size:17px; font-weight:600; color:var(--ink);
}
.faq-q .plus{font-size:22px; color:var(--maroon); transition:transform .3s ease; font-family:'Inter'; font-weight:300;}
.faq-item.open .plus{transform:rotate(45deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .35s ease;}
.faq-a p{padding:0 4px 20px; font-size:14.5px; color:var(--ink-soft); line-height:1.6;}

/* ---------- Forms ---------- */
form.card-form{background:#fff; border:1px solid var(--line); padding:32px; border-radius:var(--radius);}
.field{margin-bottom:18px;}
.field label{display:block; font-size:11.5px; font-family:'IBM Plex Mono'; margin-bottom:7px; color:var(--ink-soft); text-transform:uppercase; letter-spacing:0.05em;}
.field input, .field textarea, .field select{
  width:100%; padding:12px 15px; border:1px solid var(--line); background:var(--cream);
  font-family:'Inter'; font-size:14px; border-radius:var(--radius-sm); color:var(--ink);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus{outline:none; border-color:var(--maroon); box-shadow:0 0 0 3px rgba(110,33,66,0.12);}
.field textarea{resize:vertical; min-height:90px;}
.form-note{font-size:12px; color:var(--ink-soft); margin-top:12px;}

/* ---------- Contact info list ---------- */
.contact-list{list-style:none;}
.contact-list li{display:flex; gap:16px; padding:18px 0; border-top:1px solid var(--line); font-size:14.5px;}
.contact-list li:last-child{border-bottom:1px solid var(--line);}
.contact-list .icon-wrap{width:38px;height:38px;border-radius:50%; background:var(--gold-pale); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.contact-list .icon-wrap svg{width:17px;height:17px; stroke:var(--maroon-dark);}

/* ---------- Breadcrumb / page header ---------- */
.page-header{background:var(--cream-2); padding:56px 0 40px; border-bottom:1px solid var(--line);}
.crumb{font-family:'IBM Plex Mono'; font-size:12px; color:var(--ink-soft); margin-bottom:12px;}
.crumb a{color:var(--maroon);}
.page-header h1{font-size:clamp(32px,4.4vw,50px);}

/* ---------- Counters ---------- */
.stat-strip{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center;}
.stat-strip .num{font-family:'Fraunces'; font-size:44px; font-weight:700; color:var(--maroon-dark);}
.stat-strip .lbl{font-size:12.5px; color:var(--ink-soft); text-transform:uppercase; letter-spacing:0.05em; margin-top:6px;}
@media (max-width:760px){ .stat-strip{grid-template-columns:repeat(2,1fr); row-gap:34px;} }

/* ---------- Timeline (about page) ---------- */
.timeline{border-left:2px dashed var(--line); margin-left:10px;}
.tl-item{position:relative; padding:0 0 40px 30px;}
.tl-item::before{content:""; position:absolute; left:-7px; top:2px; width:12px; height:12px; border-radius:50%; background:var(--gold); border:3px solid var(--maroon-dark);}
.tl-item .yr{font-family:'IBM Plex Mono'; font-size:12px; color:var(--maroon); font-weight:600;}
.tl-item h4{font-size:18px; margin-top:6px;}
.tl-item p{font-size:13.5px; color:var(--ink-soft); margin-top:6px; line-height:1.6;}

/* ---------- Footer ---------- */
footer{background:var(--maroon-dark); color:rgba(251,245,232,0.62); padding:56px 0 28px;}
.footer-top{display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:36px; padding-bottom:34px; border-bottom:1px solid rgba(251,245,232,0.14);}
.footer-brand{font-family:'Fraunces'; font-size:25px; font-weight:700; color:var(--cream);}
.footer-cols{display:flex; gap:60px; flex-wrap:wrap;}
.footer-col h5{font-size:11.5px; text-transform:uppercase; letter-spacing:0.08em; color:var(--gold-light); margin-bottom:14px; font-family:'IBM Plex Mono';}
.footer-col a{display:block; font-size:13.5px; color:rgba(251,245,232,0.65); margin-bottom:10px; transition:color .2s ease;}
.footer-col a:hover{color:var(--cream);}
.footer-bottom{display:flex; justify-content:space-between; padding-top:22px; font-size:12px; flex-wrap:wrap; gap:10px;}
.social-row{display:flex; gap:10px; margin-top:6px;}
.social-row a{width:34px;height:34px;border-radius:50%; background:rgba(251,245,232,0.08); display:flex; align-items:center; justify-content:center; transition:background .2s ease;}
.social-row a:hover{background:var(--gold);}
.social-row a svg{width:15px;height:15px; stroke:var(--cream);}

::selection{background:var(--gold); color:var(--maroon-dark);}

@media (max-width:920px){
  .hero-inner{grid-template-columns:1fr;}
  .tag-visual{margin-left:0; transform:rotate(0); max-width:100%;}
  .shop-layout{grid-template-columns:1fr;}
  .filter-box{position:relative; top:0;}
}
