/* ============================================================
   VADALO VENTURES — HOME PAGE CSS
   Jute | Cotton | Canvas | Juco Bags Export Company
   ============================================================ */

/* ══ HERO SLIDER ══ */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--clr-forest-dark);
}

.hero-slider__track {
  display: flex;
  width: 400%;
  height: 100%;
  min-height: 100vh;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  width: 33.333%;
  flex-shrink: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slide backgrounds */
.hero-slide--1 { background: linear-gradient(135deg, #0f2318 0%, #1a3a2a 55%, #2e6647 100%); }
.hero-slide--2 { background: linear-gradient(135deg, #0f2318 0%, #224d38 50%, #1a3a2a 100%); }
.hero-slide--3 { background: linear-gradient(135deg, #224d38 0%, #1a3a2a 60%, #0f2318 100%); }

.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.45;
  z-index: 0;
  transition: transform 6s ease-out;
}

.hero-slide.is-active .hero-slide__bg {
  transform: scale(1.04);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15,35,24,0.88) 38%, rgba(15,35,24,0.35) 100%);
  z-index: 1;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 0 calc(var(--container-pad) + 2rem);
  padding-top: calc(var(--header-h) + 2rem + 38px);
}

/* Slide label / badge */
.hero-slide__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.1s ease, transform 0.5s 0.1s ease;
}

.hero-slide.is-active .hero-slide__badge { opacity: 1; transform: none; }

.hero-slide__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--clr-cream);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s 0.2s ease, transform 0.55s 0.2s ease;
}

.hero-slide.is-active .hero-slide__title { opacity: 1; transform: none; }

.hero-slide__title em {
  font-style: italic;
  color: var(--clr-gold);
}

.hero-slide__desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(248, 244, 236, 0.72);
  max-width: 480px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s 0.32s ease, transform 0.5s 0.32s ease;
}

.hero-slide.is-active .hero-slide__desc { opacity: 1; transform: none; }

.hero-slide__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.44s ease, transform 0.5s 0.44s ease;
}

.hero-slide.is-active .hero-slide__cta { opacity: 1; transform: none; }

/* Slide tags row */
.hero-slide__tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s 0.55s ease, transform 0.5s 0.55s ease;
}

.hero-slide.is-active .hero-slide__tags { opacity: 1; transform: none; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,244,236,0.6);
}

/* Slider Controls */
.hero-slider__nav {
  position: absolute;
  bottom: 2.5rem;
  left: calc(var(--container-pad) + 2rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slider-dot.is-active {
  width: 28px;
  border-radius: 4px;
  background: var(--clr-gold);
}

.hero-slider__arrows {
  position: absolute;
  bottom: 2rem;
  right: calc(var(--container-pad) + 2rem);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.slider-arrow:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-forest-dark);
}

/* Slider progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--clr-gold);
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* Slide counter */
.hero-slider__counter {
  position: absolute;
  top: 50%;
  right: calc(var(--container-pad) + 2rem);
  transform: translateY(-50%);
  z-index: 10;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.slider-count-current {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 0;
  line-height: 1;
}

.slider-count-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}


/* ══ STATS STRIP ══ */
.stats-strip {
  background: var(--clr-forest-dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 2rem 0;
}

.stats-strip__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1.25rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child { border-right: none; }

.stat-item__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-item__num sup {
  font-size: 1rem;
  font-family: var(--font-ui);
  font-weight: 600;
}

.stat-item__label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}


/* ══ PRODUCT CATEGORIES ══ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.category-card {
  position: relative;
  background: var(--clr-ivory);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.category-card:hover {
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.category-card__img-wrap {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--clr-forest) 0%, var(--clr-forest-mid) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card__icon {
  font-size: 3.5rem;
  color: rgba(201,168,76,0.35);
  transition: transform 0.4s ease, color 0.3s ease;
}

.category-card:hover .category-card__icon {
  transform: scale(1.12);
  color: rgba(201,168,76,0.55);
}

.category-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.2rem 0.7rem;
  background: var(--clr-gold);
  color: var(--clr-forest-dark);
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}

.category-card__body {
  padding: 1.5rem;
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-forest);
  margin-bottom: 0.5rem;
}

.category-card__desc {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.category-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.category-spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.category-spec i {
  color: var(--clr-forest-light);
  width: 14px;
  text-align: center;
}

.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-forest);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.category-card:hover .category-card__link {
  gap: 0.7rem;
  color: var(--clr-gold-dark);
}


/* ══ BUYER TABS ══ */
.buyer-section {
  background: var(--clr-forest-dark);
  position: relative;
  overflow: hidden;
}

.buyer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 60px,
    rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px
  );
  pointer-events: none;
}

.buyer-tabs {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 4px;
  max-width: 440px;
  margin: 0 auto var(--sp-xl);
}

.buyer-tab {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: calc(var(--radius-lg) - 4px);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.buyer-tab.is-active {
  background: var(--clr-gold);
  color: var(--clr-forest-dark);
}

.buyer-tab i {
  font-size: 0.9rem;
}

.buyer-panel {
  display: none;
}

.buyer-panel.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.buyer-panel__text .section-label {
  color: var(--clr-gold);
}

.buyer-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--clr-cream);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.buyer-panel__title em {
  color: var(--clr-gold);
  font-style: italic;
}

.buyer-panel__desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(248,244,236,0.65);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.buyer-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.buyer-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.buyer-highlight:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.2);
}

.buyer-highlight__icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.buyer-highlight__content h5 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-cream);
  margin-bottom: 0.25rem;
}

.buyer-highlight__content p {
  font-size: 0.875rem;
  color: rgba(248,244,236,0.5);
  line-height: 1.5;
}

.buyer-panel__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.buyer-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.buyer-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--clr-gold);
  border-radius: 0 2px 2px 0;
}

.buyer-info-card__label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.5rem;
}

.buyer-info-card__value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-cream);
  margin-bottom: 0.3rem;
}

.buyer-info-card__sub {
  font-size: 0.82rem;
  color: rgba(248,244,236,0.45);
}

.buyer-info-card--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  background: transparent;
  border: none;
  padding: 0;
}

.buyer-info-card--grid::before { display: none; }


/* ══ PROCESS STEPS ══ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: var(--sp-xl);
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 72px;
  height: 72px;
  background: var(--clr-cream);
  border: 2px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-forest);
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover .process-step__num {
  background: var(--clr-forest);
  border-color: var(--clr-forest);
  color: var(--clr-gold);
  transform: scale(1.08);
}

.process-step__num i {
  font-size: 1.4rem;
  color: var(--clr-forest);
  transition: color 0.3s ease;
}

.process-step:hover .process-step__num i {
  color: var(--clr-gold);
}

.process-step__title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-forest);
  margin-bottom: 0.5rem;
}

.process-step__desc {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
}


/* ══ TESTIMONIALS ══ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.testimonial-card {
  background: var(--clr-ivory);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}

.testimonial-card__quote {
  font-size: 3rem;
  color: var(--clr-gold);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--clr-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-forest), var(--clr-forest-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-forest);
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 0.15rem;
}

.testimonial-card__flag {
  font-size: 1.1rem;
}

.testimonial-card__stars {
  color: var(--clr-gold);
  font-size: 0.7rem;
  margin-bottom: 1rem;
}


/* ══ USP STRIP ══ */
.usp-strip {
  background: var(--clr-forest);
  padding: var(--sp-xl) 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.usp-item {
  background: rgba(255,255,255,0.03);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.3s ease;
}

.usp-item:hover { background: rgba(255,255,255,0.07); }

.usp-item__icon {
  font-size: 1.8rem;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.usp-item__title {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-cream);
  margin-bottom: 0.4rem;
}

.usp-item__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}


/* ══ CERTIFICATIONS MARQUEE ══ */
.cert-marquee-wrap {
  overflow: hidden;
  position: relative;
}

.cert-marquee-wrap::before,
.cert-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.cert-marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--clr-cream), transparent); }
.cert-marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--clr-cream), transparent); }

.cert-marquee {
  display: flex;
  gap: 3rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.cert-marquee:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  background: white;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.cert-item__icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--clr-forest), var(--clr-forest-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cert-item__name {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-forest);
}

.cert-item__sub {
  font-size: 0.65rem;
  color: var(--clr-text-muted);
  margin-top: 0.1rem;
}


/* ══ CTA BAND ══ */
.cta-band {
  background: linear-gradient(135deg, var(--clr-forest-dark) 0%, var(--clr-forest-mid) 100%);
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 60px,
    rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px
  );
}

.cta-band__content { position: relative; z-index: 1; }

.cta-band__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--clr-cream);
  margin-bottom: var(--sp-sm);
}

.cta-band__desc {
  color: rgba(248,244,236,0.65);
  max-width: 520px;
  margin: 0 auto var(--sp-xl);
  font-size: 1.0625rem;
}

.cta-band__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}


/* ══ RESPONSIVE ══ */
@media (max-width: 1200px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }
  .process-steps::before { display: none; }
}

@media (max-width: 1024px) {
  .buyer-panel.is-active { grid-template-columns: 1fr; }
  .hero-slider__counter { display: none; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-slide__content { padding: 0 1.5rem; padding-top: calc(var(--header-h) + 1rem); }
  .hero-slider__arrows { display: none; }
  .hero-slider__nav { left: 1.5rem; }
  .stats-strip__inner { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:last-child, .stat-item:nth-child(even) { border-right: none; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .buyer-info-card--grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .buyer-tabs { max-width: 100%; }
}


/* ══ OUR STORY SECTION ══ */
.our-story-section.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.our-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

/* Image column */
.our-story__img-col {
  position: relative;
}

.our-story__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--clr-forest);
}

.our-story__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.our-story__img-wrap:hover .our-story__img {
  transform: scale(1.03);
}

/* Year badge (top-right) */
.our-story__year-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 88px;
  height: 88px;
  background: var(--clr-gold);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  z-index: 2;
}

