@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ──────────────────────────────────── */
:root{
  --white:#FFFFFF;
  --bg:#FAF7F3;
  --light:#F4EDE5;
  --border:#E8DDD3;
  --border-dark:#D4C5B5;
  --text:#2C2116;
  --text2:#6E5E52;
  --text3:#A89688;
  --brand:#C47845;     /* warm terracotta — never harsh */
  --brand2:#A35E2E;
  --gold:#C6A040;
  --green:#3DB87A;     /* lighter, warmer green */
  --green2:#2A9E65;
  --max:1440px;
  --pad:clamp(20px,4%,60px);
  --ease:cubic-bezier(.25,.46,.45,.94);
  --spring:cubic-bezier(.34,1.56,.64,1);
  --nav-h:60px;
  --ann-h:38px;
}

/* ── RESET ───────────────────────────────────── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{font-size:16px;-webkit-font-smoothing:antialiased;scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:var(--white);color:var(--text);overflow-x:hidden}
a{text-decoration:none;color:inherit}
ul{list-style:none}
img{display:block;max-width:100%}
button{border:none;background:none;font-family:inherit;cursor:pointer}
::-webkit-scrollbar{width:4px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:var(--brand)}

/* ── ANNOUNCEMENT BAR ────────────────────────── */
.ann{
  background:var(--brand);
  color:var(--white);
  height:var(--ann-h);
  display:flex;align-items:center;justify-content:center;
  gap:1.5rem;
  font-size:12px;
  letter-spacing:.06em;
  font-weight:500;
  position:relative;z-index:9001;
  padding:0 var(--pad);
  flex-shrink:0;
}
.ann a{
  color:var(--white);
  text-decoration:underline;
  text-underline-offset:2px;
  font-weight:600;
  opacity:.85;
  transition:opacity .2s;
}
.ann a:hover{opacity:1}
.ann-close{
  position:absolute;right:var(--pad);
  font-size:16px;font-weight:300;
  color:rgba(255,255,255,.7);
  line-height:1;cursor:pointer;
  transition:color .2s;
}
.ann-close:hover{color:var(--white)}

/* ── NAVIGATION ──────────────────────────────── */
.nav-wrap{
  position:sticky;
  top:0;z-index:9000;
  background:var(--white);
  border-bottom:1px solid var(--border);
  box-shadow:0 1px 6px rgba(0,0,0,.04);
  transition:box-shadow .3s var(--ease);
}
.nav-wrap.elevated{box-shadow:0 2px 16px rgba(0,0,0,.09)}

.nav{
  max-width:var(--max);margin:0 auto;
  height:var(--nav-h);
  display:grid;grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:0 var(--pad);
}

/* left */
.nav-left{display:flex;align-items:center;gap:1.8rem}
.nav-cat{
  font-size:11.5px;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--text2);
  transition:color .2s;white-space:nowrap;
  position:relative;
}
.nav-cat::after{
  content:'';position:absolute;bottom:-3px;left:0;
  width:0;height:1px;background:var(--brand);
  transition:width .3s var(--ease);
}
.nav-cat:hover{color:var(--brand)}
.nav-cat:hover::after{width:100%}
.nav-cat.active{color:var(--brand)}
.nav-cat.active::after{width:100%}

/* logo center */
.nav-logo{
  font-family:'Cormorant Garamond',serif;
  font-size:24px;font-weight:400;
  letter-spacing:.35em;text-transform:uppercase;
  color:var(--text);
  white-space:nowrap;text-align:center;
  transition:color .2s;
}
.nav-logo:hover{color:var(--brand)}
.nav-logo span{color:var(--brand)}

