/* ============================================================
   KL CRAFTED CURATIONS — LUXURY BRAND CSS
   Full rewrite: header/hero overlap fix + Unsplash images
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ────────────────────────────────────────── */
:root {
  /* Header height — used to offset hero content below fixed header */
  --header-h: 76px;

  --gold:          #8C6F3A;
  --gold-light:    #B59E6B;
  --gold-lighter:  #D8C493;
  --gold-dark:     #6F5230;
  --gold-deep:     #503E24;
  --gold-grad:     linear-gradient(135deg,#6F5230 0%,#8C6F3A 40%,#C2A76A 65%,#8C6F3A 100%);
  --gold-grad-h:   linear-gradient(90deg, #6F5230 0%,#8C6F3A 50%,#C2A76A 100%);
  --gold-foil:     linear-gradient(135deg,#7B6237 0%,#F0E0A8 25%,#A98A43 50%,#E9D5A2 75%,#7B6237 100%);

  --white:      #FFFFFF;
  --off-white:  #FDFBF6;
  --cream:      #FAF6ED;
  --cream-mid:  #F3ECD8;
  --cream-deep: #EAD9B8;
  --linen:      #F8F2E6;

  --ink:        #0E0B06;
  --ink-soft:   #1C1609;
  --ink-mid:    #2A1E0C;
  --text-dark:  #1A1208;
  --text-mid:   #4A3820;
  --text-soft:  #7A6648;
  --text-muted: #A89878;

  --border:      #E8D9BC;
  --border-soft: #F0E8D5;

  --shad-xs: 0 2px 12px rgba(160,124,40,.08);
  --shad-sm: 0 4px 24px rgba(160,124,40,.12);
  --shad-md: 0 12px 48px rgba(160,124,40,.18);
  --shad-lg: 0 24px 80px rgba(0,0,0,.14);
  --shad-xl: 0 40px 120px rgba(0,0,0,.20);

  --r-xs:   6px;
  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-full: 999px;

  --serif:   'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --elegant: 'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;

  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t-fast: all .2s var(--ease);
  --t:      all .35s var(--ease);
  --t-slow: all .6s var(--ease);
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; transition: var(--t); }
ul  { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── Custom scrollbar ─────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ── Animations ───────────────────────────────────────── */
@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes waPing {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ── Typography ───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6,
.t-h2,
.cat-card-name,
.prod-name,
.why-card h4,
.ft-head,
.testi-name,
.material-name,
.trust-item h5,
.accordion-button,
.page-hero-title {
  font-family: var(--serif);
  letter-spacing: 0.01em;
}

.t-h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}
.t-serif-body {
  font-family: var(--elegant);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--text-soft);
}
.t-label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.t-gold {
  background: var(--gold-foil);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
}

/* ── Divider ──────────────────────────────────────────── */
.kl-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 20px 0;
}
.kl-divider .bar    { width: 48px; height: 1px; background: var(--gold-grad-h); }
.kl-divider .gem    { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.kl-divider .gem-sm { width: 4px; height: 4px; background: var(--gold-light); transform: rotate(45deg); }

/* ── Label pill ───────────────────────────────────────── */
.kl-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(123,97,58,.3);
  background: rgba(171,147,93,.10);
  border-radius: var(--r-full);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.kl-label .dot {
  width: 5px;
  height: 5px;
  background: var(--gold-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Gold rule ────────────────────────────────────────── */
.gold-rule { width: 60px; height: 2px; background: var(--gold-grad-h); border-radius: 2px; }
.gold-rule-center { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────────── */
.btn-kl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  background: var(--gold-grad);
  background-size: 200%;
  color: #fff !important;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r-xs);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--t);
  box-shadow: 0 6px 28px rgba(123,97,58,.30);
  text-decoration: none;
}
.btn-kl:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(123,97,58,.40);
  background-position: right center;
  color: #fff !important;
}

.btn-kl-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold-dark);
  border-radius: var(--r-xs);
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
}
.btn-kl-outline:hover {
  background: var(--gold-grad);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(123,97,58,.25);
}

.btn-kl-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  color: #fff;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: var(--r-xs);
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
}
.btn-kl-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-3px);
  color: #fff;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: #25D366;
  color: #fff !important;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r-xs);
  cursor: pointer;
  transition: var(--t);
  box-shadow: 0 6px 28px rgba(37,211,102,.3);
  text-decoration: none;
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,.5);
  color: #fff !important;
}

/* ── Header ───────────────────────────────────────────── */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  padding: 10px 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(165,140,82,.12);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
#site-header.scrolled {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 10px 35px rgba(160,124,40,.08);
  padding: 6px 0;
}
.navbar-brand img { height: 64px; width: auto; transition: var(--t); }
#site-header.scrolled .navbar-brand img { height: 50px; }

