/* ═══════════════════════════════════════════════
   Li8 Brands — styles.css
   Full production stylesheet
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy:        #16204e;
  --navy-deep:   #0e1738;
  --navy-mid:    #18245a;
  --gold:        #cf7b1c;
  --gold-light:  #f6d7a6;
  --gold-hover:  #e8921f;
  --cream:       #fbf5ef;
  --cream-mid:   #f8f1ea;
  --cream-dark:  #f2e8de;
  --white:       #ffffff;
  --text-muted:  #5a6382;
  --text-light:  #8892aa;
  --border:      rgba(22,32,78,0.08);
  --border-mid:  rgba(22,32,78,0.12);
  --shadow-sm:   0 2px 8px  rgba(22,32,78,0.06);
  --shadow-md:   0 6px 24px rgba(22,32,78,0.09);
  --shadow-lg:   0 16px 48px rgba(22,32,78,0.13);
  --shadow-gold: 0 8px 28px rgba(207,123,28,0.32);
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --transition:  all .22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: Manrope, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.15; }

/* ── LAYOUT ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-heading         { margin-bottom: 44px; }
.section-heading h2      { font-family: Fraunces, Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; max-width: 700px; margin-bottom: 12px; }
.section-heading p       { color: var(--text-muted); font-size: 1.02rem; max-width: 560px; line-height: 1.7; }
.section-heading.compact h2 { font-size: clamp(1.3rem, 2.4vw, 1.85rem); }
.section-heading.center  { text-align: center; }
.section-heading.center h2,
.section-heading.center p { max-width: 700px; margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: .92rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.button-primary {
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  color: #fff;
  padding: 11px 22px;
  box-shadow: var(--shadow-gold);
}
.button-primary:hover  { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(207,123,28,0.42); }
.button-primary:active { transform: translateY(0); }
.button-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.2);
}
.button-ghost:hover { background: rgba(255,255,255,0.16); }
.button-outline {
  background: transparent;
  color: var(--navy);
  padding: 11px 22px;
  border: 2px solid var(--navy);
}
.button-outline:hover { background: var(--navy); color: #fff; }
.button-wa {
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.button-wa:hover { background: #1ebc5a; transform: translateY(-2px); }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(250,246,241,0.97), rgba(248,241,234,0.94));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(22,32,78,0.05);
  will-change: box-shadow;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 8px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f6d7a6, #cf7b1c);
  color: var(--navy-mid);
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 10px 28px rgba(207,123,28,0.25);
  flex-shrink: 0;
}
.brand-copy strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--navy);
}
.brand-copy small {
  display: block;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1px;
}
.header-trust {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.header-trust span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.65);
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.header-nav-shell {
  background: linear-gradient(180deg, var(--navy-mid), var(--navy-deep));
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  gap: 16px;
}
.nav-primary {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-primary a {
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: .9rem;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}
.nav-primary a:hover { background: rgba(255,255,255,0.13); color: #fff; }
.nav-utility {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: .88rem;
  padding: 8px 11px;
  border-radius: 999px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.06); }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.82);
  font-weight: 700;
  font-size: .95rem;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ═══════════════════════════════════════
   HIGHLIGHTED PRODUCTS
═══════════════════════════════════════ */
.highlighted-products { padding: 72px 0 64px; }
.highlighted-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.highlighted-copy .eyebrow  { margin-bottom: 14px; }
.highlighted-copy h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.highlighted-copy > p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 30px;
  font-size: 1rem;
}
.highlighted-stats {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.highlighted-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  min-width: 100px;
}
.stat-icon  { font-size: 1rem; color: var(--gold); margin-bottom: 2px; }
.highlighted-stat strong { font-size: 1.25rem; font-weight: 900; color: var(--navy); line-height: 1; }
.highlighted-stat span   { font-size: .76rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }
.highlighted-features    { display: flex; flex-direction: column; gap: 12px; }
.highlighted-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.highlighted-feature:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }
.feature-mark {
  font-size: .72rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .08em;
  min-width: 26px;
  padding-top: 3px;
}
.highlighted-feature > div strong { display: block; margin-bottom: 3px; font-size: .95rem; }
.highlighted-feature > div p      { margin: 0; font-size: .86rem; color: var(--text-muted); line-height: 1.6; }

