/* ============================================================
   ABOUT.CSS — Vihormedia About Us page
   ============================================================ */

/* ── HERO ── */
.ab-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center/* vertically center content */
  overflow: hidden;
    
}

.ab-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.ab-hero:hover .ab-hero-bg { transform: scale(1); }

.ab-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(20,20,16,0.84) 0%,
    rgba(20,20,16,0.52) 55%,
    rgba(20,20,16,0.22) 100%
  );
}

/* Container holds content — wider max-width, left-anchored */
.ab-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

@media (min-width: 1200px) {
  .ab-hero-inner { padding: 0 4rem; }
}

/* Content box — wider than v1, dominant left side */
.ab-hero-content {
  max-width: 740px;
    margin-top: 8vh;
  margin-left: 8vh;
   
}

.ab-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.7);
  margin-bottom: 1.75rem;
}
.ab-hero-tag .hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive-light);
  flex-shrink: 0;
}

.ab-hero h1 {
  color: var(--cream);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.06;
  margin-bottom: 1.75rem;
}
.ab-hero h1 em { color: rgba(245,242,235,0.72); font-style: italic; }

.ab-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(245,242,235,0.62);
  max-width: 520px;
  line-height: 1.75;
}

.ab-hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.ab-hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(245,242,235,0.55), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:1; transform:scaleY(1); }
  50%      { opacity:0.35; transform:scaleY(0.5); }
}

/* ── ORIGIN STORY ── */
.ab-origin { padding: 7rem 0; }

.ab-origin-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 900px) {
  .ab-origin-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.ab-origin-text h2 { margin-bottom: 2rem; }
.ab-origin-text p  { margin-bottom: 1.25rem; font-size: 1.05rem; }

/* Image stack */
.ab-img-stack { position: relative; height: 520px; }

.ab-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%; height: 420px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(30,30,26,0.18);
}
.ab-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 220px;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 16px 40px rgba(30,30,26,0.14);
}

/* Badge row (replaces stats) */
.ab-badge-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--olive-border);
}

.ab-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--cream);
  border: 1px solid var(--olive-border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  flex: 1;
  box-shadow: 0 4px 16px rgba(74,82,64,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.ab-badge:hover {
  box-shadow: 0 8px 28px rgba(74,82,64,0.13);
  transform: translateY(-2px);
}

.ab-badge-icon-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(74,82,64,0.08);
  color: var(--olive);
}
.ab-badge-icon-wrap svg { width: 26px; height: 26px; }

/* Green variant for "proven track record" */
.ab-badge-icon-green {
  background: rgba(34,139,34,0.1);
  color: #2a7a2a;
  box-shadow: 0 0 0 6px rgba(34,139,34,0.06), 0 0 14px rgba(34,139,34,0.15);
}

.ab-badge-label {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--charcoal);
  font-family: var(--font-body);
}

/* ── DIFFERENTIATORS ── */
.ab-diff {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.ab-diff-bg {
  position: absolute;
  inset: 0;
  background: var(--cream-2);
  z-index: 0;
}
.ab-diff-bg::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid var(--olive-border);
  opacity: 0.5;
}

.ab-diff-header {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-bottom: 4rem;
}

.ab-diff-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .ab-diff-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .ab-diff-grid { grid-template-columns: 1fr 1fr 1fr; } }

.ab-diff-card {
  background: var(--cream);
  border: 1px solid var(--olive-border);
  border-radius: 6px;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ab-diff-card:hover {
  box-shadow: 0 12px 40px rgba(74,82,64,0.1);
  transform: translateY(-3px);
}
.ab-diff-icon {
  width: 48px; height: 48px;
  color: var(--olive);
  margin-bottom: 1.25rem;
}
.ab-diff-icon svg { width: 100%; height: 100%; }
.ab-diff-card h3 { font-size: 1.1rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--charcoal); }
.ab-diff-card p  { font-size: 0.92rem; line-height: 1.75; }

/* ── TEAM VISUAL FULLWIDTH ── */
.ab-team-visual { padding: 0; }