.nav-link-kl {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dark) !important;
  padding: 10px 16px !important;
  position: relative;
  transition: var(--t);
}
#site-header.scrolled .nav-link-kl { color: var(--text-dark) !important; }
.nav-link-kl::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav-link-kl:hover::after,
.nav-link-kl.active::after { transform: scaleX(1); transform-origin: left; }
.nav-link-kl:hover, .nav-link-kl.active { color: var(--gold-dark) !important; }
#site-header.scrolled .nav-link-kl:hover,
#site-header.scrolled .nav-link-kl.active { color: var(--gold-dark) !important; }

.kl-dropdown {
  border: 1px solid rgba(165,140,82,.15);
  border-radius: calc(var(--r-md) + 4px);
  box-shadow: 0 28px 80px rgba(0,0,0,.12);
  padding: 10px 0;
  background: #fff;
  min-width: 260px;
  margin-top: 10px;
  animation: dropIn .25s var(--ease);
}
.kl-dropdown-item {
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--t-fast);
}
.kl-dropdown-item:hover {
  background: rgba(221,212,194,.18);
  color: var(--gold-dark) !important;
  padding-left: 26px;
}

.navbar-toggler {
  border: 1px solid rgba(165,140,82,.2);
  border-radius: var(--r-xs);
  padding: 6px 12px;
}
#site-header.scrolled .navbar-toggler { border-color: rgba(165,140,82,.4); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231A1208' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#site-header.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236F5230' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width:991px) {
  .navbar-collapse {
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(165,140,82,.15);
    border-radius: var(--r-md);
    padding: 20px;
    margin-top: 10px;
  }
  .nav-link-kl { color: var(--text-dark) !important; }
  .nav-link-kl:hover, .nav-link-kl.active { color: var(--gold-dark) !important; }
  .kl-dropdown { background: #fff; border-color: rgba(165,140,82,.15); }
  .kl-dropdown-item { color: var(--text-dark) !important; }
  .kl-dropdown-item:hover { background: rgba(221,212,194,.18); color: var(--gold-dark) !important; }
}

/* ── Floating WhatsApp ────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 9998;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: var(--t);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.12) rotate(-5deg); box-shadow: 0 12px 40px rgba(37,211,102,.7); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.3);
  animation: waPing 2s ease infinite;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   - Premium visual layering, abstract shapes, and glass styling
   - Background image via .hero-bg (absolute, behind overlay)
   - .hero-container has padding-top: header-h + extra space
     so content is never hidden behind fixed header
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: .6;
  pointer-events: none;
}
.hero::before {
  width: 360px;
  height: 360px;
  top: 12%;
  left: -8%;
  background: rgba(255, 233, 176, .22);
}
.hero::after {
  width: 420px;
  height: 420px;
  bottom: 6%;
  right: -10%;
  background: rgba(106, 76, 34, .18);
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform .8s ease;
}
.hero:hover .hero-bg img {
  transform: scale(1.06);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 244, 211, .16) 0%, transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(201,168,76,.12) 0%, transparent 30%),
    linear-gradient(180deg, rgba(14, 12, 9, .45) 0%, rgba(14, 12, 9, .64) 36%, rgba(8, 6, 3, .86) 100%);
  mix-blend-mode: multiply;
}

/* Content container — pushed below fixed header */
.hero-container {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 58px;
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.hero-copy-card {
  position: relative;
  max-width: 520px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-xl);
  backdrop-filter: blur(18px);
  padding: 36px 34px;
  box-shadow: 0 24px 48px rgba(0,0,0,.18);
  overflow: hidden;
}
.hero-copy-card::before,
.hero-copy-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-copy-card::before {
  width: 160px;
  height: 160px;
  top: -28px;
  right: -52px;
  background: rgba(255, 215, 135, .1);
}
.hero-copy-card::after {
  width: 120px;
  height: 120px;
  bottom: -30px;
  left: -26px;
  background: rgba(255, 255, 255, .08);
}

.hero-location {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 18px;
  position: relative;
}
.hero-location::after {
  content: '';
  position: absolute;
  width: 68px;
  height: 2px;
  bottom: -10px;
  left: 0;
  background: rgba(255,255,255,.55);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.2vw, 3.7rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 24px 48px rgba(0,0,0,.18);
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--elegant);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  font-style: italic;
  color: rgba(255,255,255,.86);
  max-width: 460px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: flex-start; }
.hero-actions .btn-kl,
.hero-actions .btn-kl-ghost {
  min-width: 180px;
}

/* Stats bar */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
.hero-stat {
  flex: 1 1 130px;
  min-width: 130px;
  padding: 18px 22px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}
.hero-stat .num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat .lbl {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-top: 8px;
}

/* Right-side image panel */
.hero-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0));
  pointer-events: none;
}
.hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s ease;
}
.hero-img-wrap:hover img { transform: scale(1.02); }



