/* ===================================================================
   APAAR GOOD FOOD PVT. LTD. — Luxury Brand Storytelling Layout
   Neutral Palette · Diagonal Dividers · Sticky Scroll · Zigzag
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ──────────────────────────────────────── */
:root {
  --ap-dark: #2d3a31;
  --ap-charcoal: #354139;
  --ap-graphite: #445549;
  --ap-slate: #567359;
  --ap-mid: #6b756f;
  --ap-warm: #7d8a81;
  --ap-taupe: #9aab9f;
  --ap-sand: #b8c9bc;
  --ap-bone: #e8f3eb;
  --ap-ivory: #f0f6f1;
  --ap-cream: #faf9f5;
  --ap-white: #fdfcfb;
  --ap-accent: #3c6e47;
  --ap-accent-lt: #6b9e75;
  --ap-font-display: 'Cormorant Garamond', Georgia, serif;
  --ap-font-body: 'Inter', -apple-system, sans-serif;
  --ap-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── WordPress / Elementor Override ────────────────── */
.entry-content:has(.ap-page),
.page-content:has(.ap-page),
.site-content:has(.ap-page),
.elementor-widget-container:has(.ap-page) {
  max-width: 100% !important;
  padding: 0 !important;
  width: 100% !important;
}

/* ── Base ───────────────────────────────────────────── */
.ap-page {
  font-family: var(--ap-font-body);
  color: var(--ap-dark);
  background: var(--ap-cream);
  overflow-x: hidden;
  line-height: 1.7;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

.ap-page *,
.ap-page *::before,
.ap-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ap-page img {
  max-width: 100%;
  display: block;
}

.ap-page a {
  color: inherit;
  text-decoration: none;
}

.ap-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}

.ap-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* ── Reveal Animations ──────────────────────────────── */
.ap-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ap-ease), transform 1s var(--ap-ease);
}

.ap-fade.is-visible {
  opacity: 1;
  transform: none;
}

.ap-fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s var(--ap-ease), transform 1s var(--ap-ease);
}

.ap-fade-left.is-visible {
  opacity: 1;
  transform: none;
}

.ap-fade-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s var(--ap-ease), transform 1s var(--ap-ease);
}

.ap-fade-right.is-visible {
  opacity: 1;
  transform: none;
}

.ap-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ap-ease), transform 0.8s var(--ap-ease);
}

.ap-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ══════════════════════════════════════════════════════
   1. HERO — Split screen with diagonal clip
   ══════════════════════════════════════════════════════ */
.ap-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.ap-hero__left {
  background: var(--ap-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.ap-hero__logo {
  width: 110px;
  margin-bottom: 40px;
  filter: brightness(10);
  opacity: 0.9;
}

.ap-hero__eyebrow {
  font-family: var(--ap-font-body);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ap-taupe);
  margin-bottom: 24px;
  font-weight: 500;
}

.ap-hero__title {
  font-family: var(--ap-font-display);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 600;
  color: var(--ap-white);
  line-height: 1.08;
  margin-bottom: 28px;
}

.ap-hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ap-taupe);
}

.ap-hero__desc {
  font-size: 16px;
  color: var(--ap-sand);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.ap-hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ap-taupe);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s;
}

.ap-hero__scroll:hover {
  color: var(--ap-white);
}

.ap-hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--ap-taupe);
  transition: width 0.4s var(--ap-ease);
}

.ap-hero__scroll:hover .ap-hero__scroll-line {
  width: 60px;
}

.ap-hero__right {
  position: relative;
  overflow: hidden;
}

.ap-hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: transform 8s ease;
}

.ap-hero:hover .ap-hero__right img {
  transform: scale(1.05);
}

/* Hero floating info pill */
.ap-hero__pill {
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 60px;
  padding: 16px 32px;
  display: flex;
  gap: 32px;
}

.ap-hero__pill-item {
  text-align: center;
}

.ap-hero__pill-val {
  font-family: var(--ap-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ap-white);
  display: block;
}

.ap-hero__pill-lbl {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ap-sand);
  display: block;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════
   2. ABOUT — Full-width text band + offset image
   ══════════════════════════════════════════════════════ */
.ap-about {
  padding: 140px 0 120px;
  position: relative;
}

.ap-about__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.ap-about__tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ap-warm);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ap-about__tag::before {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--ap-accent);
}

.ap-about__heading {
  font-family: var(--ap-font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ap-dark);
  margin-bottom: 32px;
}

.ap-about__heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--ap-warm);
}

.ap-about__text {
  font-size: 16px;
  color: var(--ap-mid);
  line-height: 1.9;
  margin-bottom: 40px;
}

