/* =============================================
   ABOUT — premium editorial layout
   ============================================= */

#about.about-wrap {
  position: relative;
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  background:
    radial-gradient(ellipse 80% 55% at 88% 8%, rgba(212, 175, 90, 0.14), transparent 55%),
    radial-gradient(ellipse 65% 50% at 8% 92%, rgba(212, 175, 90, 0.06), transparent 50%),
    linear-gradient(180deg, var(--dark2) 0%, #070707 48%, var(--dark2) 100%);
  overflow: hidden;
  isolation: isolate;
}

#about.about-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(212, 175, 90, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 90, 0.4) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 42%, #000 20%, transparent 72%);
}

#about.about-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: min(88%, 960px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(212, 175, 90, 0.42), transparent);
  pointer-events: none;
}

#about .about-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

#about .about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: start;
}

/* ── Content shell ── */
#about .about-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 3vw, 1.85rem);
  padding: clamp(1.35rem, 3.5vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: clamp(1.25rem, 2.8vw, 1.75rem);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.015) 42%, rgba(212, 175, 90, 0.04) 100%),
    rgba(8, 8, 8, 0.55);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#about .about-head {
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.8vw, 0.9rem);
}

#about .about-tag.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  align-self: flex-start;
  padding: 0.38rem 0.95rem;
  border: 1px solid rgba(212, 175, 90, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 90, 0.06);
  letter-spacing: 0.2em;
}

#about .about-tag.section-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 90, 0.65);
}

#about .about-title {
  margin: 0;
  color: var(--light);
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-align: start;
}

#about .about-divider {
  width: 3.5rem;
  height: 2px;
  margin: 0.1rem 0 0.15rem !important;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 90, 0.15));
}

[dir="rtl"] #about .about-divider {
  background: linear-gradient(270deg, var(--gold), rgba(212, 175, 90, 0.15));
}

#about .about-intro {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#about .about-desc {
  max-width: none;
  margin: 0;
  color: var(--light-muted);
  font-size: clamp(0.92rem, 2.2vw, 1.02rem);
  font-weight: 300;
  line-height: 1.95;
}

#about .about-desc--lead {
  color: var(--light);
  font-size: clamp(0.98rem, 2.4vw, 1.08rem);
  font-weight: 400;
  line-height: 2;
}

#about .lang-ltr .about-desc,
#about .lang-ltr .about-expand-body p {
  direction: ltr;
  text-align: left;
  unicode-bidi: plaintext;
}

/* ── Value pillars ── */
#about .about-values {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
}

#about .about-value {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
  height: 100%;
  padding: 1.05rem 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.1rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: border-color 0.3s var(--ease-luxury), transform 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury);
}

#about .about-value::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 72%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#about .about-value:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 90, 0.22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(212, 175, 90, 0.08);
}

#about .about-value:hover::before {
  opacity: 1;
}

#about .about-value__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

#about .about-value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.8rem;
  color: var(--gold);
  background: rgba(212, 175, 90, 0.1);
  border: 1px solid rgba(212, 175, 90, 0.18);
}

#about .about-value__num {
  flex: 0 0 auto;
  color: rgba(212, 175, 90, 0.28);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}

#about .about-value__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

#about .about-value__body strong {
  color: var(--light);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

#about .about-value__body span {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

/* ── Services panel ── */
#about .about-panel.about-services {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.05rem;
  background: rgba(0, 0, 0, 0.2);
}

#about .about-services__label {
  margin: 0;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

#about .about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none !important;
}

#about .about-chips li {
  display: inline-flex;
  align-items: center;
  min-height: 2.05rem;
  padding: 0.38rem 0.82rem;
  border: 1px solid rgba(212, 175, 90, 0.18);
  border-radius: 999px;
  color: rgba(240, 228, 196, 0.92);
  background: rgba(212, 175, 90, 0.06);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  list-style: none !important;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

#about .about-chips a {
  color: inherit !important;
  text-decoration: none !important;
}

#about .about-chips li:hover {
  border-color: rgba(212, 175, 90, 0.32);
  background: rgba(212, 175, 90, 0.12);
  color: var(--gold-light);
}