/* ── Marquee strip ────────────────────────────────────── */
.marquee-strip { background: var(--gold-grad); padding: 14px 0; overflow: hidden; }
.marquee-inner { display: flex; white-space: nowrap; animation: marqueeScroll 28s linear infinite; }
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 32px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}
.marquee-item .sep {
  width: 4px; height: 4px;
  background: rgba(255,255,255,.5);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Section spacing ──────────────────────────────────── */
.sec    { padding: 110px 0; }
.sec-sm { padding: 70px 0; }
.sec-header { text-align: center; margin-bottom: 70px; }

/* ── About section ────────────────────────────────────── */
.about-visual { position: relative; }

/* Actual photo wrap (replaces old .about-frame) */
.about-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 520px;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Keep .about-frame for any inner page that may still use it */
.about-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-mid) 50%, var(--cream-deep) 100%);
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.about-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.06), rgba(201,168,76,.02));
}
.about-frame img  { width: 200px; opacity: .65; position: relative; }
.about-frame .frame-label {
  font-family: var(--elegant);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-dark);
  position: relative;
}

.about-accent-box {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold-grad);
  border-radius: var(--r-md);
  padding: 24px 28px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shad-md);
  min-width: 130px;
  border: 3px solid #fff;
}
.about-accent-box .big  { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-accent-box .tiny { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-top: 4px; opacity: .85; }

/* ── Category grid ────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 991px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .cat-grid { grid-template-columns: 1fr; } }

.collections-swiper {
  width: 100%;
  padding: 30px 0 24px;
  overflow: visible;
}
.collections-swiper .swiper-wrapper {
  gap: 1.75rem;
}
.collections-swiper .swiper-slide {
  width: auto;
  min-width: 280px;
  flex-shrink: 0;
}
.collections-swiper .swiper-button-prev,
.collections-swiper .swiper-button-next {
  color: var(--gold-dark);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 28px rgba(0,0,0,.12);
  border: 1px solid rgba(201,168,76,.18);
}
.collections-swiper .swiper-button-prev::after,
.collections-swiper .swiper-button-next::after {
  font-size: 1.1rem;
}
.collections-swiper .swiper-pagination-bullet {
  background: var(--gold-dark);
  opacity: .35;
}
.collections-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.testimonials-swiper {
  width: 100%;
  padding: 30px 0 24px;
  overflow: visible;
}
.testimonials-swiper .swiper-wrapper {
  gap: 1.75rem;
}
.testimonials-swiper .swiper-slide {
  width: auto;
}
.testimonials-swiper .swiper-pagination-bullet {
  background: var(--gold-dark);
  opacity: .35;
}

/* ── Mobile offcanvas sidebar styles ───────────────────── */
.offcanvas {
  width: 300px;
  max-width: 85%;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(18px);
  border-right: 1px solid rgba(165,140,82,.08);
}
.offcanvas .offcanvas-header { padding: 12px 16px; }
.offcanvas .offcanvas-body { padding: 18px 16px; }
.offcanvas .nav-link-kl { display: block; padding: 10px 0; font-size: 1rem; }
.offcanvas .offcanvas-submenu { margin-top: 8px; }
.offcanvas .offcanvas-submenu .kl-dropdown-item { padding: 8px 0; display: block; border: none; }
.offcanvas .nav-cta { padding-top: 12px; }

@media (max-width:991px) {
  /* hide the collapsed dropdown panel (we use offcanvas) */
  .navbar-collapse { display: none !important; }
}
.testimonials-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ── Category cards ───────────────────────────────────── */
.cat-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--t-slow);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.cat-card:hover { transform: translateY(-10px); box-shadow: var(--shad-lg); border-color: var(--gold-light); }

/* Image area — real photo */
.cat-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-card-img img { transform: scale(1.08); }

/* Dark gradient overlay on hover */
.cat-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,11,6,.45) 0%, transparent 55%);
  opacity: 0;
  transition: var(--t);
}
.cat-card:hover .cat-card-img::after { opacity: 1; }

/* Keep emoji support for any older card markup */
.cat-card-emoji { font-size: 4rem; opacity: .35; transition: var(--t); }
.cat-card:hover .cat-card-emoji { opacity: .5; transform: scale(1.1); }

.cat-pill {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 14px;
  background: var(--gold-grad);
  color: #fff;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  z-index: 2;
}
.cat-card-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; min-height: 190px; }
.cat-card-name { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; transition: var(--t); }
.cat-card:hover .cat-card-name { color: var(--gold-dark); }
.cat-card-desc { font-size: .9rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 22px; flex: 1; }
.cat-card-cta  { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); transition: var(--t); }
.cat-card:hover .cat-card-cta { gap: 10px; }
.cat-card:hover .cat-card-cta i { transform: translateX(3px); }

