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

/* Page Hero Override — shorter, no background image */
[data-page="about"] .page-hero {
    min-height: 25vh;
    background: var(--cream, #0A0A0A);
    display: flex;
    align-items: flex-end;
    padding-bottom: 2rem;
}

[data-page="about"] .page-hero--simple {
    background-image: none;
}

[data-page="about"] .page-hero__content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

[data-page="about"] .page-hero__title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 200;
    letter-spacing: .08em;
    color: var(--coral);
    margin-top: 0.5rem;
    line-height: 1;
}

/* ----------------------------------------
   PHILOSOPHY + VIDEO LAYOUT
   ---------------------------------------- */
.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 2.5rem;
    align-items: start;
    padding: 1.5rem 0;
    min-height: 0;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.philosophy-label .label {
    margin-bottom: 1rem;
    display: block;
}

.philosophy-label h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark);
}

.philosophy-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.philosophy-text p:last-child {
    margin-bottom: 0;
}

/* ----------------------------------------
   STORYTELLING VIDEO BLOCK
   ---------------------------------------- */
.about-video-block {
    margin: 0;
}

.about-video-media {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.about-video-player {
    width: 100%;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    display: block;
    border-radius: 0;
}

/* Sound toggle button */
.about-sound-toggle {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
    z-index: 2;
    padding: 0;
}

.about-sound-toggle:hover {
    background: rgba(0,0,0,.7);
}

.about-sound-toggle svg {
    width: 18px;
    height: 18px;
}

.about-sound-toggle .icon-unmuted {
    display: none;
}

.about-sound-toggle.unmuted .icon-muted {
    display: none;
}

.about-sound-toggle.unmuted .icon-unmuted {
    display: block;
}

/* ----------------------------------------
   PROCESS SECTION
   ---------------------------------------- */
.process-header {
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.process-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--coral);
    margin-top: 0.5rem;
}

.step-number {
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.5;
    min-width: 3rem;
}

/* Stat labels — terracotta accent */
[data-page="about"] .stat-label {
    color: var(--terracotta);
}

/* ----------------------------------------
   RESPONSIVE
   ---------------------------------------- */
@media (max-width: 768px) {
    [data-page="about"] .page-hero {
        min-height: auto;
        padding-bottom: 2rem;
    }

    .philosophy-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .philosophy-label {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.5rem;
    }

    .about-video-block {
        max-width: 480px;
    }

    .process-header {
        padding-top: 1.5rem;
        padding-bottom: 1rem;
    }
}

/* ══════════════════════════════════════════════════
   IN FRAMES — editorial 5-photo spread
   Placed between §2 Philosophy and §3 Process.
   Compact 2+3 layout. Entire collection visible in
   one viewport height — Kinfolk / Toteme rhythm.
   ══════════════════════════════════════════════════ */
.in-frames-section {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}
.in-frames-section .section-header {
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}
.in-frames-section .section-title {
  font-weight: 300;
  line-height: 1.1;
  max-width: 900px;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
}

.in-frames {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 14px);
}

/* Row 1: two anchor photos, medium height */
.in-frames-row-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(8px, 1vw, 14px);
  height: clamp(260px, 32vh, 380px);
}

/* Row 2: three smaller photos — middle one widest */
.in-frames-row-bottom {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: clamp(8px, 1vw, 14px);
  height: clamp(180px, 22vh, 260px);
}

/* Figures fill their cells; no aspect-ratio here because height is fixed by grid */
.in-frames figure {
  margin: 0;
  overflow: hidden;
  background: var(--divider-light);
  height: 100%;
}
.in-frames figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
  filter: saturate(1.04) brightness(1.01);
}
.in-frames figure:hover img {
  transform: scale(1.03);
}

/* Villa only — slightly reduce the vivid green grass + nudge darker.
   No treatment on other photos. */
.if-anchor-1 img {
  filter: saturate(0.60) brightness(0.94);
}

/* Responsive collapse — stack vertically on tablet / phone */
@media (max-width: 900px) {
  .in-frames-row-top {
    grid-template-columns: 1fr;
    height: auto;
  }
  .in-frames-row-top figure {
    height: clamp(240px, 40vh, 340px);
  }
  .in-frames-row-bottom {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .in-frames-row-bottom figure {
    height: clamp(160px, 28vh, 220px);
  }
  .in-frames-row-bottom figure:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .in-frames-row-bottom {
    grid-template-columns: 1fr;
  }
  .in-frames-row-bottom figure:nth-child(3) {
    grid-column: auto;
  }
}