.ap-about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ap-about__card {
  background: var(--ap-white);
  border: 1px solid var(--ap-bone);
  border-radius: 12px;
  padding: 20px 24px;
  transition: all 0.4s var(--ap-ease);
}

.ap-about__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--ap-accent-lt);
}

.ap-about__card:last-child {
  grid-column: span 2;
}

.ap-about__card-eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ap-warm);
  margin-bottom: 6px;
}

.ap-about__card-val {
  font-family: var(--ap-font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ap-dark);
}

/* About images */
.ap-about__images {
  position: relative;
  height: 560px;
}

.ap-about__img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 70%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.ap-about__img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-about__img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 27%;
  height: 50%;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid var(--ap-cream);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.ap-about__img-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ══════════════════════════════════════════════════════
   3. DIRECTORS — Minimal horizontal strip
   ══════════════════════════════════════════════════════ */
.ap-directors {
  background: var(--ap-dark);
  padding: 80px 0;
}

.ap-directors__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ap-directors__label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ap-taupe);
  font-weight: 500;
}

.ap-directors__names {
  display: flex;
  gap: 60px;
}

.ap-directors__person {
  text-align: center;
}

.ap-directors__name {
  font-family: var(--ap-font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ap-white);
}

.ap-directors__role {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ap-taupe);
  margin-top: 6px;
}

.ap-directors__divider {
  width: 1px;
  height: 50px;
  background: var(--ap-slate);
}

/* ══════════════════════════════════════════════════════
   4. COWMAA BRAND — Zigzag layout (image left, text right)
   ══════════════════════════════════════════════════════ */
.ap-zigzag {
  padding: 140px 0;
}

.ap-zigzag__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 140px;
}

.ap-zigzag__row:last-child {
  margin-bottom: 0;
}

.ap-zigzag__row--reverse .ap-zigzag__media {
  order: 2;
}

.ap-zigzag__row--reverse .ap-zigzag__content {
  order: 1;
}

.ap-zigzag__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.ap-zigzag__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s var(--ap-ease);
}

.ap-zigzag__media:hover img {
  transform: scale(1.04);
}

.ap-zigzag__media-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--ap-white);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ap-dark);
}

.ap-zigzag__tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ap-warm);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ap-zigzag__tag::before {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--ap-accent);
}

.ap-zigzag__heading {
  font-family: var(--ap-font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--ap-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.ap-zigzag__heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--ap-warm);
}

.ap-zigzag__text {
  font-size: 16px;
  color: var(--ap-mid);
  line-height: 1.9;
  margin-bottom: 32px;
}

/* Product list items */
.ap-zigzag__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ap-zigzag__list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--ap-white);
  border: 1px solid var(--ap-bone);
  border-radius: 12px;
  transition: all 0.4s var(--ap-ease);
}

.ap-zigzag__list-item:hover {
  transform: translateX(8px);
  border-color: var(--ap-accent-lt);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.ap-zigzag__list-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--ap-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ap-zigzag__list-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--ap-dark);
}

.ap-zigzag__list-sub {
  font-size: 13px;
  color: var(--ap-mid);
  margin-top: 2px;
}

/* Feature pills for farm section */
.ap-zigzag__pills {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ap-zigzag__pill-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--ap-white);
  border: 1px solid var(--ap-bone);
  border-radius: 14px;
  transition: all 0.4s var(--ap-ease);
}

.ap-zigzag__pill-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--ap-accent-lt);
}

.ap-zigzag__pill-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ap-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.ap-zigzag__pill-text {
  font-size: 15px;
  color: var(--ap-mid);
  line-height: 1.6;
}

.ap-zigzag__pill-text strong {
  color: var(--ap-dark);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   5. FULL-BLEED QUOTE BAND
   ══════════════════════════════════════════════════════ */
.ap-quote-band {
  background: var(--ap-charcoal);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ap-quote-band::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ap-font-display);
  font-size: 240px;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.ap-quote-band__text {
  font-family: var(--ap-font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--ap-sand);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.ap-quote-band__attr {
  font-family: var(--ap-font-body);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ap-taupe);
}

/* ══════════════════════════════════════════════════════
   6. PHOTO GALLERY — Horizontal scroll strip
   ══════════════════════════════════════════════════════ */
.ap-gallery {
  padding: 120px 0;
  background: var(--ap-ivory);
}

.ap-gallery__header {
  text-align: center;
  margin-bottom: 60px;
}

.ap-gallery__tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ap-warm);
  font-weight: 600;
  margin-bottom: 16px;
}

.ap-gallery__heading {
  font-family: var(--ap-font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--ap-dark);
}

/* Slider */
.ap-slider {
  position: relative;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 60px;
  overflow: hidden;
}