/* ── Why section (dark) ───────────────────────────────── */
.why-section {
  background: linear-gradient(160deg, #0E0B06 0%, #1C1609 50%, #0E0B06 100%);
  position: relative;
  overflow: hidden;
}
.why-section.why-section-light {
  background: var(--cream);
}
.why-section.why-section-light .why-card {
  background: #fff;
  border-color: rgba(221,212,194,.9);
}
.why-section.why-section-light .why-card:hover {
  background: rgba(255,255,255,.9);
  border-color: rgba(201,168,76,.25);
}
.why-section.why-section-light .why-card h4 {
  color: var(--text-dark);
}
.why-section.why-section-light .why-card p {
  color: var(--text-soft);
}
.why-section.why-section-light .why-icon-wrap {
  background: var(--gold-grad);
  box-shadow: 0 10px 30px rgba(160,124,40,.18);
}
.why-section.why-section-light .sec-header .t-h2 {
  color: var(--text-dark);
}
.why-section.why-section-light .kl-label {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.18);
  color: var(--gold-dark);
}
.why-section.why-section-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}
.why-card {
  padding: 40px 30px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.12);
  text-align: center;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,.06) 0%, transparent 70%);
  opacity: 0;
  transition: var(--t);
}
.why-card:hover { background: rgba(255,255,255,.06); border-color: rgba(201,168,76,.35); transform: translateY(-8px); }
.why-card:hover::before { opacity: 1; }
.why-icon-wrap {
  width: 70px; height: 70px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.9rem;
  box-shadow: 0 8px 28px rgba(160,124,40,.35);
  transition: var(--t);
  color: #fff;
}
.why-card:hover .why-icon-wrap { transform: scale(1.12) rotate(6deg); box-shadow: 0 14px 40px rgba(160,124,40,.55); }
.why-card h4 { font-family: var(--serif); font-size: 1.08rem; color: #fff; margin-bottom: 12px; }
.why-card p  { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.75; }

/* ── Occasions ────────────────────────────────────────── */
.occ-section { background: var(--cream); }
.occ-cloud   { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.occ-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-family: var(--body);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--t);
  cursor: default;
}
.occ-tag .em { font-size: 1.15rem; }
.occ-tag:hover {
  background: var(--gold-grad);
  background-size: 200%;
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shad-sm);
}

/* ── Testimonials ─────────────────────────────────────── */
.testi-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shad-xs);
  transition: var(--t);
  height: 100%;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 26px;
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold-lighter);
  pointer-events: none;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shad-md); border-color: var(--gold-light); }
.testi-stars    { color: var(--gold); font-size: .95rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text     { font-family: var(--elegant); font-size: 1.05rem; font-style: italic; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; position: relative; z-index: 1; }
.testi-author   { display: flex; align-items: center; gap: 14px; }
.testi-avatar   { width: 48px; height: 48px; border-radius: 50%; background: var(--gold-grad); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name     { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--text-dark); }
.testi-loc      { font-size: .76rem; color: var(--gold); letter-spacing: .06em; }
.testi-occasion { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-soft); font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-dark); }

/* ── Accordion / FAQ ──────────────────────────────────── */
.accordion-item  { border: 1px solid var(--border) !important; border-radius: var(--r-md) !important; margin-bottom: 12px; overflow: hidden; transition: var(--t); }
.accordion-item:hover { border-color: var(--gold-light) !important; box-shadow: var(--shad-xs); }
.accordion-button { font-family: var(--serif); font-size: .98rem; font-weight: 600; color: var(--text-dark); background: #fff; padding: 22px 28px; border-radius: var(--r-md) !important; }
.accordion-button:not(.collapsed) { color: var(--gold-deep); background: var(--cream); box-shadow: none; }
.accordion-button::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A84C'%3e%3cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }
.accordion-button:not(.collapsed)::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A07C28'%3e%3cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
.accordion-body { font-size: .9rem; color: var(--text-mid); line-height: 1.8; padding: 0 28px 22px; background: var(--cream); }

/* ── CTA Full Banner with background image ────────────── */
.cta-full {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: radial-gradient(circle at top left, rgba(255,230,190,.10), transparent 28%),
              linear-gradient(135deg, rgba(60,42,21,.95), rgba(35,23,11,.95));
  color: #fff;
}

.cta-full p {
  color: rgba(255,255,255,.88);
}

.cta-full .btn-kl-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.09);
}

.cta-full .btn-kl-ghost:hover {
  background: rgba(255,255,255,.18);
}

/* Background image layer */
.cta-img-wrap {
  position: absolute;
  inset: 0;
}
.cta-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 4, 0.72);
}

.cta-full .reveal,
.cta-full .kl-label,
.cta-full .t-h2,
.cta-full p,
.cta-full .btn-kl-ghost,
.cta-full .btn-wa,
.cta-full .btn-kl-outline {
  color: #fff;
}

.cta-full .btn-kl-ghost {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
}

.cta-full .btn-kl-ghost:hover {
  background: rgba(255,255,255,.16);
}

.cta-full .btn-wa {
  background: #25D366;
  color: #fff !important;
}

