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

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(24px, 6vw, 100px) clamp(60px, 8vh, 100px);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: var(--bg-base);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 30%, rgba(147, 216, 27, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(147, 216, 27, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero-content .label-tag {
  display: block;
  margin-bottom: 20px;
}

.page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.page-hero-heading em {
  font-style: normal;
  color: var(--electric-blue);
}

.page-hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

/* ── The Story ─────────────────────────────────────────────── */
.about-story {
  padding: var(--section-pad) clamp(24px, 6vw, 100px);
  background: var(--bg-base);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}

.about-story-label .label-tag {
  display: block;
  padding-top: 8px;
}

.about-story-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  line-height: 1;
}

.about-story-body {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 640px;
}

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

/* ── What Makes Us Different ───────────────────────────────── */
.about-diff {
  padding: var(--section-pad) clamp(24px, 6vw, 100px);
  background: var(--bg-surface);
}

.about-diff-header {
  margin-bottom: 60px;
}

.about-diff-header .label-tag {
  display: block;
  margin-bottom: 16px;
}

.about-diff-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
}

.about-diff-heading em {
  font-style: normal;
  color: var(--electric-blue);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.diff-item {
  padding: 40px 32px;
  background: var(--bg-card);
  transition: background 0.3s ease;
}

.diff-item:hover {
  background: #181818;
}

.diff-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(147, 216, 27, 0.25);
  border-radius: var(--radius-sm);
  color: var(--electric-blue);
  background: rgba(147, 216, 27, 0.06);
  margin-bottom: 24px;
}

.diff-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.diff-body {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── Who We Build For ──────────────────────────────────────── */
.about-for {
  padding: var(--section-pad) clamp(24px, 6vw, 100px);
  background: var(--bg-base);
}

.about-for-header {
  margin-bottom: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-for-header .label-tag {
  display: block;
  margin-bottom: 16px;
}

.about-for-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
}

.about-for-heading em {
  font-style: normal;
  color: var(--electric-blue);
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.for-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.for-item:hover {
  border-color: rgba(147, 216, 27, 0.25);
  box-shadow: 0 0 24px rgba(147, 216, 27, 0.08);
  transform: translateY(-4px) !important;
}

.for-icon {
  color: var(--electric-blue);
}

.for-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* ── Gallery Strip ─────────────────────────────────────────── */
.about-gallery-strip {
  padding: var(--section-pad) 0 0;
  background: var(--bg-surface);
  overflow: hidden;
}

.gallery-strip-header {
  padding: 0 clamp(24px, 6vw, 100px);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.gallery-strip-header .label-tag {
  flex-shrink: 0;
}

.gallery-strip-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
}

.gallery-strip-outer {
  overflow: hidden;
  cursor: grab;
}

.gallery-strip-outer:active {
  cursor: grabbing;
}

.gallery-strip-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: strip-scroll 28s linear infinite;
}

.gallery-strip-track:hover {
  animation-play-state: paused;
}

@keyframes strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gallery-strip-wrap {
  position: relative;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.gallery-strip-img {
  width: 360px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.gallery-strip-img:hover {
  filter: brightness(1.05);
  transform: scale(1.02);
}

.gallery-strip-wrap .gallery-watermark {
  position: absolute;
  width: 90px;
  height: 28px;
  background: url('../newlogo.webp') center/contain no-repeat;
  opacity: 0.33;
  pointer-events: none;
  z-index: 2;
}

/* ── CTA ───────────────────────────────────────────────────── */
.about-cta {
  padding: clamp(100px, 14vw, 180px) clamp(24px, 6vw, 100px);
  background: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 216, 27, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.about-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.about-cta-heading em {
  font-style: normal;
  color: var(--electric-blue);
}

.about-cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  padding: 18px 48px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .for-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1023px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-for-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .for-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .for-item {
    padding: 20px 8px;
    gap: 10px;
  }

  .for-icon svg {
    width: 22px;
    height: 22px;
  }

  .gallery-strip-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .gallery-strip-img {
    width: 260px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