/* right */
.nav-right{
  display:flex;align-items:center;
  gap:1rem;justify-content:flex-end;
}
.nav-icon{
  width:34px;height:34px;
  display:flex;align-items:center;justify-content:center;
  position:relative;
  cursor:pointer;transition:opacity .2s;
}
.nav-icon:hover{opacity:.65}
.nav-icon svg{width:20px;height:20px;stroke:var(--text);fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.nav-wa-btn{
  display:inline-flex;align-items:center;gap:.4rem;
  background:var(--green);color:var(--white);
  font-size:11px;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  padding:.42rem 1rem;
  transition:background .2s,transform .2s var(--spring);
}
.nav-wa-btn:hover{background:var(--green2);transform:translateY(-1px)}
.nav-wa-btn svg{width:14px;height:14px;fill:var(--white)}

/* burger */
.burger{display:none;flex-direction:column;gap:5px;width:22px;cursor:pointer}
.burger span{display:block;height:1.5px;background:var(--text);transition:all .3s var(--ease);transform-origin:center}
.burger.open span:nth-child(1){transform:rotate(45deg) translate(4.5px,4.5px)}
.burger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.burger.open span:nth-child(3){transform:rotate(-45deg) translate(4.5px,-4.5px)}

/* mobile overlay */
.mob-menu{
  position:fixed;inset:0;top:calc(var(--ann-h) + var(--nav-h));
  background:var(--white);z-index:8999;
  display:flex;flex-direction:column;
  padding:2rem var(--pad);gap:1px;
  opacity:0;visibility:hidden;
  transition:opacity .35s var(--ease),visibility .35s;
  border-top:1px solid var(--border);
  overflow-y:auto;
}
.mob-menu.open{opacity:1;visibility:visible}
.mob-link{
  display:block;padding:1.1rem 0;
  font-size:16px;font-weight:400;color:var(--text);
  border-bottom:1px solid var(--border);
  transition:color .2s,padding-left .2s;
}
.mob-link:hover{color:var(--brand);padding-left:.5rem}

/* ── HERO ─────────────────────────────────────── */
.hero{
  position:relative;
  height:88vh;min-height:560px;
  overflow:hidden;
}
.hero-img{
  position:absolute;inset:0;
}
.hero-img img{
  width:100%;height:100%;object-fit:cover;object-position:center;
  transform:scale(1.04);
  animation:hero-ken .1s .1s forwards linear;
}
@keyframes hero-ken{to{transform:scale(1)}}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.22) 50%,
    rgba(0,0,0,.45) 100%
  );
}
.hero-content{
  position:relative;z-index:2;
  height:100%;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;
  padding:2rem var(--pad);
}
.hero-eyebrow{
  font-size:11px;font-weight:600;
  letter-spacing:.3em;text-transform:uppercase;
  color:rgba(255,255,255,.75);
  margin-bottom:1.2rem;
  opacity:0;animation:fade-up .8s .3s var(--ease) forwards;
}
.hero-h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3rem,7vw,7rem);
  font-weight:300;line-height:1.05;
  letter-spacing:-.02em;
  color:var(--white);
  margin-bottom:1.8rem;
  max-width:820px;
  opacity:0;animation:fade-up .9s .5s var(--ease) forwards;
}
.hero-h1 em{font-style:italic;font-weight:300}
.hero-sub{
  font-size:15px;font-weight:400;
  color:rgba(255,255,255,.75);
  margin-bottom:2.5rem;
  opacity:0;animation:fade-up .8s .7s var(--ease) forwards;
}
.hero-btns{
  display:flex;gap:1rem;flex-wrap:wrap;justify-content:center;
  opacity:0;animation:fade-up .8s .9s var(--ease) forwards;
}
@keyframes fade-up{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}
/* hero scroll indicator */
.hero-scroll-ind{
  position:absolute;bottom:2rem;left:50%;
  transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
  z-index:3;opacity:0;
  animation:fade-up .6s 1.2s ease forwards;
}
.hero-scroll-ind span{
  font-size:10px;font-weight:600;letter-spacing:.25em;
  text-transform:uppercase;color:rgba(255,255,255,.5);
}
.scroll-line{
  width:1px;height:40px;
  background:linear-gradient(to bottom,rgba(255,255,255,.4),transparent);
  animation:scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim{0%,100%{opacity:1}50%{opacity:.25}}

/* ── BUTTONS ──────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:'Inter',sans-serif;
  font-size:11.5px;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;
  padding:.75rem 1.8rem;
  transition:background .2s,color .2s,border-color .2s,transform .25s var(--spring),box-shadow .2s;
}
.btn svg{width:13px;height:13px;fill:currentColor;flex-shrink:0}

.btn-white{
  background:var(--white);color:var(--text);
  border:1.5px solid var(--white);
}
.btn-white:hover{background:transparent;color:var(--white);transform:translateY(-2px)}

.btn-outline-white{
  background:transparent;color:var(--white);
  border:1.5px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover{background:var(--white);color:var(--text);transform:translateY(-2px)}

.btn-dark{
  background:var(--brand);color:var(--white);
  border:1.5px solid var(--brand);
}
.btn-dark:hover{background:var(--brand2);border-color:var(--brand2);transform:translateY(-2px)}

.btn-outline{
  background:transparent;color:var(--brand);
  border:1.5px solid var(--brand);
}
.btn-outline:hover{background:var(--brand);color:var(--white);transform:translateY(-2px)}

.btn-brand{
  background:var(--brand);color:var(--white);
  border:1.5px solid var(--brand);
}
.btn-brand:hover{background:var(--brand2);border-color:var(--brand2);transform:translateY(-2px)}

.btn-wa{
  background:var(--green);color:var(--white);
  border:1.5px solid var(--green);
}
.btn-wa:hover{background:var(--green2);border-color:var(--green2);transform:translateY(-2px)}

/* ── SECONDARY HERO PANELS ────────────────────── */
.hero-panels{
  display:grid;grid-template-columns:1fr 1fr;
  max-width:var(--max);margin:0 auto;
  gap:3px;
  border-top:3px solid var(--white);
}
.hero-panel{
  position:relative;overflow:hidden;
  height:55vh;min-height:360px;cursor:pointer;
}
.hero-panel img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .8s var(--ease);
  display:block;
}
.hero-panel:hover img{transform:scale(1.04)}
.hp-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.48) 0%,transparent 55%);
}
.hp-content{
  position:absolute;bottom:2.5rem;left:2.5rem;right:2.5rem;
}
.hp-label{
  font-size:10.5px;font-weight:600;
  letter-spacing:.25em;text-transform:uppercase;
  color:rgba(255,255,255,.7);
  margin-bottom:.6rem;
}
.hp-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:400;color:var(--white);
  line-height:1.1;margin-bottom:1.2rem;
}
.hp-btn{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:11px;font-weight:600;
  letter-spacing:.15em;text-transform:uppercase;
  color:var(--white);
  border-bottom:1px solid rgba(255,255,255,.5);
  padding-bottom:2px;
  transition:border-color .2s,opacity .2s;
}
.hp-btn:hover{border-color:var(--white);opacity:.8}
.hp-btn svg{width:12px;height:12px;fill:var(--white)}

