

/* ── VARIABLES ── */
:root {
  --lib-gold:      #B8922A;
  --lib-gold-lt:   #D4AA55;
  --lib-gold-pale: #F7F0DF;
  --lib-cream:     #FAFAF6;
  --lib-cream2:    #F2EDE3;
  --lib-cream3:    #E6DFD0;
  --lib-dark:      #1A1A1A;
  --lib-dark2:     #2C2C2C;
  --lib-text:      #2A2520;
  --lib-mid:       #6B6050;
  --lib-dim:       #9C9080;
  --lib-white:     #FFFFFF;
  --lib-border:    rgba(184,146,42,0.18);
  --lib-font:      'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ── FONT ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* { box-sizing: border-box; }

/* ── CONTAINER ── */
.lib-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── SECTION WRAPPERS ── */
.lib-section         { padding: 88px 0; }
.lib-section--cream  { background: var(--lib-cream); }
.lib-section--cream2 { background: var(--lib-cream2); }
.lib-section--dark   { background: var(--lib-dark); }
.lib-section--white  { background: var(--lib-white); }

/* ── TYPOGRAPHY ── */
.lib-tag {
  display: inline-block;
  font-family: var(--lib-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lib-gold-lt);
  margin-bottom: 18px;
}

.lib-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--lib-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--lib-gold);
}
.lib-label-row::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--lib-gold);
  flex-shrink: 0;
}
.lib-label-row--light { color: var(--lib-gold-lt); }
.lib-label-row--light::before { background: var(--lib-gold-lt); }
.lib-label-row--center { justify-content: center; }
.lib-label-row--center::before { display: none; }

.lib-sec-title {
  font-family: var(--lib-font);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 300;
  color: var(--lib-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.lib-sec-title strong   { font-weight: 700; }
.lib-sec-title--white   { color: var(--lib-white); }
.lib-sec-title--center  { text-align: center; }

.lib-sec-lead {
  font-family: var(--lib-font);
  font-size: 14px;
  font-weight: 300;
  color: var(--lib-mid);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 52px;
}
.lib-sec-lead--dim { color: rgba(255,255,255,0.38); }

/* ── BUTTONS ── */
.lib-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lib-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  cursor: pointer;
  border: none;
}
.lib-btn--gold         { background: var(--lib-gold); color: var(--lib-white); }
.lib-btn--gold:hover   { background: var(--lib-gold-lt); color: var(--lib-white); text-decoration: none; }
.lib-btn--sm           { padding: 12px 26px; }

.lib-btn--outline-white {
  background: transparent;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.22);
}
.lib-btn--outline-white:hover {
  border-color: var(--lib-gold-lt);
  color: var(--lib-gold-lt);
  text-decoration: none;
}

/* ── HERO ── */
.lib-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
align-items: center;
  overflow: hidden;
}
.lib-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.lib-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.90) 0%,
    rgba(10,8,5,0.50) 48%,
    rgba(10,8,5,0.12) 100%
  );
}
.lib-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
  padding-top: 180px;
}
.lib-hero__title {
  font-family: var(--lib-font);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--lib-white);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.lib-hero__title strong { font-weight: 700; color: var(--lib-gold-lt); }

.lib-hero__desc {
  font-family: var(--lib-font);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  margin-bottom: 32px;
}

.lib-hero__strip {
  display: flex;
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}
.lib-hero__cell {
  padding: 12px 22px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
}
.lib-hero__cell:last-child { border-right: none; }
.lib-hero__cell-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}
.lib-hero__cell-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--lib-gold-lt);
}

.lib-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lib-hero__stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lib-stat__num {
  display: block;
  font-size: 26px;
  font-weight: 600;
  color: var(--lib-white);
  line-height: 1;
  font-family: var(--lib-font);
}
.lib-stat__lbl {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-top: 5px;
  font-family: var(--lib-font);
}

/* Yeh add karo CSS mein: */
@media (min-width: 992px) {
  .lib-hero {
    align-items: center;
  }
  .lib-hero__content {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* ── MARQUEE ── */
.lib-marquee { background: var(--lib-dark); padding: 13px 0; overflow: hidden; }
.lib-marquee__track {
  display: flex;
  animation: lib-marquee 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.lib-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  font-family: var(--lib-font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.lib-marquee__item i {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--lib-gold);
  border-radius: 50%;
  font-style: normal;
}
@keyframes lib-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ── SERVICES ── */
.lib-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.lib-svc {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
}

/* background photo */
.lib-svc__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.lib-svc:hover .lib-svc__bg { transform: scale(1.08); }

/* dark gradient overlay — heavier at bottom where text sits */
.lib-svc__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.88) 0%,
    rgba(10,8,5,0.55) 45%,
    rgba(10,8,5,0.18) 100%
  );
  transition: background 0.4s ease;
}
.lib-svc:hover .lib-svc__overlay {
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.92) 0%,
    rgba(10,8,5,0.65) 50%,
    rgba(184,146,42,0.18) 100%
  );
}

