/* =============================
   Global Reset & Base Styles
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: #4d3131;
  background: linear-gradient(to bottom, #feead5, #fae48c);
  overflow-x: hidden;
  line-height: 1.7;
}

/* =============================
   Typography
============================= */
.title,
.title1,
.title2,
.title3 {
  font-weight: 700;
  color: #46282a;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  font-family: "Playfair Display", serif;
}

.title {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.title1,
.title2,
.title3 {
  font-size: 2rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #64432a;
  font-style: italic;
  margin-top: -10px;
}

/* =============================
   Section 1: Brand Story
============================= */
.box1 {
  background: radial-gradient(circle at top left, #fff2c8, #feead5);
  padding: 80px 0;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.img1 {
  width: 100%;
  height: auto;
  border: 3px solid rgba(77, 49, 49, 0.7);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(77, 49, 49, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img1:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(77, 49, 49, 0.35);
}

.story-content {
  padding: 0 20px;
}

.para {
  font-size: 1.05rem;
  text-align: justify;
  margin-bottom: 1.2rem;
  color: #46282a;
  line-height: 1.8;
}

.promise-section {
  background: rgba(255, 250, 225, 0.6);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #6b430f;
}

.promise-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #46282a;
  margin-bottom: 15px;
}

.pnt {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.pnt li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #4d3131;
}

.pnt li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6b430f;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
}

/* =============================
   Section 2: Core Values
============================= */
.box2 {
  background: linear-gradient(to top right, #feead5, #fff7cd);
  padding: 80px 0;
}

.value-box {
  background: rgba(255, 250, 225, 0.95);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(77, 49, 49, 0.15);
  transition: all 0.4s ease;
  border: 2px solid rgba(77, 49, 49, 0.1);
  height: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.value-box:hover {
  transform: translateY(-10px);
  background: #fcefbe;
  box-shadow: 0 15px 35px rgba(77, 49, 49, 0.25);
  border-color: rgba(77, 49, 49, 0.3);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  padding: 10px;
}

.icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-box h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #4d3131;
}

.value-box p {
  font-size: 0.95rem;
  color: #644632;
  margin: 0;
  line-height: 1.5;
}

/* =============================
   Section 3: Process
============================= */
.box3 {
  background: linear-gradient(to top, #feead5, #fff0be);
  padding: 80px 0;
}

.process-wrapper {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.proimg {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 3px solid #4d3131;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(77, 49, 49, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.proimg:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(77, 49, 49, 0.4);
}

/* =============================
   Section 4: Founder's Letter
============================= */
.box4 {
  background: linear-gradient(to bottom, #feead5, #fff5d2);
  padding: 80px 0;
}

.letter-wrapper {
  text-align: center;
}

.img2 {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 3px solid rgba(77, 49, 49, 0.6);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(77, 49, 49, 0.3);
  transition: all 0.4s ease;
}

.img2:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 40px rgba(77, 49, 49, 0.4);
}

/* =============================
   Responsive Design
============================= */

/* Large Tablets and Small Desktops */
@media (max-width: 992px) {
  .title {
    font-size: 2.4rem;
  }

  .title1,
  .title2,
  .title3 {
    font-size: 1.8rem;
  }

  .box1,
  .box2,
  .box3,
  .box4 {
    padding: 60px 0;
  }

  .value-box {
    min-height: 230px;
  }

  .story-content {
    padding: 20px 0;
    margin-top: 30px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .title1,
  .title2,
  .title3 {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .para {
    font-size: 0.95rem;
  }

  .box1,
  .box2,
  .box3,
  .box4 {
    padding: 50px 0;
  }

  .value-box {
    min-height: 200px;
    padding: 25px 15px;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .value-box h4 {
    font-size: 1.1rem;
  }

  .value-box p {
    font-size: 0.9rem;
  }

  .story-content {
    margin-top: 20px;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .title {
    font-size: 1.8rem;
  }

  .title1,
  .title2,
  .title3 {
    font-size: 1.4rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .para {
    font-size: 0.9rem;
    text-align: left;
  }

  .box1,
  .box2,
  .box3,
  .box4 {
    padding: 40px 0;
  }

  .value-box {
    min-height: 180px;
    padding: 20px 15px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }

  .value-box h4 {
    font-size: 1rem;
  }

  .value-box p {
    font-size: 0.85rem;
  }

  .promise-section {
    padding: 15px;
  }

  .promise-title {
    font-size: 1.1rem;
  }

  .pnt li {
    font-size: 0.9rem;
    padding-left: 25px;
  }

  .pnt li::before {
    font-size: 1.1rem;
  }

  .img1,
  .img2,
  .proimg {
    border-width: 2px;
  }
}

/* Extra Small Devices */
@media (max-width: 400px) {
  .title {
    font-size: 1.6rem;
  }

  .title1,
  .title2,
  .title3 {
    font-size: 1.3rem;
  }

  .value-box {
    min-height: 160px;
    padding: 15px 10px;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .value-box h4 {
    font-size: 0.95rem;
  }

  .value-box p {
    font-size: 0.8rem;
  }
}