.our-story__year-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-forest-dark);
  line-height: 1;
}

.our-story__year-sub {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-forest-dark);
  margin-top: 0.25rem;
  opacity: 0.7;
}

/* Bottom caption bar */
.our-story__img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 2;
}

.our-story__img-caption strong {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-forest);
  letter-spacing: 0.04em;
}

.our-story__img-caption span {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* Content column */
.our-story__content .section-label {
  display: block;
  margin-bottom: 0.6rem;
}

.our-story__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--clr-forest);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.our-story__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--clr-text);
  margin-bottom: 0.75rem;
}

.our-story__desc strong {
  color: var(--clr-forest);
  font-weight: 600;
}

/* Blockquote */
.our-story__quote {
  border-left: 3px solid var(--clr-gold);
  background: rgba(201,168,76,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--clr-forest);
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.our-story__quote i {
  color: var(--clr-gold);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  opacity: 0.7;
}

/* 4 Feature boxes */
.our-story__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.our-story__feature {
  background: white;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.our-story__feature:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-sm);
}

.our-story__feature h5 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--clr-forest);
  margin-bottom: 0.3rem;
}

.our-story__feature p {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.4;
}

/* Buttons row */
.our-story__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .our-story-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .our-story__img {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .our-story__features {
    grid-template-columns: 1fr;
  }

  .our-story__img {
    height: 260px;
  }
}


/* ══ VISION & MISSION ══ */
.vm-section.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: var(--sp-xl);
  align-items: stretch;
}

/* Shared card base */
.vm-card {
  border-radius: var(--radius-xl);
  padding: 1.75rem 2.25rem;
  position: relative;
  overflow: hidden;
}

/* VISION — light card */
.vm-card--vision {
  background: white;
  border: 1px solid var(--clr-border-light);
}

/* Decorative circle watermark */
.vm-card__deco {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1.5px solid rgba(26,58,42,0.07);
  pointer-events: none;
}

.vm-card__deco::after {
  content: '';
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(26,58,42,0.05);
}

/* MISSION — dark green card */
.vm-card--mission {
  background: var(--clr-forest);
  border: none;
  background-image:
    radial-gradient(ellipse 70% 60% at 90% 110%, rgba(201,168,76,0.08) 0%, transparent 70%),
    repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
}

/* Label */
.vm-label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* Card title */
.vm-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--clr-forest);
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Vision description */
.vm-card__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* Vision bullet list */
.vm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.vm-list li {
  padding: 0.55rem 1rem;
  background: var(--clr-ivory);
  border-left: 3px solid var(--clr-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-forest);
  line-height: 1.4;
}

/* Mission bullet list */
.vm-mission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.vm-mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.975rem;
  line-height: 1.75;
  color: rgba(248, 244, 236, 0.8);
}

.vm-mission-list li i {
  color: var(--clr-gold);
  font-size: 0.5rem;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 2rem 1.75rem; }
}


/* ══ WHO WE SERVE ══ */
.wws-section {
  background: var(--clr-ivory);
  padding: 3rem 0 0;
  overflow: hidden;
}

.wws-inner {
  position: relative;
  background: linear-gradient(135deg, #f0ece0 0%, #f8f4ec 60%, #eee8d5 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 2.5rem 0 2.75rem;
  overflow: hidden;
}

/* Decorative arch watermark */
.wws-inner::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  border-radius: 50%;
  border: 1.5px solid rgba(26,58,42,0.06);
  pointer-events: none;
}

.wws-inner::after {
  content: '';
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(26,58,42,0.04);
  pointer-events: none;
}

.wws-head {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.wws-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--clr-forest);
  margin-top: 0.4rem;
}

/* Scrolling track */
.wws-track-wrap {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.wws-track-wrap::before,
.wws-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.wws-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #f0ece0, transparent);
}

.wws-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #f0ece0, transparent);
}

.wws-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: wwsScroll 36s linear infinite;
  padding: 0.25rem 0;
}

.wws-track:hover { animation-play-state: paused; }

@keyframes wwsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Individual buyer card */
.wws-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  padding: 0.9rem 1.4rem;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(26,58,42,0.1);
  border-radius: var(--radius-md);
  min-width: 130px;
  white-space: nowrap;
  cursor: default;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(4px);
}

.wws-item:hover {
  background: white;
  border-color: var(--clr-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.wws-item strong {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-forest);
  letter-spacing: 0.02em;
}

.wws-item span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}


/* ══ PRINTING TECHNIQUES SECTION ══ */
.print-section .section-subtitle strong { color: var(--clr-forest); font-weight: 600; }

/* Filter tabs */
.print-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin: 2rem 0 1.75rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
}
.print-tabs::-webkit-scrollbar { display: none; }

.print-tab {
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--clr-border);
  background: white;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.print-tab:hover {
  border-color: var(--clr-forest);
  color: var(--clr-forest);
}

.print-tab.is-active {
  background: var(--clr-forest);
  border-color: var(--clr-forest);
  color: var(--clr-cream);
}

/* Panels */
.print-panel { display: none; }
.print-panel.is-active { display: block; }

/* Cards grid — 5 columns */
.print-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 auto 2rem;
  justify-content: center;
}
.print-card {
  flex: 0 0 calc(20% - 0.8rem);
  min-width: 180px;
  max-width: 260px;
}

/* Individual card */
.print-card {
  flex: 0 0 calc(20% - 0.8rem);
  min-width: 180px;
  max-width: 260px;
  background: white;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.print-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-3px);
}

/* Image wrap */
.print-card__img-wrap {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: var(--clr-forest);
}

.print-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.print-card:hover .print-card__img-wrap img {
  transform: scale(1.06);
}

/* Badges */
.print-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.print-badge--popular { background: var(--clr-gold); color: var(--clr-forest-dark); }
.print-badge--premium { background: var(--clr-forest); color: var(--clr-gold); border: 1px solid var(--clr-gold); }
.print-badge--luxury  { background: #0f2318; color: var(--clr-gold); border: 1px solid rgba(201,168,76,0.5); }

/* Card body */
.print-card__body {
  padding: 0.85rem 1rem;
}

.print-card__body h4 {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-forest);
  margin-bottom: 0.4rem;
}

/* Read more details toggle */
.print-readmore summary {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.print-readmore summary::before {
  content: '▼';
  font-size: 0.5rem;
  color: var(--clr-gold);
  transition: transform 0.2s ease;
}

.print-readmore[open] summary::before {
  transform: rotate(180deg);
}

.print-readmore summary::-webkit-details-marker { display: none; }

.print-readmore p {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--clr-border-light);
}

/* Bottom CTA bar */
.print-cta-bar {
  background: var(--clr-forest);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.print-cta-bar__left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.print-cta-bar__label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.print-cta-bar__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-cream);
}

.print-cta-bar__sub {
  font-size: 0.78rem;
  color: rgba(248,244,236,0.5);
}

/* Responsive */
@media (max-width: 1200px) {
  .print-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .print-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .print-grid { grid-template-columns: repeat(2, 1fr); }
  .print-tabs { gap: 0.4rem; }
  .print-tab { font-size: 0.65rem; padding: 0.45rem 0.9rem; }
  .print-cta-bar { flex-direction: column; text-align: center; }
}


/* ══ BESPOKE MANUFACTURING ══ */
.bespoke-section {
  background: linear-gradient(135deg, #0f2318 0%, #1a3a2a 50%, #224d38 100%);
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
}

.bespoke-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 65%),
    repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px);
  pointer-events: none;
}

.bespoke-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT */
.bespoke__label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: block;
  margin-bottom: 1rem;
}

.bespoke__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--clr-cream);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.bespoke__desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(248,244,236,0.65);
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Feature pills grid */
.bespoke-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.bespoke-feat {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(248,244,236,0.8);
  letter-spacing: 0.04em;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.bespoke-feat:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.35);
  color: var(--clr-gold-light);
}

/* RIGHT: Steps */
.bespoke-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bespoke-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 1.5rem;
}

/* Connector line between steps */
.bespoke-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), rgba(201,168,76,0.1));
}

.bespoke-step:last-child { padding-bottom: 0; }

/* Number circle */
.bespoke-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-forest-dark);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bespoke-step:hover .bespoke-step__num {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(201,168,76,0.5);
}

.bespoke-step__content h5 {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-cream);
  margin-bottom: 0.3rem;
  margin-top: 0.6rem;
}

.bespoke-step__content p {
  font-size: 0.875rem;
  color: rgba(248,244,236,0.55);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .bespoke-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .bespoke__desc { max-width: 100%; }
}

@media (max-width: 480px) {
  .bespoke-features { grid-template-columns: 1fr; }
}


/* ══ WHY CHOOSE VADALO ══ */
.wcv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: var(--sp-xl);
}

.wvc-card {
  background: white;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.wvc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 28px;
  height: 3px;
  background: transparent;
  border-radius: 0 0 3px 3px;
  transition: background 0.3s ease;
}

.wvc-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(26,58,42,0.15);
  transform: translateY(-4px);
}

.wvc-card:hover::before {
  background: var(--clr-forest-light);
}

