/* ===== ABOUT PAGE ===== */

/* --- Scroll reveal animations --- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}
.reveal        { transform: translateY(40px); }
.reveal-left   { transform: translateX(-50px); }
.reveal-right  { transform: translateX(50px); }
.reveal-up     { transform: translateY(56px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  opacity: 1;
  transform: none;
}

/* --- Hero --- */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-img-wrap {
  position: absolute;
  inset: 0;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,26,43,0.15) 0%,
    rgba(15,26,43,0.08) 40%,
    rgba(15,26,43,0.72) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 72px;
  max-width: 800px;
}

.about-hero-content .eyebrow {
  color: var(--gold);
  margin-bottom: 12px;
}

.about-hero-content h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.about-hero-tagline {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
}

/* --- Story section --- */
.about-story {
  padding: 112px 0;
  background: var(--bg);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.about-story-text {
  position: sticky;
  top: 120px;
}

.about-story-text .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
}

.about-story-text h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
}

.about-founder-photo {
  margin-top: 40px;
}

.about-founder-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}

.about-founder-caption {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(27,35,51,0.45);
  margin-top: 12px;
  margin-bottom: 0;
}

.about-story-body p {
  font-size: 17px;
  line-height: 1.85;
  color: #3a4258;
  margin-bottom: 1.5em;
}

.about-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px !important;
  font-style: italic;
  color: var(--navy) !important;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 40px 0 !important;
  line-height: 1.5 !important;
}

.about-closing {
  font-size: 16px !important;
  color: var(--navy) !important;
  font-weight: 500;
}

/* --- Lifestyle Gallery --- */
.lifestyle-section {
  background: var(--bg);
  padding: 96px 0 0;
  overflow: hidden;
}

.lifestyle-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  padding: 0 32px;
}

.lifestyle-intro .eyebrow {
  color: var(--gold);
  margin-bottom: 16px;
}

.lifestyle-intro h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  color: var(--navy);
  font-style: italic;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 320px;
  gap: 6px;
}

.lifestyle-item {
  overflow: hidden;
  position: relative;
}

.lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.lifestyle-item:hover img {
  transform: scale(1.04);
}

/* Grid placement */
.lifestyle-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; } /* tall - first image */
.lifestyle-item:nth-child(2) { grid-column: 5 / 8; grid-row: 1 / 2; }
.lifestyle-item:nth-child(3) { grid-column: 8 / 13; grid-row: 1 / 2; }
.lifestyle-item:nth-child(4) { grid-column: 5 / 9; grid-row: 2 / 3; }
.lifestyle-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2 / 3; }

@media (max-width: 1024px) {
  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 260px);
  }
  .lifestyle-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
  .lifestyle-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
  .lifestyle-item:nth-child(3) { grid-column: 1 / 3; grid-row: 2 / 3; }
  .lifestyle-item:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
  .lifestyle-item:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 4; }
}

@media (max-width: 768px) {
  .lifestyle-section { padding: 72px 0 0; }
  .lifestyle-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 260px);
    gap: 4px;
  }
  .lifestyle-item:nth-child(n) { grid-column: 1; grid-row: auto; }
}

/* --- The Neva Standard --- */
.neva-standard {
  background: var(--navy);
  padding: 112px 0;
}

.standard-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.standard-intro .eyebrow {
  color: var(--gold);
  margin-bottom: 24px;
}

.standard-intro h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}

.standard-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin: 0;
}

.standard-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.standard-pillar {
  padding: 40px 32px;
  border: 1px solid rgba(200,176,122,0.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  transition: border-color var(--transition), background var(--transition);
}

.standard-pillar:hover {
  border-color: rgba(200,176,122,0.4);
  background: rgba(255,255,255,0.055);
}

.pillar-icon {
  margin-bottom: 24px;
}

.standard-pillar h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}

.standard-pillar p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
}

/* --- About CTA --- */
.about-cta {
  padding: 112px 0;
  background: var(--bg-alt);
}

.about-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.about-cta-inner h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-cta-inner p {
  font-size: 17px;
  color: #5a6278;
  margin-bottom: 40px;
}

.about-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-story-text {
    position: static;
  }
  .standard-pillars {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .about-hero-content {
    padding: 0 24px 56px;
  }
  .about-story { padding: 72px 0; }
  .neva-standard { padding: 72px 0; }
  .about-cta { padding: 72px 0; }
  .reveal-left, .reveal-right {
    transform: translateY(40px);
  }
}
