/* ---------- ABOUT HERO (matches your screenshot feel) ---------- */
.about-hero{
  position: relative;
  height: 78vh;              /* match screenshot hero size */
  min-height: 620px;
  width: 100%;
  overflow: hidden;
  background: #0f0f0f;
}

.about-hero__bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.about-hero__overlay{
  position:absolute; inset:0;
  /* warm left-heavy blur glow like screenshot */
 
}

.about-hero__content{
  position: relative;
  height: calc(78vh - 120px);
  min-height: 500px;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 0 24px;
  color:#fff;
}

.about-hero__title{
     font-family: "Fraunces", serif;

  font-weight: 400;
  font-size: 64px;  /* similar to screenshot */
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.about-hero__subtitle{
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 300;
  font-size:20px;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
  max-width: 861px;
}

/* ---------- FOUNDER STORY SECTION ---------- */
.founder{
  background: #FFFCF9;
  padding: 90px 0 70px;
}

.founder__container{
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.founder__kicker{
  text-align:center;
  font-family: "IBM Plex Sans", sans-serif;
font-weight: 800;
  letter-spacing: 0.22em;
  color: #8a5a21;
  margin: 0 0 22px;
}

.founder__title{
  text-align:center;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 62px;
  line-height: 1.05;
  margin: 0;
  color: #2b2b2b;
}

.founder__title-accent{
  font-style: italic;
  color: #8a5a21;
}

.founder__rule{
  width: 1px;
  height: 52px;
  background: rgba(0,0,0,0.08);
  margin: 26px auto 22px;
}

.founder__quote{
  text-align:center;
 font-family: "IBM Plex Sans", sans-serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(0,0,0,0.45);
  margin: 0 0 55px;
}

/* two-column layout */
.founder__grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

/* left story text */
.founder__story{
  color: rgba(0,0,0,0.55);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.9;
}



.founder__para{
  margin: 0 0 18px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;

}

.founder__bold{
  
  font-weight: 500;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
}

.founder__italic{
  font-style: italic;
  color: rgba(0,0,0,0.58);
  font-weight: 800
}

.founder__mini-divider{
  display:flex;
  align-items:center;
  gap: 14px;
  margin: 22px 0;
  opacity: 0.35;
}

.founder__mini-divider span{
  height: 1px;
  background: rgba(0,0,0,0.25);
  flex: 1;
}

.founder__mini-icon{
  width: 86px;
    height: 59px;
    object-fit: contain;
}

.founder__bottom-rule{
  margin-top: 34px;
  height: 1px;
  background: rgba(0,0,0,0.12);
  width: 100%;
}

/* right image */
.founder__media{
  position: relative;
}

.founder__imgwrap{
  width: 100%;
  background: #f2efe9;
  overflow: hidden;
}

.founder__imgwrap img{
  width: 572px;
  display:block;
  height: 959px;  /* match screenshot image height feel */
  object-fit: cover;
}

/* floating promise card */
.promise{
  position: absolute;
     left: -54px;
    bottom: -100px;
    width: 351px;
    height: 188px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  padding: 18px 18px;
  display:flex;
  gap: 14px;
  align-items:flex-start;
  z-index: 2;
}

.promise__icon{
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 28px;
  opacity: 0.9;
}

.promise__icon img{
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.promise__title{
  margin: 0 0 6px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  letter-spacing: 0.0em;
  color: #8a5a21;
}

.promise__text{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(0,0,0,0.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px){
  .about-hero__title{ font-size: 52px; }
  .founder__title{ font-size: 52px; }

  .founder__grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .founder__imgwrap img{
    height: 440px;
  }

  .promise{
    position: static;
    margin-top: 14px;
    width: 100%;
  }
}

@media (max-width: 600px){
  .about-hero{ min-height: 560px; height: 72vh; }
  .about-hero__content{ min-height: 420px; }

  .about-hero__title{ font-size: 40px; }
  .about-hero__subtitle{ font-size: 14px; }

  .founder{ padding: 70px 0 55px; }
  .founder__container{ width: min(1180px, calc(100% - 34px)); }
  .founder__title{ font-size: 40px; }
}

/* ================= GUIDING PRINCIPLES (LIKE SCREENSHOT) ================= */
.principles{
  background: #fffdf9;
  padding: 80px 0 90px;
}

.principles__container{
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.principles__grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* LEFT */
.principles__kicker{
  font-family: "IBM Plex Sans", sans-serif;
font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.22em;
  color: #8a5a21;
  margin: 0 0 26px;
}

.principles__block{
  margin-bottom: 62px;
}

.principles__title{
  font-family: "Fraunces", serif;;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: rgba(0,0,0,0.70);
}

.principles__text{
 font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(0,0,0,0.45);
  margin: 0;
}

/* RIGHT */
.principles__right{
  position: relative;
  padding-top: 10px;
}

.principles__img{
  background: #f2efe9;
  overflow: hidden;
}

.principles__img img{
  width: 100%;
  display: block;
  object-fit: cover;
}

.principles__img--top img{
  height: 310px;          /* match screenshot top image size */
}

.principles__img--bottom{
  width: 78%;
  margin: 44px auto 0;     /* centered smaller image like screenshot */
}

.principles__img--bottom img{
  height: 240px;
}

/* SIGNATURE bottom-right */
.principles__signature{
  text-align: right;
  margin-top: 125px;
}

.principles__name{
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 34px;
  margin: 0 0 6px;
  color: rgba(0,0,0,0.70);
}

.principles__role{
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 0.22em;
  color: rgba(0,0,0,0.28);
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .principles__grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .principles__img--top img{
    height: 280px;
  }

  .principles__img--bottom{
    width: 100%;
    margin-top: 18px;
  }

  .principles__signature{
    text-align: left;
  }
}

@media (max-width: 600px){
  .principles{
    padding: 60px 0 70px;
  }

  .principles__container{
    width: min(1180px, calc(100% - 34px));
  }

  .principles__title{
    font-size: 34px;
  }
}

/* ================= MORE THAN A CAFÉ (LIKE SCREENSHOT) ================= */
.more-cafe{
  background: #FFF8ED;                              
  padding: 110px 0 120px;
}

.more-cafe__container{
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  text-align: center;
}

/* Icon box */
.more-cafe__icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 14px;
  background: #f3eadb;
  display: grid;
  place-items: center;
}

.more-cafe__icon img{
  width: 63px;
    height: 63px;
  object-fit: contain;
}

/* Title */
.more-cafe__title{
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #8a5a21; /* brown */
}

/* Description */
.more-cafe__desc{
  font-family: "IBM Plex Sans", sans-serif;
font-size: 15px;
  line-height: 1.85;
  color: rgba(0,0,0,0.45);
  margin: 0 auto;
  max-width: 820px;
}

/* Divider line */
.more-cafe__divider{
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.10);
  margin: 44px auto 0;
}

/* 3 columns */
.more-cafe__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  text-align: left;
  margin-top: 42px;
  justify-items: center;
}

.more-cafe__card{
  width: 100%;
  max-width: 260px;
}

.more-cafe__cardTitle{
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #8a5a21;
  margin: 0 0 10px;
}

.more-cafe__cardText{
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 550;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0,0,0,0.45);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px){
  .more-cafe{
    padding: 90px 0 100px;
  }

  .more-cafe__grid{
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .more-cafe__card{
    max-width: 420px;
  }

  .more-cafe__divider{
    margin-top: 34px;
  }
}

@media (max-width: 600px){
  .more-cafe__container{
    width: min(1120px, calc(100% - 34px));
  }

  .more-cafe__title{
    font-size: 36px;
  }

  .more-cafe__desc{
    font-size: 14px;
  }
}

/* ================= QUOTE STRIP (BEFORE FOOTER) ================= */
.quote-strip{
  background: #fffdf9;            /* same warm page background */
  padding: 140px 0 140px;         /* big whitespace like screenshot */
  text-align: center;
}

.quote-strip__container{
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
}

.quote-strip__text{
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 56px;                /* large quote size */
  line-height: 1.25;
  letter-spacing: 0.2px;
}

.quote-strip__line{
  display: block;
}

.quote-strip__line--strong{
  color: #8a5a21;                 /* brown like screenshot */
}

.quote-strip__line--soft{
  color: rgba(138, 90, 33, 0.45); /* lighter warm grey/brown */
}

/* Responsive */
@media (max-width: 1024px){
  .quote-strip{
    padding: 110px 0;
  }
  .quote-strip__text{
    font-size: 44px;
  }
}

@media (max-width: 600px){
  .quote-strip{
    padding: 90px 0;
  }
  .quote-strip__container{
    width: min(1100px, calc(100% - 34px));
  }
  .quote-strip__text{
    font-size: 34px;
    line-height: 1.3;
  }
}


.dropcap{
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: #777;
}

.dropcap::first-letter{
      font-family: "Fraunces", serif;
    font-weight: 400;
    font-size: 80px;
    line-height: 0.75;
    float: left;
    margin-right: 2px;
    margin-top: -25px;
    color: #3a3a3a;
}

/* ===== ABOUT INTRO SECTION ===== */
.about-intro{
  background: #FFF8ED;
  padding: 120px 0 130px;
  text-align: center;
}

.about-intro__container{
  width: min(1100px, 90%);
  margin: 0 auto;
}

.about-intro__kicker{
  margin: 0 0 18px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
    font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b5a2b;
}

.about-intro__title{
  margin: 0 auto 28px;
  max-width: 900px;
font-family: "Fraunces", serif;
  font-size: clamp(52px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 500;
  color: #2f2a26;
}

.about-intro__text{
  margin: 0 auto;
  max-width: 980px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(47, 42, 38, 0.62);
}

/* mobile */
@media (max-width: 768px){
  .about-intro{
    padding: 80px 0 90px;
  }

  .about-intro__container{
    width: min(92%, 700px);
  }

  .about-intro__kicker{
    font-size: 14px;
    margin-bottom: 14px;
  }

  .about-intro__title{
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 20px;
  }

  .about-intro__text{
    font-size: 17px;
    line-height: 1.65;
  }
}

.about-intro__icon{
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.about-intro__icon img{
  width: 33px;
  height: auto;
  opacity: 0.7;
}