/* ══════════════════════════════════════════════
   Ceylon Breathe Ayurveda — about.css
   Supplementary stylesheet for about.html.
   All colours are drawn from the tokens already
   defined in style.css (--pink, --violet, --indigo,
   --teal-lt, --cream, --ink). One additional token,
   --gold, formalises the warm accent already used
   on the site's circular photo frames.
   ══════════════════════════════════════════════ */

:root {
  --gold:     #cfa859;
  --gold-lt:  #e9d9ae;
  --grad-band: linear-gradient(160deg, #1a0a2e 0%, #2d1050 45%, #150a38 75%, #0e1a3a 100%);
}

/* Shared gold rule / divider ------------------------------------------------ */
.gold-rule {
  width: 64px; height: 2px; margin: 18px 0 26px;
  background: linear-gradient(90deg, var(--gold), transparent);
  position: relative;
}
.gold-rule::after {
  content: ''; position: absolute; left: 74px; top: -9px;
  width: 14px; height: 14px; opacity: .8;
  background-color: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22p%22%20d%3D%22M12%2012C10.2%209%2010%205.5%2012%202c2%203.5%201.8%207%200%2010Z%22/%3E%3C/defs%3E%3Cuse%20href%3D%22%23p%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%2860%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28120%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28180%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28240%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28300%2012%2012%29%22/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22p%22%20d%3D%22M12%2012C10.2%209%2010%205.5%2012%202c2%203.5%201.8%207%200%2010Z%22/%3E%3C/defs%3E%3Cuse%20href%3D%22%23p%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%2860%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28120%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28180%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28240%2012%2012%29%22/%3E%3Cuse%20href%3D%22%23p%22%20transform%3D%22rotate%28300%2012%2012%29%22/%3E%3C/svg%3E") no-repeat center / contain;
}
.gold-rule-center { margin: 18px auto 26px; }
.gold-rule-center::after { left: 50%; transform: translateX(64px); }




/* ════════════════════════════════════════════════
   ABOUT HERO
   ════════════════════════════════════════════════ */
.about-hero{
  position:relative;
  height:85vh;
  min-height:650px;
  background:
    linear-gradient(rgba(20,12,40,.55), rgba(20,12,40,.55)),
    url("../assets/images/about_us_bg.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

.about-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.15),
    rgba(18,10,34,.45)
  );
}

.about-hero-content{
  position:relative;
  z-index:2;
  max-width:850px;
  padding:0 30px;
}

.about-hero h1{
  color:#fff;
  font-size:clamp(42px,6vw,72px);
  line-height:1.15;
  margin:20px 0;
}

.about-hero h1 span{
  display:block;
  color:var(--gold);
}

.about-hero p{
  color:rgba(255,255,255,.9);
  max-width:650px;
  margin:auto;
  font-size:17px;
  line-height:1.8;
}

.about-hero .section-tag{
  color:var(--gold-lt);
}


/* ════════════════════════════════════════════════
   ABOUT INTRO — editorial two column
   ════════════════════════════════════════════════ */
.about-intro {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 0 5%;
    padding: 150px 6% 90px;
    scroll-margin-top: 90px;

    background:
        linear-gradient(rgba(255,255,255,.93), rgba(255,255,255,.93)),
        url("../assets/images/about_us_bg.png") center top no-repeat,
        #fff;


    background-position: left top, center calc(100% + 20px);
}
.about-intro-text .section-body { margin-bottom: 14px; font-size: 14px; }
.about-intro-text .section-body:last-child { margin-bottom: 0; }

.about-intro-image {
  position: relative; aspect-ratio: 4/4.6; max-width: 460px; margin: 0 auto;
}
.about-intro-frame {
  position: absolute; top: -18px; right: -18px; bottom: 18px; left: 18px;
  border: 2px solid var(--gold); border-radius: 4px 60px 4px 4px;
  z-index: 1;
}
.about-intro-image img {
  position: relative; z-index: 2;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 4px 60px 4px 4px;
  box-shadow: 0 24px 50px rgba(74,53,145,.22);
}
.about-intro-badge {
  position: absolute; z-index: 3; left: -28px; bottom: 36px;
  background: #fff; border-radius: 50%;
  width: 96px; height: 96px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(74,53,145,.28);
  border: 1px solid rgba(207,168,89,.4);
}
.badge-num {
  font-family: var(--font-display); font-size: 30px; font-weight: 600;
  color: var(--pink); line-height: 1;
}
.badge-label {
  font-size: 8.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--indigo); line-height: 1.35; margin-top: 4px; text-align: center;
}