.ap-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.ap-slider__slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.ap-slider__slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.7s var(--ap-ease);
}

.ap-slider__slide:hover img {
  transform: scale(1.06);
}

.ap-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(45, 58, 49, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s;
}

.ap-slider__slide:hover .ap-slider__overlay {
  opacity: 1;
}

.ap-slider__label {
  font-family: var(--ap-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ap-white);
}

/* Arrow buttons */
.ap-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ap-white);
  border: 1px solid var(--ap-bone);
  color: var(--ap-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s var(--ap-ease);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.ap-slider__btn:hover {
  background: var(--ap-accent);
  color: var(--ap-white);
  border-color: var(--ap-accent);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(60, 110, 71, 0.2);
}

.ap-slider__btn--prev {
  left: 12px;
}

.ap-slider__btn--next {
  right: 12px;
}

/* Dots */
.ap-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.ap-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ap-sand);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ap-ease);
  padding: 0;
}

.ap-slider__dot:hover {
  background: var(--ap-accent-lt);
}

.ap-slider__dot.is-active {
  background: var(--ap-accent);
  width: 28px;
  border-radius: 6px;
}

/* ══════════════════════════════════════════════════════
   7. PRODUCTS — Grid with large cards
   ══════════════════════════════════════════════════════ */
.ap-products {
  padding: 140px 0;
  background: var(--ap-cream);
}

.ap-products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.ap-products__header-left {}

.ap-products__tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ap-warm);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ap-products__tag::before {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--ap-accent);
}

.ap-products__heading {
  font-family: var(--ap-font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--ap-dark);
}

.ap-products__header-right {
  font-size: 15px;
  color: var(--ap-mid);
  max-width: 400px;
  text-align: right;
  line-height: 1.7;
}

.ap-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ap-product {
  background: var(--ap-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--ap-bone);
  transition: all 0.5s var(--ap-ease);
  position: relative;
}

.ap-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--ap-accent-lt);
}

.ap-product__img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.ap-product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ap-ease);
}

.ap-product:hover .ap-product__img img {
  transform: scale(1.07);
}

.ap-product__num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ap-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ap-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ap-dark);
}

.ap-product__body {
  padding: 28px;
}

.ap-product__title {
  font-family: var(--ap-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ap-dark);
  margin-bottom: 10px;
}

.ap-product__desc {
  font-size: 14px;
  color: var(--ap-mid);
  line-height: 1.7;
}

.ap-products__media-badge{
    width: 15%;;
}

/* ══════════════════════════════════════════════════════
   8. VERMICOMPOST — Full-bleed split with checklist
   ══════════════════════════════════════════════════════ */
.ap-vermi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.ap-vermi__media {
  position: relative;
  overflow: hidden;
}

.ap-vermi__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
}

.ap-vermi__media-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--ap-white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  width: 400px;
}

.ap-vermi__media-badge img {
  width: 100%;
  height: auto;
}

.ap-vermi__content {
  background: var(--ap-ivory);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ap-vermi__tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ap-warm);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ap-vermi__tag::before {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--ap-accent);
}

.ap-vermi__heading {
  font-family: var(--ap-font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--ap-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.ap-vermi__text {
  font-size: 16px;
  color: var(--ap-mid);
  line-height: 1.9;
  margin-bottom: 36px;
}

.ap-vermi__checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ap-vermi__check {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--ap-white);
  border-radius: 10px;
  border: 1px solid var(--ap-bone);
  transition: all 0.3s var(--ap-ease);
}

.ap-vermi__check:hover {
  transform: translateX(6px);
  border-color: var(--ap-accent-lt);
}

.ap-vermi__check-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ap-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ap-white);
  flex-shrink: 0;
}

.ap-vermi__check-text {
  font-size: 14px;
  color: var(--ap-dark);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════
   9. IMPACT — Counter stats band
   ══════════════════════════════════════════════════════ */
.ap-impact {
  background: var(--ap-dark);
  padding: 80px 0;
}

.ap-impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.ap-impact__item {
  padding: 40px 20px;
  border-right: 1px solid var(--ap-graphite);
}

.ap-impact__item:last-child {
  border-right: none;
}

.ap-impact__icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.ap-impact__val {
  font-family: var(--ap-font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--ap-white);
  margin-bottom: 8px;
}

.ap-impact__lbl {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ap-taupe);
}

/* ══════════════════════════════════════════════════════
   10. CORE VALUES — Horizontal icon row
   ══════════════════════════════════════════════════════ */
.ap-values {
  padding: 120px 0;
  background: var(--ap-cream);
}

.ap-values__header {
  text-align: center;
  margin-bottom: 64px;
}

