/* =============================================
   ABOUT PAGE — about.css
   ============================================= */

/* Active nav link */
.nav-active { position: relative; }
.nav-active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: currentColor;
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

/* ─── FLOAT ANIMATIONS ─── */
.abt-float {
  position: absolute;
  opacity: 0.35;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}
.af-1 { top: 12%; left: 5%; width: clamp(80px,12vw,180px); animation: abtFloat1 8s ease-in-out infinite; }
.af-2 { bottom: 15%; right: 10%; width: clamp(70px,10vw,150px); animation: abtFloat2 10s ease-in-out infinite; }
.af-3 { top: 10%; right: 5%; width: clamp(90px,14vw,200px); animation: abtFloat3 9s ease-in-out infinite; }
.af-4 { bottom: -5%; left: -5%; width: clamp(120px,18vw,250px); animation: abtFloat1 11s ease-in-out infinite; }

@keyframes abtFloat1 {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50%      { transform: translate(18px,-22px) rotate(6deg); }
}
@keyframes abtFloat2 {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50%      { transform: translate(-14px,20px) rotate(-5deg); }
}
@keyframes abtFloat3 {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50%      { transform: translate(12px,16px) rotate(4deg); }
}

/* ─── ABOUT HERO ─── */
.abt-hero {
  min-height: 60vh;
  padding: 200px 60px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.abt-hero-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.abt-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.abt-hero-label {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 30px;
}
.abt-hero h1 {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--text-main);
}

/* ─── STORY / PHILOSOPHY ─── */
.abt-story {
  padding: 60px 60px 120px;
  position: relative;
  overflow: hidden;
}
.abt-story-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.abt-story-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.abt-story h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 30px;
  color: var(--accent-red);
}
.abt-story h2 em {
  font-style: italic;
  color: var(--text-main);
}
.abt-story p {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
  color: var(--text-main);
  opacity: 0.85;
}

/* ─── FOUNDER BIO ─── */
.abt-bio {
  padding: 0 60px;
  margin: 0 auto 120px;
  max-width: 1200px;
}
.abt-bio-container {
  display: flex;
  gap: 50px;
  align-items: stretch;
}
.abt-bio-left {
  flex: 0 0 350px;
  background: var(--accent-red);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.abt-bio-left-content {
  padding: 30px;
  color: white;
}
.abt-bio-left-label {
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.abt-bio-left h3 {
  font-size: 36px;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  color: white;
}
.abt-bio-left img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: auto;
}
.abt-bio-right {
  flex: 1;
  color: var(--accent-red);
  font-size: 18px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}
.abt-bio-right p {
  margin: 0;
}

/* ─── GALLERY ─── */
.abt-gallery {
  padding: 0 60px 120px;
  max-width: 1400px;
  margin: 0 auto;
}
.abt-gallery-header {
  text-align: center;
  margin-bottom: 80px;
}
.abt-gallery-header h2 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: -2px;
}
.abt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}
.abt-gal-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.abt-gal-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.abt-gal-item:hover img {
  transform: scale(1.05);
}
.gal-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  color: var(--text-main);
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Masonry Layout approximations */
.gal-1 { grid-column: 1 / 8; aspect-ratio: 16/9; }
.gal-2 { grid-column: 8 / 13; aspect-ratio: 4/3; }
.gal-3 { grid-column: 1 / 5; aspect-ratio: 3/4; }
.gal-4 { grid-column: 5 / 13; aspect-ratio: 16/7; }
.gal-5 { grid-column: 1 / 13; aspect-ratio: 21/9; margin-top: 30px; }

/* ─── CTA SECTION ─── */
.abt-cta-section {
  padding: 100px 60px 150px;
  text-align: center;
}
.abt-cta-content h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 40px;
  line-height: 1.1;
}
.abt-cta-btn {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  padding: 20px 60px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(177, 31, 35, 0.25);
}
.abt-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(177, 31, 35, 0.35);
  background: #901618;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .abt-bio-container {
    flex-direction: column;
    gap: 40px;
  }
  .abt-bio-left {
    flex: auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .abt-hero { padding: 150px 20px 60px; }
  .abt-story { padding: 40px 20px 80px; }
  .abt-bio { margin: 0 auto 80px; padding: 0 20px; }
  .abt-gallery { padding: 0 20px 80px; }
  .gal-1, .gal-2, .gal-3, .gal-4, .gal-5 { grid-column: 1 / 13; aspect-ratio: auto; min-height: 300px; margin-top: 0; }
  .abt-cta-section { padding: 60px 20px 100px; }
}