/* ════════════════════════════════════════════════
   VISION · MISSION · VALUES — dark contrast band
   (mirrors the homepage's philosophy banner rhythm)
   ════════════════════════════════════════════════ */
.vmv-section {
  background: var(--grad-band);
  padding: 84px 6% 76px;
}

/* Top row — Vision & Mission, paired and centred */
.vmv-top {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: start; gap: 0 48px;
}
.vmv-divider { width: 1px; align-self: stretch; background: rgba(233,217,174,.16); }

.vmv-card p { font-size: 13px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.62); }

.vmv-icon {
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  font-size: 20px; color: var(--gold-lt); margin-bottom: 22px;
}
.vmv-icon-sm { width: 40px; height: 40px; font-size: 16px; margin-bottom: 0; }

.vmv-card h3,
.vmv-values-heading h3 {
  font-family: var(--font-display); font-size: 21px; font-weight: 500;
  color: #fff; margin-bottom: 14px; letter-spacing: .01em;
}

/* Divider between the two rows */
.vmv-rule {
  width: 64px; height: 1px; margin: 56px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Bottom — Values, compact horizontal grid */
.vmv-values-block { max-width: 1100px; margin: 44px auto 0; text-align: center; }
.vmv-values-heading {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 34px;
}
.vmv-values-heading h3 { margin-bottom: 0; }

.vmv-values-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.vmv-value-item {
  padding: 0 20px; border-left: 1px solid rgba(233,217,174,.16);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: transform .3s ease;
}
.vmv-value-item:hover { transform: translateY(-4px); }
.vmv-value-item:hover strong { color: #fff; }
.vmv-value-item:first-child { border-left: none; padding-left: 0; }
.value-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold-lt); font-size: 15px;
  margin-bottom: 6px; transition: background .3s ease, color .3s ease;
}
.vmv-value-item:hover .value-icon { background: var(--gold); color: #1a0a2e; }
.vmv-value-item strong {
  font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: .02em;
  color: var(--gold-lt); transition: color .3s ease;
}
.vmv-value-item span {
  font-size: 11.5px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.55);
}


/* ════════════════════════════════════════════════
   TEAM — Founder · Leadership · Management
   ════════════════════════════════════════════════ */
