/* ABOUT PAGE STYLES */

/* HERO */
.about-hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-color: var(--purple);
  animation: zoomIn 10s ease forwards;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,5,41,.55) 0%, rgba(15,5,41,.3) 50%, rgba(15,5,41,.75) 100%);
  z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 2rem;
}
.about-hero-content h1 { color: #fff; margin-bottom: 1.2rem; }
.about-hero-content p { color: rgba(255,255,255,.65); font-size: .95rem; font-weight: 300; line-height: 1.8; }

/* BRAND STATEMENT */
.brand-statement { padding: 8rem 0; }
.bs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.bs-left h2 { margin-top: .5rem; }
.bs-right p {
  font-size: .92rem;
  line-height: 1.95;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.bs-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15,5,41,.1);
}
.bs-stat { display: flex; flex-direction: column; }

/* JESSICA SECTION */
.jessica-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--cream);
}
.jessica-photo {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.jessica-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .8s ease;
}
.jessica-photo:hover img { transform: scale(1.04); }
.jessica-badge {
  position: absolute;
  bottom: 2.5rem;
  right: -1rem;
  background: var(--purple);
  color: #fff;
  padding: 1.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  box-shadow: 0 10px 40px rgba(15,5,41,.25);
}
.jessica-badge span { color: var(--pink); font-size: 1.1rem; }
.jessica-badge p {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.jessica-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4.5rem;
}
.jessica-text h2 { margin-bottom: 1.5rem; }
.jessica-text p {
  font-size: .92rem;
  line-height: 1.95;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 1rem;
}
.jessica-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--lilac);
  border-left: 2px solid var(--pink);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
}

/* ABOUT GALLERY */
.about-gallery { padding: 2rem 0; overflow: hidden; }

/* CORE VALUES */
.values-section { padding: 8rem 0; }
.values-header { margin-bottom: 4rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(15,5,41,.1);
}
.value-card {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(15,5,41,.1);
  transition: .4s;
}
.value-card:last-child { border-right: none; }
.value-card:hover { background: var(--purple); }
.value-card:hover h3,
.value-card:hover p,
.value-card:hover .value-num { color: #fff; }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  font-style: italic;
  color: var(--pink);
  display: block;
  margin-bottom: 1.2rem;
  transition: .4s;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: .8rem; transition: .4s; }
.value-card p { font-size: .82rem; color: var(--mid); line-height: 1.8; font-weight: 300; transition: .4s; }

/* RESPONSIVE */
@media(max-width: 1024px) {
  .bs-grid { grid-template-columns: 1fr; gap: 3rem; }
  .jessica-section { grid-template-columns: 1fr; }
  .jessica-photo { min-height: 50vw; }
  .jessica-text { padding: 3rem 2.5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-card:nth-child(2n) { border-right: none; }
}
@media(max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; }
  .bs-stats { flex-direction: column; gap: 1.5rem; }
  .jessica-badge { display: none; }
}
