/* ============================================
   ABOUT PAGE — Modern Art Jiu-Jitsu
   ============================================ */

/* ============================================
   Page Header (shared pattern)
   ============================================ */

.page-header {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
}

.page-header__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.7) 60%,
    rgba(0,0,0,0.95) 100%
  );
}

.page-header__content {
  position: relative;
  z-index: 2;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

/* ============================================
   Philosophy
   ============================================ */

.philosophy {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .philosophy { padding: 80px 0; }
}

.philosophy__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 768px) {
  .philosophy__layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }
}

.philosophy__paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.philosophy__paragraph--lead {
  font-size: 1.125rem;
  color: var(--gray-200);
}

.philosophy__img-stack {
  position: relative;
  height: 500px;
}

@media (max-width: 768px) {
  .philosophy__img-stack { height: 400px; }
}

.philosophy__img-frame {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.philosophy__img-frame--back {
  top: 0;
  right: 0;
  width: 65%;
  height: 75%;
  z-index: 1;
}

.philosophy__img-frame--front {
  bottom: 0;
  left: 0;
  width: 65%;
  height: 75%;
  z-index: 2;
  border: 2px solid rgba(104, 146, 105, 0.2);
}

.philosophy__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.philosophy__img-frame:hover .philosophy__img {
  transform: scale(1.05);
}

/* ============================================
   Values
   ============================================ */

.values {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .values { padding: 80px 0; }
}

.values__bg {
  position: absolute;
  inset: 0;
  background: var(--gray-950);
}

.values__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--gray-800);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .values__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.value-item {
  padding: 48px 40px;
  background: var(--gray-950);
  transition: background var(--duration-base) var(--ease-out);
}

.value-item:hover {
  background: rgba(104, 146, 105, 0.05);
}

.value-item__index {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.value-item__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.value-item__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-400);
}

/* ============================================
   No-Gi Focus
   ============================================ */

.nogi-focus {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .nogi-focus { padding: 80px 0; }
}

.nogi-focus__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .nogi-focus__layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.nogi-focus__img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.nogi-focus__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.nogi-focus__img-wrapper:hover .nogi-focus__img {
  transform: scale(1.03);
}

.nogi-focus__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.nogi-focus__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.nogi-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-200);
}

.nogi-feature svg {
  color: var(--green);
  flex-shrink: 0;
}

/* CTA Section reuse from home */
.cta-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cta-section { padding: 100px 0; }
}

.cta-section__bg {
  position: absolute;
  inset: 0;
}

.cta-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0.9) 100%
  );
}

.cta-section__content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.cta-section__text {
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-bottom: 40px;
  font-weight: 300;
}