/* ── Footer block ── */
#about .about-foot {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#about .about-expand {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.16);
  transition: border-color 0.25s ease, background 0.25s ease;
}

#about .about-expand[open] {
  border-color: rgba(212, 175, 90, 0.2);
  background: rgba(212, 175, 90, 0.04);
}

#about .about-expand summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.88rem 1rem;
  color: var(--text-muted);
  cursor: pointer;
  list-style: none;
  font-size: 0.8rem;
  font-weight: 500;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease;
}

#about .about-expand summary:hover {
  color: var(--gold-light);
}

#about .about-expand summary::-webkit-details-marker {
  display: none;
}

#about .about-expand summary::after {
  content: '';
  flex: 0 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  border-inline-end: 1.5px solid var(--gold);
  border-block-end: 1.5px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

#about .about-expand[open] summary::after {
  transform: rotate(-135deg);
}

#about .about-expand-body {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.9;
}

#about .about-expand-body p {
  margin: 0.75rem 0 0;
}

#about .about-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

#about .about-cta,
#about .about-cta-secondary {
  width: 100%;
  min-height: 3.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ── Media / video ── */
#about .about-media {
  min-width: 0;
  order: -1;
}

#about .about-video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(0.65rem, 2vw, 0.95rem);
  border: 1px solid rgba(212, 175, 90, 0.18);
  border-radius: clamp(1.2rem, 3vw, 1.85rem);
  background:
    linear-gradient(160deg, rgba(212, 175, 90, 0.1), rgba(255, 255, 255, 0.025) 38%, rgba(0, 0, 0, 0.28)),
    rgba(9, 9, 9, 0.78);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(212, 175, 90, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#about .about-video-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(212, 175, 90, 0.35), transparent 38%, rgba(255, 255, 255, 0.06));
  opacity: 0.55;
}

#about .about-video-frame {
  position: relative;
  padding: 0.35rem;
}

#about .about-video-frame::before,
#about .about-video-frame::after {
  content: '';
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  z-index: 5;
  pointer-events: none;
  opacity: 0.55;
}

#about .about-video-frame::before {
  top: 0;
  inset-inline-start: 0;
  border-top: 1.5px solid rgba(212, 175, 90, 0.55);
  border-inline-start: 1.5px solid rgba(212, 175, 90, 0.55);
}

#about .about-video-frame::after {
  bottom: 0;
  inset-inline-end: 0;
  border-bottom: 1.5px solid rgba(212, 175, 90, 0.55);
  border-inline-end: 1.5px solid rgba(212, 175, 90, 0.55);
}

#about .about-video-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: calc(clamp(1.2rem, 3vw, 1.85rem) - 0.55rem);
  background: #000;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
}

#about .about-video-wrap video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  background: #000;
}

#about .about-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(212, 175, 90, 0.16), transparent 58%),
    linear-gradient(165deg, #101010, #030303);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#about .about-poster__logo {
  width: clamp(3.5rem, 11vw, 5rem) !important;
  max-width: clamp(3.5rem, 11vw, 5rem) !important;
  height: auto !important;
  flex: 0 0 auto;
  color: var(--gold);
  opacity: 0.92;
  filter: drop-shadow(0 10px 32px rgba(212, 175, 90, 0.38));
}

#about .about-poster.is-hidden,
#about .about-video-wrap.is-playing .about-poster {
  opacity: 0;
  visibility: hidden;
}

#about .about-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: clamp(3.15rem, 10vw, 3.85rem);
  height: clamp(3.15rem, 10vw, 3.85rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #0a0806;
  background: linear-gradient(135deg, var(--gold), #e7c669 58%, var(--gold-dark));
  box-shadow: 0 12px 36px rgba(212, 175, 90, 0.45);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s var(--ease-luxury);
}

#about .about-play-btn__ring {
  position: absolute;
  inset: -0.45rem;
  border-radius: inherit;
  border: 1px solid rgba(212, 175, 90, 0.35);
  animation: aboutPlayPulse 2.4s ease-out infinite;
}