.cta-full .btn-wa:hover {
  background: #1ebe5d;
}

/* ── Footer ───────────────────────────────────────────── */
#site-footer { background: linear-gradient(160deg, #0A0805 0%, #130E04 50%, #0A0805 100%); padding: 90px 0 0; position: relative; }
#site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad-h); }
.ft-logo img   { height: 80px; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 18px; }
.ft-about      { font-size: .86rem; color: rgba(255,255,255,.45); line-height: 1.85; margin-bottom: 24px; }
.ft-head       { font-family: var(--serif); font-size: .95rem; color: var(--gold-light); margin-bottom: 22px; padding-bottom: 12px; position: relative; }
.ft-head::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 1px; background: var(--gold); }
ul.ft-links{padding-left:0;}
.ft-links li   { margin-bottom: 10px; }
.ft-links a    { font-size: .84rem; color: rgba(255,255,255,.42); display: flex; align-items: center; gap: 8px; transition: var(--t); }
.ft-links a::before { content: '→'; color: var(--gold); font-size: .72rem; }
.ft-links a:hover   { color: var(--gold-light); padding-left: 4px; }
.ft-contact-row { display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start; }
.ft-ci  { width: 32px; height: 32px; background: rgba(201,168,76,.12); border-radius: 8px; display: grid; place-items: center; font-size: .85rem; flex-shrink: 0; }
.ft-ct  { font-size: .83rem; color: rgba(255,255,255,.42); line-height: 1.6; }
.ft-ct a { color: rgba(255,255,255,.5); }
.ft-ct a:hover { color: var(--gold-light); }
.ft-socials { display: flex; gap: 8px; margin-top: 22px; }
.ft-social  { width: 38px; height: 38px; background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.18); border-radius: var(--r-xs); display: grid; place-items: center; font-size: .9rem; color: rgba(255,255,255,.4); transition: var(--t); text-decoration: none; }
.ft-social:hover { background: var(--gold-grad); border-color: transparent; color: #fff; transform: translateY(-3px); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 24px; margin-top: 60px; text-align: center; }
.ft-bottom p { font-size: .8rem; color: rgba(255,255,255,.25); }
.ft-bottom a { color: var(--gold); }

/* ── Premium layout overrides ─────────────────────────────── */
body {
  background: radial-gradient(circle at top, rgba(255,244,211,.45), transparent 24%),
              radial-gradient(circle at 70% 10%, rgba(165,140,82,.12), transparent 20%),
              #F8F2E6;
}
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  background: #F6F3EE;
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(165,140,82,.14);
  box-shadow: 0 18px 35px rgba(0,0,0,.04);
}
.header-top {
  padding: 8px 0;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(165,140,82,.12);
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--text-mid);
  letter-spacing: .08em;
}
.header-note { opacity: .85; }
.header-top-btn {
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size:.78rem;
  background: rgba(37,211,102,.12);
  color: var(--text-dark);
  border: 1px solid rgba(37,211,102,.15);
}
.header-top-btn:hover {
  background: #25D366;
  color: #fff !important;
}
.navbar {
  padding: 0;
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.navbar-brand img {
  height: 64px;
  width: auto;
  transition: var(--t);
}
.brand-title {
  display: inline-block;
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-dark);
  line-height: 1.05;
  text-transform: none;
}
.nav-link-kl {
  color: var(--text-dark);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 10px 16px;
  transition: .25s ease;
}
.nav-link-kl:hover,
.nav-link-kl.active { color: var(--gold-dark); }
.kl-dropdown {
  min-width: 220px;
  max-width: 240px;
  width: auto;
  border-radius: calc(var(--r-lg));
  border: 1px solid rgba(165,140,82,.15);
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 40px rgba(0,0,0,.1);
  margin-top: 0;
  backdrop-filter: blur(10px);
}

.navbar-nav .dropdown-menu {
  margin-top: 0;
  width: auto;
  min-width: 220px;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu,
  .navbar-nav .dropdown.show > .dropdown-menu {
    display: block;
  }
  .navbar-nav .dropdown:hover > .nav-link-kl {
    color: var(--gold-dark) !important;
  }
}
.kl-dropdown-item {
  font-size: .92rem;
  color: var(--text-dark);
  padding: 12px 18px;
  display: block;
  transition: var(--t-fast);
  border-bottom: 1px solid rgba(165,140,82,.08);
}
.kl-dropdown-item:last-child {
  border-bottom: none;
}
.kl-dropdown-item:hover {
  background: rgba(165,140,82,.10);
  padding-left: 18px;
  color: var(--gold-dark);
}