/* gold left border on hover */
.lib-svc::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--lib-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  z-index: 3;
}
.lib-svc:hover::after { transform: scaleY(1); }

/* text layer */
.lib-svc__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  text-decoration: none;
}

.lib-svc__num {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--lib-gold-lt);
  margin-bottom: 10px;
  font-family: var(--lib-font);
}
.lib-svc__title {
  font-family: var(--lib-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--lib-white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.lib-svc__desc {
  font-family: var(--lib-font);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 18px;
  /* hide by default, reveal on hover */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}
.lib-svc:hover .lib-svc__desc {
  max-height: 100px;
  opacity: 1;
}
.lib-svc__link {
  font-family: var(--lib-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lib-gold-lt);
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 14px;
}

/* ── PHOTO STRIP (3 cols after services) ── */
.lib-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--lib-cream2);
}
.lib-photo-strip__item {
  position: relative;
  overflow: hidden;
}
.lib-photo-strip__item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.lib-photo-strip__item:hover img { transform: scale(1.05); }
.lib-photo-strip__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.65), transparent);
  padding: 18px 16px 12px;
  font-family: var(--lib-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transition: opacity 0.35s;
}
.lib-photo-strip__item:hover .lib-photo-strip__cap { opacity: 1; }

/* ── SPLIT ── */
.lib-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 540px;
}
.lib-split--rev { direction: rtl; }
.lib-split--rev > * { direction: ltr; }

.lib-split__img {
  position: relative;
  overflow: hidden;
}
.lib-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.lib-split__img:hover img { transform: scale(1.04); }

.lib-split__body {
  background: var(--lib-white);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lib-split__intro {
  font-family: var(--lib-font);
  font-size: 14px;
  font-weight: 300;
  color: var(--lib-mid);
  line-height: 1.85;
  margin-bottom: 8px;
}
.lib-split__body-p {
  font-family: var(--lib-font);
  font-size: 14px;
  font-weight: 300;
  color: var(--lib-mid);
  line-height: 1.85;
  margin-bottom: 32px;
}

/* ── WHY LIST ── */
.lib-why-list { margin-top: 28px; }
.lib-why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(184,146,42,0.1);
  font-family: var(--lib-font);
}
.lib-why-item:first-child { border-top: 1px solid rgba(184,146,42,0.1); }
.lib-why-n {
  font-size: 12px;
  font-weight: 700;
  color: var(--lib-gold);
  flex-shrink: 0;
  width: 22px;
  padding-top: 1px;
}
.lib-why-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--lib-dark);
  margin-bottom: 4px;
}
.lib-why-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--lib-mid);
  line-height: 1.78;
}

/* ── PROCESS ── */
.lib-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
}
.lib-pstep {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  font-family: var(--lib-font);
}
.lib-pstep:last-child { border-right: none; }
.lib-pstep__num {
  font-size: 44px;
  font-weight: 700;
  color: rgba(212,170,85,0.09);
  line-height: 1;
  margin-bottom: 22px;
}
.lib-pstep__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--lib-white);
  margin-bottom: 10px;
}
.lib-pstep__desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
}

/* ── PHOTO PAIR (2 cols under process) ── */
.lib-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--lib-dark);
}
.lib-photo-pair__item {
  position: relative;
  overflow: hidden;
}
.lib-photo-pair__item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}
.lib-photo-pair__item:hover img { transform: scale(1.04); filter: brightness(0.95); }
.lib-photo-pair__cap {
  position: absolute;
  bottom: 16px; left: 20px;
  font-family: var(--lib-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── GALLERY ── */
.lib-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  max-width: 1160px;
  margin: 48px auto 0;
  padding: 0 64px;
}
.lib-gallery__main {
  position: relative;
  overflow: hidden;
}
.lib-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 580px;
  transition: transform 0.6s ease;
}
.lib-gallery__main:hover img { transform: scale(1.04); }

.lib-gallery__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.lib-gallery__item {
  position: relative;
  overflow: hidden;
}
.lib-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 140px;
  transition: transform 0.6s ease;
}
.lib-gallery__item:hover img { transform: scale(1.06); }

.lib-gallery__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.65), transparent);
  padding: 18px 14px 10px;
  font-family: var(--lib-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transition: opacity 0.35s;
}
.lib-gallery__main:hover .lib-gallery__cap,
.lib-gallery__item:hover .lib-gallery__cap { opacity: 1; }

/* ── FABRICS ── */
.lib-fabrics { background: var(--lib-white); padding: 70px 0; }
.lib-fabrics__inner { text-align: center; }
.lib-fabrics__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.lib-fabric {
  font-family: var(--lib-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lib-dim);
  transition: color 0.2s;
  cursor: default;
}
.lib-fabric:hover { color: var(--lib-gold); }