/* ── SECTION BASE ─────────────────────────────── */
.section{padding:5rem var(--pad)}
.section-sm{padding:3.5rem var(--pad)}
.inner{max-width:var(--max);margin:0 auto}
.section-head{text-align:center;margin-bottom:3rem}
.section-head.left{text-align:left}

.eyebrow{
  display:inline-block;
  font-size:10.5px;font-weight:600;
  letter-spacing:.28em;text-transform:uppercase;
  color:var(--brand);margin-bottom:.8rem;
}
.sec-title{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;color:var(--text);
  line-height:1.15;
  font-size:clamp(1.8rem,3vw,2.8rem);
}
.sec-title em{font-style:italic;font-weight:300}
.sec-desc{
  font-size:14px;font-weight:400;line-height:1.75;
  color:var(--text2);margin-top:.8rem;
  max-width:480px;
}
.section-head .sec-desc{margin:auto;margin-top:.8rem}

/* ── SHOP BY CATEGORY ─────────────────────────── */
.cats{background:var(--bg)}
.cats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:20px;
  max-width:var(--max);margin:0 auto;
}
.cat-item{cursor:pointer}
.cat-img-wrap{
  position:relative;overflow:hidden;
  aspect-ratio:1/1;
  background:var(--light);
}
.cat-img-wrap img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .65s var(--ease);
}
.cat-item:hover .cat-img-wrap img{transform:scale(1.06)}
.cat-name{
  font-size:12.5px;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--text);margin-top:.9rem;
  text-align:center;
  transition:color .2s;
}
.cat-item:hover .cat-name{color:var(--brand)}
.cat-count{
  font-size:11.5px;font-weight:400;
  color:var(--text3);text-align:center;
  margin-top:.2rem;letter-spacing:.04em;
}

/* ── SPLIT PANELS ─────────────────────────────── */
.split{
  display:grid;grid-template-columns:1fr 1fr;
  max-width:var(--max);margin:0 auto;
}
.split.reverse{direction:rtl}
.split.reverse>*{direction:ltr}

.split-img{
  position:relative;overflow:hidden;
  min-height:500px;
}
.split-img img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .8s var(--ease);
}
.split:hover .split-img img{transform:scale(1.04)}

.split-body{
  display:flex;flex-direction:column;
  justify-content:center;
  padding:4rem 5%;
  background:var(--bg);
}
.split.white .split-body{background:var(--white)}
.split-body .sec-title{font-size:clamp(1.8rem,3vw,3rem)}
.split-body p{
  font-size:14px;font-weight:400;
  line-height:1.8;color:var(--text2);
  margin-top:1rem;margin-bottom:2rem;
  max-width:380px;
}

