/* About / brand story — premium layout */

.about-breadcrumb {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
}

.about-hero {
  min-height: min(52vh, 520px);
  border: 1px solid var(--wf-border);
  box-shadow: var(--wf-shadow-md);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--wf-bg-secondary) 0%, #e8dfd4 45%, var(--wf-accent-subtle) 100%);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero:hover .about-hero__bg--has-img {
  transform: scale(1.06);
}

.about-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 41, 38, 0.15) 0%,
    rgba(42, 41, 38, 0.55) 100%
  );
  pointer-events: none;
}

.about-hero__inner {
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.about-hero__kicker {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.14em;
}

.about-hero__title {
  font-family: var(--wf-font-display);
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.wf-prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--wf-ink);
}

.wf-prose > p:first-child {
  font-size: 1.15rem;
  color: var(--wf-ink-muted);
  line-height: 1.65;
}

.wf-prose p {
  margin-bottom: 1.25rem;
}

.wf-prose h2,
.wf-prose h3 {
  font-family: var(--wf-font-display);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.wf-prose ul,
.wf-prose ol {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--wf-ink-muted);
}

.wf-prose li {
  margin-bottom: 0.5rem;
}

.wf-prose a {
  color: var(--wf-accent-hover);
  font-weight: 600;
}

.about-highlight-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--wf-shadow-sm);
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.about-highlight-card:hover {
  box-shadow: var(--wf-shadow-md);
  transform: translateY(-4px);
  border-color: rgba(164, 117, 81, 0.35);
}

.about-highlight-card__badge {
  margin-bottom: 1rem;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.about-gallery__item {
  margin: 0;
}

.about-gallery__img-wrap {
  position: relative;
  border-radius: var(--wf-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--wf-bg-secondary);
}

.about-gallery__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-gallery__item:hover .about-gallery__img-wrap img {
  transform: scale(1.06);
}

.about-gallery__img-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 41, 38, 0.35) 0%,
    transparent 45%
  );
  opacity: 0.9;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.about-gallery__item:hover .about-gallery__img-shade {
  opacity: 0.65;
}

.about-gallery__caption {
  padding-left: 0.15rem;
}

@media (prefers-reduced-motion: reduce) {
  .about-hero:hover .about-hero__bg--has-img,
  .about-gallery__img-wrap img,
  .about-highlight-card:hover {
    transform: none !important;
    transition: none !important;
  }
}
