body:has(.about-page-wrapper),
body.page-about-light {
  background-color: #faf8f5;
  color: #232127;
}

.about-page-wrapper {
  padding-top: var(--header-height-resting);
  min-height: 100vh;
  background: radial-gradient(circle at 85% 12%, rgba(107, 14, 24, 0.05) 0%, transparent 60%),
              radial-gradient(circle at 12% 50%, rgba(203, 168, 113, 0.09) 0%, transparent 55%),
              #faf8f5;
  color: #232127;
  position: relative;
  overflow: hidden;
}

.about-page-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(203, 168, 113, 0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
}

.about-hero {
  padding: 60px 0 40px;
  position: relative;
  border-bottom: 1px solid rgba(203, 168, 113, 0.28);
  background: linear-gradient(180deg, rgba(85, 10, 18, 0.05) 0%, rgba(250, 248, 245, 0) 100%);
}

.about-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #726e79;
  margin-bottom: 18px;
}

.breadcrumb-nav a {
  color: #550a12;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.breadcrumb-nav a:hover {
  color: #9e7534;
}

.breadcrumb-separator {
  color: #cba871;
  font-weight: 600;
  opacity: 0.8;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(107, 14, 24, 0.05);
  border: 1px solid rgba(203, 168, 113, 0.45);
  color: #550a12;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(85, 10, 18, 0.04);
}

.about-hero-badge span.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cba871;
  box-shadow: 0 0 10px rgba(203, 168, 113, 0.8);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.about-main-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #1a0407;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.about-main-title span.highlight {
  background: linear-gradient(135deg, #550a12 0%, #871321 35%, #b68b48 80%, #9e7534 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #63121b;
  line-height: 1.6;
  max-width: 900px;
}

.about-content-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 32px 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-paragraph {
  font-size: 1.08rem;
  line-height: 1.95;
  color: #38343e;
  position: relative;
  padding-right: 18px;
  border-right: 3px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.about-paragraph:hover {
  border-right-color: #cba871;
  color: #1a0407;
}

.about-paragraph strong {
  color: #1a0407;
  font-weight: 700;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid rgba(203, 168, 113, 0.3);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 18px rgba(85, 10, 18, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: #cba871;
  box-shadow: 0 12px 30px rgba(85, 10, 18, 0.09), 0 2px 8px rgba(203, 168, 113, 0.2);
}

.pillar-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #550a12 0%, #7d121e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7e7c8;
  flex-shrink: 0;
  border: 1px solid rgba(203, 168, 113, 0.45);
  box-shadow: 0 4px 12px rgba(85, 10, 18, 0.18);
}

.pillar-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a0407;
}

.about-visual-col {
  position: relative;
}

.b2b-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(85, 10, 18, 0.10), 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1.5px solid rgba(203, 168, 113, 0.35);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.b2b-image-container:hover {
  transform: scale(1.02);
  border-color: #cba871;
  box-shadow: 0 26px 58px rgba(85, 10, 18, 0.15), 0 8px 24px rgba(203, 168, 113, 0.22);
}

.b2b-main-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.b2b-image-container:hover .b2b-main-image {
  transform: scale(1.04);
}

.b2b-floating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(203, 168, 113, 0.45);
  padding: 12px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 2px 10px rgba(85, 10, 18, 0.08);
}

.b2b-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #550a12 0%, #871321 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7e7c8;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 12px rgba(85, 10, 18, 0.25);
}

.b2b-badge-text h4 {
  font-size: 0.95rem;
  color: #1a0407;
  font-weight: 800;
  margin-bottom: 2px;
}

.b2b-badge-text p {
  font-size: 0.8rem;
  color: #8c682d;
  font-weight: 600;
  margin: 0;
}

.legal-entity-section {
  max-width: 1400px;
  margin: 40px auto 70px;
  padding: 0 32px;
}

.legal-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 55%, #f8f3ea 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid #cba871;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 16px 45px rgba(85, 10, 18, 0.06), 0 2px 12px rgba(203, 168, 113, 0.15);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.legal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(85, 10, 18, 0.09), 0 4px 20px rgba(203, 168, 113, 0.25);
}

.legal-icon-wrapper {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: linear-gradient(135deg, #550a12 0%, #7d121e 100%);
  border: 1px solid rgba(203, 168, 113, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7e7c8;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(85, 10, 18, 0.18);
}

.legal-content-wrapper h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #44090f;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-content-wrapper h3 .badge-official {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  background: rgba(107, 14, 24, 0.08);
  border: 1px solid rgba(203, 168, 113, 0.55);
  color: #550a12;
  border-radius: 20px;
}

.legal-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2d2b33;
  font-weight: 500;
}

.legal-note {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #7b5924;
  background: rgba(203, 168, 113, 0.12);
  padding: 4px 12px;
  border-radius: 8px;
  border-right: 3px solid #b89255;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual-col {
    max-width: 650px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .legal-card {
    grid-template-columns: 1fr;
    padding: 26px 22px;
    gap: 18px;
    text-align: center;
  }
  .legal-icon-wrapper {
    margin: 0 auto;
  }
  .legal-content-wrapper h3 {
    justify-content: center;
  }
  .about-hero {
    padding: 40px 0 30px;
  }
  .about-content-section {
    padding: 40px 20px 30px;
  }
  .legal-entity-section {
    padding: 0 20px;
    margin-bottom: 50px;
  }
}

html[dir="ltr"] .about-paragraph {
  padding-right: 0;
  padding-left: 18px;
  border-right: none;
  border-left: 3px solid transparent;
}

html[dir="ltr"] .about-paragraph:hover {
  border-right-color: transparent;
  border-left-color: #cba871;
}

html[dir="ltr"] .legal-note {
  border-right: none;
  border-left: 3px solid #b89255;
}

html[dir="ltr"] .b2b-floating-badge {
  right: auto;
  left: 20px;
}
