/* ═══════════════════════════════════════════    
   COMMON SECTION ELEMENTS  
═══════════════════════════════════════════ */
section {
  padding: 96px 0;
}

.section-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
  display: block;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.18;
  margin-bottom: 16px;
}

.section-heading em {
  font-style: italic;
  color: var(--saffron);
}

.section-sub {
  font-size: .92rem;
  color: var(--text-warm);
  line-height: 1.85;
  max-width: 560px;
}

.ornament {
  width: 48px;
  height: 3px;
  background: var(--saffron);
  border-radius: 2px;
  margin-bottom: 24px;
}

.ornament.cx {
  margin-left: auto;
  margin-right: auto;
}

.btn-primary-v {
  background: var(--saffron);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  font-size: .86rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(232, 114, 42, .32);
}

.btn-primary-v:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 114, 42, .38);
}

.btn-outline-v {
  background: transparent;
  color: var(--brown);
  padding: 12px 30px;
  border-radius: 50px;
  border: 1.5px solid var(--brown);
  font-size: .86rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-v:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost-v {
  background: transparent;
  color: var(--saffron);
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--saffron);
  font-size: .86rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost-v:hover {
  background: var(--saffron);
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   HERO  (page banner)
═══════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;
}

.page-hero-img {
  position: absolute;
  inset: 0;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(44, 24, 8, .72) 0%,
      rgba(120, 70, 30, .45) 50%,
      rgba(232, 114, 42, .18) 100%);
}

/* floating geometric accents */
.hero-geo {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
}

.hero-geo-1 {
  width: 360px;
  height: 360px;
  top: -80px;
  right: -80px;
  background: var(--saffron);
}

.hero-geo-2 {
  width: 200px;
  height: 200px;
  bottom: 40px;
  left: 30px;
  background: var(--gold);
}

.hero-geo-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 56px 0 52px;
  width: 100%;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 20px;
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fadeSlideDown .8s .2s both;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-14px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeSlideDown .8s .35s both;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
  max-width: 540px;
  animation: fadeSlideDown .8s .5s both;
}

/* ── Breadcrumb ── */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(232, 114, 42, .1);
  padding: 14px 0;
}

.breadcrumb-bar .breadcrumb {
  margin: 0;
  font-size: .76rem;
  color: var(--text-warm);
  align-items: center;
}

.breadcrumb-bar .breadcrumb-item a {
  color: var(--saffron);
  font-weight: 500;
}

.breadcrumb-bar .breadcrumb-item.active {
  color: var(--text-warm);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--saffron);
  content: "›";
  font-size: 1rem;
}

/* ── Quick stats strip below hero ── */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--beige);
  padding: 0;
}

.stats-strip .inner {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid var(--beige);
}

.stat-box {
  flex: 1;
  min-width: 150px;
  padding: 28px 24px;
  border-right: 1px solid var(--beige);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.stat-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform .35s;
}

.stat-box:hover {
  background: var(--saffron-mist);
}

.stat-box:hover::after {
  transform: scaleX(1);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-warm);
  margin-top: 4px;
}

.stat-icon {
  font-size: 1.2rem;
  color: var(--saffron);
  opacity: .35;
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════════
   2.2  OUR STORY
═══════════════════════════════════════════ */
.story-section {
  background: var(--ivory);
}

.story-img-stack {
  position: relative;
}

.story-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}

.story-img-main img {
  height: 560px;
  object-fit: cover;
  object-position: left;
}

.story-img-inset {
  position: absolute;
  bottom: -32px;
  right: -28px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  border: 5px solid var(--white);
}

.story-img-inset img {
  height: 128px;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  top: 28px;
  left: -24px;
  background: var(--saffron);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 8px 32px rgba(232, 114, 42, .4);
  text-align: center;
  min-width: 110px;
}

.story-badge .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.story-badge .sm {
  font-size: .62rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 4px;
  opacity: .9;
}

.story-para {
  font-size: .9rem;
  color: var(--text-warm);
  line-height: 1.9;
  margin-bottom: 20px;
}

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

.story-quote {
  background: var(--saffron-pale);
  border-left: 4px solid var(--saffron);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.story-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--brown-dark);
  margin: 0;
  line-height: 1.6;
}

.story-quote cite {
  font-size: .72rem;
  color: var(--saffron);
  font-weight: 600;
  font-style: normal;
  display: block;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   2.3  MISSION / VISION / VALUES
═══════════════════════════════════════════ */
.mvv-section {
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

.mvv-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 114, 42, .06) 0%, transparent 70%);
  pointer-events: none;
}

.mvv-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 155, 118, .07) 0%, transparent 70%);
  pointer-events: none;
}

.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.mvv-card:hover::before {
  transform: scaleX(1);
}

.mvv-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.mvv-card:hover .mvv-icon-wrap {
  transform: rotate(6deg) scale(1.1);
}

.mvv-icon-wrap.mission {
  background: rgba(232, 114, 42, .1);
}

.mvv-icon-wrap.vision {
  background: rgba(201, 150, 58, .1);
}

.mvv-icon-wrap.values {
  background: rgba(122, 155, 118, .12);
}

