/* =========================================================
   FURNIVERSAL — brand stylesheet
   Palette: warm cream, deep olive, espresso, brass accent
   ========================================================= */

:root {
  --cream:      #f7f3ec;
  --cream-2:    #efe9df;
  --sand:       #e4dccd;
  --olive:      #4a4d33;   /* logo green  */
  --olive-deep: #383b27;
  --espresso:   #1f1d18;
  --ink:        #2b2a24;
  --muted:      #7a7466;
  --brass:      #b08d4f;
  --brass-deep: #9a7838;
  --line:       #e0d8c9;
  --white:      #ffffff;

  --shadow-sm: 0 2px 10px rgba(31, 29, 24, .06);
  --shadow-md: 0 12px 40px rgba(31, 29, 24, .12);
  --shadow-lg: 0 30px 80px rgba(31, 29, 24, .18);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1280px;
  --radius: 4px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; color: var(--espresso); }

.container { width: min(var(--maxw), 92%); margin-inline: auto; }
.section   { padding: clamp(64px, 9vw, 130px) 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
  margin-bottom: 18px;
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--olive); color: var(--cream); }
.btn-primary:hover { background: var(--olive-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--espresso); color: var(--cream); }
.btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--espresso); border-color: var(--ink); }
.btn-outline:hover { background: var(--espresso); color: var(--cream); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(247,243,236,.55); }
.btn-outline-light:hover { background: var(--cream); color: var(--espresso); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1faa52; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-wa svg { width: 18px; height: 18px; fill: currentColor; }
.btn-lg { padding: 18px 40px; font-size: .85rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center;
  padding: 18px 0;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(var(--maxw), 94%); }
.site-header.scrolled { background: var(--cream); box-shadow: var(--shadow-sm); padding: 12px 0; }

.brand img { height: 34px; width: auto; transition: filter .4s; }
.site-header.transparent:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
.site-header.transparent:not(.scrolled) .nav a { color: var(--cream); }
.site-header.transparent:not(.scrolled) .nav-toggle span { background: var(--cream); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  color: var(--ink); position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--brass); transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--cream); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background: #14120e; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.6s var(--ease);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
/* hero background video */
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-video img { width: 100%; height: 100%; object-fit: cover; }
/* subtle Ken Burns zoom on the visible slide for a premium, living feel */
.hero-slide.active img { animation: heroZoom 8s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(105deg, rgba(20,18,14,.82) 0%, rgba(20,18,14,.55) 42%, rgba(20,18,14,.22) 100%);
}
/* keep the overlaid hero copy legible over any video frame */
.hero h1, .hero p, .hero .eyebrow { text-shadow: 0 2px 22px rgba(10,8,4,.5); }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity .4s ease; }
  .hero-slide.active img { animation: none; }
}

/* slide indicator dots */
.hero-dots { display: flex; gap: 10px; margin-top: 44px; }
.hero-dots button {
  width: 30px; height: 3px; border: 0; padding: 0; cursor: pointer; border-radius: 4px;
  background: rgba(247,243,236,.35); transition: background .3s, width .3s;
}
.hero-dots button:hover { background: rgba(247,243,236,.6); }
.hero-dots button.active { background: #e7c98c; width: 44px; }
.hero .container { position: relative; z-index: 2; padding-top: 80px; }
.hero-inner { max-width: 660px; }
.hero .eyebrow { color: #e7d3a8; }
.hero h1 { font-size: clamp(2.8rem, 6.6vw, 5.4rem); color: var(--cream); letter-spacing: -.01em; }
.hero h1 em { font-style: italic; color: #e7c98c; }
.hero p { font-size: clamp(1.02rem, 1.5vw, 1.22rem); margin: 26px 0 38px; max-width: 540px; color: rgba(247,243,236,.9); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  color: var(--cream); font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: .85;
}
.hero-scroll::after { content: ""; width: 1px; height: 40px; background: linear-gradient(var(--cream), transparent); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: scaleY(.2); transform-origin: top; } 50% { transform: scaleY(1); } 100% { transform: scaleY(.2); transform-origin: bottom; } }

/* =========================================================
   MARQUEE / TRUST STRIP
   ========================================================= */
.trust-strip { background: var(--espresso); color: var(--cream); padding: 22px 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 40px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(247,243,236,.82); }
.trust-item svg { width: 20px; height: 20px; stroke: var(--brass); fill: none; stroke-width: 1.5; flex: none; }

/* =========================================================
   PROMISE / ONE-STOP CARDS
   ========================================================= */
.promise { background: var(--cream); }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.promise-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.promise-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.promise-card .num { font-family: var(--serif); font-size: 1.1rem; color: var(--brass); border: 1px solid var(--brass); width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; margin-bottom: 22px; }
.promise-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.promise-card p { color: var(--muted); font-size: .96rem; }

/* =========================================================
   CATEGORY TILES
   ========================================================= */
.cats { background: var(--cream-2); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4;
  display: block; box-shadow: var(--shadow-sm);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,14,.7), rgba(20,18,14,0) 55%); }
