/* ════════════════════════════════════════════════════
   Solo Stainless Steel, About Us Page
   Extends: styles.css (uses same custom properties)
   ════════════════════════════════════════════════════ */

/* ═══════════════════════════
   PAGE HERO (Inner Pages)
   ═══════════════════════════ */

.page-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  max-height: 720px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: pageHeroZoom 12s var(--ease-in-out) forwards;

  /* Placeholder */
  background-color: var(--charcoal);
  background-image: linear-gradient(135deg, var(--charcoal) 0%, var(--steel) 50%, var(--graphite) 100%);
}

@keyframes pageHeroZoom {
  to { transform: scale(1); }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.3) 100%
  );
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(184, 124, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 124, 76, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.page-hero-label::before,
.page-hero-label::after {
  content: "";
  width: 45px;
  height: 1px;
  background: var(--white);
}

.page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--silver);
  letter-spacing: 0.06em;
}

.page-hero-breadcrumb a {
  color: var(--silver);
  transition: color 0.3s;
}

.page-hero-breadcrumb a:hover {
  color: var(--copper-light);
}

.breadcrumb-sep {
  color: var(--warm-grey);
  opacity: 0.5;
}

/* ═══════════════════════════
   STORY SECTION
   ═══════════════════════════ */

.about-story {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
}

.story-image-col {
  position: relative;
  display: flex;
  flex-direction: column;
}

.story-image-wrapper {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 500px;
}

.story-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);

  /* Placeholder */
  background-color: var(--steel);
  background-image:
    radial-gradient(ellipse at 30% 40%, var(--graphite) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, var(--gunmetal) 0%, transparent 60%);
}

.story-image-wrapper:hover .story-image {
  transform: scale(1.04);
}

.story-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--copper);
  opacity: 0.3;
  pointer-events: none;
}

.story-experience {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--charcoal);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.story-experience-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--copper);
  line-height: 1;
}

.story-experience-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  line-height: 1.5;
}

.story-divider {
  width: 50px;
  height: 1px;
  background: var(--copper);
  margin-bottom: 28px;
}

.story-lead {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 24px;
}

.story-body {
  font-size: 16px;
  color: var(--gunmetal);
  line-height: 1.9;
  margin-bottom: 20px;
}

.story-body:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════
   VALUES
   ═══════════════════════════ */

.about-values {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: transform 0.5s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-6px);
}

.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--copper);
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.3;
}

.value-desc {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.8;
}

/* ═══════════════════════════
   QUOTE BAND
   ═══════════════════════════ */

.quote-band {
  background: var(--charcoal);
  padding: 80px 0;
  border-top: 1px solid rgba(184, 124, 76, 0.15);
  border-bottom: 1px solid rgba(184, 124, 76, 0.15);
  position: relative;
  overflow: hidden;
}

.quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  width: 48px;
  height: auto;
  color: var(--copper);
  opacity: 0.3;
  margin-bottom: 28px;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 24px;
}

.quote-author {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  font-style: normal;
}

/* ═══════════════════════════
   MATERIALS (About Page)
   ═══════════════════════════ */

.about-materials {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.about-materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-material-card {
  text-align: center;
  padding: 44px 28px;
  background: var(--cream);
  position: relative;
  transition: transform 0.5s var(--ease-out);
}

.about-material-card:hover {
  transform: translateY(-4px);
}

.about-material-icon {
  width: 44px;
  height: 44px;
  color: var(--copper);
  margin: 0 auto 20px;
}

.about-material-icon svg {
  width: 100%;
  height: 100%;
}

.about-material-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.about-material-desc {
  font-size: 14px;
  color: var(--warm-grey);
  line-height: 1.8;
}

/* ═══════════════════════════
   WORKSHOP / INDUSTRIES
   ═══════════════════════════ */

.about-workshop {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.workshop-body {
  font-size: 16px;
  color: var(--gunmetal);
  line-height: 1.9;
  margin-bottom: 32px;
}

.industry-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 14px 40px;
}

.industry-list li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gunmetal);
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.industry-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--copper);
  border-radius: 50%;
}

.workshop-image-col {
  position: relative;
  overflow: hidden;
}

.workshop-image {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);

  /* Placeholder */
  background-color: var(--steel);
  background-image: linear-gradient(160deg, var(--graphite), var(--gunmetal));
}

.workshop-image-col:hover .workshop-image {
  transform: scale(1.04);
}

/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */

@media (max-width: 1024px) {
  .about-materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid .value-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 40vh;
    min-height: 320px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-image-wrapper {
    min-height: 0;
    flex: 0 0 auto;
  }
  .story-image {
    height: 350px;
  }

  .story-experience {
    right: 0;
    bottom: 0;
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 16px;
    align-self: stretch;
    justify-content: center;
    text-align: center;
  }
  .story-experience-label {
    white-space: nowrap;
    text-align: center;
  }
  .story-experience-label br {
    display: none;
  }

  .story-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .story-image-accent {
    display: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
  .values-grid .value-card:last-child {
    max-width: 100%;
  }

  .about-materials-grid {
    grid-template-columns: 1fr;
  }

  .workshop-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .workshop-text-col .section-label {
    display: block;
    text-align: center;
  }
  .workshop-text-col .section-heading {
    text-align: center;
    margin-bottom: 24px;
  }
  .workshop-body {
    text-align: center;
  }

  .workshop-image {
    height: 300px;
  }
}