.mvv-icon-wrap i {
  font-size: 1.7rem;
}

.mvv-icon-wrap.mission i {
  color: var(--saffron);
}

.mvv-icon-wrap.vision i {
  color: var(--gold);
}

.mvv-icon-wrap.values i {
  color: var(--sage);
}

.mvv-card h3 {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.mvv-card p {
  font-size: .84rem;
  color: var(--text-warm);
  line-height: 1.85;
  margin: 0;
}

.value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.value-pill {
  background: rgba(122, 155, 118, .12);
  color: var(--sage);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .72rem;
  font-weight: 600;
  border: 1px solid rgba(122, 155, 118, .25);
  transition: .2s;
}

.value-pill:hover {
  background: var(--sage);
  color: #fff;
}

.value-pill.s {
  background: rgba(232, 114, 42, .1);
  color: var(--saffron);
  border-color: rgba(232, 114, 42, .25);
}

.value-pill.s:hover {
  background: var(--saffron);
  color: #fff;
}

/* ═══════════════════════════════════════════
   2.4  MEET THE FOUNDER
═══════════════════════════════════════════ */
.founder-section {
  background: var(--white);
}

.founder-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  height: 520px;
}

.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.founder-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44, 24, 8, .7), transparent);
  padding: 28px 28px 24px;
}

.founder-img-overlay h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 2px;
}

.founder-img-overlay p {
  font-size: .72rem;
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

.founder-social {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.founder-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .8rem;
  transition: .3s;
}

.founder-social a:hover {
  background: var(--saffron);
}

.founder-content {
  padding-left: 20px;
}

.founder-pull-quote {
  background: var(--saffron);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.founder-pull-quote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .15);
  position: absolute;
  top: -10px;
  left: 16px;
  line-height: 1;
}

.founder-pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

.founder-pull-quote cite {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  font-style: normal;
  display: block;
  margin-top: 12px;
}

.founder-bio p {
  font-size: .87rem;
  color: var(--text-warm);
  line-height: 1.9;
  margin-bottom: 16px;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   2.5  RECOGNITION / AFFILIATIONS
═══════════════════════════════════════════ */
.recognition-section {
  background: var(--ivory);
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.recog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid rgba(232, 114, 42, .08);
}

.recog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(232, 114, 42, .2);
}

.recog-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--saffron-pale);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.recog-card:hover .recog-icon {
  background: var(--saffron);
}

.recog-icon i {
  font-size: 1.5rem;
  color: var(--saffron);
  transition: .3s;
}

.recog-card:hover .recog-icon i {
  color: #fff;
}

.recog-card h5 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.recog-card p {
  font-size: .72rem;
  color: var(--text-warm);
  margin: 0;
}

/* ═══════════════════════════════════════════
   TEAM STRIP (optional visual)
═══════════════════════════════════════════ */
.team-strip {
  background: var(--cream);
}

.care-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.care-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.care-stat-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}

.care-stat-card p {
  font-size: .75rem;
  color: var(--text-warm);
  margin: 6px 0 0;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  background: var(--charcoal);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 114, 42, .14) 0%, transparent 70%);
}

.cta-band::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-band p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .3);
}

.btn-wa:hover {
  background: #20b957;
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════ */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all .3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.float-wa {
  background: #25D366;
  color: #fff;
}

.float-wa:hover {
  background: #20b957;
  color: #fff;
  transform: scale(1.1);
}

.float-call {
  background: var(--saffron);
  color: #fff;
}

.float-call:hover {
  background: var(--brown);
  color: #fff;
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════
   FOOTER  (identical to homepage)
═══════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  padding: 64px 0 0;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--saffron);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 18px;
}

.footer-link {
  display: block;
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 10px;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--saffron-light);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--saffron);
  font-size: .9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: .72rem;
  color: rgba(255, 255, 255, .3);
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.social-icon:hover {
  background: var(--saffron);
}

.social-icon i {
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  transition: color .3s;
}

.social-icon:hover i {
  color: #fff;
}

/* ═══════════════════════════════════════════
   COUNTER ANIMATION
═══════════════════════════════════════════ */
.count-up {
  display: inline-block;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width:991px) {
  .story-img-inset {
    right: -10px;
  }

  .founder-content {
    
    margin-top: 32px;
  }
}

@media (max-width:767px) {
  section {
    padding: 64px 0;
  }

  .story-badge {
    left: 0;
    top: -20px;
  }

  .story-img-inset {
    width: 130px;
    right: 0;
  }

  .story-img-inset img {
    height: 110px;
  }

  .story-img-main img {
    height: 360px;
  }

  .founder-img-wrap {
    height: 380px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links-desktop {
    display: none !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .page-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
}
.story-para {
    font-size: .8rem;
}
.mvv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 26px;
}

.founder-bio p {
    font-size: .8rem;
}
.founder-pull-quote {
    background: var(--saffron);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.founder-pull-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
}



}

@media (max-width:576px) {
  .page-hero {
    min-height: 440px;
  }

  .stats-strip .inner {
    flex-direction: column;
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid var(--beige);
  }
  .page-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
}
.mvv-card p {
    font-size: .75rem;
}







}