.ap-values__tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ap-warm);
  font-weight: 600;
  margin-bottom: 16px;
}

.ap-values__heading {
  font-family: var(--ap-font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--ap-dark);
}

.ap-values__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.ap-value {
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  background: var(--ap-white);
  border: 1px solid var(--ap-bone);
  transition: all 0.5s var(--ap-ease);
  position: relative;
  overflow: hidden;
}

.ap-value::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ap-accent), var(--ap-taupe));
  transform: scaleX(0);
  transition: transform 0.5s var(--ap-ease);
}

.ap-value:hover::after {
  transform: scaleX(1);
}

.ap-value:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--ap-accent-lt);
}

.ap-value__icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.ap-value__title {
  font-family: var(--ap-font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ap-dark);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════
   11. CONCLUSION CTA
   ══════════════════════════════════════════════════════ */
.ap-cta {
  position: relative;
  padding: 140px 0;
  background: var(--ap-dark);
  text-align: center;
  overflow: hidden;
}

.ap-cta::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(180, 169, 154, 0.06), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.ap-cta__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.ap-cta__logo {
  width: 80px;
  margin: 0 auto 40px;
  filter: brightness(10);
  opacity: 0.4;
}

.ap-cta__title {
  font-family: var(--ap-font-display);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 600;
  color: var(--ap-white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.ap-cta__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ap-taupe);
}

.ap-cta__text {
  font-size: 16px;
  color: var(--ap-sand);
  line-height: 1.9;
  margin-bottom: 48px;
  font-weight: 300;
}

.ap-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  border: 1px solid var(--ap-slate);
  border-radius: 50px;
  font-family: var(--ap-font-display);
  font-size: 15px;
  color: var(--ap-taupe);
  letter-spacing: 1px;
  transition: all 0.4s var(--ap-ease);
}

.ap-cta__badge:hover {
  border-color: var(--ap-taupe);
  background: rgba(255, 255, 255, 0.04);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ap-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ap-hero__left {
    clip-path: none;
    padding: 80px 40px;
  }

  .ap-hero__right {
    height: 50vh;
  }

  .ap-hero__pill {
    bottom: 20px;
    right: 20px;
  }

  .ap-about__layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ap-about__images {
    height: 400px;
  }

  .ap-about__img-1 {
    width: 70%;
    height: 75%;
  }

  .ap-about__img-2 {
    width: 50%;
    height: 45%;
  }

  .ap-zigzag__row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ap-zigzag__row--reverse .ap-zigzag__media {
    order: 0;
  }

  .ap-zigzag__row--reverse .ap-zigzag__content {
    order: 0;
  }

  .ap-vermi {
    grid-template-columns: 1fr;
  }

  .ap-vermi__media img {
    min-height: 400px;
  }

  .ap-values__row {
    grid-template-columns: repeat(3, 1fr);
  }

  .ap-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ap-impact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ap-impact__item:nth-child(2) {
    border-right: none;
  }

  .ap-directors__inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .ap-directors__divider {
    width: 50px;
    height: 1px;
  }

  .ap-directors__names {
    flex-direction: column;
    gap: 28px;
  }

  .ap-products__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ap-products__header-right {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .ap-container {
    padding: 0 24px;
  }

  .ap-hero__left {
    padding: 60px 24px;
  }

  .ap-hero__pill {
    flex-direction: column;
    gap: 16px;
    bottom: 20px;
    right: 20px;
    left: 20px;
    border-radius: 20px;
  }

  .ap-about__images {
    height: 320px;
  }

  .ap-about__cards {
    grid-template-columns: 1fr;
  }

  .ap-about__card:last-child {
    grid-column: auto;
  }

  .ap-slider {
    padding: 0 40px;
  }

  .ap-slider__slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .ap-products__grid {
    grid-template-columns: 1fr;
  }

  .ap-values__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .ap-impact__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ap-vermi__content {
    padding: 60px 24px;
  }
}

@media (max-width: 480px) {
  .ap-hero__title {
    font-size: 38px;
  }

  .ap-values__row {
    grid-template-columns: 1fr;
  }

  .ap-impact__grid {
    grid-template-columns: 1fr;
  }

  .ap-impact__item {
    border-right: none;
    border-bottom: 1px solid var(--ap-graphite);
  }

  .ap-impact__item:last-child {
    border-bottom: none;
  }

  .ap-slider__slide {
    flex: 0 0 100%;
  }

  .ap-slider {
    padding: 0 20px;
  }

  .ap-slider__btn {
    width: 38px;
    height: 38px;
  }

  .ap-slider__btn--prev {
    left: 6px;
  }

  .ap-slider__btn--next {
    right: 6px;
  }
}