/* ── HERO ──────────────────────────────────── */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 12, 8, 0.70) 0%,
    rgba(20, 12, 8, 0.20) 50%,
    rgba(20, 12, 8, 0.10) 100%
  );
  z-index: 1;
}

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

.about-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(254, 252, 250, 0.65);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.9s ease-out 0.3s forwards;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.9s ease-out 0.5s forwards;
}

.about-hero-title em {
  font-style: italic;
  font-weight: 300;
}

.about-hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 2;
  color: rgba(254, 252, 250, 0.5);
  animation: heroBounce 2.5s ease-in-out infinite;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── FOUNDER ───────────────────────────────── */
.about-founder {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
}

.about-founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-founder-image-wrap {
  position: relative;
}

.about-founder-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-founder-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── PHILOSOPHY ────────────────────────────── */
.about-philosophy {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
}

.about-philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-philosophy-inner > .about-eyebrow,
.about-philosophy-inner > .about-section-title {
  max-width: 480px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}

.about-pillar {
  background: var(--warm-white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-pillar-num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--taupe);
  letter-spacing: 0.08em;
}

.about-pillar-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--deep-brown);
  letter-spacing: 0.01em;
}

.about-pillar-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── GALLERY ───────────────────────────────── */
.about-gallery {
  background: var(--cream);
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.about-gallery-item {
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-gallery-item--tall {
  aspect-ratio: 2/3;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.65s ease;
  display: block;
}

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

/* ── SHARED TEXT STYLES ────────────────────── */
.about-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
}

.about-section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--deep-brown);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.about-body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-signature {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--deep-brown);
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ── SCROLL REVEAL ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-child.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child:nth-child(2) { transition-delay: 0.12s; }
.reveal-child:nth-child(3) { transition-delay: 0.24s; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .about-founder-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-founder-image {
    aspect-ratio: 4/3;
    max-height: 500px;
  }
  .about-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero-content {
    padding: 0 24px 64px;
  }
  .about-hero-scroll {
    right: 24px;
  }
  .about-founder,
  .about-philosophy {
    padding: 72px 24px;
  }
  .about-pillars {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .about-hero-content {
    padding: 0 16px 48px;
  }
  .about-founder,
  .about-philosophy {
    padding: 56px 16px;
  }
  .about-gallery-grid {
    grid-template-columns: 1fr;
  }
  .about-gallery-item,
  .about-gallery-item--tall {
    aspect-ratio: 3/4;
  }
}