/* ============================================================
   ABOUT US  —  modern redesign
   Built on the global tokens defined in header.css :root
============================================================ */

/* ---------- STORY ---------- */
.about-story {
  padding: 84px 0 72px;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 56px;
  align-items: start;
}

.story-main .eyebrow {
  margin-bottom: 16px;
}

.story-main h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.2;
  text-transform: capitalize;
}

.story-main h2 + .story-rule {
  width: 64px;
  height: 3px;
  margin: 0 0 26px;
  background: var(--c1);
  border: 0;
}

/* the_content() typography — break up the wall of text */
.story-body {
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.9;
}

.story-body > p {
  margin: 0 0 18px;
}

/* lead-in: first paragraph reads as an intro */
.story-body > p:first-of-type {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 500;
}

.story-body h2,
.story-body h3,
.story-body h4 {
  margin: 32px 0 12px;
  color: var(--ink);
  line-height: 1.3;
}

.story-body h3 {
  font-size: 1.4rem;
}
.story-body h4 {
  font-size: 1.15rem;
}

.story-body ul,
.story-body ol {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}

.story-body ul li {
  position: relative;
  padding: 0 0 10px 26px;
  line-height: 1.7;
}

.story-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--c1);
  transform: rotate(45deg);
}

.story-body ol {
  counter-reset: story-ol;
  padding-left: 0;
}

.story-body ol li {
  counter-increment: story-ol;
  position: relative;
  padding: 0 0 10px 38px;
  line-height: 1.7;
}

.story-body ol li::before {
  content: counter(story-ol);
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--red-soft);
  color: var(--c1);
  font-size: 0.78rem;
  font-weight: 700;
}

.story-body a {
  color: var(--c1);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--c1) 35%, transparent);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.story-body a:hover {
  color: var(--red-dark);
  border-color: var(--c1);
}

.story-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  margin: 8px 0;
}

.story-body .aligncenter {
  display: block;
  margin: 12px auto;
}

/* ---------- ASIDE BRAND CARD ---------- */
.story-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.brand-card {
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--sand) 0%, var(--white) 70%);
  box-shadow: var(--shadow-sm);
}

.brand-card .brand-logo {
  max-width: 170px;
  height: auto;
  margin-bottom: 18px;
}

.brand-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.15rem;
}

.brand-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.brand-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--line);
}

.brand-stats div {
  padding: 16px 14px;
  background: var(--white);
  text-align: center;
}

.brand-stats strong {
  display: block;
  color: var(--c1);
  font-size: 1.5rem;
  line-height: 1.1;
}

.brand-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* contact CTA — same family as faq support-box */
.about-cta {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--c1) 18%, transparent);
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--c2) 6%, var(--white));
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.about-cta:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-cta i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--c1);
  color: #fff;
  font-size: 1.4rem;
}

.about-cta strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
}

.about-cta span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- MAIN PRODUCTS ---------- */
.about-products {
  margin-top: 40px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--c1);
  border-radius: var(--r-md);
  background: var(--red-soft);
}

.about-products .ap-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.about-products .ap-head i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--c1);
  color: #fff;
  font-size: 1.25rem;
}

.about-products h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.5rem;
}

.about-products .ap-body {
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.85;
}

.about-products .ap-body p {
  margin: 0 0 12px;
}
.about-products .ap-body p:last-child {
  margin-bottom: 0;
}

.about-products .ap-body a {
  color: var(--c1);
  text-decoration: none;
  font-weight: 600;
}

.about-products .ap-body a:hover {
  text-decoration: underline;
}

/* ---------- CORPORATE CULTURE ---------- */
.about-culture {
  position: relative;
  padding: 84px 0 92px;
  background: linear-gradient(rgba(20, 16, 15, 0.86), rgba(20, 16, 15, 0.9)), url(../img/t1.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.culture-head {
  text-align: center;
  margin-bottom: 48px;
}

.culture-head .eyebrow {
  justify-content: center;
  color: var(--c2);
}

.culture-head h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
}

.culture-head p {
  max-width: 640px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
  line-height: 1.8;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.culture-card {
  position: relative;
  padding: 34px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.culture-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--c1) 55%, transparent), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 0;
}

.culture-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--c1) 60%, transparent);
  background: rgba(255, 255, 255, 0.08);
}

.culture-card:hover::before {
  opacity: 1;
}

.culture-card > * {
  position: relative;
  z-index: 1;
}

.culture-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 2rem;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

.culture-card:hover .culture-icon {
  background: #fff;
  color: var(--c1);
}

.culture-card .iconfont {
  font-size: 2rem;
  line-height: 1;
}

.culture-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.35;
}

.culture-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.65;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .story-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  .culture-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-story {
    padding: 52px 0 48px;
  }
  .story-aside {
    grid-template-columns: 1fr;
  }
  .about-culture {
    padding: 56px 0 64px;
    background-attachment: scroll;
  }
  .culture-grid {
    grid-template-columns: 1fr 1fr;
  }
  .culture-head {
    margin-bottom: 32px;
  }
  .about-products {
    padding: 24px 20px;
  }
  .story-body > p:first-of-type {
    font-size: 1.05rem;
  }
}

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