/* ── REVIEWS ── */
.lib-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--lib-cream3);
  margin-top: 48px;
}
.lib-review {
  background: var(--lib-white);
  padding: 36px 30px;
  font-family: var(--lib-font);
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
}
.lib-review:hover { border-top-color: var(--lib-gold); }
.lib-review__quote {
  display: block;
  font-size: 52px;
  font-weight: 700;
  color: rgba(184,146,42,0.1);
  line-height: 0.8;
  margin-bottom: 16px;
}
.lib-review__stars { font-size: 13px; color: var(--lib-gold); letter-spacing: 3px; margin-bottom: 12px; }
.lib-review__text  { font-size: 14px; font-weight: 300; color: var(--lib-text); line-height: 1.78; margin-bottom: 22px; }
.lib-review__bottom { padding-top: 16px; border-top: 1px solid rgba(184,146,42,0.1); }
.lib-review__name  { font-size: 13px; font-weight: 600; color: var(--lib-dark); margin-bottom: 2px; }
.lib-review__role  { font-size: 12px; font-weight: 300; color: var(--lib-dim); }

/* ── CTA ── */
.lib-cta {
  background: var(--lib-dark2);
  padding: 96px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.lib-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 100%, rgba(184,146,42,0.08), transparent 65%);
  pointer-events: none;
}
.lib-cta__inner { position: relative; z-index: 1; }
.lib-cta__title {
  font-family: var(--lib-font);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 300;
  color: var(--lib-white);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.lib-cta__title strong { font-weight: 700; }
.lib-cta__desc {
  font-family: var(--lib-font);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-bottom: 38px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
}
.lib-cta__btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.lib-cta__checks {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.lib-cta__check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--lib-font);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.32);
}
.lib-cta__check::before { content: '✓'; color: var(--lib-gold-lt); font-size: 12px; font-weight: 700; }

/* ── FAQ ── */
.lib-faq { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }
.lib-faq__item { background: var(--lib-cream2); overflow: hidden; }
.lib-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  font-family: var(--lib-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--lib-dark);
  gap: 16px;
}
.lib-faq__q:hover { background: var(--lib-white); }
.lib-faq__icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--lib-border);
  background: var(--lib-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--lib-gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.lib-faq__item--open .lib-faq__icon { transform: rotate(45deg); }
.lib-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-family: var(--lib-font);
  font-size: 13px;
  font-weight: 300;
  color: var(--lib-mid);
  line-height: 1.9;
  padding: 0 28px;
  border-top: 1px solid rgba(184,146,42,0.08);
}
.lib-faq__item--open .lib-faq__a { max-height: 280px; padding: 18px 28px 22px; }

/* ── WHATSAPP STICKY ── */
.lib-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.lib-wa__tip {
  background: var(--lib-dark);
  color: var(--lib-white);
  font-family: var(--lib-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 7px 13px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s;
  pointer-events: none;
}
.lib-wa:hover .lib-wa__tip { opacity: 1; transform: translateX(0); }
.lib-wa__btn {
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s;
  animation: lib-wapulse 2.5s ease-in-out infinite;
}
.lib-wa__btn:hover { transform: scale(1.1); }
@keyframes lib-wapulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.28); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.55); }
}


/* ================================================================
   MOBILE CSS  (max-width: 767px)
   ================================================================ */