/* Slider */
.highlighted-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.highlighted-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--cream-dark);
}
.highlighted-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}
.highlighted-slide.is-active { opacity: 1; pointer-events: auto; }
.highlighted-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.highlighted-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(0deg, rgba(10,18,50,0.9) 0%, rgba(10,18,50,0) 100%);
  color: #fff;
}
.caption-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(207,123,28,0.25);
  border: 1px solid rgba(246,215,166,0.3);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 9px;
}
.highlighted-caption h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  margin-bottom: 6px;
}
.highlighted-caption p {
  font-size: .87rem;
  opacity: .82;
  line-height: 1.55;
  max-width: 440px;
}
.highlighted-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 14px;
  pointer-events: none;
  z-index: 2;
}
.highlighted-arrow {
  pointer-events: all;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  transition: var(--transition);
  line-height: 1;
}
.highlighted-arrow:hover { background: rgba(255,255,255,0.32); transform: scale(1.08); }
.highlighted-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 12px;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
}
.highlighted-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}
.highlighted-dot.is-active { background: var(--gold-light); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════
   BRAND / CUSTOMERS BAND
═══════════════════════════════════════ */
.brand-band {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-band .section-heading { margin-bottom: 32px; }
.customer-logo-grid {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.customer-logo-grid img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: .55;
  filter: grayscale(1);
  transition: var(--transition);
}
.customer-logo-grid img:hover { opacity: 1; filter: none; transform: translateY(-2px); }

/* ═══════════════════════════════════════
   FEATURE / GIFT CONCEPTS
═══════════════════════════════════════ */
.feature-section { padding: 80px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.18rem;
  margin-bottom: 12px;
}
.feature-card p { margin: 0; color: var(--text-muted); font-size: .92rem; line-height: 1.72; }

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-section { padding: 72px 0; background: var(--cream-mid); }
.gallery-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-carousel figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.gallery-carousel figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-carousel figure:hover img { transform: scale(1.06); }

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.proof-section { padding: 80px 0; background: var(--white); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 22px;
  font-family: Fraunces, Georgia, serif;
  font-size: 4rem;
  color: var(--gold-light);
  line-height: 1;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p  { margin: 0; color: var(--text-muted); font-size: .92rem; line-height: 1.78; }
.review-author  { margin-top: 18px; font-size: .82rem; font-weight: 800; color: var(--navy); }

/* ═══════════════════════════════════════
   CASE STUDY
═══════════════════════════════════════ */
.casestudy-section {
  padding: 88px 0;
  background: var(--navy-deep);
  color: #fff;
}
.casestudy-section .eyebrow { color: var(--gold-light); }
.casestudy-section .section-heading h2 { color: #fff; }
.casestudy-section .section-heading p  { color: rgba(255,255,255,0.6); }
.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.casestudy-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.casestudy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.casestudy-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.cs-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(207,123,28,0.2);
  border: 1px solid rgba(246,215,166,0.22);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.casestudy-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}
.casestudy-card > p {
  font-size: .89rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
  margin-bottom: 24px;
  flex: 1;
}
.cs-metrics { display: flex; gap: 20px; flex-wrap: wrap; }
.cs-metric   { display: flex; flex-direction: column; gap: 3px; }
.cs-metric strong {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gold-light);
  font-family: Fraunces, Georgia, serif;
  line-height: 1;
}
.cs-metric span {
  font-size: .72rem;
  color: rgba(255,255,255,0.48);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.casestudy-bottom {
  margin-top: 52px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.casestudy-bottom-copy h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 10px;
  max-width: 480px;
}
.casestudy-bottom-copy p {
  margin: 0;
  font-size: .93rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 520px;
}
.casestudy-bottom-stats { display: flex; gap: 44px; flex-shrink: 0; }
.cb-stat { display: flex; flex-direction: column; gap: 5px; align-items: center; text-align: center; }
.cb-stat strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  font-family: Fraunces, Georgia, serif;
  line-height: 1;
}
.cb-stat span {
  font-size: .75rem;
  color: rgba(255,255,255,0.48);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  max-width: 90px;
  text-align: center;
}

/* ═══════════════════════════════════════
   ORDER PROCESS
═══════════════════════════════════════ */
.order-process-section { padding: 88px 0; background: var(--cream); }
.order-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.order-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(10% + 1px);
  right: calc(10% + 1px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}
.order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  font-family: Fraunces, Georgia, serif;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 26px rgba(207,123,28,0.32);
  margin-bottom: 22px;
  border: 4px solid var(--cream);
  transition: var(--transition);
}
.order-step:hover .step-num { transform: scale(1.1); box-shadow: 0 12px 32px rgba(207,123,28,0.44); }
.order-step h4 {
  font-size: .97rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}
.order-step p {
  margin: 0;
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.why-section { padding: 88px 0; background: var(--cream-mid); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-left .eyebrow { margin-bottom: 14px; }
.why-left h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.why-left p   { color: var(--text-muted); line-height: 1.78; margin-bottom: 30px; font-size: 1rem; }
.why-left .button-primary { padding: 14px 28px; font-size: .97rem; }
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card.featured {
  grid-column: span 2;
  background: var(--navy-deep);
  border-color: transparent;
  color: #fff;
}
.why-card.featured .why-icon { background: rgba(207,123,28,0.22); color: var(--gold-light); }
.why-card.featured h4 { color: #fff; }
.why-card.featured p  { color: rgba(255,255,255,0.62); }
.why-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(207,123,28,0.1);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.why-card h4 { font-size: .97rem; font-weight: 800; margin-bottom: 8px; color: var(--navy); }
.why-card p  { margin: 0; font-size: .86rem; color: var(--text-muted); line-height: 1.68; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section { padding: 88px 0; background: var(--white); }
.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.faq-sidebar h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  margin-bottom: 14px;
}
.faq-sidebar p    { color: var(--text-muted); font-size: .94rem; line-height: 1.72; margin-bottom: 26px; }
.faq-sidebar .button-primary { padding: 13px 24px; }
.faq-list {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list details:last-child { border-bottom: none; }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: .96rem;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: var(--white);
  transition: background .2s;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-list details[open] summary { background: #fdf8f2; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: .91rem;
  line-height: 1.77;
  background: #fdf8f2;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section { padding: 88px 0; background: var(--cream-mid); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .eyebrow { margin-bottom: 14px; }
.contact-info h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.contact-info > p { color: var(--text-muted); line-height: 1.78; margin-bottom: 34px; }
.contact-details   { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item { display: flex; gap: 14px; align-items: flex-start; }
.cd-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(207,123,28,0.13), rgba(207,123,28,0.06));
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(207,123,28,0.16);
}
.cd-text strong {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--navy);
  margin-bottom: 2px;
}
.cd-text span { font-size: .9rem; color: var(--text-muted); line-height: 1.55; }

/* Form */
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-lg);
}
.contact-form-box h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.contact-form-box > p { color: var(--text-muted); font-size: .9rem; margin-bottom: 26px; }
.form-row { display: flex; gap: 14px; margin-bottom: 14px; }
.form-row input,
.form-row textarea,
.form-row select {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: inherit;
  font-size: .92rem;
  color: var(--navy);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(207,123,28,0.14);
  background: var(--white);
}
.form-row textarea  { min-height: 116px; resize: vertical; }
.form-row select    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6382' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-row .button-primary { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }
.form-note { font-size: .79rem; color: var(--text-muted); text-align: center; margin-top: 10px; }
.form-note a { color: var(--gold); font-weight: 700; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
}
.footer-main {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  padding: 68px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: .86rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  margin-bottom: 24px;
}
.footer-trust-badges   { display: flex; flex-direction: column; gap: 9px; }
.footer-badge          { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: rgba(255,255,255,0.58); }
.footer-badge-icon {
  width: 24px; height: 24px;
  background: rgba(207,123,28,0.2);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: .8rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.footer-col-title {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col-links       { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a     { font-size: .89rem; color: rgba(255,255,255,0.58); transition: color .2s; }
.footer-col-links a:hover { color: var(--gold-light); }
.footer-contact-list    { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item    { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact-icon    { font-size: 1rem; margin-top: 1px; color: var(--gold-light); flex-shrink: 0; }
.footer-contact-item span { font-size: .88rem; color: rgba(255,255,255,0.58); line-height: 1.55; }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  margin-top: 22px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}
.footer-wa-btn:hover { background: #1ebc5a; transform: translateY(-2px); }
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-bar small { font-size: .8rem; color: rgba(255,255,255,0.32); }
.footer-india { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: rgba(255,255,255,0.32); }
.footer-bottom-links   { display: flex; gap: 22px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,0.32); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.68); }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .highlighted-grid  { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid      { grid-template-columns: 1fr 1fr; }
  .casestudy-grid    { grid-template-columns: 1fr 1fr; }
  .review-grid       { grid-template-columns: 1fr 1fr; }
  .gallery-carousel  { grid-template-columns: 1fr 1fr; }
  .order-steps       { grid-template-columns: repeat(3, 1fr); }
  .order-steps::before { display: none; }
  .why-grid          { grid-template-columns: 1fr; gap: 40px; }
  .why-right         { grid-template-columns: 1fr 1fr; }
  .faq-layout        { grid-template-columns: 1fr; gap: 36px; }
  .contact-layout    { grid-template-columns: 1fr; gap: 40px; }
  .casestudy-bottom  { flex-direction: column; gap: 28px; }
  .casestudy-bottom-stats { gap: 28px; }
  .nav-primary       { display: none; }
  .nav-hamburger     { display: flex; }
}

@media (max-width: 640px) {
  .container         { padding: 0 16px; }
  .feature-grid      { grid-template-columns: 1fr; }
  .casestudy-grid    { grid-template-columns: 1fr; }
  .review-grid       { grid-template-columns: 1fr; }
  .gallery-carousel  { grid-template-columns: 1fr; }
  .order-steps       { grid-template-columns: 1fr 1fr; }
  .why-right         { grid-template-columns: 1fr; }
  .why-card.featured { grid-column: span 1; }
  .footer-main       { grid-template-columns: 1fr; gap: 32px; }
  .highlighted-stats { flex-direction: column; gap: 10px; }
  .highlighted-stats .highlighted-stat { flex-direction: row; gap: 12px; align-items: center; }
  .nav-utility .nav-link { display: none; }
  .header-trust      { display: none; }
  .form-row          { flex-direction: column; }
}

@media (max-width: 400px) {
  .order-steps       { grid-template-columns: 1fr; }
  .casestudy-bottom-stats { flex-direction: column; gap: 20px; }
}


/* ─── Floating WhatsApp + Back to top ─── */
.float-wa-btn {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-wa-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(37,211,102,0.55); }

.back-to-top {
  position: fixed; right: 22px; bottom: 88px; z-index: 200;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--navy, #16204e); color: #fff; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(22,32,78,0.3);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 640px) {
  .float-wa-btn { right: 14px; bottom: 14px; width: 50px; height: 50px; font-size: 1.4rem; }
  .back-to-top { right: 14px; bottom: 74px; width: 40px; height: 40px; }
}

/* ─── Highlighted Products: premium upgrade ─── */
.highlighted-products {
  position: relative;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(207,123,28,0.10), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(22,32,78,0.06), transparent 60%);
}
.highlighted-products .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.highlighted-products .eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
.highlighted-copy h2 {
  background: linear-gradient(100deg, var(--navy) 35%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.highlighted-stat {
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.highlighted-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(207,123,28,0.35);
}
.highlighted-feature {
  position: relative;
  overflow: hidden;
}
.highlighted-feature::before {
  content: "";
  position: absolute; inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light, var(--gold)));
  opacity: 0;
  transition: opacity .25s ease;
}
.highlighted-feature:hover::before { opacity: 1; }

/* Premium frame around the slider */
.highlighted-slider {
  padding: 8px;
  background: linear-gradient(135deg, rgba(207,123,28,0.35), rgba(22,32,78,0.15));
}
.highlighted-viewport {
  border-radius: calc(var(--radius-xl) - 6px);
  overflow: hidden;
}
.highlighted-dots { margin-top: 14px; }
.highlighted-dot {
  transition: transform .2s ease, background .2s ease;
}
.highlighted-dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}