.nav-cta .btn-kl-outline,
.nav-cta .btn-wa { white-space: nowrap; }
.btn-wa {
  background: #25D366;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(37,211,102,.22);
}
.btn-wa:hover { background: #1ebe5d; }
.btn-kl-outline {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
  transition: all .3s ease;
}
.btn-kl-outline:hover {
  color: #fff;
  background: var(--gold-dark);
  border-color: transparent;
}
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
}
.hero-bg img {
  filter: brightness(.68) contrast(1.08);
  transform: scale(1.02);
}
.hero-overlay {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,244,211,.16) 0%, transparent 20%),
    radial-gradient(circle at 82% 15%, rgba(201,168,76,.12) 0%, transparent 28%),
    linear-gradient(180deg, rgba(14,11,6,.50) 0%, rgba(8,6,2,.92) 100%);
}
.hero-container {
  min-height: calc(100vh - var(--header-h));
  padding-top: calc(var(--header-h) + 90px);
  padding-bottom: 110px;
}
.hero-location { letter-spacing: .28em; color: rgba(255,255,255,.8); }
.hero-title {
  font-size: clamp(3rem, 5.2vw, 3.7rem);
  line-height: 1.02;
  margin-bottom: 28px;
}
.hero-sub { max-width: 620px; margin-bottom: 42px; }
.hero-actions { gap: 20px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 60px;
  padding: 30px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
}
.hero-stat { flex: 1 1 160px; padding: 0; border: none; }
.hero-stat .num { font-size: 2.4rem; color: var(--gold-light); }
.hero-img-wrap {
  border-radius: var(--r-xl);
  box-shadow: 0 40px 90px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.16);
}
.hero-badge {
  bottom: -16px;
  left: -16px;
  padding: 20px 28px;
  border-radius: var(--r-md);
  box-shadow: 0 14px 38px rgba(160,124,40,.45);
}
.hero-badge-num { font-size: 2.8rem; }
.sec { padding: 100px 0; }
.sec-header { text-align: center; margin-bottom: 70px; max-width: 760px; margin-left: auto; margin-right: auto; }
.sec-header .kl-label { justify-content: center; }
.t-h2 { font-size: clamp(2rem, 3.8vw, 3.8rem); }
.t-serif-body { max-width: 760px; margin-left: auto; margin-right: auto; }
.cat-card { border-radius: var(--r-xl); border-color: rgba(165,140,82,.15); box-shadow: var(--shad-sm); }
.cat-card:hover { transform: translateY(-10px); box-shadow: var(--shad-lg); }
.cat-card-img { height: 255px; position: relative; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0)); }
.cat-card-emoji { position: absolute; top: 16px; right: 16px; font-size: 3.8rem; opacity: .22; }
.cat-pill { top: 16px; left: 16px; }
.cat-card-body { padding: 30px 30px 30px; }
.cat-card-name { font-size: 1.25rem; }
.cat-card-desc { margin-bottom: 26px; }
.cat-card-cta { color: var(--gold-dark); }
.product-item .cat-card { min-height: 100%; }
.prod-card {
  border-radius: var(--r-xl);
  border-color: rgba(165,140,82,.12);
  box-shadow: var(--shad-sm);
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shad-lg); }
.prod-img { height: 290px; background: linear-gradient(145deg, rgba(250,246,237,.95), rgba(245,236,216,.95)); }
.prod-badge { top: 18px; left: 18px; }
.prod-body { padding: 28px; }
.prod-cat { margin-bottom: 10px; color: var(--gold); }
.prod-name { font-size: 1.15rem; }
.btn-wa.w-100 { justify-content:center; }
.why-card { padding: 44px 32px; }
.why-icon-wrap { width: 78px; height: 78px; margin-bottom: 24px; }
.why-card h4 { font-size: 1.08rem; }
.material-card { transition: var(--t); }
.material-card:hover { transform: translateY(-6px); }
.occ-tag { transition: var(--t); border: 1px solid rgba(165,140,82,.2); }
.occ-tag:hover { background: rgba(165,140,82,.12); transform: translateY(-4px); }
.testi-card { min-height: 100%; }
.testi-card:hover { border-color: rgba(165,140,82,.32); }
.accordion-button { padding: 22px 26px; }
.accordion-body { padding: 0 26px 24px; }
.cta-full { padding: 120px 0; }
.cta-overlay { background: rgba(12,10,6,.72); }
#site-footer { padding: 90px 0 40px; }
.ft-logo img { height: 70px; filter: none; opacity: 1; }
.ft-about { color: rgba(255,255,255,.65); }
.ft-head { color: var(--gold-light); }
.ft-links a { color: rgba(255,255,255,.65); }
.ft-links a:hover { color: #fff; }
.ft-contact-row { gap: 14px; }
.ft-ci { background: rgba(255,255,255,.05); }
.ft-ct a { color: rgba(255,255,255,.75); }
.ft-social { width: 40px; height: 40px; }
.ft-bottom { margin-top: 50px; }
.page-hero { padding: 180px 0 90px; background: linear-gradient(180deg, rgba(12,10,6,.92), rgba(12,10,6,.98)); }
.page-hero::before { background: radial-gradient(circle at 22% 20%, rgba(255,244,211,.12), transparent 20%), radial-gradient(circle at 80% 15%, rgba(165,140,82,.14), transparent 28%); }
.page-hero-title { color: #fff; }
.page-hero-sub { color: rgba(255,255,255,.75); }
.breadcrumb-kl a { color: rgba(255,255,255,.65); }
.breadcrumb-kl .cur { color: var(--gold-light); }
.contact-card {
  background: linear-gradient(180deg, rgba(16,12,7,.98) 0%, rgba(24,18,10,.98) 100%);
  border-radius: var(--r-xl);
  padding: 42px;
  box-shadow: 0 40px 90px rgba(0,0,0,.18);
}
.form-wrap {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: 0 28px 70px rgba(0,0,0,.08);
  border: 1px solid rgba(225,212,179,.35);
}
.fl-label {
  display: block;
  margin-bottom: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.fl-input {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(165,140,82,.18);
  border-radius: 18px;
  padding: 16px 18px;
  font-size: .95rem;
  color: var(--text-dark);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.fl-input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(201,168,76,.08);
  outline: none;
}
.alert-success-kl {
  background: rgba(226,245,221,.95);
  border: 1px solid rgba(174,217,152,.55);
  border-radius: var(--r-md);
  padding: 24px 28px;
  color: #1d3f1d;
}
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.12);
  border: 1px solid rgba(216,199,146,.18);
}
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 22px 45px rgba(37,211,102,.28);
  z-index: 99999;
}
.wa-float svg { width: 26px; height: 26px; }
@media (max-width: 991px) {
  #site-header { backdrop-filter: blur(18px); }
  .header-top { display: none !important; }
  .nav-cta { display: none !important; }
  .hero-container { padding-top: calc(var(--header-h) + 50px); }
  .hero-stats { flex-direction: column; gap: 16px; }
}
@media (max-width: 767px) {
  .navbar-brand img { height: 52px; }
  .sec { padding: 70px 0; }
  .page-hero { padding: 140px 0 70px; }
  .contact-card,
  .form-wrap { padding: 30px; }
}

