/* ============================================================
   Yemaya Group — styles.css
   Version 1 · June 2026
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: #141210;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ── Animations ── */
@keyframes pageIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Page routing ── */
.page { display: none; }
.page.active { display: block; animation: pageIn 0.45s ease both; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #EDE8E2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font: 500 13px/1 'Outfit', sans-serif;
  color: #2A2420;
  text-decoration: none;
  letter-spacing: 0.01em;
  background: none;
  border: none;
  transition: color 0.2s;
}
.nav-link:hover { color: #E07018; }
.nav-link.active { color: #E07018; }
.nav-cta {
  font: 600 13px/1 'Outfit', sans-serif;
  background: #E07018;
  color: #fff !important;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
.nav-cta:hover { background: #C85E10; color: #fff; }

/* ── Practice strips ── */
.strip {
  cursor: pointer;
  transition: background 0.22s ease;
  border-top: 1px solid #EDE8E2;
  padding: 28px 0;
}
.strip:last-of-type { border-bottom: 1px solid #EDE8E2; }
.strip:hover { background: #FEF6EE; }
.strip-title { transition: color 0.22s ease; }
.strip:hover .strip-title { color: #E07018; }

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utility ── */
.inner { max-width: 1160px; margin: 0 auto; }
.divider-orange { width: 32px; height: 2px; background: #E07018; margin-bottom: 16px; }
.label-caps {
  font: 500 10px/1 'Outfit', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B4A89C;
  display: block;
}

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: calc(100vh - 72px);
}
.hero-text {
  padding: 72px 72px 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-tag {
  font: 500 11px/1 'Outfit', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E07018;
  margin-bottom: 28px;
  animation: heroFadeUp 1s ease 0.1s both;
}
.hero h1 {
  font: 800 clamp(52px,5.6vw,84px)/1.02 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  text-wrap: pretty;
  animation: heroFadeUp 1s ease 0.25s both;
}
.hero-sub-heading {
  font: 600 clamp(26px,2.8vw,40px)/1.2 'Outfit', sans-serif;
  color: #E07018;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  animation: heroFadeUp 1s ease 0.35s both;
}
.hero-lead {
  font: 300 17px/1.75 'Outfit', sans-serif;
  color: #6B6058;
  max-width: 460px;
  margin-bottom: 44px;
  animation: heroFadeUp 1s ease 0.45s both;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: heroFadeUp 1s ease 0.55s both;
}
.btn-dark {
  display: inline-block;
  font: 600 13px/1 'Outfit', sans-serif;
  background: #141210;
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  border: none;
  transition: opacity 0.2s;
}
.btn-dark:hover { opacity: 0.8; }
.btn-outline-dark {
  display: inline-block;
  font: 600 13px/1 'Outfit', sans-serif;
  border: 1.5px solid #CEC8C0;
  color: #141210;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-dark:hover { border-color: #141210; background: #f5f5f5; }
.hero-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 20%);
}

/* Intro strip */
.intro-strip {
  padding: 96px 60px;
  background: #F7F3EF;
}
.intro-strip p {
  font: 300 clamp(20px,2vw,27px)/1.65 'Outfit', sans-serif;
  color: #2A2420;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* Practice strips section */
.practice-section { padding: 80px 60px 60px; }
.practice-section .label-caps { margin-bottom: 36px; }
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.strip-title {
  font: 800 clamp(38px,4.2vw,62px)/1 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 9px;
  letter-spacing: -0.035em;
}
.strip.muted .strip-title { color: #C4BAB2; }
.strip-desc {
  font: 400 15px/1 'Outfit', sans-serif;
  color: #9A8F86;
}
.strip.muted .strip-desc { color: #C4BAB2; }
.strip-arrow {
  font: 600 22px/1 'Outfit', sans-serif;
  color: #E07018;
  flex-shrink: 0;
}
.strip.muted .strip-arrow {
  font: 500 11px/1 'Outfit', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C4BAB2;
}

/* Stats */
.stats-section { padding: 100px 60px; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.stat-item { padding-right: 48px; border-right: 1px solid #EDE8E2; }
.stat-item:nth-child(2) { padding: 0 48px; }
.stat-item:nth-child(3) { padding-left: 48px; border-right: none; }
.stat-num {
  font: 800 clamp(68px,7.5vw,104px)/1 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 14px;
  letter-spacing: -0.05em;
}
.stat-num.orange { color: #E07018; }
.stat-label {
  font: 400 14px/1.55 'Outfit', sans-serif;
  color: #9A8F86;
  max-width: 200px;
}

/* Leadership */
.leadership-section { padding: 96px 60px; background: #F7F3EF; }
.leadership-section .label-caps { margin-bottom: 52px; }
.leadership-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 96px;
  align-items: start;
}
.leadership-quote {
  font: 600 clamp(24px,2.6vw,36px)/1.35 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 36px;
}
.leader-name {
  font: 500 13px/1 'Outfit', sans-serif;
  color: #E07018;
  margin-bottom: 5px;
}
.leader-role-sub {
  font: 400 13px/1.4 'Outfit', sans-serif;
  color: #9A8F86;
}
.bio-card {
  background: #fff;
  padding: 36px;
  border-radius: 6px;
  border: 1px solid #EDE8E2;
}
.bio-card h3 {
  font: 700 18px/1.2 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 6px;
}
.bio-card .bio-role {
  font: 500 11px/1 'Outfit', sans-serif;
  color: #E07018;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.bio-card p {
  font: 400 14px/1.75 'Outfit', sans-serif;
  color: #6B6058;
}

/* Principles */
.principles-section { padding: 96px 60px; }
.principles-section .label-caps { margin-bottom: 52px; }
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.principle-card {
  padding: 36px;
  border: 1px solid #EDE8E2;
  border-radius: 4px;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s;
}
.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.principle-card h4 {
  font: 600 17px/1.3 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 12px;
}
.principle-card p {
  font: 400 14px/1.75 'Outfit', sans-serif;
  color: #6B6058;
}

/* CTA banner */
.cta-banner { padding: 88px 60px; background: #E07018; }
.cta-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font: 800 clamp(30px,3.6vw,50px)/1.1 'Outfit', sans-serif;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.cta-inner p {
  font: 300 16px/1.65 'Outfit', sans-serif;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
}
.btn-black {
  display: inline-block;
  font: 600 13px/1 'Outfit', sans-serif;
  background: #141210;
  color: #fff;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.btn-black:hover { opacity: 0.8; }

/* ============================================================
   HEALTH ADVISORY PAGE
   ============================================================ */
.page-hero {
  padding: 80px 60px 72px;
  border-bottom: 1px solid #EDE8E2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
}
.breadcrumb .bc-home {
  font: 400 12px/1 'Outfit', sans-serif;
  color: #9A8F86;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.breadcrumb .bc-sep { color: #CEC8C0; font-size: 12px; }
.breadcrumb .bc-current {
  font: 400 12px/1 'Outfit', sans-serif;
  color: #E07018;
}
.page-hero h1 {
  font: 800 clamp(52px,6vw,88px)/1.02 'Outfit', sans-serif;
  color: #141210;
  letter-spacing: -0.045em;
  max-width: 820px;
}
.page-hero h1 span { color: #E07018; }

/* Split photo + text */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split-photo {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.split-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.split-text {
  padding: 72px 60px;
  background: #F7F3EF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.split-text p {
  font: 300 18px/1.8 'Outfit', sans-serif;
  color: #2A2420;
}

/* Focus areas */
.focus-section { padding: 96px 60px; }
.focus-section .label-caps { margin-bottom: 52px; }
.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.focus-card { padding-top: 24px; border-top: 2px solid #E07018; }
.focus-card h3 {
  font: 700 20px/1.25 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 14px;
}
.focus-card p {
  font: 400 15px/1.75 'Outfit', sans-serif;
  color: #6B6058;
}

/* How we work */
.how-section { padding: 80px 60px; background: #F7F3EF; }
.how-section .label-caps { margin-bottom: 52px; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.how-bar { width: 24px; height: 2px; background: #E07018; margin-bottom: 16px; }
.how-card h4 {
  font: 600 14px/1.35 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 10px;
}
.how-card p {
  font: 400 13px/1.7 'Outfit', sans-serif;
  color: #6B6058;
}

/* ============================================================
   TECHNOLOGIES PAGE
   ============================================================ */
.tech-hero { background: #141210; padding: 120px 60px 72px; }
.tech-hero .breadcrumb .bc-home { color: rgba(255,255,255,0.4); }
.tech-hero .breadcrumb .bc-sep { color: rgba(255,255,255,0.2); }
.tech-hero-tag {
  font: 500 11px/1 'Outfit', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E07018;
  margin-bottom: 16px;
}
.tech-hero h1 {
  font: 800 clamp(64px,7.5vw,108px)/0.95 'Outfit', sans-serif;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}
.tech-hero-sub {
  font: 300 clamp(20px,2.2vw,28px)/1.4 'Outfit', sans-serif;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
}

.tech-overview { background: #1C1915; padding: 64px 60px; border-top: 1px solid rgba(255,255,255,0.06); }
.tech-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.tech-overview-grid .col-label {
  font: 500 10px/1 'Outfit', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
  display: block;
}
.tech-overview-grid p {
  font: 300 16px/1.8 'Outfit', sans-serif;
  color: rgba(255,255,255,0.65);
}

.features-section { padding: 96px 60px; }
.features-section .label-caps { margin-bottom: 52px; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #EDE8E2;
}
.feature-card { padding: 44px 40px; }
.feature-card:nth-child(odd) { background: #fff; }
.feature-card:nth-child(even) { background: #F7F3EF; }
.feature-card h3 {
  font: 700 18px/1.25 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 12px;
}
.feature-card p {
  font: 400 14px/1.75 'Outfit', sans-serif;
  color: #6B6058;
}

.tech-quote-section { padding: 80px 60px; background: #F7F3EF; }
.tech-quote-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
}
.tech-quote-grid blockquote {
  font: 600 clamp(18px,2vw,26px)/1.45 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 28px;
}
.status-card {
  background: #fff;
  padding: 36px;
  border-radius: 6px;
  border: 1px solid #EDE8E2;
}
.status-card .label-caps { margin-bottom: 16px; }
.status-card p {
  font: 400 14px/1.75 'Outfit', sans-serif;
  color: #2A2420;
  margin-bottom: 22px;
}
.btn-orange {
  display: inline-block;
  font: 600 12px/1 'Outfit', sans-serif;
  background: #E07018;
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
.btn-orange:hover { background: #C85E10; }

/* ============================================================
   ENVIRONMENT PAGE
   ============================================================ */
.env-hero { padding: 88px 60px 80px; background: #F7F3EF; }
.env-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E07018;
  color: #fff;
  font: 600 10px/1 'Outfit', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.env-hero h1 {
  font: 800 clamp(50px,5.8vw,86px)/1.04 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 28px;
  letter-spacing: -0.04em;
  max-width: 780px;
}
.env-hero-lead {
  font: 300 18px/1.75 'Outfit', sans-serif;
  color: #6B6058;
  max-width: 560px;
}

.env-foundation { padding: 88px 60px; }
.env-foundation-grid {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 80px;
  align-items: start;
}
.env-foundation-grid .label-caps { margin-bottom: 24px; }
.env-foundation-grid p {
  font: 400 16px/1.8 'Outfit', sans-serif;
  color: #2A2420;
  margin-bottom: 20px;
}
.env-pull-quote {
  font: 600 clamp(20px,2.1vw,26px)/1.45 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 24px;
}

.env-areas { padding: 80px 60px; background: #F7F3EF; }
.env-areas .label-caps { margin-bottom: 48px; }
.env-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.env-area-card { padding-top: 22px; border-top: 2px solid #E07018; }
.env-area-card h3 {
  font: 700 17px/1.3 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 12px;
}
.env-area-card p {
  font: 400 14px/1.75 'Outfit', sans-serif;
  color: #6B6058;
}

.env-register { padding: 88px 60px; }
.env-register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.env-register h2 {
  font: 800 clamp(26px,2.8vw,38px)/1.2 'Outfit', sans-serif;
  color: #141210;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.env-register > .env-register-grid > div:first-child > p {
  font: 300 16px/1.75 'Outfit', sans-serif;
  color: #6B6058;
  margin-bottom: 28px;
}
.soon-card {
  background: #F7F3EF;
  padding: 40px;
  border-radius: 6px;
}
.soon-card .label-caps { margin-bottom: 20px; }
.soon-card .soon-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #EDE8E2;
  padding: 16px 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.soon-card .soon-link:last-child {
  border-bottom: none;
  margin-top: 4px;
}
.soon-card .soon-link span:first-child {
  font: 500 15px/1 'Outfit', sans-serif;
  color: #141210;
}
.soon-card .soon-link span:last-child {
  color: #E07018;
  font-size: 16px;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #141210; padding: 60px 60px 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-logo img { height: 36px; width: auto; margin-bottom: 18px; opacity: 0.9; }
.footer-desc {
  font: 300 13px/1.8 'Outfit', sans-serif;
  color: rgba(255,255,255,0.38);
  max-width: 240px;
}
.footer-col h5 {
  font: 500 10px/1 'Outfit', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E07018;
  margin-bottom: 20px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-links a,
.footer-col-links button {
  font: 400 13px/1 'Outfit', sans-serif;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  font-family: inherit;
}
.footer-col-links a:hover,
.footer-col-links button:hover { color: rgba(255,255,255,0.9); }
.footer-col-links .soon-item { color: rgba(255,255,255,0.28); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font: 300 11px/1 'Outfit', sans-serif;
  color: rgba(255,255,255,0.22);
}
.footer-bottom .footer-location {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}