@media (max-width: 767px) {

  /* container */
  .lib-container { padding: 0 20px; }

  /* sections */
  .lib-section { padding: 56px 0; }

  /* ── HERO mobile ── */
  .lib-hero {
    height: auto;
    min-height: 100vh;
    align-items: flex-end;
  }
  .lib-hero__content {
    padding: 0 20px 52px;
  }
  .lib-hero__title {
    font-size: clamp(34px, 10vw, 52px);
    letter-spacing: -0.5px;
  }
  .lib-hero__desc {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 24px;
  }
  .lib-hero__strip {
    flex-direction: column;
    width: 100%;
  }
  .lib-hero__cell {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
  }
  .lib-hero__cell:last-child { border-bottom: none; }
  .lib-hero__cell-label { font-size: 10px; margin-bottom: 0; }
  .lib-hero__cell-val   { font-size: 15px; }

  .lib-hero__btns { flex-direction: column; gap: 10px; }
  .lib-btn { width: 100%; justify-content: center; padding: 14px 20px; }

  .lib-hero__stats {
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
  }
  .lib-stat__num { font-size: 22px; }
  .lib-stat__lbl { font-size: 9px; }

  /* ── MARQUEE mobile ── */
  .lib-marquee { padding: 10px 0; }
  .lib-marquee__item { font-size: 9px; padding: 0 14px; }

  /* ── TYPOGRAPHY mobile ── */
  .lib-sec-title { font-size: clamp(22px, 7vw, 32px); }
  .lib-sec-lead  { font-size: 13px; margin-bottom: 32px; }

  /* ── SERVICES mobile ── */
  .lib-services-grid { grid-template-columns: 1fr; gap: 2px; }
  .lib-svc { padding: 28px 22px; }
  .lib-svc__title { font-size: 15px; }
  .lib-svc__desc  { font-size: 13px; margin-bottom: 14px; }

  /* ── PHOTO STRIP mobile ── */
  .lib-photo-strip { grid-template-columns: 1fr; }
  .lib-photo-strip__item img { height: 220px; }
  .lib-photo-strip__cap { opacity: 1; }

  /* ── SPLIT mobile ── */
  .lib-split { grid-template-columns: 1fr; direction: ltr; }
  .lib-split--rev { direction: ltr; }
  .lib-split__img { min-height: 280px; order: 1; }
  .lib-split__img img { height: 280px; }
  .lib-split__body { padding: 36px 20px; order: 2; }

  /* ── WHY LIST mobile ── */
  .lib-why-item { padding: 16px 0; }
  .lib-why-title { font-size: 13px; }
  .lib-why-desc  { font-size: 12px; }

  /* ── PROCESS mobile ── */
  .lib-process-grid { grid-template-columns: 1fr 1fr; }
  .lib-pstep {
    padding: 24px 18px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .lib-pstep:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .lib-pstep:nth-last-child(-n+2) { border-bottom: none; }
  .lib-pstep__num { font-size: 34px; margin-bottom: 14px; }
  .lib-pstep__title { font-size: 13px; }
  .lib-pstep__desc  { font-size: 12px; }

  /* ── PHOTO PAIR mobile ── */
  .lib-photo-pair { grid-template-columns: 1fr; }
  .lib-photo-pair__item img { height: 220px; }
  .lib-photo-pair__cap { opacity: 1; }

  /* ── GALLERY mobile ── */
  .lib-gallery {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 3px;
  }
  .lib-gallery__main img { min-height: 280px; height: 280px; }
  .lib-gallery__side { grid-template-columns: 1fr 1fr; gap: 3px; }
  .lib-gallery__item img { min-height: 130px; height: 130px; }
  .lib-gallery__cap { opacity: 1; }

  /* ── FABRICS mobile ── */
  .lib-fabrics { padding: 48px 20px; }
  .lib-fabrics__row { gap: 24px; }
  .lib-fabric { font-size: 11px; letter-spacing: 2px; }

  /* ── REVIEWS mobile ── */
  .lib-reviews-grid { grid-template-columns: 1fr; }
  .lib-review { padding: 28px 22px; }
  .lib-review__text { font-size: 13px; }

  /* ── CTA mobile ── */
  .lib-cta { padding: 64px 20px; }
  .lib-cta__title { font-size: clamp(24px, 8vw, 36px); }
  .lib-cta__desc  { font-size: 13px; margin-bottom: 28px; }
  .lib-cta__btns  { flex-direction: column; }
  .lib-cta__checks { gap: 14px; flex-direction: column; align-items: center; }
  .lib-cta__check { font-size: 12px; }

  /* ── FAQ mobile ── */
  .lib-faq { margin-top: 32px; }
  .lib-faq__q { font-size: 13px; padding: 16px 18px; }
  .lib-faq__item--open .lib-faq__a { padding: 14px 18px 18px; }

  /* ── WHATSAPP mobile ── */
  .lib-wa { bottom: 18px; right: 18px; }
  .lib-wa__tip { display: none; }
  .lib-wa__btn { width: 48px; height: 48px; }
}

/* ── TABLET (768px–1023px) ── */
@media (min-width: 768px) and (max-width: 1023px) {
  .lib-container { padding: 0 40px; }
  .lib-section   { padding: 72px 0; }

  .lib-services-grid  { grid-template-columns: repeat(2, 1fr); }
  .lib-process-grid   { grid-template-columns: repeat(2, 1fr); }
  .lib-reviews-grid   { grid-template-columns: 1fr; }
  .lib-photo-strip    { grid-template-columns: 1fr 1fr; }
  .lib-gallery        { padding: 0 40px; }
  .lib-gallery__side  { grid-template-columns: 1fr 1fr; }

  .lib-split          { grid-template-columns: 1fr; }
  .lib-split--rev     { direction: ltr; }
  .lib-split__img     { min-height: 360px; }
  .lib-split__img img { height: 360px; }
  .lib-split__body    { padding: 52px 40px; }

  .lib-pstep { padding: 28px 20px; }
  .lib-pstep:nth-child(2) { border-right: none; }
  .lib-pstep:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }

  .lib-hero__content  { padding-bottom: 60px; }
  .lib-cta { padding: 80px 40px; }
}