/* =========================================================
ABOUT PAGE — styles
========================================================= */


/* =========================================================
PAGE BASE
========================================================= */

body.about-body{
  background: #ffffff;
}


/* =========================================================
HERO
========================================================= */

.about-hero{
  position: relative;
  background: #1a1f3c;
  color: #fff;

  padding: 150px 24px 90px;
  text-align: center;
  overflow: hidden;
}

.about-hero::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a84c, #e8d28d, #c9a84c, transparent);
}

.about-hero::after{
  content: '';
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.about-hero-inner{
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.about-eyebrow{
  display: inline-block;

  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;

  color: #c9a84c;

  padding: 6px 14px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 999px;

  margin-bottom: 22px;
}

.about-title{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;

  color: #fff;
  margin: 0 0 18px;
}

.about-title em{
  color: #c9a84c;
  font-style: italic;
}

.about-lede{
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
  margin: 0 auto;
}


/* =========================================================
SECTION — MISSION (centered statement)
========================================================= */

.about-mission{
  background: #faf6ee;
  padding: 100px 24px;
  text-align: center;
}

.about-mission-inner{
  max-width: 820px;
  margin: 0 auto;
}

.about-section-eyebrow{
  display: block;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 14px;
}

.about-mission-statement{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.35;
  color: #1a1f3c;
  letter-spacing: -0.005em;

  margin: 0;
}

.about-mission-statement em{
  font-style: italic;
  color: #c9a84c;
}


/* =========================================================
SECTION — STORY (prose with side line)
========================================================= */

.about-story{
  background: #ffffff;
  padding: 100px 24px;
}

.about-story-inner{
  max-width: 760px;
  margin: 0 auto;
}

.about-story h2{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  color: #1a1f3c;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  text-align: center;
}

.about-story p{
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 1.05rem;
  color: #3a3d4a;
  line-height: 1.75;
  margin: 0 0 18px;
}

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

.about-story strong{
  color: #1a1f3c;
  font-weight: 600;
}


/* =========================================================
SECTION — VALUES (3-card grid)
========================================================= */

.about-values{
  background: #faf6ee;
  padding: 100px 24px;
}

.about-values-inner{
  max-width: 1180px;
  margin: 0 auto;
}

.about-values-head{
  text-align: center;
  margin-bottom: 60px;
}

.about-values-head h2{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  color: #1a1f3c;
  letter-spacing: -0.01em;
  margin: 14px 0 0;
}

.about-values-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-value-card{
  position: relative;
  background: #ffffff;
  border: 1px solid #e8e0d0;
  border-radius: 16px;
  padding: 32px 28px;

  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.about-value-card:hover{
  transform: translateY(-4px);
  border-color: #c9a84c;
  box-shadow: 0 16px 40px rgba(15, 18, 36, 0.08);
}

.about-value-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;
  border-radius: 14px;

  background: rgba(201, 168, 76, 0.12);
  color: #c9a84c;

  margin-bottom: 22px;
  transition: background .3s ease, color .3s ease;
}

.about-value-card:hover .about-value-icon{
  background: #c9a84c;
  color: #fff;
}

.about-value-icon svg{
  width: 26px;
  height: 26px;
}

.about-value-card h3{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #1a1f3c;
  margin: 0 0 12px;
}

.about-value-card p{
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}


/* =========================================================
SECTION — CTA (final)
========================================================= */

.about-cta{
  background: #1a1f3c;
  color: #fff;
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::after{
  content: '';
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.16) 0%, transparent 60%);
  pointer-events: none;
}

.about-cta-inner{
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.about-cta h2{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  line-height: 1.15;
}

.about-cta p{
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-buttons{
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 14px 28px;

  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;

  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;

  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
}

.about-btn-primary{
  background: #c9a84c;
  color: #1a1f3c;
}

.about-btn-primary:hover{
  background: #e8d28d;
  transform: translateY(-2px);
}

.about-btn-outline{
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.about-btn-outline:hover{
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}


/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 900px){

  .about-values-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

}

@media (max-width: 768px){

  .about-hero{
    padding: 110px 20px 70px;
  }

  .about-mission,
  .about-story,
  .about-values,
  .about-cta{
    padding: 70px 20px;
  }

  .about-value-card{
    padding: 26px 22px;
  }

}