/* ========================================
   ABOUT PAGE — Deck&Co
   Scoped under .deckco-about
   ======================================== */

/* ---- PAGE HERO (Interior pages) ---- */

.deckco-about .page-hero {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  background: var(--forest-dark);
  overflow: hidden;
}

.deckco-about .page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(58,78,57,0.75) 0%, rgba(28,38,27,0.55) 50%, rgba(58,78,57,0.45) 100%),
    url('../images/about/about-hero.webp') center/cover no-repeat;
}

.deckco-about .page-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.3) 40px,
    rgba(255,255,255,0.3) 41px
  );
}

.deckco-about .page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.deckco-about .page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.deckco-about .page-hero__breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s var(--ease);
}

.deckco-about .page-hero__breadcrumb a:hover {
  color: rgba(255,255,255,0.8);
}

.deckco-about .page-hero__breadcrumb svg {
  width: 12px;
  height: 12px;
  opacity: 0.4;
}

.deckco-about .page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.deckco-about .page-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--sand-light);
}

.deckco-about .page-hero__subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
}

/* ---- INTRO / MISSION STATEMENT ---- */

.deckco-about .intro {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.deckco-about .intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.deckco-about .intro__text .eyebrow {
  margin-bottom: 20px;
}

.deckco-about .intro__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.deckco-about .intro__heading em {
  font-style: italic;
  color: var(--forest);
}

.deckco-about .intro__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin-bottom: 16px;
}

.deckco-about .intro__image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
}

.deckco-about .intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deckco-about .intro__image-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ---- STATS STRIP ---- */

.deckco-about .stats {
  padding: var(--section-pad-sm) 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.deckco-about .stats::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.deckco-about .stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.deckco-about .stats__item {
  position: relative;
}

.deckco-about .stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.deckco-about .stats__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.deckco-about .stats__label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}

/* ---- WHY CHOOSE US ---- */

.deckco-about .why-us {
  padding: var(--section-pad) 0;
  background: var(--sand-pale);
}

.deckco-about .why-us__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.deckco-about .why-us__header .eyebrow {
  margin-bottom: 16px;
}

.deckco-about .why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.deckco-about .why-card {
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: box-shadow 0.3s var(--ease);
}

.deckco-about .why-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.deckco-about .why-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--forest);
}

.deckco-about .why-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.deckco-about .why-card__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ---- OUR PROMISE (Editorial split) ---- */

.deckco-about .promise {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.deckco-about .promise__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.deckco-about .promise__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 3px;
  overflow: hidden;
}

.deckco-about .promise__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deckco-about .promise__image-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.deckco-about .promise__text .eyebrow {
  margin-bottom: 20px;
}

.deckco-about .promise__quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 24px;
  font-style: italic;
}

.deckco-about .promise__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin-bottom: 16px;
}

.deckco-about .promise__features {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deckco-about .promise__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal-soft);
  font-size: 14px;
  font-weight: 400;
}

.deckco-about .promise__features li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--forest);
  flex-shrink: 0;
}

/* ---- TEAK COMMITMENT (Dark section) ---- */

.deckco-about .teak-section {
  padding: var(--section-pad) 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.deckco-about .teak-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

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

.deckco-about .teak-section__text .eyebrow {
  color: var(--sand);
  margin-bottom: 20px;
}

.deckco-about .teak-section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}

.deckco-about .teak-section__title em {
  font-style: italic;
  color: var(--sand-light);
}

.deckco-about .teak-section__body {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.deckco-about .teak-section__features {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deckco-about .teak-section__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 400;
}

.deckco-about .teak-section__features li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--sand);
  flex-shrink: 0;
}

.deckco-about .teak-section__image-frame {
  position: relative;
  aspect-ratio: 4/5;
  background: url('../images/about/editorial-teak.webp') center/cover no-repeat;
  border-radius: 3px;
  overflow: hidden;
}

.deckco-about .teak-section__image-frame::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  pointer-events: none;
}

/* ---- CTA BANNER ---- */

.deckco-about .cta-banner {
  padding: var(--section-pad-sm) 0;
  background: var(--sand-pale);
  text-align: center;
}

.deckco-about .cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.deckco-about .cta-banner__subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.deckco-about .cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .deckco-about .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deckco-about .why-us__grid > :last-child {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  /* Page Hero */
  .deckco-about .page-hero {
    padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 6vw, 60px);
  }

  .deckco-about .page-hero__title {
    font-size: clamp(30px, 8vw, 44px);
  }

  .deckco-about .page-hero__subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Intro */
  .deckco-about .intro__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .deckco-about .intro__image-wrap {
    aspect-ratio: 16/9;
    order: -1;
  }

  .deckco-about .intro__heading {
    font-size: clamp(24px, 6vw, 32px);
  }

  .deckco-about .intro__body {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Stats */
  .deckco-about .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .deckco-about .stats__item:not(:last-child)::after {
    display: none;
  }

  .deckco-about .stats__number {
    font-size: clamp(28px, 6vw, 40px);
  }

  .deckco-about .stats__label {
    font-size: 12px;
  }

  /* Why Us */
  .deckco-about .why-us__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .deckco-about .why-us__grid > :last-child {
    grid-column: auto;
    max-width: none;
  }

  .deckco-about .why-card {
    padding: 24px 20px;
    text-align: left;
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;
  }

  .deckco-about .why-card__icon {
    width: 32px;
    height: 32px;
    margin: 0;
    grid-row: span 2;
    align-self: start;
    margin-top: 2px;
  }

  .deckco-about .why-card__title {
    font-size: 18px;
    margin-bottom: 0;
  }

  .deckco-about .why-card__body {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Promise */
  .deckco-about .promise__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .deckco-about .promise__image-wrap {
    aspect-ratio: 16/9;
    order: -1;
  }

  .deckco-about .promise__quote {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .deckco-about .promise__body {
    font-size: 14px;
    line-height: 1.7;
  }

  .deckco-about .promise__features {
    margin: 16px 0;
    gap: 6px;
  }

  .deckco-about .promise__features li {
    font-size: 12px;
  }

  /* Teak section */
  .deckco-about .teak-section__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .deckco-about .teak-section__image-frame {
    aspect-ratio: 16/9;
    order: -1;
  }

  .deckco-about .teak-section__title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .deckco-about .teak-section__body {
    font-size: 14px;
    line-height: 1.7;
  }

  .deckco-about .teak-section__features {
    margin: 16px 0;
    gap: 6px;
  }

  .deckco-about .teak-section__features li {
    font-size: 12px;
  }

  /* CTA Banner */
  .deckco-about .cta-banner__title {
    font-size: clamp(22px, 5vw, 32px);
  }

  .deckco-about .cta-banner__subtitle {
    font-size: 14px;
  }

  .deckco-about .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .deckco-about .stats__grid {
    gap: 16px;
  }

  .deckco-about .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
