/* ============ INNER PAGE LAYOUT (About / FAQ / SKU Detail) ============ */
.page-banner{
  background: linear-gradient(160deg, var(--green-deep), var(--green-deeper));
  padding: 150px 24px 70px;
  text-align:center;
}
.page-banner .section-eyebrow{ color: var(--gold); justify-content:center; display:flex; }
.page-banner h1{
  color: var(--white); font-size: clamp(1.6rem, 4vw, 3.2rem); margin: 10px auto 0; max-width: 760px;
  overflow-wrap: break-word; word-break: break-word;
}
.page-banner p{
  color: rgba(255,255,255,.8); font-size: 16px; max-width: 580px; margin: 18px auto 0;
  padding: 0 16px;
}

.page-section{ padding: 80px 0; }
.page-section--alt{ background: #f6f2e4; }
.page-section h2{
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--green-deep); margin-bottom: 18px; max-width: 680px;
}
.page-section p{ font-size: 16px; line-height:1.7; color: #3a4842; max-width: 680px; margin-bottom: 18px; }

/* About page stats */
.about-stats{
  display:grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin: 40px auto; max-width: 720px;
}
.about-stat{
  background:var(--white); border-radius: var(--radius-sm); padding: 24px 20px;
  text-align:center; box-shadow: 0 6px 20px rgba(13,59,46,.06);
}
.about-stat-num{ display:block; font-family: var(--font-display); font-size: 1.8rem; font-weight:800; color: var(--green-vibrant); }
.about-stat-label{ display:block; margin-top:6px; font-size: 13px; color:#51605a; }

/* About feature image rows */
.about-feature{ padding: 60px 0; }
.about-feature-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:center; }
.about-feature-grid--reverse{ direction: rtl; }
.about-feature-grid--reverse > *{ direction: ltr; }
.about-feature-image img{
  width:100%; height: 280px; object-fit:cover; border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(13,59,46,.14);
}
.about-feature-copy h2{ margin-bottom:16px; }
.about-feature-copy p{ margin-bottom:0; }

/* About page banner */
.about-banner{
  background: linear-gradient(160deg, var(--green-deep), var(--green-deeper));
  padding: 150px 24px 70px; text-align:center; min-height: auto; display:block;
}
.about-banner-overlay{ display:none; }
.about-banner-content{ position:relative; z-index:2; padding: 0; text-align:center; width:100%; }
.about-banner-content .section-eyebrow{ color: var(--gold); justify-content:center; display:flex; }
.about-banner-content h1{
  color:var(--white); font-size: clamp(1.6rem, 4vw, 3.2rem);
  margin: 10px auto 0; max-width: 760px;
  overflow-wrap: break-word; word-break: break-word;
}

/* FAQ accordion */
.faq-list{ max-width: 760px; margin: 0 auto; padding: 0 16px; }
.faq-item{ border-bottom: 1px solid #e4ddc4; }
.faq-question{
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding: 22px 4px; font-family: var(--font-display); font-size: 17px; font-weight:600; color: var(--green-deep);
}
.faq-question::after{
  content:'+'; font-size:24px; font-weight:400; color: var(--green-vibrant); flex-shrink:0;
  transition: transform .25s var(--ease);
}
.faq-item.open .faq-question::after{ transform: rotate(45deg); }
.faq-answer{ max-height:0; overflow:hidden; transition: max-height .3s var(--ease); }
.faq-answer-inner{ padding: 0 4px 22px; font-size:15px; line-height:1.7; color:#51605a; }
.faq-item.open .faq-answer{ max-height: 500px; }

/* SKU detail page */
.sku-detail-hero{
  display:grid; grid-template-columns: 1fr 1fr; gap:50px;
  align-items:center; padding: 150px 0 80px;
}
.sku-detail-hero .sku-visual{ min-height: 380px; }
.sku-detail-nav{
  display:flex; gap:14px; justify-content:center;
  padding: 24px 16px; background:#f6f2e4; flex-wrap:wrap;
}
.sku-detail-nav a{
  padding: 10px 22px; border-radius:999px; font-weight:600; font-size:14px;
  border: 2px solid var(--green-deep); color:var(--green-deep);
}
.sku-detail-nav a.active{ background: var(--green-deep); color:var(--white); }

/* sku-glow hidden on detail page */
.sku-detail-hero .sku-glow{ display:none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px){
  .about-feature-grid{ grid-template-columns: 1fr; }
  .about-feature-grid--reverse{ direction: ltr; }
  .about-feature-image img{ height: 220px; }
  .sku-detail-hero{
    grid-template-columns: 1fr; padding: 120px 24px 50px; text-align:center;
  }
  .sku-detail-hero .sku-info{ order:1; }
  .sku-detail-hero .sku-visual{ order:2; min-height: 280px; }
}

@media (max-width: 640px){
  /* Banner */
  .page-banner, .about-banner{ padding: 110px 24px 50px; }
  .page-banner h1, .about-banner-content h1{ font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .page-section{ padding: 48px 0; }

  /* About stats - single column on small screens */
  .about-stats{ grid-template-columns: 1fr; gap: 14px; max-width: 360px; }

  /* FAQ */
  .faq-list{ padding: 0 8px; }
  .faq-question{ font-size: 15px; padding: 18px 2px; }

  /* SKU nav */
  .sku-detail-nav{ gap:8px; padding: 16px; }
  .sku-detail-nav a{ padding: 8px 14px; font-size: 13px; }
}

@media (max-width: 420px){
  .page-banner h1, .about-banner-content h1{ font-size: 1.35rem; }
}

/* ============ ABOUT VIDEO SECTION ============ */
.about-videos{
  background-color: #0d3b2e;
  padding: 80px 24px;
  box-sizing: border-box;
}
.about-videos h2{ color: #ffffff; }
.about-video-grid{
  display: flex;
  flex-direction: row;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.about-video-item{
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000000;
  height: 480px;
}
.about-video-item video{
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border: none !important;
  background: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
}

@media (max-width: 640px){
  .about-video-grid{ flex-direction: column; }
  .about-video-item{ height: 400px; }
}