@keyframes aboutPlayPulse {
  0% { transform: scale(0.92); opacity: 0.75; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

#about .about-play-btn__icon {
  position: relative;
  z-index: 1;
  width: 1.2rem;
  height: 1.2rem;
  margin-inline-start: 0.12rem;
}

#about .about-video-wrap.is-ready:not(.is-playing) .about-play-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#about .about-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

#about .about-video-wrap.is-playing .about-play-btn,
#about .about-video--unavailable .about-play-btn {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#about .about-video-status {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem;
  color: var(--light);
  background: rgba(0, 0, 0, 0.78);
  font-size: 0.78rem;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#about .about-video-status.ready {
  opacity: 0;
  visibility: hidden;
}

#about .about-video-status-skel {
  width: min(12rem, 70%);
  height: 0.85rem;
  border-radius: 6px;
}

#about .about-video-status.ready .about-video-status-skel {
  display: none;
}

#about .about-video-status-bar {
  width: min(11rem, 58%);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

#about .about-video-status-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width 0.25s ease;
}

#about .about-video-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

#about .about-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.05rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

#about .about-badge--gold {
  color: var(--gold-light);
  border-color: rgba(212, 175, 90, 0.28);
  background: rgba(212, 175, 90, 0.12);
}

#about .about-media.fx-video-3d,
#about .about-media.fx-video-3d:hover {
  transform: none !important;
}

/* Tablet */
@media (min-width: 640px) {
  #about .about-values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  #about .about-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  #about .about-cta,
  #about .about-cta-secondary {
    width: auto;
    flex: 1 1 11rem;
  }
}

/* Desktop */
@media (min-width: 901px) {
  #about .about-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: clamp(2.25rem, 4.5vw, 4rem);
  }

  #about .about-media {
    order: unset;
  }

  #about .about-video-card {
    position: sticky;
    top: clamp(5rem, 8vw, 6.5rem);
  }

  #about .about-content {
    padding: clamp(1.65rem, 3vw, 2.35rem);
  }
}

[dir="rtl"] #about .about-content {
  text-align: right;
}

[dir="ltr"] #about .about-content {
  text-align: left;
}

/* Light theme */
html[data-theme="light"] #about.about-wrap {
  background:
    radial-gradient(ellipse 75% 55% at 86% 10%, rgba(168, 136, 50, 0.1), transparent 55%),
    linear-gradient(180deg, #f6f1e7 0%, #ece4d6 52%, #f6f1e7 100%);
}

html[data-theme="light"] #about .about-content {
  border-color: rgba(28, 24, 20, 0.09);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 242, 0.78)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(28, 24, 20, 0.07);
}

html[data-theme="light"] #about .about-tag.section-tag {
  border-color: rgba(168, 136, 50, 0.22);
  background: rgba(168, 136, 50, 0.07);
}

html[data-theme="light"] #about .about-video-card {
  border-color: rgba(168, 136, 50, 0.16);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 242, 0.82)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 58px rgba(28, 24, 20, 0.09);
}

html[data-theme="light"] #about .about-foot {
  border-top-color: rgba(28, 24, 20, 0.08);
}

html[data-theme="light"] #about .about-title,
html[data-theme="light"] #about .about-desc--lead,
html[data-theme="light"] #about .about-value__body strong {
  color: var(--lt-text);
}

html[data-theme="light"] #about .about-value,
html[data-theme="light"] #about .about-panel.about-services,
html[data-theme="light"] #about .about-expand {
  border-color: var(--lt-border);
  background: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] #about .about-value__num {
  color: rgba(168, 136, 50, 0.22);
}

html[data-theme="light"] #about .about-chips li {
  color: var(--gold-dark);
  border-color: rgba(168, 136, 50, 0.2);
  background: rgba(168, 136, 50, 0.07);
}

html[data-theme="light"] #about .about-poster {
  background:
    radial-gradient(circle at 50% 42%, rgba(168, 136, 50, 0.12), transparent 58%),
    linear-gradient(165deg, #f7f2e8, #e9dfce);
}

