﻿/* BOVGARDE Brand Story */

.brand-story {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.brand-story-bg {
  position: absolute;
  inset: 0;
  background: #000 url("/html/style/images/stroyBanner.png") no-repeat right center;
  background-size: cover;
  z-index: 0;
}

.brand-story-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 38%,
    rgba(0, 0, 0, 0.15) 62%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.brand-story-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 72px 24px;
}

.brand-story-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 28px;
  max-width: 640px;
}

.brand-story-title span {
  color: var(--accent);
}

.brand-story-copy {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand-story-copy p {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 720px) {
  .brand-story {
    min-height: calc(100vh - var(--header-h));
    align-items: flex-start;
  }

  .brand-story-bg {
    background-position: 70% center;
  }

  .brand-story-bg::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      rgba(0, 0, 0, 0.35) 100%
    );
  }

  .brand-story-inner {
    padding: 48px 20px 64px;
  }

  .brand-story-copy {
    max-width: 100%;
  }
}