/* ── PRODUCT CARDS ────────────────────────────── */
.products-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:28px;
  max-width:var(--max);margin:0 auto;
}
.prod-card{
  position:relative;
  background:none;
  cursor:pointer;
}
.prod-img-wrap{
  position:relative;overflow:hidden;
  aspect-ratio:3/4;
  background:var(--light);
  margin-bottom:1rem;
}
.prod-img-wrap img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .7s var(--ease);
}
.prod-card:hover .prod-img-wrap img{transform:scale(1.06)}

/* badge */
.prod-badge{
  position:absolute;top:.75rem;left:.75rem;
  background:var(--brand);color:var(--white);
  font-size:10px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  padding:.25rem .6rem;z-index:2;
}
.prod-badge.gold{background:var(--gold)}
.prod-badge.new{background:var(--text)}

/* WhatsApp overlay on hover */
.prod-wa-overlay{
  position:absolute;bottom:0;left:0;right:0;
  background:var(--green);
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.8rem;
  font-size:11px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--white);
  transform:translateY(100%);
  transition:transform .35s var(--ease);
  cursor:pointer;z-index:3;
}
.prod-wa-overlay svg{width:15px;height:15px;fill:var(--white)}
.prod-card:hover .prod-wa-overlay{transform:translateY(0)}

.prod-info{padding:0 2px}
.prod-cat-lbl{
  font-size:10.5px;font-weight:600;
  letter-spacing:.15em;text-transform:uppercase;
  color:var(--text3);margin-bottom:.3rem;
}
.prod-name{
  font-size:14.5px;font-weight:400;
  color:var(--text);line-height:1.35;
  margin-bottom:.35rem;
  transition:color .2s;
}
.prod-card:hover .prod-name{color:var(--brand)}
.prod-price{
  font-size:14.5px;font-weight:500;
  color:var(--text2);
}
.prod-price .old{
  text-decoration:line-through;
  font-weight:400;color:var(--text3);
  margin-right:.4rem;
}
.prod-price .sale{color:var(--brand)}

/* quick WA button (mobile fallback - always visible) */
.prod-wa-mob{
  margin-top:.8rem;
  display:none; /* shown via media query */
  width:100%;
  padding:.6rem;
  background:var(--green);color:var(--white);
  font-size:11px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  align-items:center;justify-content:center;gap:.4rem;
  transition:background .2s;
}
.prod-wa-mob svg{width:13px;height:13px;fill:var(--white)}
.prod-wa-mob:hover{background:var(--green2)}

/* ── SERVICES STRIP ───────────────────────────── */
.services{
  background:var(--light);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.services-inner{
  max-width:var(--max);margin:0 auto;
  padding:2.5rem var(--pad);
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;
}
.svc{
  display:flex;flex-direction:column;
  align-items:center;text-align:center;
  gap:.6rem;padding:0 1.5rem;
  border-right:1px solid var(--border);
}
.svc:last-child{border-right:none}
.svc-icon{
  width:36px;height:36px;
  display:flex;align-items:center;justify-content:center;
}
.svc-icon svg{
  width:28px;height:28px;
  stroke:var(--text2);fill:none;
  stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;
}
.svc-title{
  font-size:12px;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--text);
}
.svc-desc{font-size:12px;font-weight:400;color:var(--text3);line-height:1.5}

/* ── MARQUEE ──────────────────────────────────── */
.marquee{
  background:var(--brand);
  overflow:hidden;height:38px;
  display:flex;align-items:center;
}
.mq-track{
  display:flex;align-items:center;
  animation:mq-run 32s linear infinite;
  will-change:transform;white-space:nowrap;
}
.mq-item{
  display:inline-flex;align-items:center;gap:2rem;
  padding:0 2.5rem;
  font-size:11px;font-weight:600;
  letter-spacing:.28em;text-transform:uppercase;
  color:rgba(255,255,255,.75);
}
.mq-sep{width:4px;height:4px;background:rgba(255,255,255,.4);flex-shrink:0}
@keyframes mq-run{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ── TESTIMONIALS ─────────────────────────────── */
.testi{background:var(--bg)}
.testi-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:2px;
  max-width:var(--max);margin:0 auto;
}
.testi-card{
  background:var(--white);
  padding:2.5rem 2rem;
  border:1px solid var(--border);
}
.testi-stars{display:flex;gap:.25rem;margin-bottom:1rem}
.testi-stars svg{width:14px;height:14px;fill:var(--gold)}
.testi-text{
  font-size:14px;font-weight:400;
  line-height:1.75;color:var(--text2);
  margin-bottom:1.5rem;
  font-style:italic;
}
.testi-author-row{display:flex;align-items:center;gap:.8rem}
.testi-author-row img{
  width:40px;height:40px;border-radius:50%;
  object-fit:cover;border:2px solid var(--border);
}
.ta-name{font-size:13px;font-weight:600;color:var(--text)}
.ta-loc{font-size:11.5px;color:var(--text3)}