html[data-theme="light"] #about .about-badge {
  color: var(--lt-text);
  border-color: var(--lt-border);
  background: rgba(255, 255, 255, 0.82);
}

html[data-theme="light"] #about .about-badge--gold {
  color: var(--gold-dark);
  border-color: rgba(168, 136, 50, 0.24);
  background: rgba(168, 136, 50, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  #about .about-value,
  #about .about-play-btn,
  #about .about-play-btn__ring {
    transition: none;
    animation: none;
  }

  #about .about-value:hover,
  #about .about-play-btn:hover {
    transform: none;
  }
}

/* =============================================
   ABOUT PAGE — standalone layout
   ============================================= */

.page-about {
  min-height: 100vh;
}

.page-about .about-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(6.5rem, 14vw, 9rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(ellipse 70% 55% at 80% 0%, rgba(212, 175, 90, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(212, 175, 90, 0.06), transparent 50%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

.page-about .about-page-hero__mesh,
.page-about .about-page-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-about .about-page-hero__mesh {
  opacity: 0.5;
  background:
    radial-gradient(circle at 70% 20%, rgba(212, 175, 90, 0.12), transparent 40%),
    radial-gradient(circle at 20% 70%, rgba(212, 175, 90, 0.05), transparent 45%);
}

.page-about .about-page-hero__grid {
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(212, 175, 90, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 90, 0.5) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 15%, transparent 70%);
}

.page-about .about-page-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.page-about .about-page-hero__orb--1 {
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  top: 10%;
  inset-inline-end: 8%;
  background: rgba(212, 175, 90, 0.14);
  animation: aboutHeroOrb 10s ease-in-out infinite alternate;
}

.page-about .about-page-hero__orb--2 {
  width: min(22vw, 200px);
  height: min(22vw, 200px);
  bottom: 5%;
  inset-inline-start: 5%;
  background: rgba(212, 175, 90, 0.08);
  animation: aboutHeroOrb 12s ease-in-out infinite alternate-reverse;
}

@keyframes aboutHeroOrb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(12px, -18px) scale(1.08); }
}

.page-about .about-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.75rem, 2vw, 1.1rem);
}

.page-about .about-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.page-about .about-breadcrumb a {
  color: rgba(240, 228, 196, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-about .about-breadcrumb a:hover {
  color: var(--gold);
}

.page-about .about-breadcrumb__sep {
  opacity: 0.4;
}

.page-about .about-page-hero__tag {
  margin: 0;
}

.page-about .about-page-hero__title {
  margin: 0;
  color: var(--light);
  font-size: clamp(2.35rem, 6vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.page-about .about-page-hero__sub {
  margin: 0;
  max-width: 36rem;
  color: var(--gold-light);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 500;
  line-height: 1.7;
}

.page-about .about-page-hero__intro {
  margin: 0;
  max-width: 34rem;
  color: var(--light-muted);
  font-size: clamp(0.92rem, 2.1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.9;
}

.page-about .about-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: clamp(0.5rem, 2vw, 0.85rem);
}

.page-about .about-page-hero__actions .btn-primary,
.page-about .about-page-hero__actions .btn-outline {
  min-height: 2.85rem;
  padding: 0.75rem 1.35rem;
}

.page-about #about.about-wrap {
  padding-top: clamp(3rem, 6vw, 5rem);
}

/* Mission / Vision */
.page-about .about-mv {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 175, 90, 0.07), transparent 55%),
    var(--dark2);
}

.page-about .about-mv__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.page-about .about-mv__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.page-about .about-mv__title {
  margin: 0.65rem 0 0;
  color: var(--light);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-about .about-mv__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.15rem;
}

.page-about .about-mv__block {
  position: relative;
  padding: clamp(1.5rem, 3.5vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.35rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(212, 175, 90, 0.03)),
    rgba(8, 8, 8, 0.45);
  overflow: hidden;
}

.page-about .about-mv__block::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.7;
}