/* ── Page Hero (inner pages) ──────────────────────────── */
.page-hero { padding: 160px 0 80px; background: linear-gradient(160deg, #0E0B06 0%, #1C1609 60%, #0E0B06 100%); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(201,168,76,.1) 0%, transparent 70%); }
.page-hero-title  { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.8rem); color: #fff; font-weight: 700; margin-bottom: 14px; position: relative; }
.page-hero-sub    { font-family: var(--elegant); font-style: italic; font-size: 1.15rem; color: rgba(255,255,255,.6); position: relative; }
.breadcrumb-kl    { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 20px; position: relative; }
.breadcrumb-kl a  { font-size: .78rem; color: rgba(255,255,255,.4); }
.breadcrumb-kl a:hover { color: var(--gold-light); }
.breadcrumb-kl .sep { color: var(--gold); font-size: .65rem; }
.breadcrumb-kl .cur { font-size: .78rem; color: var(--gold-light); }

/* ── Product cards ────────────────────────────────────── */
.prod-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shad-xs); transition: var(--t-slow); height: 100%; display: flex; flex-direction: column; }
.prod-card:hover { transform: translateY(-10px); box-shadow: var(--shad-lg); border-color: var(--gold-light); }
.prod-img { height: 260px; background: linear-gradient(135deg, var(--cream) 0%, var(--cream-deep) 100%); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; position: relative; overflow: hidden; }
.prod-img-icon { font-size: 4rem; opacity: .28; transition: var(--t); }
.prod-card:hover .prod-img-icon { opacity: .4; transform: scale(1.1); }
.prod-badge { position: absolute; top: 14px; left: 14px; padding: 5px 12px; background: var(--gold-grad); color: #fff; font-family: var(--sans); font-size: .64rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; border-radius: var(--r-full); }
.prod-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.prod-cat  { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.prod-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; line-height: 1.3; }
.prod-desc { font-size: .84rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 20px; flex: 1; }

/* ── Stat boxes ───────────────────────────────────────── */
.stat-box { text-align: center; padding: 32px 20px; background: #fff; border-radius: var(--r-md); border: 1px solid var(--border); box-shadow: var(--shad-xs); transition: var(--t); }
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shad-md); border-color: var(--gold-light); }
.stat-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; line-height: 1; }
.stat-lbl { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--text-soft); margin-top: 8px; }

