/* =========================================
   OM OS (ABOUT) PAGE
========================================== */

.about-page {
  background-color: #000000;
}

/* HERO SECTION */
.about-hero {
  padding: clamp(72px, 12vw, 140px) clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, #000000 0%, #0f0f0f 100%);
  text-align: center;
}

.about-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #d2ab2b;
}

.about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #e2c86c;
  line-height: 1.2;
}

.about-lead {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* SECTIONS */
.about-section {
  padding: 80px 0;
  background: #0f0f0f;
}

.about-section__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  margin: 0 0 32px;
  color: #e2c86c;
  text-align: left;
}

.container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

/* CARDS */
.about-card {
  padding: 24px;
  background: #000000;
  border: 1px solid rgba(210, 171, 43, 0.3);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(210, 171, 43, 0.08);
}

.about-card:hover {
  border-color: rgba(210, 171, 43, 0.4);
}

.about-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #e2c86c;
  margin: 0 0 12px;
}

.about-card p {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

.about-card p:last-child {
  margin-bottom: 0;
}

/* CARD MODIFIERS */
.about-card--wide {
  grid-column: 1 / -1;
  padding: 28px 32px;
}

.about-card--wide p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* GRIDS */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.about-grid--tight {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-section {
    padding: 64px 0;
  }

  .about-section__title {
    margin-bottom: 24px;
  }

  .about-grid,
  .about-grid--tight {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   FRONT PAGE ABOUT SECTION
========================================== */

.about-frontpage-section {
  padding: 8rem 1.5rem;
  background-color: #000000;
}

.about-frontpage-container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.about-frontpage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-frontpage-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #d2ab2b;
}

.about-frontpage-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #e2c86c;
}

.about-frontpage-text {
  font-family: "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-frontpage-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
}

.about-frontpage-stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  color: #d2ab2b;
}

.about-frontpage-stat-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

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

.about-frontpage-image-frame {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(210, 171, 43, 0.3);
  background-color: #0f0f0f;
  position: relative;
  overflow: hidden;
}

.about-frontpage-image-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-frontpage-image-svg {
  width: 8rem;
  height: 8rem;
  opacity: 0.3;
  stroke: #d2ab2b;
}

.about-frontpage-image-logo {
  width: 130%;
  height: 130%;
  object-fit: contain;
  display: block;
  transform: scale(1.12);
}

.about-frontpage-decoration {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid #d2ab2b;
}

@media (min-width: 768px) {
  .about-frontpage-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-frontpage-section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .about-frontpage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
  }
}