.page-about .about-mv__label {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-about .about-mv__block h3 {
  margin: 0 0 0.65rem;
  color: var(--light);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 800;
  line-height: 1.35;
}

.page-about .about-mv__block p {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
}

@media (min-width: 720px) {
  .page-about .about-mv__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* Timeline */
.page-about .about-timeline {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 30%, rgba(212, 175, 90, 0.06), transparent 50%),
    linear-gradient(180deg, #070707, var(--dark2));
}

.page-about .about-timeline__inner {
  max-width: min(720px, var(--content-max));
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.page-about .about-timeline__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.page-about .about-timeline__title {
  margin: 0.65rem 0 0;
  color: var(--light);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-about .about-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.page-about .about-timeline__list::before {
  content: '';
  position: absolute;
  inset-inline-start: 0.55rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(212, 175, 90, 0.45), rgba(212, 175, 90, 0.08));
}

.page-about .about-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.25rem;
  padding: 0 0 1.75rem 0;
  padding-inline-start: 2rem;
}

.page-about .about-timeline__item:last-child {
  padding-bottom: 0;
}

.page-about .about-timeline__item::before {
  content: '';
  position: absolute;
  inset-inline-start: 0.3rem;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 90, 0.15);
}

.page-about .about-timeline__year {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding-top: 0.1rem;
}

.page-about .about-timeline__body strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--light);
  font-size: 1.02rem;
  font-weight: 700;
}

.page-about .about-timeline__body p {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
}

@media (min-width: 640px) {
  .page-about .about-timeline__list::before {
    inset-inline-start: 5.25rem;
  }

  .page-about .about-timeline__item {
    grid-template-columns: 5rem minmax(0, 1fr);
    padding-inline-start: 0;
    gap: 1.5rem;
  }

  .page-about .about-timeline__item::before {
    inset-inline-start: 5rem;
  }

  .page-about .about-timeline__year {
    text-align: end;
  }
}

/* Bottom CTA */
.page-about .about-page-cta {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(212, 175, 90, 0.12), transparent 55%),
    linear-gradient(180deg, var(--dark2), #050505);
}

.page-about .about-page-cta__inner {
  max-width: 36rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  text-align: center;
}

.page-about .about-page-cta__inner h2 {
  margin: 0 0 0.75rem;
  color: var(--light);
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.page-about .about-page-cta__inner p {
  margin: 0 0 1.5rem;
  color: var(--light-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.page-about .about-page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.page-about .about-page-cta__actions .btn-primary,
.page-about .about-page-cta__actions .btn-outline {
  min-height: 3rem;
  padding: 0.85rem 1.5rem;
}

/* Light theme — page */
html[data-theme="light"] .page-about .about-page-hero {
  background:
    radial-gradient(ellipse 70% 55% at 80% 0%, rgba(168, 136, 50, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f2e8 0%, #efe6d6 100%);
}

html[data-theme="light"] .page-about .about-page-hero__title {
  color: var(--lt-text);
}

html[data-theme="light"] .page-about .about-breadcrumb a {
  color: rgba(28, 24, 20, 0.55);
}

html[data-theme="light"] .page-about .about-mv,
html[data-theme="light"] .page-about .about-timeline,
html[data-theme="light"] .page-about .about-page-cta {
  background: linear-gradient(180deg, #f6f1e7, #ece4d6);
}

html[data-theme="light"] .page-about .about-mv__title,
html[data-theme="light"] .page-about .about-timeline__title,
html[data-theme="light"] .page-about .about-page-cta__inner h2,
html[data-theme="light"] .page-about .about-mv__block h3,
html[data-theme="light"] .page-about .about-timeline__body strong {
  color: var(--lt-text);
}

html[data-theme="light"] .page-about .about-mv__block {
  border-color: rgba(28, 24, 20, 0.09);
  background: rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] .page-about .about-mv__block p,
html[data-theme="light"] .page-about .about-timeline__body p,
html[data-theme="light"] .page-about .about-page-cta__inner p,
html[data-theme="light"] .page-about .about-page-hero__intro {
  color: var(--lt-muted, rgba(28, 24, 20, 0.65));
}

@media (prefers-reduced-motion: reduce) {
  .page-about .about-page-hero__orb--1,
  .page-about .about-page-hero__orb--2 {
    animation: none;
  }
}