/* ── Material cards ───────────────────────────────────── */
.material-card { padding: 32px 24px; background: #fff; border-radius: var(--r-md); border: 1px solid var(--border); box-shadow: var(--shad-xs); text-align: center; transition: var(--t); }
.material-card:hover { transform: translateY(-5px); box-shadow: var(--shad-md); border-color: var(--gold-light); }
.material-icon { font-size: 2.8rem; margin-bottom: 14px; }
.material-name { font-family: var(--serif); font-size: 1.05rem; color: var(--text-dark); margin-bottom: 8px; }
.material-desc { font-size: .83rem; color: var(--text-soft); line-height: 1.6; }

/* ── Trust items ──────────────────────────────────────── */
.trust-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: #fff; border-radius: var(--r-md); border: 1px solid var(--border); box-shadow: var(--shad-xs); transition: var(--t); margin-bottom: 14px; }
.trust-item:hover { border-color: var(--gold-light); transform: translateX(4px); }
.trust-icon { width: 48px; height: 48px; background: var(--gold-grad); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.trust-item h5 { font-family: var(--serif); font-size: .98rem; margin-bottom: 4px; }
.trust-item p  { font-size: .84rem; color: var(--text-soft); line-height: 1.6; margin: 0; }

/* ── Mission cards ────────────────────────────────────── */
.mission-card { border-radius: var(--r-xl); padding: 48px; height: 100%; border: 1px solid var(--border); transition: var(--t); }
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shad-md); }
.mission-card.light { background: #fff; }
.mission-card.dark  { background: linear-gradient(135deg, #0E0B06, #1C1609); border-color: rgba(201,168,76,.2); color: #fff; }
.mission-card.dark h3,
.mission-card.dark p { color: #fff; }

/* ── Filter bar (products page) ───────────────────────── */
.filter-bar { background: #fff; border-radius: var(--r-lg); padding: 24px 28px; box-shadow: var(--shad-sm); border: 1px solid var(--border); margin-bottom: 48px; }
.filter-btn { padding: 8px 22px; border-radius: var(--r-full); border: 1.5px solid var(--border); background: transparent; font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .06em; color: var(--text-mid); cursor: pointer; transition: var(--t); }
.filter-btn:hover, .filter-btn.active { background: var(--gold-grad); border-color: transparent; color: #fff; box-shadow: var(--shad-xs); }
.search-inp { border: 1.5px solid var(--border); border-radius: var(--r-xs); padding: 12px 16px 12px 42px; font-size: .9rem; font-family: var(--body); width: 100%; outline: none; transition: var(--t); background: var(--linen); }
.search-inp:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(201,168,76,.1); }

/* ── Contact form ─────────────────────────────────────── */
.contact-card { background: var(--gold-grad); background-size: 200%; border-radius: var(--r-xl); padding: 50px 40px; height: 100%; position: relative; overflow: hidden; }
.contact-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.15) 0%, transparent 60%); }
.form-wrap { background: #fff; border-radius: var(--r-xl); padding: 52px 44px; box-shadow: var(--shad-xl); border: 1px solid var(--border); }
.fl-label { font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 8px; display: block; }
.fl-input { width: 100%; border: 1.5px solid var(--border); border-radius: var(--r-xs); padding: 14px 18px; font-size: .9rem; font-family: var(--body); color: var(--text-dark); background: var(--linen); outline: none; transition: var(--t); }
.fl-input:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.fl-input::placeholder { color: var(--text-muted); font-style: italic; }

/* ── Map ──────────────────────────────────────────────── */
.map-wrap { border-radius: var(--r-lg); overflow: hidden; border: 3px solid var(--border); box-shadow: var(--shad-md); }

/* ── Alert success ────────────────────────────────────── */
.alert-success-kl { background: linear-gradient(135deg, #f0faf4, #e8f5ee); border: 1px solid #a8d5b9; border-radius: var(--r-md); padding: 22px 26px; color: #2d7a4e; font-family: var(--sans); font-weight: 500; }

/* ── Scroll reveal ────────────────────────────────────── */
.reveal       { opacity: 0; transform: translateY(32px);  transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1199px) {
  .hero-img-wrap img { height: 400px; }
}

@media (max-width: 991px) {
  .sec { padding: 80px 0; }

  /* Hero: tighter padding on tablets */
  .hero-container {
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 60px;
  }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat  { border-right: none !important; padding: 0 !important; width: 45%; }

  .about-img-wrap { height: 380px; }
  .about-accent-box { display: none; }
  .form-wrap    { padding: 32px 24px; }
  .contact-card { padding: 36px 28px; }
}

@media (max-width: 767px) {
  .sec       { padding: 56px 0; }
  .hero-title { font-size: 2.4rem; }
  .sec-header { margin-bottom: 44px; }
  .wa-float   { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 26px; height: 26px; }

  /* Hero: smaller top padding on mobile */
  .hero-container {
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 48px;
  }

  /* Hero badge hides on small screens to avoid overflow */
  .hero-badge { display: none; }
}

@media (max-width: 480px) {
  .btn-kl, .btn-kl-outline, .btn-kl-ghost, .btn-wa { padding: 13px 26px; font-size: .76rem; }
  .hero-title { font-size: 2rem; }
  .hero-sub   { font-size: .95rem; }
}