/* Featured / highlighted middle card */
.wvc-card--featured {
  border-color: rgba(26,58,42,0.2);
  background: linear-gradient(160deg, #fdfaf2 0%, white 100%);
}

.wvc-card--featured::before {
  background: var(--clr-gold);
}

.wvc-card h4 {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-forest);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.wvc-card p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.wvc-card p strong {
  color: var(--clr-forest);
  font-weight: 600;
}

@media (max-width: 1200px) {
  .wcv-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .wcv-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .wcv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .wcv-grid { grid-template-columns: 1fr; }
}


/* ══ INDUSTRY TICKER ══ */
.industry-ticker {
  background: var(--clr-forest);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.industry-ticker__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
}

.industry-ticker__track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.industry-ticker__track span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,244,236,0.75);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.industry-ticker__track span:hover {
  color: var(--clr-gold);
}

.ticker-dot {
  color: var(--clr-gold) !important;
  font-size: 0.45rem !important;
  letter-spacing: 0 !important;
  opacity: 0.7;
}


/* ══ DOWNLOAD CATALOGUE ══ */
.catalogue-section {
  background: linear-gradient(135deg, #0f2318 0%, #1a3a2a 55%, #224d38 100%);
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
}

.catalogue-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 65%),
    repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px);
  pointer-events: none;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT */
.catalogue__label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: block;
  margin-bottom: 0.75rem;
}

.catalogue__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--clr-cream);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.catalogue__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(248,244,236,0.65);
  margin-bottom: 1.75rem;
  max-width: 480px;
}

/* Include pills 2×3 grid */
.catalogue-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.cat-pill {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(248,244,236,0.75);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.cat-pill:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  color: var(--clr-gold-light);
}

.catalogue__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.catalogue__email {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(248,244,236,0.4);
}

.catalogue__email a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.catalogue__email a:hover { opacity: 0.75; }

/* RIGHT */
.catalogue__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Main cover */
.catalogue__cover {
  position: relative;
}

.catalogue__cover-badge {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 64px;
  height: 64px;
  background: var(--clr-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--clr-forest-dark);
  z-index: 2;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

.catalogue__cover-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

.catalogue__cover-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.catalogue__cover-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15,35,24,0.88);
  backdrop-filter: blur(6px);
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.catalogue__cover-title strong {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-cream);
}

.catalogue__cover-title span {
  font-size: 0.72rem;
  color: rgba(248,244,236,0.5);
}

/* 4 thumbnails */
.catalogue__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.catalogue__thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.catalogue__thumb:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

.catalogue__thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .catalogue-grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .catalogue__desc { max-width: 100%; }
}

@media (max-width: 480px) {
  .catalogue-includes { grid-template-columns: 1fr; }
  .catalogue__btns { flex-direction: column; }
  .catalogue__thumbs { grid-template-columns: repeat(2, 1fr); }
}


/* ══ GALLERY ══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 0.75rem;
  margin-top: var(--sp-xl);
}

/* Default item */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--clr-forest);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

/* Overlay caption */
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,35,24,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-cream);
}

/* Tall item — row 1 col 1, spans 2 rows */
.gallery-item--tall {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Wide item — row 2 col 2-3, spans 2 cols */
.gallery-item--wide {
  grid-column: 2 / 4;
  grid-row: 2;
}

/* Grid placement for remaining items */
/* Row 1: item 1(tall) item 2 item 3 + wide covers col4 row1 */
/* Row 2: item4(wide) item5 item6 item7 item8 */

/* Explicit placement */
.gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }   /* tall */
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 4; grid-row: 1; }
.gallery-item:nth-child(5) { grid-column: 2 / 4; grid-row: 2; }   /* wide */
.gallery-item:nth-child(6) { grid-column: 4; grid-row: 2; }
/* Row 3 — extra 2 items as a bottom strip */
.gallery-item:nth-child(7) { grid-column: 1 / 3; grid-row: 3; }
.gallery-item:nth-child(8) { grid-column: 3 / 5; grid-row: 3; }

.gallery-grid {
  grid-template-rows: 260px 260px 200px;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 220px);
  }
  .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
  .gallery-item:nth-child(5) { grid-column: 1; grid-row: 4; }
  .gallery-item:nth-child(6) { grid-column: 2; grid-row: 4; }
  .gallery-item:nth-child(7) { grid-column: 1; grid-row: 5; }
  .gallery-item:nth-child(8) { grid-column: 2; grid-row: 5; }
  .gallery-grid { grid-template-rows: repeat(5, 200px); }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 160px) !important;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .gallery-item:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
  .gallery-item:nth-child(7) { grid-column: 1 / 3; grid-row: 5; }
}


/* ══════════════════════════════════════════════
   HOME PAGE — COMPACT HEIGHT OVERRIDES
   Reduces all section padding for better PC fit
   ══════════════════════════════════════════════ */

/* Global section override for home page only */
main .section {
  padding-block: 3rem;
}

/* ── Hero slider: 88vh instead of 100vh ── */
.hero-slider,
.hero-slider__track,
.hero-slide {
  min-height: 88vh;
}

.hero-slide__content {
  padding-top: calc(var(--header-h) + 1rem);
}

/* ── Stats strip ── */
.stats-strip {
  padding: 1rem 0;
}

.stat-item {
  padding: 0.9rem 1.5rem;
}

.stat-item__num {
  font-size: 2rem;
}

