/* ─── PAGE HERO ── */
.page-hero--img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.page-hero--img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 0;
}
.page-hero--img .page-hero-inner { position: relative; z-index: 1; }
.page-hero--img .hero-label,
.page-hero--img h1,
.page-hero--img p { text-shadow: 0 1px 6px rgba(0,0,0,.4); }

.page-hero {
  padding: 8rem 0 4.5rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.hero-label .dot { width: .45rem; height: .45rem; background: #fff; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 1rem;
}
.page-hero p { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 36rem; margin: 0 auto; line-height: 1.7; }

/* ─── STATS STRIP ── */
.stats-strip {
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.stats-strip-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 2.5rem;
  flex: 1;
  min-width: 160px;
  border-right: 1px solid var(--gray-100);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-lbl { font-size: .75rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 640px) {
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .stat-item:last-child { border-bottom: none; }
}

/* ─── STORY SECTION ── */
.story-section { padding: 5rem 0 4rem; background: var(--gray-50); }
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .story-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

.story-img-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 8px 48px rgba(0,0,0,.15);
}
.story-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.story-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: .9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.story-badge-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(168,135,74,.1);
  border-radius: .65rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.story-badge-icon svg { width: 1.1rem; height: 1.1rem; color: var(--primary); }
.story-badge-text strong { display: block; font-size: .85rem; font-weight: 800; color: var(--gray-900); }
.story-badge-text span { font-size: .72rem; color: var(--gray-500); }

.story-content { display: flex; flex-direction: column; gap: 1.25rem; }
.section-tag {
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .15em;
}
.story-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.4px;
  line-height: 1.15;
}
.story-content p {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.85;
}
.story-content p strong { color: var(--gray-900); }

/* ─── FOUNDER SECTION ── */
.founder-section { padding: 4.5rem 0 5rem; background: #fff; }
.founder-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .founder-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

.founder-card {
  background: var(--gray-50);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.founder-photo {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center top;
  width: 100%;
}
.founder-card-body { padding: 1.5rem; }
.founder-name { font-size: 1.1rem; font-weight: 800; color: var(--gray-900); margin-bottom: .2rem; }
.founder-role { font-size: .78rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.founder-socials { display: flex; gap: .5rem; }
.founder-social {
  width: 2.2rem; height: 2.2rem;
  border-radius: .5rem;
  background: rgba(168,135,74,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.founder-social:hover { background: var(--primary); }
.founder-social svg { width: 1rem; height: 1rem; color: var(--primary); transition: color .2s; }
.founder-social:hover svg { color: #fff; }

.founder-text { display: flex; flex-direction: column; gap: 1.2rem; padding-top: .5rem; }
.founder-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.4px;
  line-height: 1.2;
}
.founder-text p { font-size: .95rem; color: var(--gray-500); line-height: 1.85; }
.founder-text p strong { color: var(--gray-900); }
.founder-quote {
  border-left: 3px solid var(--primary);
  padding: 1rem 1.25rem;
  background: rgba(168,135,74,.05);
  border-radius: 0 .75rem .75rem 0;
  font-size: .95rem;
  font-style: italic;
  color: var(--gray-700, #374151);
  line-height: 1.7;
}

/* ─── VALUES SECTION ── */
.values-section { padding: 4.5rem 0 5.5rem; background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.3px;
  margin-top: .5rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; } }
@media (max-width: 1060px) and (min-width: 761px) { .values-grid { grid-template-columns: 1fr 1fr; } }

.value-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.value-icon {
  width: 3rem; height: 3rem;
  background: rgba(168,135,74,.1);
  border-radius: .85rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.value-icon svg { width: 1.3rem; height: 1.3rem; color: var(--primary); }
.value-card h3 { font-size: .95rem; font-weight: 800; color: var(--gray-900); margin-bottom: .6rem; }
.value-card p { font-size: .83rem; color: var(--gray-500); line-height: 1.75; }

/* ─── CTA SECTION ── */
.ona-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--secondary) 100%);
  text-align: center;
}
.ona-cta h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #fff; letter-spacing: -.3px; margin-bottom: .75rem; }
.ona-cta p { color: rgba(255,255,255,.75); font-size: .95rem; max-width: 32rem; margin: 0 auto 2rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff;
  color: var(--primary-dark);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 700;
  padding: .85rem 1.75rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 700;
  padding: .85rem 1.75rem;
  border-radius: 9999px;
  border: 2px solid rgba(255,255,255,.5);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }
