* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f7f2ea;
  color: #2f2a25;
}

.hero {
    position:relative;
    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.28),rgba(0,0,0,.28)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2200&q=90");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    overflow:hidden;

    color:white;

    padding:40px;
}


.hero-content {

max-width:900px;

animation:fadeUp 1.4s ease;

}


.eyebrow {
  letter-spacing: 8px;
  font-size: 20px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: clamp(36px, 7vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-text {
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 42px;
}

.btn {
  letter-spacing:1px;

font-weight:600;

box-shadow:0 15px 40px rgba(0,0,0,.18);
  display: inline-block;
  background: #ffffff;
  color: #3a332c;
  padding: 18px 42px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  transition: .3s ease;
}

.btn:hover {

transform:translateY(-6px);

box-shadow:0 25px 60px rgba(0,0,0,.22);

background:#ffffff;

}


.story,
.method {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 30px;
}

.story {
  background: #f7f2ea;
}

.method {
  background: #fffaf3;
}

.story h2,
.method h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  max-width: 950px;
  margin-bottom: 30px;
  line-height: 1.25;
}

.story p,
.method p {
  font-size: clamp(18px, 2vw, 23px);
  max-width: 780px;
  line-height: 1.8;
  color: #5d554d;
}

.words {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  width: 100%;
}

.words div {
  background: white;
  border-radius: 22px;
  padding: 28px 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  font-size: 20px;
}

@media(max-width: 760px) {
  .words {
    grid-template-columns: 1fr;
  }

  .eyebrow {
    letter-spacing: 4px;
  }
}.chapter {
  min-height: 85vh;
  background: #fffaf3;
  color: #2f2a25;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
  text-align: center;
  padding: 90px 30px;
}

.chapter-number {
  font-size: 14px;
  letter-spacing: 5px;
  color: #9c7c5c;
}

.chapter h2 {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 300;
  max-width: 900px;
}

.chapter p {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.8;
  max-width: 760px;
  color: #5d554d;
}

.chapter-question {
  margin-top: 18px;
  color: #2f2a25 !important;
  font-size: clamp(24px, 3vw, 34px) !important;
}
@keyframes fadeUp{

from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:translateY(0);

}

}
.marivi {
  min-height: 100vh;
  background:
    linear-gradient(rgba(247,242,234,.88), rgba(247,242,234,.88)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=90");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 30px;
  text-align: center;
}

.marivi-text {
  max-width: 850px;
}

.marivi h2 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 300;
  margin: 26px 0;
  color: #2f2a25;
}

.marivi p {
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.8;
  color: #5d554d;
  margin-bottom: 24px;
}

.marivi h3 {
  margin-top: 45px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.25;
  color: #2f2a25;
}
.marivi{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

padding:120px 10%;

align-items:center;

background:white;

}

.marivi h2{

font-size:54px;

margin-bottom:30px;

font-weight:300;

color:#2f2a25;

}

.marivi p{

font-size:22px;

line-height:1.9;

color:#666;

margin-bottom:25px;

}

.marivi img{

width:100%;

border-radius:28px;

box-shadow:0 30px 80px rgba(0,0,0,.15);

}

@media(max-width:900px){

.marivi{

grid-template-columns:1fr;

}

}