/* ========================================
   GLOBAL
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fffafc;
  color: #191919;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* =========================================
   ABOUT HERO
========================================= */

.about-hero{
  position: relative;
  min-height: 92vh;
  padding: 140px 8% 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background:
    radial-gradient(
      circle at top left,
      rgba(255,255,255,0.95),
      transparent 38%
    ),

    radial-gradient(
      circle at bottom right,
      rgba(255, 206, 224, 0.55),
      transparent 35%
    ),

    linear-gradient(
      135deg,
      #fff9fb 0%,
      #fff1f5 45%,
      #ffe7ef 100%
    );
}

/* =========================================
   SOFT SHAPES
========================================= */

.about-hero::before{
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  top: -180px;
  left: -140px;
  filter: blur(15px);
}

.about-hero::after{
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 188, 214, 0.23);
  bottom: -160px;
  right: -120px;
  filter: blur(10px);
}

/* =========================================
   CONTENT
========================================= */

.about-hero-content{
  position: relative;
  z-index: 5;
  max-width: 850px;
}

/* =========================================
   KICKER
========================================= */

.about-kicker{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #e15b8f;
  margin-bottom: 24px;
}

/* =========================================
   HEADING
========================================= */

.about-hero h1{
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 1;
  font-weight: 700;
  color: #181818;
  margin-bottom: 10px;
}

.about-hero h1 span{
  display: block;
  margin-top: 8px;

  font-family: "Great Vibes", cursive;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 400;
  line-height: 1;

  color: #ef6c9c;
}

/* =========================================
   TEXT
========================================= */

.about-hero-text{
  max-width: 560px;
  margin: 28px auto 38px;

  font-size: 15px;
  line-height: 1.9;
  color: #5b5b5b;
}

/* =========================================
   BUTTON
========================================= */

.about-hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 190px;
  height: 58px;

  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #ff5f9b,
    #ea4b87
  );

  color: white;
  text-decoration: none;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;

  box-shadow:
    0 18px 40px rgba(234,75,135,0.28);

  transition: 0.35s ease;
}

.about-hero-btn:hover{
  transform: translateY(-4px);

  background: #111;

  box-shadow:
    0 25px 45px rgba(0,0,0,0.18);
}

/* =========================================
   OPTIONAL BLUR LIGHTS
========================================= */

.about-hero-light{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.about-hero-light.one{
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,0.6);

  top: 12%;
  left: 10%;
}

.about-hero-light.two{
  width: 280px;
  height: 280px;
  background: rgba(255, 182, 210, 0.28);

  bottom: 8%;
  right: 12%;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px){

  .about-hero{
    min-height: 78vh;
    padding: 120px 24px 90px;
  }

  .about-kicker{
    font-size: 11px;
    letter-spacing: 4px;
  }

  .about-hero h1{
    line-height: 1.05;
  }

  .about-hero-text{
    font-size: 14px;
    line-height: 1.8;
    margin: 24px auto 34px;
  }

  .about-hero-btn{
    width: 100%;
    max-width: 240px;
    height: 54px;
  }

  .about-hero::before{
    width: 320px;
    height: 320px;
    top: -120px;
    left: -120px;
  }

  .about-hero::after{
    width: 260px;
    height: 260px;
    bottom: -100px;
    right: -100px;
  }

}


/* ========================================
   STORY
======================================== */

.about-story {
  padding: 70px 8%;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;

  background: white;
}

.about-story h2,
.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 18px;
}

.about-story p {
  color: #5e5e5e;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-card {
  min-height: 240px;

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(240,168,191,0.18),
      rgba(255,255,255,0.95)
    );

  border:
    1px solid rgba(219,95,136,0.12);

  padding: 30px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.045);
}

.story-card i {
  font-size: 30px;
  color: #db5f88;
  margin-bottom: 16px;
}

.story-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.story-card p {
  margin-bottom: 0;
}

/* ========================================
   VALUES
======================================== */

.about-values {
  padding: 70px 8%;
  background:
    linear-gradient(
      180deg,
      #fff7fb,
      #ffffff
    );
}

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-box {
  background: white;

  border-radius: 22px;

  padding: 26px 20px;

  border:
    1px solid rgba(219,95,136,0.12);

  text-align: center;

  box-shadow:
    0 16px 36px rgba(0,0,0,0.04);
}

.value-box i {
  font-size: 28px;
  color: #db5f88;
  margin-bottom: 14px;
}

.value-box h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.value-box p {
  color: #666;
  font-size: 13px;
  line-height: 1.7;
}

/* ========================================
   TEAM
======================================== */

.about-team {
  padding: 70px 8%;
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  background: #fff8fb;

  border:
    1px solid rgba(219,95,136,0.12);

  border-radius: 24px;

  padding: 14px;

  text-align: center;

  box-shadow:
    0 16px 36px rgba(0,0,0,0.04);
}

.team-image-placeholder {
  height: 200px;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(219,95,136,0.11),
      rgba(219,95,136,0.04)
    );

  border:
    1px dashed rgba(219,95,136,0.24);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;
}

.team-image-placeholder span {
  color: #db5f88;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.team-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1100px) {

  .about-story {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 760px) {

  .about-hero {
    min-height: 50vh;
    padding: 80px 6% 50px;
  }

  .about-story,
  .about-values,
  .about-team {
    padding: 60px 6%;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-image-placeholder {
    height: 180px;
  }

  .about-hero-content h1 {
    font-size: 42px;
  }

}