.ab-team-img-wrap {
  position: relative;
  height: clamp(300px, 55vw, 680px);
  overflow: hidden;
}

/* Centered top — object-position center top */
.ab-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ab-team-img-caption {
  position: absolute;
  bottom: 1.5rem; right: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.6);
  background: rgba(20,20,16,0.45);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* ── VALUES ── */
.ab-values { padding: 7rem 0; }

.ab-values-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 900px) {
  .ab-values-inner {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }
}

.ab-values-left h2 { margin-bottom: 1.75rem; }
.ab-values-left p  { margin-bottom: 1.2rem; font-size: 1.05rem; }

/* Value items */
.ab-value-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--olive-border);
}

/* First item: no top border */
.ab-value-first { border-top: none !important; }

/* Top row: number+title on left, icon on right */
.ab-value-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.ab-value-num-title {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.ab-value-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--olive-light);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.ab-value-item h4 {
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
  line-height: 1.4;
}

.ab-value-item p { font-size: 0.93rem; line-height: 1.78; }

/* Glowing icon on right */
.ab-value-glow-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--olive);
  background: rgba(74,82,64,0.07);
  box-shadow:
    0 0 0 5px rgba(74,82,64,0.05),
    0 0 18px rgba(74,82,64,0.18);
}
.ab-value-glow-icon svg { width: 20px; height: 20px; }

/* ── STUDIO SECTION ── */
.ab-studio {
  background: var(--cream-2);
  padding: 7rem 0;
}

.ab-studio-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 900px) {
  .ab-studio-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

.ab-studio-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 1rem;
}
.ab-studio-img-a {
  grid-column: 1 / -1;
  border-radius: 4px;
  overflow: hidden;
}
.ab-studio-img-b,
.ab-studio-img-c {
  border-radius: 4px;
  overflow: hidden;
}
.ab-studio-text h2 { margin-bottom: 1.5rem; }
.ab-studio-text p  { font-size: 1.05rem; line-height: 1.8; }

/* ── CTA STRIP ── */
.ab-cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.ab-cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.ab-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(20,20,16,0.90) 0%, rgba(20,20,16,0.75) 100%);
}

/* Single-row layout on desktop */
.ab-cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.ab-cta-content h2 {
  color: var(--cream);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  margin-bottom: 1.2rem;
  /* One line on desktop */
  white-space: nowrap;
}
@media (max-width: 700px) {
  .ab-cta-content h2 { white-space: normal; }
}

.ab-cta-content h2 em { color: rgba(245,242,235,0.65); }

.ab-cta-content p {
  color: rgba(245,242,235,0.58);
  font-size: 1rem;
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.ab-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.ab-cta-secondary {
  border-color: rgba(245,242,235,0.3) !important;
  color: var(--cream) !important;
}
.ab-cta-secondary:hover { border-color: rgba(245,242,235,0.7) !important; }

/* ── FOOTER DARK ── */
footer.footer-dark {
  background: #000 !important;
}

footer.footer-dark .footer-copy {
  color: rgba(255,255,255,0.35);
}

footer.footer-dark .footer-desc {
  color: rgba(255,255,255,0.45);
}

footer.footer-dark .footer-col ul li a {
  color: rgba(255,255,255,0.5);
}
footer.footer-dark .footer-col ul li a:hover {
  color: rgba(255,255,255,0.85);
}
footer.footer-dark .footer-col ul li {
  color: rgba(255,255,255,0.45);
}

/* White nav column headings */
.footer-heading-white {
  color: #ffffff !important;
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  .ab-hero { min-height: 88vh; }
  .ab-hero-content { max-width: 100%; 
    margin-top: 3vh;
    margin-left: 0;}

  .ab-img-stack { height: 340px; }
  .ab-img-main  { width: 88%; height: 280px; }
  .ab-img-accent{ width: 60%; height: 150px; }

  .ab-badge-row { flex-direction: column; }

  .ab-team-img-wrap { height: 260px; }

  .ab-studio-imgs { grid-template-rows: 200px 140px; }

  .ab-cta-btns { flex-direction: column; align-items: flex-start; }

  .ab-value-glow-icon { display: none; }
}