/* ── Our Story ── */
.our-story-section.section {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.our-story-grid {
  gap: 3rem;
}

.our-story__img {
  height: 320px;
}

.our-story__title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.our-story__desc {
  margin-bottom: 0.6rem;
}

.our-story__quote {
  margin: 0.75rem 0;
  padding: 0.65rem 1rem;
}

.our-story__features {
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.our-story__feature {
  padding: 0.6rem 0.9rem;
}

/* ── Vision & Mission ── */
.vm-section.section {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.vm-grid {
  margin-top: 2rem;
}

.vm-card {
  padding: 1.5rem 1.75rem;
}

.vm-card__title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: 0.6rem;
}

.vm-card__desc {
  margin-bottom: 0.75rem;
}

.vm-list {
  gap: 0.35rem;
}

.vm-list li {
  padding: 0.45rem 0.9rem;
}

.vm-mission-list {
  gap: 0.7rem;
}

/* ── Who We Serve ── */
.wws-section {
  padding: 1.5rem 0 0;
}

.wws-inner {
  padding: 1.5rem 0 2rem;
}

.wws-head {
  margin-bottom: 1.25rem;
}

.wws-title {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
}

.wws-item {
  padding: 0.6rem 1rem;
}

/* ── Printing Techniques ── */
.print-section.section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.print-tabs {
  margin: 1.25rem 0 1.25rem;
}

.print-grid {
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.print-card__img-wrap {
  height: 140px;
}

.print-card__body {
  padding: 0.65rem 0.85rem;
}

.print-cta-bar {
  padding: 1.1rem 1.5rem;
}

/* ── Bespoke Manufacturing ── */
.bespoke-section {
  padding: 3rem 0;
}

.bespoke-grid {
  gap: 3rem;
}

.bespoke__title {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.bespoke__desc {
  margin-bottom: 1.25rem;
}

.bespoke-features {
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.bespoke-feat {
  padding: 0.55rem 0.9rem;
}

.bespoke-step {
  padding-bottom: 1.1rem;
}

.bespoke-step__num {
  width: 38px;
  height: 38px;
  font-size: 0.95rem;
}

.bespoke-step:not(:last-child)::after {
  left: 19px;
  top: 38px;
}

.bespoke-step__content h5 { margin-top: 0.4rem; }

/* ── Why Choose Vadalo ── */
.wcv-section.section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.wcv-grid {
  margin-top: 2rem;
  gap: 0.75rem;
}

.wvc-card {
  padding: 1.1rem 1.1rem;
}

.wvc-card h4 {
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
}

.wvc-card p {
  font-size: 0.78rem;
}

/* ── Industry Ticker ── */
.industry-ticker {
  padding: 0.75rem 0;
}

/* ── Buyer Tabs ── */
.buyer-section.section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.buyer-tabs {
  margin-bottom: 2rem;
}

.buyer-highlight {
  padding: 0.75rem 1rem;
}

.buyer-info-card {
  padding: 1.1rem 1.25rem;
}

/* ── Download Catalogue ── */
.catalogue-section {
  padding: 3rem 0;
}

.catalogue-grid {
  gap: 3rem;
}

.catalogue__title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.catalogue__desc {
  margin-bottom: 1.25rem;
}

.catalogue-includes {
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.cat-pill {
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
}

.catalogue__cover-img img {
  height: 180px;
}

.catalogue__thumb img {
  height: 65px;
}

/* ── Gallery ── */
.gallery-section.section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.gallery-grid {
  grid-template-rows: 210px 210px 170px !important;
  gap: 0.6rem;
  margin-top: 2rem;
}

/* ── Process Steps ── */
.process-step__num {
  width: 58px;
  height: 58px;
}

.process-steps {
  margin-top: 2rem;
}

/* ── Certifications Marquee ── */
section[style*="padding:3rem"] {
  padding: 2rem 0 !important;
}

.cert-item {
  padding: 0.55rem 1.1rem;
}

.cert-item__icon {
  width: 32px;
  height: 32px;
}

/* ── Testimonials ── */
.testimonial-card {
  padding: 1.5rem;
}

.testimonial-card__quote {
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
}

/* ── CTA Band ── */
.cta-band {
  padding: 3rem 0;
}

/* ── Section heads — reduce margin ── */
.section-head {
  margin-bottom: 0;
}

.section-title {
  margin-bottom: 0.5rem;
}

.section-subtitle {
  margin-top: 0.5rem;
}

.divider {
  margin: 0.75rem 0 0.5rem;
}


/* ── BUYER TABS — 3 inch height reduction ── */
.buyer-section.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.buyer-section .section-head {
  margin-bottom: 1.25rem;
}

.buyer-section .section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.buyer-section .section-subtitle {
  font-size: 0.88rem;
}

.buyer-tabs {
  margin-bottom: 1.5rem;
  padding: 3px;
}

.buyer-tab {
  padding: 0.65rem 1.1rem;
  font-size: 0.68rem;
}

.buyer-panel.is-active {
  gap: 2.5rem;
}

.buyer-panel__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 0.6rem;
}

.buyer-panel__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.buyer-highlights {
  gap: 0.6rem;
}

.buyer-highlight {
  padding: 0.6rem 0.9rem;
}

.buyer-highlight__icon {
  width: 34px;
  height: 34px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.buyer-highlight__content h5 {
  font-size: 0.68rem;
  margin-bottom: 0.15rem;
}

.buyer-highlight__content p {
  font-size: 0.78rem;
  line-height: 1.4;
}

.buyer-panel__cards {
  gap: 0.6rem;
}

.buyer-info-card {
  padding: 0.85rem 1.1rem;
}

.buyer-info-card__label {
  font-size: 0.55rem;
  margin-bottom: 0.3rem;
}

.buyer-info-card__value {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.buyer-info-card__sub {
  font-size: 0.72rem;
}

.buyer-info-card--grid {
  gap: 0.6rem;
}


/* ── BUYER TABS — additional 1 inch reduction ── */
.buyer-section.section {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.buyer-section .section-title {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.buyer-section .section-subtitle {
  font-size: 0.82rem;
  line-height: 1.5;
}

.buyer-section .divider { margin: 0.4rem 0 0.3rem; }
.buyer-section .section-head { margin-bottom: 0.75rem; }

.buyer-tabs { margin-bottom: 1rem; }

.buyer-tab { padding: 0.5rem 1rem; font-size: 0.65rem; }

.buyer-panel.is-active { gap: 2rem; }

.buyer-panel__title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 0.4rem;
}

.buyer-panel__desc {
  font-size: 0.84rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.buyer-highlights { gap: 0.45rem; }

.buyer-highlight { padding: 0.5rem 0.75rem; gap: 0.75rem; }

.buyer-highlight__icon { width: 30px; height: 30px; font-size: 0.75rem; }

.buyer-highlight__content h5 { font-size: 0.65rem; }
.buyer-highlight__content p  { font-size: 0.74rem; }

.buyer-panel__cards { gap: 0.45rem; }

.buyer-info-card { padding: 0.65rem 0.9rem; }
.buyer-info-card__label { font-size: 0.52rem; margin-bottom: 0.2rem; }
.buyer-info-card__value { font-size: 0.95rem; margin-bottom: 0.15rem; }
.buyer-info-card__sub   { font-size: 0.68rem; }
.buyer-info-card--grid  { gap: 0.45rem; }


/* ── HERO SLIDER — 1.5 inch height reduction ── */
.hero-slider,
.hero-slider__track,
.hero-slide {
  min-height: 78vh;
}

.hero-slide__content {
  padding-top: calc(var(--header-h) + 0.5rem);
}

.hero-slide__title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin-bottom: 0.9rem;
}

.hero-slide__desc {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.hero-slide__tags {
  margin-top: 1.25rem;
}

.hero-slide__badge {
  margin-bottom: 1rem;
}


/* ── HERO SLIDER — Full transparent background, image fully visible ── */
.hero-slide--1,
.hero-slide--2,
.hero-slide--3,
.hero-slide--4 {
  background: #0a1a0f;
}

.hero-slide__bg {
  opacity: 1;
  object-fit: cover;
  object-position: center center;
}

/* NO overlay — image fully clean visible */
.hero-slide__overlay {
  background: transparent;
}

/* Text readable via shadow only */
.hero-slide__title,
.hero-slide__desc,
.hero-slide__badge,
.hero-slide__cta,
.hero-slide__tags {
  text-shadow: 0 1px 12px rgba(0,0,0,0.7), 0 2px 32px rgba(0,0,0,0.5);
}

.hero-slide__title em {
  text-shadow: 0 1px 16px rgba(0,0,0,0.6);
}

.hero-tag {
  background: rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}

.hero-slide__badge {
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}

.slider-arrow {
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}


/* ── HERO FULL SCREEN FIX ── */
/* Remove gap between header and hero */
.hero-slider {
  margin-top: calc(-1 * var(--header-h));
}

/* Slider and slides full viewport */
.hero-slider,
.hero-slider__track,
.hero-slide {
  min-height: 100vh;
  height: 100vh;
}

/* picture tag fills full slide */
.hero-slide picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide picture img,
.hero-slide__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Content starts below sticky header */
.hero-slide__content {
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: 2rem;
}

/* Mobile: taller portrait image */
@media (max-width: 768px) {
  .hero-slider,
  .hero-slider__track,
  .hero-slide {
    min-height: 100svh;
    height: 100svh;
  }

  .hero-slide picture img,
  .hero-slide__bg {
    object-fit: cover;
    object-position: center top;
  }

  .hero-slide__content {
    padding-top: calc(var(--header-h) + 1rem);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-slide__title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
}


/* ── HERO FULL SCREEN FIX v4 — White Line Fixed ── */

/* 
  header.css sets: main { padding-top: 116px } 
  header.css sets: .hero-slider { margin-top: -116px }
  These two cancel out — hero appears directly below header.
  Do NOT override these with !important.
*/

/* Hero slider fills full viewport */
.hero-slider {
  height: 100vh !important;
  min-height: 100vh !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

.hero-slider__track {
  height: 100% !important;
  min-height: 100% !important;
  overflow: hidden;
}

.hero-slide {
  height: 100% !important;
  min-height: 100% !important;
  width: 25% !important;
}

/* Fix horizontal overflow globally */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

#page-wrapper {
  overflow-x: hidden !important;
}

/* Slide content — no extra top padding needed now */
.hero-slide__content {
  padding-top: 2.5rem !important;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider {
    height: calc(100svh - var(--header-h)) !important;
    min-height: calc(100svh - var(--header-h)) !important;
  }
  .hero-slide__content {
    padding-top: 1.5rem !important;
  }
}


/* ── HERO MOBILE SIZE — 3cm height × 7cm width ── */
/* 3cm ≈ 113px, 7cm ≈ 265px — but as full-width mobile hero use vh/vw */
@media (max-width: 768px) {
  .hero-slider {
    height: 38vh !important;
    min-height: 38vh !important;
    max-height: 38vh !important;
  }

  .hero-slider__track,
  .hero-slide {
    height: 38vh !important;
    min-height: 38vh !important;
  }

  .hero-slide__content {
    padding-top: 1rem !important;
    padding-bottom: 0.5rem !important;
  }

  .hero-slide__badge {
    font-size: 0.52rem;
    padding: 0.25rem 0.6rem;
    margin-bottom: 0.5rem;
  }

  .hero-slide__title {
    font-size: clamp(1.1rem, 5vw, 1.6rem) !important;
    margin-bottom: 0.4rem;
  }

  .hero-slide__desc {
    display: none;
  }

  .hero-slide__cta {
    gap: 0.5rem;
    margin-bottom: 0;
  }

  .hero-slide__cta .btn {
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
  }

  .hero-slide__tags {
    display: none;
  }

  .hero-slider__nav {
    bottom: 0.75rem;
  }

  .hero-slider__arrows {
    display: none;
  }
}


/* ── CATEGORY CARDS MOBILE — Hide desc, show View More ── */
@media (max-width: 768px) {
  .category-card__desc {
    display: none;
  }

  .category-card__specs {
    display: none;
  }

  .category-card__body {
    padding: 1rem 1rem 0.75rem;
  }

  .category-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .category-card__link {
    margin-top: 0.75rem;
    font-size: 0.72rem;
  }
}


/* ── CARD MOBILE VIEW MORE ── */
.card-mobile-more {
  display: none;
}

.card-view-more-btn {
  display: none;
}

@media (max-width: 768px) {
  .card-view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: 1px solid var(--clr-border);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--clr-forest);
    cursor: pointer;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    transition: all 0.2s ease;
  }

  .card-view-more-btn i {
    font-size: 0.55rem;
    transition: transform 0.25s ease;
  }

  .card-view-more-btn.is-open {
    background: var(--clr-forest);
    color: var(--clr-cream);
    border-color: var(--clr-forest);
  }

  .card-view-more-btn.is-open i {
    transform: rotate(180deg);
  }

  .card-mobile-more {
    display: none;
    margin-top: 0.5rem;
    animation: fadeSlide 0.25s ease;
  }

  .card-mobile-more.is-open {
    display: block;
  }

  @keyframes fadeSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .card-mobile-more__desc {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
    display: block;
    margin-bottom: 0.5rem;
  }

  .card-mobile-more__specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .card-mobile-more__specs li {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .card-mobile-more__specs li i {
    color: var(--clr-forest-light);
    width: 13px;
  }
}


/* ── PRINTING CARDS MOBILE — 4 per row horizontal scroll ── */
@media (max-width: 768px) {
  .print-panel.is-active {
    display: block;
  }

  .print-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .print-card {
    width: calc(25% - 0.4rem);
    flex-shrink: 0;
  }

  .print-card__img-wrap {
    height: 90px;
  }

  .print-card__body {
    padding: 0.5rem 0.5rem;
  }

  .print-card__body h4 {
    font-size: 0.65rem;
    line-height: 1.3;
    margin-bottom: 0.2rem;
  }

  .print-readmore {
    display: none;
  }

  .print-badge {
    font-size: 0.48rem;
    padding: 0.15rem 0.4rem;
  }
}


/* ── PRINTING CARDS MOBILE — last row 2 cards full width ── */
@media (max-width: 768px) {
  /* Last 2 cards take 50% each */
  .print-card:nth-last-child(1),
  .print-card:nth-last-child(2) {
    width: calc(50% - 0.25rem);
  }
}


/* ── SLIDE 3 CANVAS — content right side ── */
.hero-slide--3 .hero-slide__content {
  margin-left: 38%;
  margin-top: -2.5cm;
  margin-right: 0;
  padding-left: 1rem;
  padding-right: calc(var(--container-pad) + 2rem);
  text-align: left;
}

@media (max-width: 768px) {
  .hero-slide--3 .hero-slide__content {
    margin-left: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}


/* ── CATALOGUE RIGHT — all images inside box ── */
.catalogue__right {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  gap: 0.75rem;
}

.catalogue__cover-img img {
  height: 200px;
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
}

.catalogue__cover-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.catalogue__thumbs {
  gap: 0.5rem;
}

.catalogue__thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.catalogue__thumb img {
  height: 75px;
  width: 100%;
  object-fit: cover;
}


/* ── CATALOGUE RIGHT BOX — 2 inch taller ── */
.catalogue__right {
  padding: 1.5rem;
}

.catalogue__cover-img img {
  height: 280px !important;
}

.catalogue__thumb img {
  height: 105px !important;
}


/* ── RIGHT SIDE FLOATING BUTTONS ── */
.side-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 999;
}

.side-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 1.1rem 0.55rem;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
  transition: padding 0.25s ease, opacity 0.25s ease;
  cursor: pointer;
  border-radius: 0;
}

.side-btn:first-child {
  border-radius: var(--radius-md) 0 0 0;
}

.side-btn:last-child {
  border-radius: 0 0 0 var(--radius-md);
}

.side-btn:hover {
  padding: 1.1rem 0.8rem;
  opacity: 0.92;
}

.side-btn--green {
  background: #1a4a2a;
}

.side-btn--teal {
  background: #25a244;
}

.side-btn--gold {
  background: #b8960c;
}

@media (max-width: 768px) {
  .side-float {
    top: auto;
    bottom: 5rem;
    transform: none;
  }

  .side-btn {
    font-size: 0.52rem;
    padding: 0.9rem 0.45rem;
  }
}


/* ── STATS STRIP MOBILE — 2 inch smaller ── */
@media (max-width: 768px) {
  .stats-strip {
    padding: 0.5rem 0;
  }

  .stat-item {
    padding: 0.5rem 1rem;
    min-width: 45%;
  }

  .stat-item__num {
    font-size: 1.5rem;
  }

  .stat-item__label {
    font-size: 0.52rem;
    margin-top: 0.2rem;
  }
}


/* ── STATS STRIP MOBILE — 4+3 row layout ── */
@media (max-width: 768px) {
  .stats-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex-wrap: unset;
  }

  /* First 4 items — row 1 */
  .stat-item:nth-child(1),
  .stat-item:nth-child(2),
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    min-width: unset;
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    grid-column: auto;
  }

  /* Last 3 items — row 2, 3 columns */
  .stat-item:nth-child(5),
  .stat-item:nth-child(6),
  .stat-item:nth-child(7) {
    min-width: unset;
    grid-column: auto;
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: none;
  }

  /* Reset grid to handle 4+3 */
  .stats-strip__inner {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
  }

  .stat-item:nth-child(5) { grid-column: 1 / 2; grid-row: 2; }
  .stat-item:nth-child(6) { grid-column: 2 / 3; grid-row: 2; }
  .stat-item:nth-child(7) { grid-column: 3 / 5; grid-row: 2; }

  .stat-item {
    padding: 0.5rem 0.3rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: none;
    min-width: unset;
  }

  .stat-item__num { font-size: 1.1rem; }
  .stat-item__label { font-size: 0.45rem; letter-spacing: 0.1em; }
}


/* ── BESPOKE SECTION MOBILE — 5 inch smaller ── */
@media (max-width: 768px) {
  .bespoke-section {
    padding: 1.5rem 0;
  }

  .bespoke-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .bespoke__title {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }

  .bespoke__desc {
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
  }

  .bespoke-features {
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    margin-bottom: 0.85rem;
  }

  .bespoke-feat {
    padding: 0.4rem 0.65rem;
    font-size: 0.68rem;
  }

  .bespoke__cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }

  /* Steps compact */
  .bespoke-steps {
    gap: 0;
  }

  .bespoke-step {
    padding-bottom: 0.6rem;
    gap: 0.75rem;
  }

  .bespoke-step__num {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .bespoke-step:not(:last-child)::after {
    left: 15px;
    top: 30px;
  }

  .bespoke-step__content h5 {
    font-size: 0.78rem;
    margin-top: 0.3rem;
    margin-bottom: 0.15rem;
  }

  .bespoke-step__content p {
    font-size: 0.72rem;
    line-height: 1.4;
  }
}


/* ── BESPOKE MOBILE — 2 inch more reduction ── */
@media (max-width: 768px) {
  .bespoke-section { padding: 0.75rem 0; }
  .bespoke__title { font-size: 1.2rem; margin-bottom: 0.3rem; }
  .bespoke__desc { font-size: 0.76rem; margin-bottom: 0.5rem; }
  .bespoke-features { gap: 0.25rem; margin-bottom: 0.6rem; }
  .bespoke-feat { padding: 0.3rem 0.5rem; font-size: 0.62rem; }
  .bespoke-step { padding-bottom: 0.4rem; }
  .bespoke-step__num { width: 26px; height: 26px; font-size: 0.72rem; }
  .bespoke-step:not(:last-child)::after { left: 13px; top: 26px; }
  .bespoke-step__content h5 { font-size: 0.72rem; margin-top: 0.2rem; }
  .bespoke-step__content p { font-size: 0.68rem; }
}


/* ── WHY CHOOSE VADALO MOBILE — 5 inch smaller ── */
@media (max-width: 768px) {
  .wcv-section.section {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .wcv-section .section-head {
    margin-bottom: 0.75rem;
  }

  .wcv-section .section-title {
    font-size: 1.4rem;
  }

  .wcv-section .section-subtitle {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .wcv-section .divider { margin: 0.4rem 0 0.3rem; }

  .wcv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    margin-top: 1rem;
  }

  .wvc-card {
    padding: 0.7rem 0.75rem;
  }

  .wvc-card h4 {
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
  }

  .wvc-card p {
    font-size: 0.7rem;
    line-height: 1.45;
  }
}


/* ── BUYER TABS MOBILE — 7 inch smaller ── */
@media (max-width: 768px) {
  .buyer-section.section {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .buyer-section .section-head { margin-bottom: 0.5rem; }
  .buyer-section .section-title { font-size: 1.2rem; }
  .buyer-section .section-subtitle { font-size: 0.75rem; line-height: 1.4; }
  .buyer-section .divider { margin: 0.3rem 0 0.25rem; }

  .buyer-tabs {
    margin-bottom: 0.75rem;
    padding: 2px;
  }

  .buyer-tab { padding: 0.4rem 0.75rem; font-size: 0.6rem; }

  .buyer-panel.is-active {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .buyer-panel__title { font-size: 1.1rem; margin-bottom: 0.3rem; }
  .buyer-panel__desc { font-size: 0.76rem; line-height: 1.5; margin-bottom: 0.6rem; }

  .buyer-highlights { gap: 0.35rem; }

  .buyer-highlight {
    padding: 0.4rem 0.6rem;
    gap: 0.6rem;
  }

  .buyer-highlight__icon {
    width: 26px;
    height: 26px;
    font-size: 0.65rem;
  }

  .buyer-highlight__content h5 { font-size: 0.6rem; margin-bottom: 0.1rem; }
  .buyer-highlight__content p  { font-size: 0.66rem; line-height: 1.35; }

  .buyer-panel__cards { gap: 0.35rem; }

  .buyer-info-card { padding: 0.5rem 0.7rem; }
  .buyer-info-card__label { font-size: 0.48rem; margin-bottom: 0.15rem; }
  .buyer-info-card__value { font-size: 0.85rem; margin-bottom: 0.1rem; }
  .buyer-info-card__sub { font-size: 0.62rem; }
  .buyer-info-card--grid { gap: 0.35rem; }

  /* Hide country flags row on mobile to save space */
  .buyer-info-card:last-child > div { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.3rem; }
  .buyer-info-card:last-child > div span { font-size: 0.6rem; padding: 0.15rem 0.4rem; }

  .buyer-panel__text > div[style*="margin-top:2rem"] { margin-top: 0.75rem !important; }
  .buyer-panel__text > div[style*="margin-top:2rem"] .btn { padding: 0.5rem 0.9rem; font-size: 0.68rem; }
}


/* ── CATALOGUE SECTION MOBILE — 3 inch smaller ── */
@media (max-width: 768px) {
  .catalogue-section { padding: 1.5rem 0; }

  .catalogue__title { font-size: 1.4rem; margin-bottom: 0.4rem; }
  .catalogue__desc { font-size: 0.78rem; line-height: 1.5; margin-bottom: 0.75rem; }

  .catalogue-includes {
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    margin-bottom: 0.85rem;
  }

  .cat-pill { padding: 0.35rem 0.6rem; font-size: 0.65rem; }

  .catalogue__btns { gap: 0.5rem; margin-bottom: 0.6rem; }
  .catalogue__btns .btn { padding: 0.55rem 1rem; font-size: 0.7rem; }

  .catalogue__email { font-size: 0.72rem; }

  /* Hide right side box on mobile */
  .catalogue__right { display: none; }

  .catalogue-grid { grid-template-columns: 1fr; }
}


/* ── PROCESS STEPS MOBILE — 7 inch smaller ── */
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .process-steps::before { display: none; }

  .process-step {
    padding: 0 0.25rem;
  }

  .process-step__num {
    width: 42px;
    height: 42px;
    margin-bottom: 0.5rem;
  }

  .process-step__num i { font-size: 1rem; }

  .process-step__title {
    font-size: 0.65rem;
    margin-bottom: 0.25rem;
  }

  .process-step__desc {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  /* Last step (5th) center it */
  .process-step:last-child {
    grid-column: 1 / 3;
    max-width: 200px;
    margin: 0 auto;
  }

  /* Section head compact */
  section[style*="background:var(--clr-cream)"] .section-head .section-title {
    font-size: 1.2rem;
  }

  section[style*="background:var(--clr-cream)"] .section-subtitle {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  section[style*="background:var(--clr-cream)"] .section {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  /* CTA button smaller */
  .process-steps + div[style] {
    margin-top: 1.25rem !important;
  }
}

/* Process section wrapper mobile */
@media (max-width: 768px) {
  .process-section-wrap {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}


/* ── GALLERY MOBILE — 4 per row, 2 rows ── */
@media (max-width: 768px) {
  .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: repeat(2, 120px) !important;
    gap: 0.4rem !important;
  }

  /* Reset all special placements */
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(8) {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .gallery-item__overlay { display: none; }
}


/* ── TESTIMONIALS MOBILE — all 3 in one row ── */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .testimonial-card {
    padding: 0.75rem 0.65rem;
  }

  .testimonial-card__quote {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
  }

  .testimonial-card__text {
    font-size: 0.62rem;
    line-height: 1.45;
    margin-bottom: 0.6rem;
  }

  .testimonial-card__stars {
    font-size: 0.55rem;
    margin-bottom: 0.4rem;
  }

  .testimonial-card__avatar {
    width: 28px;
    height: 28px;
    font-size: 0.6rem;
    flex-shrink: 0;
  }

  .testimonial-card__author { gap: 0.4rem; }
  .testimonial-card__name { font-size: 0.58rem; }
  .testimonial-card__role { font-size: 0.55rem; }
  .testimonial-card__flag { font-size: 0.75rem; }
}


/* ── GLOBAL MOBILE — additional 2.5 inch reduction ALL sections ── */
@media (max-width: 768px) {

  /* All sections padding reduce */
  main .section { padding-block: 1.5rem !important; }

  /* Our Story */
  .our-story-section.section { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .our-story__img { height: 200px !important; }
  .our-story__title { font-size: 1.2rem !important; margin-bottom: 0.4rem !important; }
  .our-story__desc { font-size: 0.76rem !important; margin-bottom: 0.4rem !important; }
  .our-story__quote { padding: 0.4rem 0.75rem !important; margin: 0.5rem 0 !important; }
  .our-story__features { gap: 0.3rem !important; margin-bottom: 0.6rem !important; }
  .our-story__feature { padding: 0.4rem 0.65rem !important; }

  /* Vision Mission */
  .vm-section.section { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .vm-grid { margin-top: 1rem !important; gap: 0.5rem !important; }
  .vm-card { padding: 0.9rem 1rem !important; }
  .vm-card__title { font-size: 1.1rem !important; margin-bottom: 0.3rem !important; }
  .vm-card__desc { margin-bottom: 0.5rem !important; font-size: 0.76rem !important; }
  .vm-list { gap: 0.25rem !important; }
  .vm-list li { padding: 0.3rem 0.7rem !important; font-size: 0.7rem !important; }
  .vm-mission-list { gap: 0.5rem !important; }
  .vm-mission-list li { font-size: 0.76rem !important; line-height: 1.45 !important; }

  /* Who We Serve */
  .wws-section { padding: 0.75rem 0 0 !important; }
  .wws-inner { padding: 0.75rem 0 1.25rem !important; }
  .wws-head { margin-bottom: 0.75rem !important; }
  .wws-title { font-size: 1rem !important; }
  .wws-item { padding: 0.4rem 0.65rem !important; }

  /* Printing */
  .print-section.section { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
  .print-tabs { margin: 0.75rem 0 0.75rem !important; }
  .print-tab { padding: 0.35rem 0.65rem !important; font-size: 0.58rem !important; }
  .print-grid { gap: 0.4rem !important; margin-bottom: 0.75rem !important; }
  .print-card__img-wrap { height: 75px !important; }
  .print-card__body { padding: 0.35rem 0.4rem !important; }
  .print-card__body h4 { font-size: 0.58rem !important; }

  /* Bespoke */
  .bespoke-section { padding: 0.75rem 0 !important; }
  .bespoke__title { font-size: 1.1rem !important; margin-bottom: 0.25rem !important; }
  .bespoke__desc { font-size: 0.72rem !important; margin-bottom: 0.4rem !important; }
  .bespoke-features { gap: 0.2rem !important; margin-bottom: 0.5rem !important; }
  .bespoke-feat { padding: 0.25rem 0.45rem !important; font-size: 0.58rem !important; }
  .bespoke-step { padding-bottom: 0.3rem !important; }
  .bespoke-step__num { width: 24px !important; height: 24px !important; font-size: 0.65rem !important; }
  .bespoke-step__content h5 { font-size: 0.68rem !important; }
  .bespoke-step__content p { font-size: 0.62rem !important; }

  /* Why Choose */
  .wcv-section.section { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .wcv-grid { gap: 0.3rem !important; margin-top: 0.75rem !important; }
  .wvc-card { padding: 0.5rem 0.6rem !important; }
  .wvc-card h4 { font-size: 0.65rem !important; margin-bottom: 0.15rem !important; }
  .wvc-card p { font-size: 0.65rem !important; line-height: 1.4 !important; }

  /* Buyer Tabs */
  .buyer-section.section { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
  .buyer-tabs { margin-bottom: 0.5rem !important; }
  .buyer-panel__title { font-size: 1rem !important; }
  .buyer-panel__desc { font-size: 0.7rem !important; margin-bottom: 0.4rem !important; }
  .buyer-highlights { gap: 0.25rem !important; }
  .buyer-highlight { padding: 0.3rem 0.5rem !important; }
  .buyer-highlight__icon { width: 22px !important; height: 22px !important; }
  .buyer-highlight__content h5 { font-size: 0.56rem !important; }
  .buyer-highlight__content p { font-size: 0.6rem !important; }
  .buyer-info-card { padding: 0.4rem 0.55rem !important; }
  .buyer-info-card__value { font-size: 0.78rem !important; }

  /* Catalogue */
  .catalogue-section { padding: 1rem 0 !important; }
  .catalogue__title { font-size: 1.2rem !important; }
  .catalogue__desc { font-size: 0.72rem !important; margin-bottom: 0.5rem !important; }
  .catalogue-includes { gap: 0.2rem !important; margin-bottom: 0.5rem !important; }
  .cat-pill { padding: 0.25rem 0.45rem !important; font-size: 0.6rem !important; }

  /* Process */
  .process-steps { gap: 0.35rem !important; margin-top: 0.75rem !important; }
  .process-step__num { width: 36px !important; height: 36px !important; margin-bottom: 0.35rem !important; }
  .process-step__title { font-size: 0.58rem !important; }
  .process-step__desc { font-size: 0.6rem !important; }

  /* Certs marquee */
  .cert-item { padding: 0.35rem 0.7rem !important; }
  .cert-item__icon { width: 26px !important; height: 26px !important; }
  .cert-item__name { font-size: 0.58rem !important; }
  .cert-item__sub { font-size: 0.52rem !important; }

  /* Testimonials */
  .testimonial-card { padding: 0.65rem 0.6rem !important; }
  .testimonial-card__text { font-size: 0.68rem !important; line-height: 1.5 !important; margin-bottom: 0.5rem !important; }

  /* CTA Band */
  .cta-band { padding: 1.5rem 0 !important; }
  .cta-band__title { font-size: 1.2rem !important; }
  .cta-band__desc { font-size: 0.78rem !important; margin-bottom: 1rem !important; }

  /* Section heads global */
  .section-head { margin-bottom: 0 !important; }
  .section-title { margin-bottom: 0.3rem !important; font-size: clamp(1.1rem, 4vw, 1.5rem) !important; }
  .section-subtitle { font-size: 0.76rem !important; line-height: 1.5 !important; margin-top: 0.3rem !important; }
  .divider { margin: 0.4rem 0 0.3rem !important; }
}


/* ── PRODUCT CATEGORIES MOBILE — 7 inch smaller ── */
@media (max-width: 768px) {

  /* 2x2 grid */
  .category-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.4rem !important;
    margin-top: 0.75rem !important;
  }

  .category-card__img-wrap {
    height: 100px !important;
  }

  .category-card__icon {
    font-size: 2rem !important;
  }

  .category-card__body {
    padding: 0.5rem 0.6rem 0.4rem !important;
  }

  .category-card__title {
    font-size: 0.82rem !important;
    margin-bottom: 0.25rem !important;
  }

  .card-view-more-btn {
    padding: 0.25rem 0.6rem !important;
    font-size: 0.6rem !important;
    margin-top: 0.25rem !important;
  }

  .category-card__link {
    font-size: 0.6rem !important;
    margin-top: 0.25rem !important;
  }

  /* Section head */
  .category-grid ~ div[style] {
    margin-top: 0.75rem !important;
  }

  .category-grid ~ div[style] .btn {
    padding: 0.5rem 0.9rem !important;
    font-size: 0.68rem !important;
  }
}


/* ── CATEGORY CARDS MOBILE — full card image with text overlay ── */
@media (max-width: 768px) {

  .category-card {
    position: relative;
    overflow: hidden;
    min-height: 160px;
  }

  /* Image fills entire card */
  .category-card__img-wrap {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    width: 100% !important;
    z-index: 0;
  }

  .category-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Dark gradient overlay for text readability */
  .category-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,26,15,0.88) 0%, rgba(10,26,15,0.35) 55%, rgba(10,26,15,0.1) 100%);
    z-index: 1;
  }

  /* Badge stays on top */
  .category-card__badge {
    position: absolute !important;
    top: 0.6rem !important;
    right: 0.6rem !important;
    z-index: 3;
  }

  /* Icon hidden when image shown */
  .category-card__icon {
    display: none;
  }

  /* Body overlays image at bottom */
  .category-card__body {
    position: relative !important;
    z-index: 2;
    padding: 0.5rem 0.65rem 0.6rem !important;
    margin-top: auto;
    /* Push to bottom */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 160px;
  }

  .category-card__title {
    color: #fff !important;
    font-size: 0.88rem !important;
    margin-bottom: 0.2rem !important;
  }

  .card-view-more-btn {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.25) !important;
    color: #fff !important;
    font-size: 0.58rem !important;
    padding: 0.2rem 0.55rem !important;
    margin-top: 0.2rem !important;
  }

  .category-card__link {
    color: var(--clr-gold) !important;
    font-size: 0.62rem !important;
    margin-top: 0.3rem !important;
  }

  /* Mobile more content text white */
  .card-mobile-more__desc,
  .card-mobile-more__specs li {
    color: rgba(255,255,255,0.7) !important;
  }

  .card-mobile-more__specs li i {
    color: var(--clr-gold) !important;
  }
}


/* ══════════════════════════════════════════════════
   CLEAN TYPOGRAPHY — PC & MOBILE
   Professional readable text for all sections
   ══════════════════════════════════════════════════ */

/* ── PC DESKTOP TYPOGRAPHY (min-width: 769px) ── */
@media (min-width: 769px) {

  /* Section labels */
  .section-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.18;
  }

  /* Section subtitle */
  .section-subtitle {
    font-size: 1rem;
    line-height: 1.78;
    color: var(--clr-text-muted);
  }

  /* Body paragraphs */
  p {
    font-size: 1rem;
    line-height: 1.78;
  }

  /* Hero */
  .hero-slide__title { font-size: clamp(2rem, 3.8vw, 3.4rem); line-height: 1.1; }
  .hero-slide__desc  { font-size: 1rem; line-height: 1.75; }
  .hero-slide__badge { font-size: 0.62rem; letter-spacing: 0.18em; }
  .hero-tag          { font-size: 0.65rem; }

  /* Stats */
  .stat-item__num   { font-size: 2.2rem; }
  .stat-item__label { font-size: 0.6rem; letter-spacing: 0.18em; }

  /* Our Story */
  .our-story__title { font-size: clamp(1.8rem, 2.8vw, 2.4rem); }
  .our-story__desc  { font-size: 1rem; line-height: 1.8; }
  .our-story__quote { font-size: 0.95rem; line-height: 1.65; }
  .our-story__feature h5 { font-size: 0.78rem; }
  .our-story__feature p  { font-size: 0.78rem; line-height: 1.5; }

  /* Vision Mission */
  .vm-card__title { font-size: clamp(1.5rem, 2vw, 1.9rem); }
  .vm-card__desc  { font-size: 0.95rem; line-height: 1.75; }
  .vm-list li           { font-size: 0.8rem; }
  .vm-mission-list li   { font-size: 0.9rem; line-height: 1.7; }

  /* Printing */
  .print-card__body h4  { font-size: 0.82rem; }
  .print-readmore p     { font-size: 0.78rem; line-height: 1.55; }

  /* Category cards */
  .category-card__title { font-size: 1.2rem; }
  .category-card__desc  { font-size: 0.875rem; line-height: 1.65; }
  .category-spec        { font-size: 0.68rem; }

  /* Why Choose */
  .wvc-card h4 { font-size: 0.82rem; font-weight: 700; }
  .wvc-card p  { font-size: 0.82rem; line-height: 1.62; }

  /* Buyer tabs */
  .buyer-panel__title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
  .buyer-panel__desc  { font-size: 1rem; line-height: 1.8; }
  .buyer-highlight__content h5 { font-size: 0.75rem; }
  .buyer-highlight__content p  { font-size: 0.85rem; line-height: 1.55; }
  .buyer-info-card__value { font-size: 1.15rem; }
  .buyer-info-card__sub   { font-size: 0.78rem; }

  /* Bespoke */
  .bespoke__title { font-size: clamp(2rem, 3.5vw, 2.8rem); }
  .bespoke__desc  { font-size: 1rem; line-height: 1.8; }
  .bespoke-feat   { font-size: 0.78rem; }
  .bespoke-step__content h5 { font-size: 0.88rem; }
  .bespoke-step__content p  { font-size: 0.85rem; line-height: 1.6; }

  /* Process */
  .process-step__title { font-size: 0.75rem; }
  .process-step__desc  { font-size: 0.82rem; line-height: 1.6; }

  /* Testimonials */
  .testimonial-card__text { font-size: 0.95rem; line-height: 1.75; }
  .testimonial-card__name { font-size: 0.78rem; }
  .testimonial-card__role { font-size: 0.78rem; }

  /* Catalogue */
  .catalogue__title { font-size: clamp(1.8rem, 3vw, 2.8rem); }
  .catalogue__desc  { font-size: 1rem; line-height: 1.78; }
  .cat-pill         { font-size: 0.74rem; }

  /* CTA band */
  .cta-band__title { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2; }
  .cta-band__desc  { font-size: 1rem; line-height: 1.75; }
}


/* ── MOBILE TYPOGRAPHY (max-width: 768px) ── */
@media (max-width: 768px) {

  /* Base */
  html { font-size: 15px; }

  /* Section heads */
  .section-label  { font-size: 0.6rem !important; letter-spacing: 0.18em !important; }
  .section-title  { font-size: clamp(1.1rem, 5vw, 1.45rem) !important; line-height: 1.2 !important; }
  .section-subtitle { font-size: 0.76rem !important; line-height: 1.52 !important; }

  /* Hero */
  .hero-slide__title { font-size: clamp(1.2rem, 6vw, 1.8rem) !important; line-height: 1.15 !important; }
  .hero-slide__desc  { font-size: 0.8rem !important; line-height: 1.6 !important; }
  .hero-slide__badge { font-size: 0.52rem !important; }
  .hero-tag          { font-size: 0.58rem !important; }

  /* Our Story */
  .our-story__title  { font-size: 1.2rem !important; line-height: 1.2 !important; }
  .our-story__desc   { font-size: 0.76rem !important; line-height: 1.55 !important; }
  .our-story__quote  { font-size: 0.78rem !important; line-height: 1.5 !important; }
  .our-story__feature h5 { font-size: 0.7rem !important; }
  .our-story__feature p  { font-size: 0.68rem !important; }

  /* Vision Mission */
  .vm-card__title  { font-size: 1.1rem !important; }
  .vm-card__desc   { font-size: 0.76rem !important; line-height: 1.55 !important; }
  .vm-list li      { font-size: 0.7rem !important; }
  .vm-mission-list li { font-size: 0.74rem !important; line-height: 1.5 !important; }

  /* Bespoke */
  .bespoke__title { font-size: 1.15rem !important; }
  .bespoke__desc  { font-size: 0.74rem !important; line-height: 1.5 !important; }
  .bespoke-feat   { font-size: 0.62rem !important; }
  .bespoke-step__content h5 { font-size: 0.7rem !important; }
  .bespoke-step__content p  { font-size: 0.66rem !important; line-height: 1.45 !important; }

  /* Why Choose */
  .wvc-card h4 { font-size: 0.68rem !important; }
  .wvc-card p  { font-size: 0.66rem !important; line-height: 1.45 !important; }

  /* Buyer Tabs */
  .buyer-panel__title  { font-size: 1.05rem !important; line-height: 1.2 !important; }
  .buyer-panel__desc   { font-size: 0.74rem !important; line-height: 1.5 !important; }
  .buyer-highlight__content h5 { font-size: 0.62rem !important; }
  .buyer-highlight__content p  { font-size: 0.64rem !important; line-height: 1.4 !important; }
  .buyer-info-card__label { font-size: 0.5rem !important; }
  .buyer-info-card__value { font-size: 0.85rem !important; }
  .buyer-info-card__sub   { font-size: 0.64rem !important; }

  /* Process */
  .process-step__title { font-size: 0.6rem !important; letter-spacing: 0.06em !important; }
  .process-step__desc  { font-size: 0.62rem !important; line-height: 1.45 !important; }

  /* Printing */
  .print-card__body h4 { font-size: 0.6rem !important; line-height: 1.3 !important; }

  /* Catalogue */
  .catalogue__title { font-size: 1.2rem !important; line-height: 1.2 !important; }
  .catalogue__desc  { font-size: 0.74rem !important; line-height: 1.5 !important; }
  .cat-pill         { font-size: 0.62rem !important; }

  /* Testimonials */
  .testimonial-card__text { font-size: 0.72rem !important; line-height: 1.55 !important; }
  .testimonial-card__name { font-size: 0.62rem !important; }
  .testimonial-card__role { font-size: 0.6rem !important; }

  /* CTA Band */
  .cta-band__title { font-size: 1.2rem !important; line-height: 1.2 !important; }
  .cta-band__desc  { font-size: 0.78rem !important; }

  /* Category cards */
  .category-card__title { font-size: 0.9rem !important; }

  /* Buttons mobile */
  .btn { font-size: 0.7rem !important; padding: 0.55rem 1rem !important; }
  .btn--lg { font-size: 0.72rem !important; padding: 0.65rem 1.2rem !important; }

  /* General paragraphs */
  p { font-size: 0.78rem !important; line-height: 1.6 !important; }
}


/* ══════════════════════════════════════════════
   GLOBAL HEIGHT REDUCTION — 2 INCH (PC + MOBILE)
   ══════════════════════════════════════════════ */

/* ── PC Desktop ── */
@media (min-width: 769px) {
  main .section { padding-block: 2rem !important; }

  .our-story-section.section  { padding: 2rem 0 !important; }
  .vm-section.section         { padding: 2rem 0 !important; }
  .wcv-section.section        { padding: 2rem 0 !important; }
  .print-section.section      { padding: 2rem 0 !important; }
  .buyer-section.section      { padding: 2rem 0 !important; }
  .gallery-section.section    { padding: 2rem 0 !important; }
  .bespoke-section            { padding: 2rem 0 !important; }
  .catalogue-section          { padding: 2rem 0 !important; }
  .wws-section                { padding: 1rem 0 0 !important; }
  .wws-inner                  { padding: 1.25rem 0 1.5rem !important; }
  .stats-strip                { padding: 0.75rem 0 !important; }
  .industry-ticker            { padding: 0.5rem 0 !important; }
  .usp-strip                  { padding: 1.5rem 0 !important; }
  .cta-band                   { padding: 2rem 0 !important; }

  /* Section heads */
  .section-head               { margin-bottom: 0 !important; }
  .divider                    { margin: 0.6rem 0 0.4rem !important; }
  .section-subtitle           { margin-top: 0.4rem !important; }

  /* Gaps inside sections */
  .category-grid   { margin-top: 1.5rem !important; }
  .vm-grid         { margin-top: 1.5rem !important; }
  .wcv-grid        { margin-top: 1.5rem !important; }
  .testimonial-grid{ margin-top: 1.5rem !important; }
  .process-steps   { margin-top: 1.5rem !important; }
  .print-tabs      { margin: 1rem 0 1rem !important; }
  .gallery-grid    { margin-top: 1.5rem !important; }
  .bespoke-grid    { gap: 2rem !important; }
  .catalogue-grid  { gap: 2rem !important; }
  .vm-grid         { gap: 1rem !important; }

  /* Buyer tabs */
  .buyer-tabs      { margin-bottom: 1.25rem !important; }
  .buyer-highlights{ gap: 0.5rem !important; }
  .buyer-panel__cards { gap: 0.5rem !important; }

  /* Our story internals */
  .our-story-grid  { gap: 2.5rem !important; }
  .our-story__img  { height: 340px !important; }
  .our-story__quote{ margin: 0.85rem 0 !important; }
  .our-story__features { margin-bottom: 1.25rem !important; gap: 0.6rem !important; }

  /* Bespoke */
  .bespoke-step    { padding-bottom: 1rem !important; }
  .bespoke-features{ gap: 0.4rem !important; margin-bottom: 1.5rem !important; }

  /* VM cards */
  .vm-mission-list { gap: 0.75rem !important; }

  /* Process */
  .process-steps + div[style] { margin-top: 1.5rem !important; }
}


/* ── Mobile ── */
@media (max-width: 768px) {
  main .section { padding-block: 1rem !important; }

  .our-story-section.section  { padding: 0.75rem 0 !important; }
  .vm-section.section         { padding: 0.75rem 0 !important; }
  .wcv-section.section        { padding: 0.75rem 0 !important; }
  .print-section.section      { padding: 0.75rem 0 !important; }
  .buyer-section.section      { padding: 0.6rem 0 !important; }
  .gallery-section.section    { padding: 0.75rem 0 !important; }
  .bespoke-section            { padding: 0.5rem 0 !important; }
  .catalogue-section          { padding: 0.75rem 0 !important; }
  .wws-section                { padding: 0.5rem 0 0 !important; }
  .wws-inner                  { padding: 0.5rem 0 0.75rem !important; }
  .stats-strip                { padding: 0.3rem 0 !important; }
  .industry-ticker            { padding: 0.35rem 0 !important; }
  .cta-band                   { padding: 1.25rem 0 !important; }

  .section-head               { margin-bottom: 0 !important; }
  .divider                    { margin: 0.25rem 0 0.2rem !important; }

  .category-grid  { margin-top: 0.6rem !important; gap: 0.35rem !important; }
  .vm-grid        { margin-top: 0.6rem !important; gap: 0.4rem !important; }
  .wcv-grid       { margin-top: 0.5rem !important; gap: 0.25rem !important; }
  .gallery-grid   { margin-top: 0.6rem !important; }
  .process-steps  { margin-top: 0.6rem !important; gap: 0.35rem !important; }
  .print-tabs     { margin: 0.5rem 0 0.5rem !important; }
  .print-grid     { gap: 0.3rem !important; }
  .buyer-tabs     { margin-bottom: 0.4rem !important; }
  .buyer-highlights  { gap: 0.2rem !important; }
  .buyer-panel__cards{ gap: 0.25rem !important; }
  .bespoke-features  { gap: 0.15rem !important; margin-bottom: 0.4rem !important; }
  .bespoke-steps     { gap: 0 !important; }
  .bespoke-step      { padding-bottom: 0.25rem !important; }
  .vm-mission-list   { gap: 0.4rem !important; }
  .catalogue-includes{ gap: 0.15rem !important; margin-bottom: 0.4rem !important; }
  .testimonial-grid  { gap: 0.35rem !important; }
  .our-story__features { gap: 0.2rem !important; margin-bottom: 0.4rem !important; }
  .our-story__quote    { margin: 0.4rem 0 !important; padding: 0.3rem 0.6rem !important; }
}

/* MOBILE - hide hero badges on slides 2,3,4 */
@media (max-width: 768px) {
  .hero-slide__badge { display: none; }
}


/* ── SEO AUTHORITY SECTION ── */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.seo-card {
  background: white;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.seo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-forest), var(--clr-gold));
}

.seo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.seo-card h3 {
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 700;
  color: var(--clr-forest);
  margin-bottom: .85rem;
  line-height: 1.4;
}

.seo-card p {
  font-size: .85rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.seo-link {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  color: var(--clr-forest);
  text-decoration: none;
  border-bottom: 1px solid var(--clr-gold);
  padding-bottom: 1px;
  transition: color .2s;
}

.seo-link:hover { color: var(--clr-gold); }

/* ── CITY GRID ── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.city-item {
  background: white;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: all .3s;
}

.city-item:hover { border-color: var(--clr-gold); box-shadow: var(--shadow-md); }

.city-item strong {
  display: block;
  font-family: var(--font-ui);
  font-size: .88rem;
  font-weight: 700;
  color: var(--clr-forest);
  margin-bottom: .4rem;
}

.city-item span {
  font-size: .8rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .seo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .seo-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .city-grid { grid-template-columns: 1fr; }
}

/* ══ GOOGLE RANKING IMPROVEMENTS ══ */
/* Better font rendering */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Highlighted text style */
mark { background: #fef3cd; color: #1a3a2a; padding: 0 3px; border-radius: 2px; font-weight: 600; }
.highlight-yellow { background: linear-gradient(120deg, #fff3cd 0%, #fff3cd 100%); background-repeat: no-repeat; background-size: 100% 45%; background-position: 0 85%; }
.highlight-green { background: linear-gradient(120deg, rgba(168,197,176,.4) 0%, rgba(168,197,176,.4) 100%); background-repeat: no-repeat; background-size: 100% 45%; background-position: 0 85%; }

/* Section titles - bolder for Google */
.section-title { font-weight: 800 !important; }
.section-title span, .section-title em { font-weight: 800 !important; }

/* Hero text bold */
.hero-slide__title { font-weight: 900 !important; text-shadow: 0 2px 20px rgba(0,0,0,.3); }

/* Stats numbers - prominent */
.stats-strip__num { font-weight: 900 !important; }

/* Better paragraph readability */
.section p, .our-story__desc { line-height: 1.85 !important; font-size: 1rem !important; }

/* ═══════════════════════════════════════
   MOBILE — Printing cards 2 per row
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .print-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: .65rem !important;
    margin: 0 0 1.5rem !important;
    justify-content: unset !important;
  }

  .print-card {
    flex: unset !important;
    min-width: unset !important;
    max-width: unset !important;
    width: 100% !important;
  }

  .print-card__img-wrap {
    height: 130px !important;
  }

  .print-card__body {
    padding: .55rem .65rem !important;
  }

  .print-card__title {
    font-size: .78rem !important;
    line-height: 1.3 !important;
  }

  .print-badge {
    font-size: .48rem !important;
    padding: .2rem .45rem !important;
  }
}

/* ── Factory Grid Responsive ── */
@media(max-width:768px){
  .factory-grid{ grid-template-columns:1fr 1fr !important; }
}
@media(max-width:480px){
  .factory-grid{ grid-template-columns:1fr !important; }
}