/* ── NEWSLETTER ───────────────────────────────── */
.nl{background:#5B7A66}  /* warm sage — never black */
.nl-inner{
  max-width:580px;margin:0 auto;
  text-align:center;
}
.nl-inner .sec-title{color:var(--white);font-size:clamp(2rem,3.5vw,3rem)}
.nl-inner p{
  font-size:13.5px;font-weight:400;
  line-height:1.75;color:rgba(255,255,255,.55);
  margin:1rem auto 2.2rem;
}
.nl-form{
  display:flex;
  border:1px solid rgba(255,255,255,.2);
  overflow:hidden;
}
.nl-form input{
  flex:1;background:transparent;border:none;outline:none;
  font-family:'Inter',sans-serif;font-size:13.5px;
  color:var(--white);padding:.85rem 1.2rem;
  min-width:0;
}
.nl-form input::placeholder{color:rgba(255,255,255,.35)}
.nl-form button{
  background:var(--brand);color:var(--white);
  font-family:'Inter',sans-serif;
  font-size:11px;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;
  padding:.85rem 1.8rem;
  transition:background .2s;
  flex-shrink:0;cursor:pointer;
}
.nl-form button:hover{background:var(--brand2)}

/* ── FOOTER ───────────────────────────────────── */
footer{background:var(--bg);border-top:1px solid var(--border)}
.footer-main{
  max-width:var(--max);margin:0 auto;
  padding:4rem var(--pad) 2.5rem;
  display:grid;grid-template-columns:2fr 1fr 1fr 1.3fr;
  gap:3rem;
}
.f-logo-wrap .nav-logo{font-size:22px;display:inline-block;margin-bottom:1rem}
.f-tagline{
  font-size:13px;font-weight:400;
  line-height:1.75;color:var(--text2);
  max-width:240px;margin-bottom:1.5rem;
}
.f-socials{display:flex;gap:.6rem}
.f-social{
  width:32px;height:32px;
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  transition:border-color .2s,background .2s;
}
.f-social:hover{border-color:var(--brand);background:rgba(139,47,47,.05)}
.f-social svg{width:15px;height:15px;fill:var(--text2);transition:fill .2s}
.f-social:hover svg{fill:var(--brand)}

.f-col-title{
  font-size:11px;font-weight:700;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--text);margin-bottom:1.2rem;
}
.f-links{display:flex;flex-direction:column;gap:.6rem}
.f-link{
  font-size:13px;font-weight:400;color:var(--text2);
  transition:color .2s;
}
.f-link:hover{color:var(--brand)}
.f-contact-item{
  display:flex;align-items:flex-start;gap:.6rem;
  font-size:13px;font-weight:400;
  color:var(--text2);margin-bottom:.7rem;line-height:1.5;
}
.f-contact-item svg{width:14px;height:14px;stroke:var(--brand);fill:none;stroke-width:1.8;flex-shrink:0;margin-top:.15rem}

