/* ============================================================
   PAGE-ABOUT.CSS — about.html only
   ============================================================ */

/* ─── BODY EXTRAS ────────────────────────────────────────── */
body {
  font-size: 13px;
  line-height: 1.75;
}

/* ─── NAV — page-specific extra ──────────────────────────────
   Nav runs in the page's theme color (Textile blue) per the
   approved mockup, not the neutral --c-text. */
.comp-nav__logo,
.comp-nav__links a,
.comp-nav__lang {
  color: var(--c-textile);
}
:root {
  --c-dot: var(--c-textile);
}

/* ─── PAGE ───────────────────────────────────────────────── */
.page-about { padding-top: var(--nav-h); }

/* ─── HERO ───────────────────────────────────────────────── */
.comp-about-hero {
  display: grid;
  grid-template-columns: 48% 52%;
  padding: 32px var(--px);
  gap: 30px;
  align-items: center;
}

/* ─── BIO BLOCK ──────────────────────────────────────────── */
.comp-bio-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 24px;
}

.about-title {
  font-family: var(--f-display);
  font-size: clamp(88px, 12.5vw, 156px);
  font-weight: 900;
  line-height: 0.87;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-style: normal;
  color: var(--c-textile);
}

.about-tagline {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.7;
  margin-bottom: 28px;
  color: var(--c-textile);
}

.about-bio {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 1.22;
  margin-bottom: 16px;
  color: var(--c-textile);
}
.cta-link {
  font-family: var(--f-mono);
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  margin-top: 20px;
  width: fit-content;
  transition: opacity 0.2s;
  color: var(--c-ai-visual-art);
}
.about-bio--secondary { color: var(--c-muted); }

/* ─── BAGS AREA ──────────────────────────────────────────── */
.about-bags-area {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 16px 0;
}


/* ─── TRANSPARENT BAG — page-specific extras ──────────────────
   Sizing: both bags share flex:1, so they always split the
   available row width evenly at any viewport — same treatment,
   no fixed px cap keeping them small.
   The wrapper itself carries no shadow/background — it's just a
   positioning box. The shadow lives on .bag-fill below, so it
   traces the actual photo's edges instead of a larger box behind
   it. Hover is a scale-only affordance — no opacity/filter change,
   the photo stays at full color and sharpness in both states. */
.comp-transparent-bag {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  cursor: pointer;
  transition: transform 0.3s ease-out;
}

.comp-transparent-bag--1 { aspect-ratio: 896 / 1120; }
.comp-transparent-bag--2 { aspect-ratio: 896 / 1120; }

.comp-transparent-bag:hover {
  transform: scale(1.03);
}

/* The bag is baked into About1.png/About2.png itself now (photo +
   plastic bag rendered as one image), so the separate photographed
   overlay pseudo-element is no longer needed — kill it. */
.comp-transparent-bag::after {
  content: none;
}

.bag-fill {
  inset: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 3px;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.06),
    0 14px 30px rgba(0,0,0,0.12);
}

.bag-fill--1 { background-image: url('../assets/images/About1.png'); }
.bag-fill--2 { background-image: url('../assets/images/About2.png'); }

/* ─── DIVIDER ────────────────────────────────────────────── */
.page-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 0 var(--px);
  transition: border-color 0.4s;
}

/* ─── STUDIO VALUES ──────────────────────────────────────── */
.comp-studio-values {
  display: flex;
  align-items: stretch;
  padding: 28px var(--px) 36px;
}

.studio-values__label {
  font-family: var(--f-sec);
  font-size: 35px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-right: 32px;
  padding-top: 4px;
  display: flex;
  align-items: flex-start;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.12;
  color: var(--c-textile);
}

.studio-values__columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--c-border);
  flex: 1;
  color: var(--c-textile);
}

.studio-value-item {
  padding: 2px 22px 3px;
  border-right: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.studio-value-item:last-child { border-right: none; }

.value-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.value-title {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 2px;
}

.value-desc {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 1.22;
  color: var(--c-textile);
}


/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 760px) {
  :root { --px: 24px; }

  .comp-about-hero {
    grid-template-columns: 1fr;
    padding: 40px var(--px) 48px;
    gap: 32px;
  }

  .comp-bio-block { padding-right: 0; }

  .studio-values__label {
    padding-right: 0;
    padding-bottom: 20px;
  }

  .comp-studio-values { flex-direction: column; }

  .studio-values__columns {
    grid-template-columns: repeat(2, 1fr);
    border-left: none;
    border-top: 1px solid var(--c-border);
  }

  .studio-value-item:nth-child(2n) { border-right: none; }

  .comp-nav__logo { font-size: 9px; }
  .comp-nav__links { gap: 14px; }
  .comp-nav__links li { font-size: 8.5px; }
}