.team-section { padding: 90px 6% 96px; background: #fff; }
.team-section-header { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.team-section-header .section-tag { display: block; }
.team-section-header .section-title { margin-bottom: 0; }

.team-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.team-card {
  text-align: center; padding: 0 30px;
  border-right: 1px solid rgba(123,58,181,.12);
}
.team-card:first-child { padding-left: 0; }
.team-card:last-child { border-right: none; padding-right: 0; }

.team-label {
  display: block; font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: .06em; color: var(--pink); text-transform: uppercase; margin-bottom: 22px;
}
.team-label em { font-style: normal; color: var(--indigo); }

.team-photo {
  position: relative;
  width: 158px; height: 158px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 20px;
  border: 3px solid var(--gold-lt);
  box-shadow: 0 12px 30px rgba(74,53,145,.18);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.team-card:hover .team-photo {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 22px 42px rgba(74,53,145,.28);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.team-photo-watermark {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 70px; color: var(--gold-lt); opacity: .35;
  background: #f5f0fb;
}
.team-photo-placeholder {
  background: linear-gradient(135deg, #e8e0f5, #f5e9f0);
  display: flex; align-items: center; justify-content: center;
  font-size: 54px; color: #b8a4d6;
}
.team-name {
  font-family: var(--font-display); font-size: 21px; font-weight: 600;
  color: var(--indigo); margin-bottom: 6px; line-height: 1.25;
}
.team-role {
  font-size: 12px; font-weight: 600; letter-spacing: .03em; color: var(--pink);
  margin-bottom: 18px; line-height: 1.6; text-transform: uppercase;
}
.team-creds {
  list-style: none; text-align: left; margin-bottom: 16px;
  display: flex; flex-direction: column; gap: 7px;
  padding-top: 16px; border-top: 1px solid rgba(123,58,181,.12);
}
.team-creds li {
  font-size: 11.5px; font-weight: 500; color: #4a4055; line-height: 1.55;
  padding-left: 15px; position: relative;
}
.team-creds li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.team-bio {
  font-size: 12.5px; font-weight: 300; line-height: 1.85; color: #6a5f75;
  text-align: left; margin-bottom: 10px;
}
.team-bio:last-child { margin-bottom: 0; }


/* ════════════════════════════════════════════════
   OUR HERITAGE — generational timeline (signature)
   ════════════════════════════════════════════════ */
/*==================================
  OUR HERITAGE
==================================*/

.heritage-section {
    padding: 90px 6% 100px;
    background: #F5EEE4;
}

.heritage-content{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:0.9fr 1.1fr;

    align-items:center;

    gap:80px;

}

.heritage-text{

    max-width:560px;

}

.heritage-text .section-body{

    margin-bottom:18px;

    color:#5e544d;

    line-height:1.9;

}

.heritage-image{

    display:flex;

    justify-content:flex-end;

}

.heritage-image img{

    width:100%;

    max-width:760px;

    display:block;

}

/* ════════════════════════════════════════════════
   OUR PROMISE — dark contrast band
   ════════════════════════════════════════════════ */
.promise-section {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  background: var(--grad-band);
  padding: 90px 6%;
}
.promise-left { display: flex; gap: 24px; align-items: flex-start; padding-right: 6%; }
.promise-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold-lt); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.promise-left .section-tag { color: var(--gold-lt); display: block; margin-bottom: 10px; }
.promise-left h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 500;
  color: #fff; margin-bottom: 14px; line-height: 1.25;
}
.promise-left p {
  font-size: 13px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.62);
  margin-bottom: 12px;
}
.promise-left p:last-child { margin-bottom: 0; }

.promise-quote {
  position: relative; padding: 6px 0 6px 40px;
  border-left: 1px solid rgba(233,217,174,.3);
  display: flex; flex-direction: column; justify-content: center;
}
.promise-quote .quote-mark {
  font-family: var(--font-display); font-size: 64px; color: var(--gold);
  opacity: .6; line-height: 1; margin-bottom: 4px;
}
.promise-quote blockquote {
  font-family: var(--font-display); font-size: clamp(19px, 2.2vw, 26px);
  font-style: italic; color: #fff; line-height: 1.5;
}
.quote-lotus-mark { display: block; margin-top: 18px; font-size: 20px; opacity: .5; }


/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .about-intro { grid-template-columns: 1fr; padding-top: 110px; gap: 34px 0; }
  .about-intro-image { order: -1; max-width: 300px; }
  .vmv-values-grid { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .vmv-value-item:nth-child(3n+1) { border-left: none; padding-left: 0; }
  .team-grid { grid-template-columns: 1fr; gap: 56px; }
  .team-card { border-right: none !important; padding: 0 !important; }
  .heritage-timeline { grid-template-columns: 1fr; gap: 48px; }
  .vine-desktop { display: none; }
  .vine-mobile {
    display: block; position: absolute; inset: 0; width: 100%; height: 100%;
  }
  .vine-mobile .vine-path { stroke: url(#vineGradV); stroke-width: .8; }
  .promise-section { grid-template-columns: 1fr; gap: 40px; }
  .promise-left { padding-right: 0; }
  .promise-quote { border-left: none; padding-left: 0; padding-top: 24px; border-top: 1px solid rgba(233,217,174,.3); }
}
@media (max-width: 720px) {
  .vmv-top { grid-template-columns: 1fr; gap: 36px 0; }
  .vmv-divider { display: none; }
  .vmv-values-grid { grid-template-columns: 1fr 1fr; }
  .vmv-value-item:nth-child(3n+1) { border-left: 1px solid rgba(233,217,174,.16); padding-left: 20px; }
  .vmv-value-item:nth-child(2n+1) { border-left: none; padding-left: 0; }
}
@media (max-width: 480px) {
  .about-intro { padding-top: 100px; gap: 26px 0; }
  .about-intro-image { max-width: 240px; }
  .about-intro-badge { width: 78px; height: 78px; left: -14px; }
  .badge-num { font-size: 24px; }
  .vmv-values-grid { grid-template-columns: 1fr; }
  .vmv-value-item { border-left: none !important; padding-left: 0 !important; }
}
@media(max-width:991px){

.heritage-content{

    grid-template-columns:1fr;

    gap:60px;

}

.heritage-image{

    justify-content:center;

}

.heritage-image img{

    max-width:550px;

}

}