.footer-bottom{
  border-top:1px solid var(--border);
  padding:1.5rem var(--pad);
}
.footer-bottom-inner{
  max-width:var(--max);margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:.8rem;
}
.footer-bottom p{font-size:12px;color:var(--text3);font-weight:400}
.powered-by-link{color:#e07b39;font-weight:700;text-decoration:none;background:rgba(224,123,57,.12);padding:1px 6px;border-radius:4px;transition:background .2s,color .2s}
.powered-by-link:hover{background:rgba(224,123,57,.25);color:#c4601e}
.f-bottom-links{display:flex;gap:1.5rem}
.f-bottom-links a{font-size:12px;color:var(--text3);transition:color .2s}
.f-bottom-links a:hover{color:var(--brand)}

/* ── PAGE HERO (inner pages) ──────────────────── */
.page-hero{
  height:52vh;min-height:340px;
  position:relative;overflow:hidden;
}
.page-hero img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform 8s var(--ease);
}
.page-hero:hover img{transform:scale(1.03)}
.page-hero-overlay{
  position:absolute;inset:0;
  background:rgba(0,0,0,.32);
}
.page-hero-content{
  position:absolute;inset:0;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;
  padding:0 var(--pad);
}
.page-hero-content .eyebrow{color:rgba(255,255,255,.65)}
.page-hero-content .sec-title{color:var(--white);font-size:clamp(3rem,7vw,6.5rem)}

/* ── FILTER BAR ───────────────────────────────── */
.filter-bar{
  background:var(--white);
  border-bottom:1px solid var(--border);
  position:sticky;top:var(--nav-h);z-index:100;
  padding:0 var(--pad);
}
.filter-inner{
  max-width:var(--max);margin:0 auto;
  display:flex;align-items:center;
  overflow-x:auto;scrollbar-width:none;
  justify-content:center;gap:0;
}
.filter-inner::-webkit-scrollbar{display:none}
.fb{
  padding:1rem 1.4rem;
  font-size:11.5px;font-weight:500;
  letter-spacing:.14em;text-transform:uppercase;
  color:var(--text2);white-space:nowrap;
  border-bottom:2px solid transparent;
  transition:color .2s,border-color .2s;cursor:pointer;
}
.fb:hover{color:var(--text)}
.fb.active{color:var(--brand);border-bottom-color:var(--brand)}

/* SHOP PAGE GRID */
.shop-s{padding:4rem var(--pad);background:var(--white)}
.shop-inner{max-width:var(--max);margin:0 auto}
.shop-topbar{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:2rem;padding-bottom:1.2rem;
  border-bottom:1px solid var(--border);
}
.shop-count{font-size:13px;color:var(--text2);font-weight:400}
.shop-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.pc.hide{display:none}

/* ABOUT PAGE */
.story-s{
  display:grid;grid-template-columns:1fr 1fr;
  max-width:var(--max);margin:0 auto;
  min-height:580px;
}
.story-img{overflow:hidden}
.story-img img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .8s var(--ease);
}
.story-s:hover .story-img img{transform:scale(1.03)}
.story-body{
  display:flex;flex-direction:column;
  justify-content:center;
  padding:4rem 5%;
  background:var(--bg);
}
.story-body .sec-title{margin-bottom:1.5rem}
.story-body p{
  font-size:14px;font-weight:400;
  line-height:1.85;color:var(--text2);margin-bottom:1.2rem;
}
.story-sig{
  font-family:'Cormorant Garamond',serif;
  font-size:1.7rem;font-style:italic;
  color:var(--brand);margin-top:1.5rem;display:block;
}
.story-list{margin:1.2rem 0 2rem;display:flex;flex-direction:column;gap:.5rem}
.story-list li{
  font-size:13.5px;color:var(--text2);
  display:flex;align-items:center;gap:.7rem;
}
.story-list li::before{
  content:'';width:16px;height:1px;
  background:var(--brand);flex-shrink:0;
}

/* STATS */
.stats{background:var(--brand);padding:3.5rem var(--pad)}  /* terracotta bg — warm, not harsh */
.stats-inner{
  max-width:var(--max);margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;
}
.stat{text-align:center;padding:1.5rem 1rem;border-right:1px solid rgba(255,255,255,.15)}
.stat:last-child{border:none}
.stat-num{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.8rem,5vw,5rem);
  font-weight:300;color:var(--white);line-height:1;
}
.stat-suf{font-size:.55em;color:rgba(255,255,255,.7)}
.stat-lbl{
  font-size:10.5px;font-weight:600;
  letter-spacing:.2em;text-transform:uppercase;
  color:rgba(255,255,255,.55);margin-top:.4rem;
}

/* TEAM */
.team-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:2rem;max-width:900px;margin:0 auto;
}
.team-card{text-align:center}
.team-card-img{
  width:160px;height:160px;border-radius:50%;
  object-fit:cover;border:3px solid var(--border);
  margin:0 auto 1.2rem;
  transition:border-color .25s;display:block;
}
.team-card:hover .team-card-img{border-color:var(--brand)}
.team-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:1.3rem;font-weight:500;color:var(--text);margin-bottom:.25rem;
}
.team-role{
  font-size:10.5px;font-weight:600;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--brand);margin-bottom:.6rem;
}
.team-card p{font-size:13px;font-weight:400;line-height:1.7;color:var(--text2)}

/* VALUES */
.values-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:24px;max-width:1100px;margin:0 auto;
}
.val-card{
  background:var(--bg);
  padding:2.5rem 2rem;
  border-top:2px solid var(--brand);
  transition:box-shadow .3s var(--ease);
}
.val-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.07)}
.val-icon{
  width:44px;height:44px;
  background:var(--brand);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.2rem;
}
.val-icon svg{width:22px;height:22px;stroke:var(--white);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.val-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:1.3rem;font-weight:500;color:var(--text);margin-bottom:.6rem;
}
.val-card p{font-size:13px;font-weight:400;line-height:1.75;color:var(--text2)}

