/* ============================================================
   ABOUT PAGE — Warm, minimal
   ============================================================ */

/* BIO */
.about-bio { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 80px var(--page-pad); align-items: start; }
.bio-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 3px; }
.bio-text { padding-top: 12px; display: flex; flex-direction: column; gap: 24px; }
.bio-lead { font-family: var(--font-sans); font-size: clamp(22px, 2.6vw, 30px); font-weight: 400; line-height: 1.4; color: var(--blue); }
.bio-text p.body { font-size: 13px; line-height: 2; color: var(--soft); letter-spacing: 0.02em; }
.bio-cta { margin-top: 14px; }

/* BELIEF — statement beside image */
.about-belief { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 96px var(--page-pad); align-items: center; }
.belief-text .label { display: block; margin-bottom: 24px; color: var(--soft); }
.belief-text blockquote { font-family: var(--font-sans); font-size: clamp(17px, 1.7vw, 21px); font-weight: 400; line-height: 1.6; color: var(--blue); letter-spacing: 0; }
.belief-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px; background: var(--paper-deep); }
@media (max-width: 900px) { .about-belief { grid-template-columns: 1fr; gap: 40px; } }

/* SECTION HEADER */
.section-header { margin-bottom: 44px; }
.section-header .eyebrow { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--soft); font-weight: 600; display: block; }
.section-header h2 { font-family: var(--font-sans); font-size: clamp(48px, 6vw, 84px); font-weight: 700; margin-top: 16px; color: var(--blue); letter-spacing: -0.02em; line-height: 1.0; }

/* CREATIVE LIFE — image strip showing the whole person */
.about-life { padding: 40px var(--page-pad) 80px; }
.life-intro { font-size: 14px; line-height: 1.9; color: var(--soft); max-width: 600px; margin-bottom: 44px; }
.life-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.life-item { display: flex; flex-direction: column; gap: 14px; }
.life-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 3px; background: var(--paper-deep); }
.life-item .cap { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soft); font-weight: 500; }

/* MEDIA — minimal list, no boxes */
.about-media { padding: 80px var(--page-pad); }
.media-list { display: flex; flex-direction: column; }
.media-row { display: grid; grid-template-columns: 160px 1fr auto; gap: 32px; align-items: baseline; padding: 28px 0; border-top: 1px solid var(--line); transition: padding-left 0.3s ease; }
.media-row:last-child { border-bottom: 1px solid var(--line); }
.media-row:hover { padding-left: 10px; }
.media-pub { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--soft); font-weight: 600; }
.media-title { font-size: 17px; font-weight: 400; color: var(--blue); line-height: 1.3; }
.media-link { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--soft); font-weight: 500; white-space: nowrap; transition: color 0.25s ease; }
.media-row:hover .media-link { color: var(--blue); }

@media (max-width: 900px) {
  .about-bio { grid-template-columns: 1fr; gap: 40px; }
  .life-grid { grid-template-columns: repeat(2, 1fr); }
  .media-row { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 768px) {
  /* Bio: photo centred, text left-aligned below */
  .about-bio { display: flex; flex-direction: column; align-items: center; }
  .about-bio .bio-image { width: 100%; max-width: 320px; margin: 0 auto; }
  .about-bio .bio-text { width: 100%; text-align: left; }
  .bio-sketch { display: none; }

  /* How I see it / belief section: stack and left-align */
  .about-belief { grid-template-columns: 1fr !important; gap: 24px; }
  .about-belief h2, .about-belief p { text-align: left; }
  .belief-quote { font-size: clamp(22px, 7vw, 36px); text-align: left; }

  /* Media rows: stack title → subtitle → read more */
  .media-row { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
  .media-pub { order: 2; }
  .media-title { order: 1; }
  .media-link { order: 3; }
}


/* CREATIVE LIFE — clickable cards */
.life-item { cursor: pointer; }
.life-item .life-img-wrap { position: relative; overflow: hidden; border-radius: 3px; }
.life-item img { transition: transform 0.6s var(--ease-smooth); }
.life-item:hover img { transform: scale(1.04); }
.life-img-wrap::after {
  content: '+';
  position: absolute; top: 14px; right: 16px;
  font-size: 22px; font-weight: 300; color: #fff;
  opacity: 0; transform: translateY(-4px); transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.life-item:hover .life-img-wrap::after { opacity: 1; transform: translateY(0); }
.life-img-wrap::before {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,171,0); transition: background 0.4s ease; z-index: 1;
}
.life-item:hover .life-img-wrap::before { background: rgba(0,0,171,0.12); }

/* THEME MODAL */
.theme-modal {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(20,18,14,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
  padding: 20px;
}
.theme-modal.open { opacity: 1; pointer-events: auto; }
.theme-inner { max-width: 1100px; width: 100%; max-height: 95vh; overflow-y: auto; }

.theme-close {
  position: absolute; top: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(0,0,171,0.3); background: none; color: var(--blue);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.theme-close:hover { border-color: var(--blue); background: var(--blue-tint); }
.theme-close svg { width: 16px; height: 16px; }

.theme-eyebrow { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(244,241,234,0.5); font-weight: 600; display: block; margin-bottom: 12px; }
.theme-title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #fff; letter-spacing: -0.01em; margin-bottom: 28px; line-height: 1.0; }

/* Carousel on top */
.theme-carousel { position: relative; border-radius: 3px; overflow: hidden; background: #111; aspect-ratio: 4/3; margin-bottom: 24px; max-height: 75vh; }
.theme-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.theme-slide.active { opacity: 1; }
.theme-slide img { width: 100%; height: 100%; object-fit: cover; }
.theme-nav { position: absolute; bottom: 16px; right: 16px; display: flex; gap: 8px; }
.theme-arrow { width: 36px; height: 36px; border-radius: 50%; border: none; background: rgba(244,241,234,0.85); color: var(--blue); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.25s ease; }
.theme-arrow:hover { background: #fff; }
.theme-arrow svg { width: 11px; height: 11px; fill: none; stroke: var(--blue); stroke-width: 1.5; }
.theme-dots { position: absolute; bottom: 22px; left: 16px; display: flex; gap: 6px; }
.theme-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(244,241,234,0.6); border: none; padding: 0; cursor: pointer; transition: background 0.25s ease; }
.theme-dot.active { background: #fff; }

/* Text below */
.theme-text p { font-size: 14px; line-height: 1.95; color: var(--soft); letter-spacing: 0.02em; }

@media (max-width: 640px) {
  .theme-carousel { aspect-ratio: 4/3; }
}

/* BIO — main portrait + sketch accent */
.about-bio .bio-image { position: relative; }
.bio-portrait { width: 100%; height: auto; display: block; border-radius: 3px; }
.bio-sketch {
  position: absolute; bottom: -34px; right: -28px;
  width: 40%; max-width: 190px; height: auto;
  background: var(--paper); padding: 8px; border-radius: 3px;
  box-shadow: 0 10px 30px rgba(38,36,31,0.10);
  mix-blend-mode: multiply;
}
@media (max-width: 900px) {
  .bio-sketch { right: 8px; bottom: -24px; width: 34%; }
}