.cat-card:hover img { transform: scale(1.07); }
.cat-card .cat-label { position: absolute; left: 24px; bottom: 22px; z-index: 2; color: var(--cream); }
.cat-card .cat-label h3 { color: var(--cream); font-size: 1.5rem; }
.cat-card .cat-label span { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: #e7c98c; }

/* =========================================================
   PRODUCT GRID (shared home + shop)
   ========================================================= */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.product-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--cream-2); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .5s; }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(247,243,236,.92); color: var(--olive-deep);
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: 6px 12px; border-radius: 40px;
}
.product-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.45rem; margin-bottom: 4px; }
.product-body .p-tagline { color: var(--muted); font-size: .92rem; margin-bottom: 18px; flex: 1; }
.product-actions { display: flex; gap: 10px; align-items: center; }
.product-actions .btn { flex: 1; justify-content: center; padding: 13px 16px; font-size: .72rem; }
.icon-wa-btn {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center;
  background: #25D366; border-radius: var(--radius); transition: background .3s, transform .3s;
}
.icon-wa-btn:hover { background: #1faa52; transform: translateY(-2px); }
.icon-wa-btn svg { width: 22px; height: 22px; fill: #fff; }

/* =========================================================
   SPLIT FEATURE
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 6vw, 90px); }
.split.reverse .split-text { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.split-media .badge {
  position: absolute; bottom: -26px; right: -10px; background: var(--olive); color: var(--cream);
  padding: 22px 28px; border-radius: var(--radius); box-shadow: var(--shadow-md); max-width: 220px;
}
.split-media .badge strong { font-family: var(--serif); font-size: 2.2rem; display: block; line-height: 1; }
.split-media .badge span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }
.split-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.split-text p { color: var(--muted); margin-bottom: 16px; }
.feature-list { list-style: none; margin: 24px 0 32px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; font-size: .98rem; color: var(--ink); }
.feature-list li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--brass) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/13px no-repeat; }

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.process { background: var(--espresso); color: var(--cream); }
.process .section-head h2 { color: var(--cream); }
.process .section-head p { color: rgba(247,243,236,.7); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.step { text-align: center; padding: 0 6px; }
.step .step-num {
  width: 62px; height: 62px; margin: 0 auto 22px; border-radius: 50%;
  border: 1px solid var(--brass); color: #e7c98c; display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.5rem; background: var(--espresso); position: relative; z-index: 2;
}
.step h4 { color: var(--cream); font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: rgba(247,243,236,.62); font-size: .88rem; }
.steps::before { content: ""; position: absolute; top: 31px; left: 10%; right: 10%; height: 1px; background: rgba(176,141,79,.3); z-index: 1; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-band { position: relative; color: var(--cream); text-align: center; overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-bg::after { content: ""; position: absolute; inset: 0; background: rgba(20,18,14,.74); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.8rem); max-width: 760px; margin: 0 auto 18px; }
.cta-band p { color: rgba(247,243,236,.85); max-width: 560px; margin: 0 auto 34px; font-size: 1.08rem; }
.cta-band .hero-cta { justify-content: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--olive-deep); color: rgba(247,243,236,.78); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(247,243,236,.12); }
.footer-brand img { height: 40px; margin-bottom: 20px; }
.footer-brand p { font-size: .94rem; max-width: 300px; }
.footer-col h4 { color: var(--cream); font-size: 1rem; letter-spacing: .04em; margin-bottom: 18px; font-family: var(--sans); text-transform: uppercase; font-weight: 600; font-size: .82rem; }
.footer-col a, .footer-col p { display: block; font-size: .94rem; margin-bottom: 11px; transition: color .25s; }
.footer-col a:hover { color: #e7c98c; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: .82rem; color: rgba(247,243,236,.55); }
.footer-bottom .socials { display: flex; gap: 16px; }
.footer-bottom .socials a { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(247,243,236,.22); border-radius: 50%; }
.footer-bottom .socials a:hover { background: var(--brass); border-color: var(--brass); }
.footer-bottom .socials svg { width: 16px; height: 16px; fill: currentColor; }

/* =========================================================
   PAGE HEADER (shop / product)
   ========================================================= */
.page-hero { padding: 150px 0 60px; background: var(--cream-2); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { color: var(--brass-deep); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.page-hero p { color: var(--muted); margin-top: 12px; max-width: 560px; }
.breadcrumbs { font-size: .8rem; letter-spacing: .06em; color: var(--muted); margin-bottom: 18px; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--brass-deep); }

/* ---------- Shop filters ---------- */
.shop-toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-btn {
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  font-family: var(--sans); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 40px; cursor: pointer; transition: all .3s;
}
.filter-btn:hover { border-color: var(--olive); }
.filter-btn.active { background: var(--olive); color: var(--cream); border-color: var(--olive); }
.result-count { font-size: .85rem; color: var(--muted); }

/* =========================================================
   SINGLE PRODUCT
   ========================================================= */
.pdp { padding: 130px 0 0; }
.pdp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: start; }
.pdp-gallery { position: sticky; top: 100px; }
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--cream-2); aspect-ratio: 1/1; box-shadow: var(--shadow-md); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumbs button { width: 84px; height: 84px; border-radius: var(--radius); overflow: hidden; border: 2px solid transparent; cursor: pointer; padding: 0; background: none; transition: border-color .3s; }
.gallery-thumbs button.active { border-color: var(--olive); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info .cat-pill { display: inline-block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-deep); margin-bottom: 14px; }
.pdp-info .cat-pill:not(:last-of-type)::after { content: "·"; margin: 0 8px; color: var(--muted, #8a8578); }
.pdp-info h1 { font-size: clamp(2.3rem, 4.5vw, 3.4rem); margin-bottom: 10px; }
.pdp-info .lead { color: var(--muted); font-size: 1.1rem; margin-bottom: 22px; }
.pdp-price { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px; margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.pdp-price .price-tag { font-family: var(--serif); font-size: 1.5rem; color: var(--olive); white-space: nowrap; }
.pdp-price .price-sub { font-size: .82rem; letter-spacing: .04em; color: var(--muted); }
.pdp-price .price-badge { margin-left: auto; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-deep); border: 1px solid var(--brass); border-radius: 40px; padding: 6px 14px; white-space: nowrap; }
@media (max-width: 480px) { .pdp-price .price-badge { margin-left: 0; } }
.pdp-info .desc { margin-bottom: 28px; }
.spec-table { width: 100%; border-top: 1px solid var(--line); margin-bottom: 30px; }
.spec-table .row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.spec-table .row span:first-child { color: var(--muted); letter-spacing: .04em; }
.spec-table .row span:last-child { font-weight: 500; color: var(--ink); }
.pdp-features { margin-bottom: 32px; }
.pdp-features h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; color: var(--ink); }
.pdp-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.pdp-cta .btn { flex: 1; min-width: 200px; justify-content: center; }
.pdp-note { margin-top: 18px; font-size: .86rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.pdp-note svg { width: 16px; height: 16px; stroke: var(--brass-deep); fill: none; stroke-width: 1.6; }

/* related */
.related { padding-top: 100px; }

/* =========================================================
   ABOUT / STATS BAND
   ========================================================= */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-text .eyebrow { color: var(--brass-deep); }
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-sign { margin-top: 26px; font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--olive); }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; text-align: center; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card .stat-num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.2rem); color: var(--olive); line-height: 1; }
.stat-card .stat-num span { color: var(--brass); }
.stat-card .stat-label { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--cream-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.testi-stars { color: var(--brass); letter-spacing: 3px; margin-bottom: 18px; font-size: 1rem; }
.testi-card blockquote { font-family: var(--serif); font-size: 1.32rem; line-height: 1.45; color: var(--ink); margin-bottom: 24px; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--olive); color: var(--cream); display: grid; place-items: center; font-family: var(--serif); font-size: 1.3rem; flex: none; }
.testi-author .name { font-weight: 600; color: var(--espresso); font-size: .98rem; }
.testi-author .place { font-size: .84rem; color: var(--muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; cursor: pointer; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 4px; font-family: var(--serif); font-size: 1.3rem; color: var(--espresso); transition: color .3s; }
.faq-q:hover { color: var(--olive); }
.faq-q .faq-icon { flex: none; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; position: relative; transition: background .3s, border-color .3s; }
.faq-q .faq-icon::before, .faq-q .faq-icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--olive); transform: translate(-50%, -50%); transition: transform .3s, background .3s; }
.faq-q .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-q .faq-icon { background: var(--olive); border-color: var(--olive); }
.faq-item.open .faq-q .faq-icon::before, .faq-item.open .faq-q .faq-icon::after { background: var(--cream); }
.faq-item.open .faq-q .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--muted); font-size: 1.02rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--espresso); color: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-info .eyebrow { color: #e7c98c; }
.contact-info h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.contact-info p { color: rgba(247,243,236,.72); margin-bottom: 30px; max-width: 420px; }
.contact-list { list-style: none; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ci-icon { flex: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(176,141,79,.4); display: grid; place-items: center; }
.contact-list .ci-icon svg { width: 20px; height: 20px; stroke: #e7c98c; fill: none; stroke-width: 1.6; }
.contact-list .ci-label { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,243,236,.55); }
.contact-list .ci-value { color: var(--cream); font-size: 1.05rem; }
.contact-list a.ci-value:hover { color: #e7c98c; }

.contact-form { background: var(--cream); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-lg); }
.contact-form h3 { font-size: 1.7rem; margin-bottom: 6px; }
.contact-form .form-note { color: var(--muted); font-size: .92rem; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(74,77,51,.12); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .btn-wa { width: 100%; justify-content: center; margin-top: 8px; }
.form-disclaimer { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 14px; }

/* =========================================================
   WHATSAPP FLOATING WIDGET (from brief)
   ========================================================= */
.wapp-float-btn {
  position: fixed; bottom: 22px; right: 22px; width: 64px; height: 64px; border-radius: 50%;
  background: #25D366; border: none; cursor: pointer; display: grid; place-items: center;
  z-index: 998; transition: transform .3s, box-shadow .3s; box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.wapp-float-btn svg { width: 34px; height: 34px; fill: #fff; }
.wapp-float-btn:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(37,211,102,.5); }
.wapp-float-btn::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  z-index: -1; animation: waPulse 2.4s infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .6; } 70% { transform: scale(1.6); opacity: 0; } 100% { opacity: 0; } }

.wapp-modal { position: fixed; bottom: 100px; right: 22px; display: none; z-index: 997; animation: slideUp .3s ease; max-width: calc(100vw - 44px); }
.wapp-modal.active { display: block; }
@keyframes slideUp { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.wapp-popup { background: #fff; border-radius: 16px; max-width: 320px; width: 100%; position: relative; box-shadow: var(--shadow-lg); overflow: hidden; }
.wapp-popup-head { background: #075E54; padding: 20px 22px; display: flex; align-items: center; gap: 12px; }
.wapp-popup-head .wa-avatar { width: 46px; height: 46px; border-radius: 50%; background: #25D366; display: grid; place-items: center; flex: none; }
.wapp-popup-head .wa-avatar svg { width: 26px; height: 26px; fill: #fff; }
.wapp-popup-head h3 { color: #fff; font-family: var(--sans); font-size: 1rem; margin: 0; }
.wapp-popup-head p { color: rgba(255,255,255,.75); font-size: .78rem; margin: 0; }
.wapp-popup-body { padding: 22px; background: #ECE5DD; background-image: linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,.4)); }
.wapp-bubble { background: #fff; padding: 14px 16px; border-radius: 0 12px 12px 12px; font-size: .92rem; color: #333; box-shadow: 0 1px 2px rgba(0,0,0,.08); margin-bottom: 18px; }
.wapp-bubble strong { display: block; color: var(--olive); font-size: .82rem; margin-bottom: 4px; }
.wapp-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: #fff !important;
  padding: 14px; border-radius: 10px; font-weight: 600; font-size: .92rem; transition: background .3s, transform .3s;
}
.wapp-cta:hover { background: #1faa52; transform: translateY(-2px); }
.wapp-cta svg { width: 22px; height: 22px; fill: #fff; }
.wapp-close-btn { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,.2); border: none; color: #fff; width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 15px; display: grid; place-items: center; z-index: 3; }
.wapp-close-btn:hover { background: rgba(255,255,255,.35); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

/* =========================================================
   VIDEOS — home "in motion" gallery + product page clips
   ========================================================= */
.fv-video {
  display: block; width: 100%; height: 100%;
  object-fit: cover; background: var(--espresso);
}

/* Home gallery — dark band so the clips stand out */
.section.videos { background: var(--espresso); }
.section.videos .section-head h2 { color: var(--cream); }
.section.videos .section-head p { color: rgba(247, 243, 236, .72); }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.video-card {
  margin: 0; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.video-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.video-card .fv-video { aspect-ratio: 9 / 16; }
.video-tag-link { position: relative; }
.video-cat {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  background: rgba(31, 29, 24, .72); color: var(--cream);
  font-family: var(--sans); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.video-card figcaption {
  padding: 18px 20px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.video-card figcaption h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; margin: 0; }
.video-link {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--sans); font-size: .82rem; font-weight: 500; letter-spacing: .03em;
  color: var(--brass-deep); transition: gap .3s var(--ease), color .3s var(--ease);
}
.video-link:hover { gap: 11px; color: var(--olive); }
.video-link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Product page videos */
.pdp-video { margin-top: 72px; padding-top: 60px; border-top: 1px solid var(--line); }
.pdp-video-head { max-width: 640px; margin: 0 auto 36px; text-align: center; }
.pdp-video-head h2 { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; margin: 6px 0 10px; }
.pdp-video-head p { color: var(--muted); }
.pdp-video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; justify-content: center; }
.pdp-video-grid.single { grid-template-columns: minmax(0, 320px); justify-content: center; }
.pdp-video-grid .fv-video {
  aspect-ratio: 9 / 16; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .step h4 { font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 860px) {
  .nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 24px 6%; gap: 18px; box-shadow: var(--shadow-md); align-items: flex-start;
  }
  .site-header.transparent:not(.scrolled) .nav.open a { color: var(--ink); }
  .split, .pdp-grid { grid-template-columns: 1fr; }
  .pdp-gallery { position: static; top: auto; }
  .split.reverse .split-text { order: 0; }
  .split-media { order: -1; }
  .split-media .badge { right: 16px; }
  .process .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps::before { display: none; }
  .pdp-info { margin-top: 8px; }
  .about-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .promise-grid, .cat-grid, .product-grid { grid-template-columns: 1fr; }
  .video-grid, .pdp-video-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .video-card figcaption { padding: 12px 12px 14px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .video-card figcaption h3 { font-size: 1.2rem; }
  .trust-strip .container { justify-content: center; }
  .process .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .pdp-cta .btn { flex: 1; }
  .btn { padding: 15px 24px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .page-hero { padding: 130px 0 48px; }
  .page-hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .pdp-cta .btn { min-width: 100%; }
}