/* TIMELINE */
.tl-s{background:var(--bg)}
.tl-title{font-size:clamp(1.8rem,3vw,2.8rem);text-align:center;margin-bottom:4rem}
.tl-wrap{max-width:800px;margin:0 auto;position:relative}
.tl-wrap::before{
  content:'';position:absolute;
  left:50%;top:0;bottom:0;
  width:1px;background:var(--border);
  transform:translateX(-50%);
}
.tl-item{
  display:grid;grid-template-columns:1fr 60px 1fr;
  margin-bottom:3rem;align-items:start;
}
.tl-item:nth-child(even) .tl-card{grid-column:3}
.tl-item:nth-child(even) .tl-empty{grid-column:1;grid-row:1}
.tl-card{
  background:var(--white);
  border:1px solid var(--border);
  padding:1.6rem;
}
.tl-year{
  font-family:'Cormorant Garamond',serif;
  font-size:1.8rem;font-weight:300;color:var(--brand);line-height:1;margin-bottom:.4rem;
}
.tl-card h3{font-size:15px;font-weight:600;color:var(--text);margin-bottom:.4rem}
.tl-card p{font-size:13px;font-weight:400;line-height:1.7;color:var(--text2)}
.tl-dot-wrap{display:flex;align-items:flex-start;justify-content:center;padding-top:1.5rem}
.tl-dot-wrap::after{
  content:'';width:12px;height:12px;border-radius:50%;
  background:var(--brand);border:3px solid var(--bg);
  box-shadow:0 0 0 3px rgba(139,47,47,.2);
}

/* CTA FULL */
.cta-full{background:var(--bg)}
.cta-full-inner{
  max-width:600px;margin:0 auto;
  text-align:center;
}
.cta-full-inner .sec-title{font-size:clamp(2.2rem,4vw,3.5rem);margin-bottom:1rem}
.cta-full-inner p{
  font-size:14px;color:var(--text2);
  line-height:1.8;margin-bottom:2.5rem;
}
.cta-btns{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap}

/* TOAST */
.toast{
  position:fixed;bottom:2rem;right:2rem;
  background:var(--text);color:var(--white);
  padding:.9rem 1.4rem;
  font-size:13px;font-weight:500;
  box-shadow:0 8px 32px rgba(0,0,0,.2);
  border-left:3px solid var(--green);
  display:flex;align-items:center;gap:.6rem;
  z-index:99999;
  transform:translateX(120%);
  transition:transform .45s var(--spring);
}
.toast.show{transform:translateX(0)}
.toast svg{width:16px;height:16px;fill:var(--green);flex-shrink:0}

/* SCROLL TOP */
.scroll-top{
  position:fixed;bottom:2rem;left:2rem;
  width:40px;height:40px;
  background:var(--brand);
  display:flex;align-items:center;justify-content:center;
  z-index:5000;
  opacity:0;transform:translateY(16px);
  transition:opacity .3s,transform .3s var(--spring),background .2s;
  cursor:pointer;
}
.scroll-top.vis{opacity:1;transform:translateY(0)}
.scroll-top:hover{background:var(--brand2)}
.scroll-top svg{width:16px;height:16px;stroke:var(--white);fill:none;stroke-width:2}

/* REVEAL */
.rev{
  opacity:0;transform:translateY(24px);
  transition:opacity .75s var(--ease),transform .75s var(--ease);
}
.rev.in{opacity:1;transform:translateY(0)}
.rev-l{
  opacity:0;transform:translateX(-24px);
  transition:opacity .75s var(--ease),transform .75s var(--ease);
}
.rev-l.in{opacity:1;transform:translateX(0)}
.rev-r{
  opacity:0;transform:translateX(24px);
  transition:opacity .75s var(--ease),transform .75s var(--ease);
}
.rev-r.in{opacity:1;transform:translateX(0)}
.d1{transition-delay:.1s}.d2{transition-delay:.2s}
.d3{transition-delay:.3s}.d4{transition-delay:.4s}
.d5{transition-delay:.5s}.d6{transition-delay:.6s}

/* ── SPLITTING.JS ─────────────────────────────── */
.hero-line-1,
.hero-line-2 {
  display: block;
  overflow: hidden;  /* clips chars as they slide up */
}
.hero-line-2 {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.75);
}
.hero-h1 .char {
  display: inline-block;
}

/* ── SWIPER OVERRIDES ─────────────────────────── */
.testi-swiper {
  padding-bottom: 3rem !important;
  width: 100%;
  overflow: hidden;
}
.testi-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.testi-swiper .swiper-slide .testi-card {
  width: 100%;
  flex: 1;
}
.testi-swiper .swiper-pagination {
  bottom: 0;
}
.testi-swiper .swiper-pagination-bullet {
  background: var(--border-dark);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all .3s var(--ease);
}
.testi-swiper .swiper-pagination-bullet-active {
  background: var(--brand);
  width: 22px;
  border-radius: 4px;
}

