/* ═══════════════════════════════════════════
   INDEX PAGE — page-specific styles only
═══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative; width: 100%; height: 100vh;
  min-height: 600px; overflow: hidden;
  background: var(--brown-dark);
  margin-top: 110px;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: none; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,60,42,0.65) 0%, rgba(26,60,42,0.40) 50%, rgba(26,60,42,0.55) 100%);
  z-index: 2;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; }
.hero-content {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 40px;
}
.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold-light); font-family: 'Lato', sans-serif; font-weight: 700;
  margin-bottom: 24px; opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards 0.2s;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900;
  color: var(--white); line-height: 1.12;
  margin-bottom: 24px; min-height: 1.2em;
}
.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 300;
  color: rgba(250,248,244,0.88); line-height: 1.6;
  max-width: 600px; margin-bottom: 40px; min-height: 1.6em;
}
.hero-cta { display: flex; gap: 16px; opacity: 0; animation: fadeSlideUp 0.8s ease forwards 3.5s; }
.cursor { display: inline-block; width: 3px; background: var(--gold-light); animation: blink 0.7s step-end infinite; margin-left: 2px; vertical-align: middle; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: 2px solid rgba(255,255,255,0.6); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.hero-dot.active { background: var(--gold-light); border-color: var(--gold-light); transform: scale(1.2); }

/* ── INTRO SECTION ── */
.intro-section { background: var(--cream); padding: 100px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-images { position: relative; height: 520px; }
.intro-img-a { position: absolute; top: 0; left: 0; width: 220px; height: 380px; border-radius: 120px; object-fit: cover; box-shadow: 0 20px 60px rgba(26,60,42,0.2); z-index: 2; background: linear-gradient(135deg,#1A3C2A,#2d6e4a); }
.intro-img-b { position: absolute; top: 80px; left: 160px; width: 220px; height: 340px; border-radius: 120px; object-fit: cover; box-shadow: 0 20px 60px rgba(26,60,42,0.15); z-index: 2; background: linear-gradient(135deg,#E8820C,#c86e00); }
.intro-badge { position: absolute; top: 220px; left: 140px; width: 120px; height: 120px; border-radius: 50%; background: var(--brown); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 3; box-shadow: 0 8px 30px rgba(232,130,12,0.35); padding: 10px; }
.intro-badge .years { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: var(--white); line-height: 1.2; }
.intro-badge .years-label { font-size: 0.58rem; color: rgba(255,255,255,0.88); text-align: center; line-height: 1.3; margin-top: 4px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.intro-text { padding-left: 20px; }
.intro-text .script-tag { font-size: 1.5rem; }
.intro-iso { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; line-height: 1.5; }
.intro-body { font-size: 1rem; line-height: 1.85; color: var(--text-body); margin-bottom: 16px; }

/* ── STATEMENT SECTION ── */
.statement-section { background: var(--cream-dark); padding: 90px 0; }
.statement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 1; }
.statement-card { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 40px rgba(26,60,42,0.12); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease; cursor: pointer; }
.statement-card:hover { transform: translateY(-12px); box-shadow: 0 24px 60px rgba(26,60,42,0.2); }
.statement-card-img { width: 100%; height: 240px; object-fit: cover; display: block; }
.statement-card-body { background: var(--brown); padding: 28px 24px 32px; text-align: center; }
.statement-card-title { font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.statement-card-text { font-size: 0.92rem; color: rgba(255,255,255,0.88); line-height: 1.75; margin-bottom: 24px; }
.statement-arrow { width: 50px; height: 50px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6); background: transparent; display: flex; align-items: center; justify-content: center; margin: 0 auto; transition: background 0.3s, border-color 0.3s; cursor: pointer; }
.statement-card:hover .statement-arrow { background: rgba(255,255,255,0.2); border-color: white; }
.statement-arrow svg { width: 20px; height: 20px; fill: white; }

/* ── PRODUCTS SECTION ── */
.products-section { background: var(--cream); padding: 90px 0 60px; }
.products-header { text-align: center; margin-bottom: 56px; }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin-bottom: 80px; }
.product-card { text-align: center; cursor: pointer; transition: transform 0.3s; }
.product-card:hover { transform: translateY(-6px); }
.product-card-img-wrap { overflow: hidden; border-radius: 8px; margin-bottom: 18px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.product-card-img-wrap img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img-wrap img { transform: scale(1.04); }
.product-card-name { font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dark); }

/* ── WHY US ── */
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; overflow: visible; }
.mosaic-col-1 { display: flex; flex-direction: column; gap: 14px; height: 520px; }
.mosaic-col-2 { display: flex; flex-direction: column; gap: 14px; height: 520px; margin-top: 20px; }
.mosaic-cell { overflow: hidden; position: relative; flex: 1; min-height: 0; }
.mosaic-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.mosaic-cell:hover img { transform: scale(1.05); }
.mosaic-col-1 .mosaic-cell:nth-child(1) { border-radius: 6px 70px 6px 70px; background: linear-gradient(135deg,#1A3C2A,#2d6e4a); }
.mosaic-col-1 .mosaic-cell:nth-child(2) { border-radius: 70px 6px 70px 6px; background: linear-gradient(135deg,#c8a060,#8b6030); }
.mosaic-col-2 .mosaic-cell:nth-child(1) { border-radius: 70px 6px 70px 6px; background: linear-gradient(135deg,#E8820C,#c86e00); }
.mosaic-col-2 .mosaic-cell:nth-child(2) { border-radius: 6px 70px 6px 70px; background: linear-gradient(135deg,#2d5a1e,#4a8a30); }
.whyus-text .script-tag { font-size: 1.4rem; }
.whyus-features { margin-top: 32px; display: flex; flex-direction: column; gap: 28px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon { width: 48px; height: 48px; flex-shrink: 0; background: var(--cream-dark); border-radius: 12px; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(232,130,12,0.15); }
.feature-icon svg { width: 24px; height: 24px; fill: var(--brown); }
.feature-title { font-family: 'Lato', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.feature-text { font-size: 0.93rem; line-height: 1.75; color: var(--text-body); }

/* ── CERTIFICATIONS STRIP ── */
.certs-section { background: var(--cream); padding: 60px 0; }
.certs-header { text-align: center; margin-bottom: 40px; }
.certs-track-wrap { overflow: hidden; }
.certs-track { display: flex; gap: 24px; animation: marquee 22s linear infinite; width: max-content; }
.cert-card { width: 180px; height: 180px; border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--cream-dark); border: 1px solid rgba(232,130,12,0.15); flex-shrink: 0; }
.cert-card img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.cert-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; font-family: 'Lato', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--brown); letter-spacing: 1px; text-transform: uppercase; line-height: 1.2; gap: 4px; }
.cert-placeholder span { font-size: 0.65rem; font-weight: 700; color: var(--text-light); letter-spacing: 1.5px; text-transform: uppercase; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro-grid { gap: 40px; }
  .intro-images { height: 440px; }
  .intro-img-a { width: 190px; height: 320px; }
  .intro-img-b { width: 190px; height: 290px; left: 130px; }
  .intro-badge { width: 105px; height: 105px; left: 118px; top: 190px; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .mosaic-col-1, .mosaic-col-2 { height: 420px; }
}
@media (max-width: 768px) {
  .hero { margin-top: 100px; }
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-images { height: 360px; max-width: 360px; margin: 0 auto; }
  .intro-img-a { width: 160px; height: 280px; }
  .intro-img-b { width: 160px; height: 250px; left: 110px; top: 60px; }
  .intro-badge { width: 95px; height: 95px; left: 102px; top: 160px; }
  .intro-text { padding-left: 0; text-align: center; }
  .statement-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 60px; }
  .whyus-grid { grid-template-columns: 1fr; gap: 40px; }
  .mosaic { max-width: 380px; margin: 0 auto; }
  .mosaic-col-1, .mosaic-col-2 { height: 320px; }
  .mosaic-col-2 { margin-top: 20px; }
}
@media (max-width: 480px) {
  .hero { margin-top: 95px; }
  .intro-images { height: 320px; }
  .intro-img-a { width: 140px; height: 250px; }
  .intro-img-b { width: 140px; height: 220px; left: 90px; top: 60px; }
  .intro-badge { width: 85px; height: 85px; left: 82px; top: 148px; }
  .mosaic-col-1 .mosaic-cell:nth-child(1), .mosaic-col-2 .mosaic-cell:nth-child(2) { border-radius: 6px 50px 6px 50px; }
  .mosaic-col-1 .mosaic-cell:nth-child(2), .mosaic-col-2 .mosaic-cell:nth-child(1) { border-radius: 50px 6px 50px 6px; }
}
@media (min-width: 1400px) {
  .intro-images { height: 580px; }
  .intro-img-a { width: 250px; height: 430px; }
  .intro-img-b { width: 250px; height: 390px; left: 190px; }
  .intro-badge { width: 135px; height: 135px; left: 172px; top: 248px; }
  .mosaic-col-1, .mosaic-col-2 { height: 560px; }
}