/* ── AOS OVERRIDE ─────────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── BARBA CONTAINER ──────────────────────────── */
[data-barba="container"] {
  position: relative;
}

/* ── SPLASH INTRO ─────────────────────────────── */
.splash-o,
.splash-i {
  position: fixed;
  width: 160vmax; height: 160vmax;
  top: 50%; left: 50%;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}
.splash-o { background: rgba(196,120,69,.32); z-index: 99998; }
.splash-i { background: var(--text);           z-index: 99999; }
.splash-logo {
  position: fixed;
  top: 50%; left: 50%;
  z-index: 100000;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: .44em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
}
.splash-logo span { color: var(--brand); }

/* ── 3D CARD TILT ─────────────────────────────── */
.prod-img-wrap { will-change: transform; }
.card-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity .35s;
}

/* ── HERO PARTICLES ───────────────────────────── */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ── CATEGORY CARD FLIP ───────────────────────── */
.cat-item { perspective: 1200px; }
.cat-flip-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
@media (hover: hover) {
  .cat-item:hover .cat-flip-inner { transform: rotateY(180deg); }
  .cat-item:hover .cat-img-wrap img { transform: none; }
  .cat-item:hover .cat-name { color: var(--text); }
}
.cat-front,
.cat-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.cat-front { width: 100%; }
.cat-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  background: var(--brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  gap: .5rem;
}
.cat-back-icon {
  width: 48px; height: 48px;
  border: 1.5px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .5rem;
}
.cat-back-icon svg {
  width: 22px; height: 22px;
  stroke: var(--white); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.cat-back-name {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--white);
}
.cat-back-count {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
}
.cat-back-cta {
  margin-top: .8rem;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 2px;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media(max-width:1100px){
  .products-grid,.shop-grid{grid-template-columns:repeat(3,1fr)}
  .cats-grid{grid-template-columns:repeat(2,1fr)}
  .footer-main{grid-template-columns:1fr 1fr;gap:2rem}
  .testi-grid{grid-template-columns:1fr 1fr}
  .testi-grid .testi-card:last-child{display:none}
}
@media(max-width:900px){
  .split,.story-s{grid-template-columns:1fr}
  .split-img,.story-img{min-height:320px}
  .split.reverse{direction:ltr}
  .hero-panels{grid-template-columns:1fr}
  .hero-panel{height:45vh}
  .stats-inner{grid-template-columns:repeat(2,1fr)}
  .stats-inner .stat:nth-child(2){border-right:none}
  .values-grid{grid-template-columns:repeat(2,1fr)}
  .team-grid{grid-template-columns:1fr 1fr;max-width:500px}
  .tl-wrap::before{left:16px}
  .tl-item{grid-template-columns:36px 1fr}
  .tl-item:nth-child(even) .tl-card{grid-column:2}
  .tl-item .tl-empty,.tl-item:nth-child(even) .tl-empty{display:none}
  .tl-dot-wrap{width:36px}
}
@media(max-width:768px){
  :root{--nav-h:54px}
  .nav-left,.nav-cat{display:none}
  .burger{display:flex}
  .nav-wa-btn{display:none}
  .products-grid,.shop-grid{grid-template-columns:repeat(2,1fr);gap:16px}
  .cats-grid{grid-template-columns:repeat(2,1fr);gap:12px}
  .services-inner{grid-template-columns:repeat(2,1fr)}
  .svc:nth-child(2){border-right:none}
  .svc{border-bottom:1px solid var(--border);padding-bottom:1.5rem;margin-bottom:.5rem}
  .svc:nth-child(3),.svc:nth-child(4){border-bottom:none}
  .footer-main{grid-template-columns:1fr;gap:1.5rem}
  .prod-wa-overlay{display:none}
  .prod-wa-mob{display:flex}
  .testi-grid{grid-template-columns:1fr}
  .testi-grid .testi-card:last-child{display:block}
  .values-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr;max-width:280px}
  .nl-form{flex-direction:column}
  .nl-form button{width:100%;padding:.85rem}
}
@media(max-width:480px){
  .products-grid,.shop-grid{grid-template-columns:1fr;max-width:320px;margin:0 auto}
  .hero-panels{display:none}
  .stats-inner{grid-template-columns:1fr 1fr}
  .footer-bottom-inner{flex-direction:column;gap:.5rem}
}
