*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', sans-serif;
  background:#f5efe7;
  color:#4c4035;
  line-height:1.8;
}

h1,h2,h3{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
}

.hero{
  min-height:100vh;

  background:
  linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)),
  url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1600');

  background-size:cover;
  background-position:center;

  color:white;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  padding:40px 8%;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:1.7rem;
  letter-spacing:1px;
  font-family:'Cormorant Garamond', serif;
}

nav ul{
  display:flex;
  list-style:none;
  gap:30px;
}

nav a{
  color:white;
  text-decoration:none;
  font-size:0.95rem;
}

.hero-content{
  max-width:700px;
  margin-bottom:120px;
}

.subtitle{
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:10px;
  font-size:0.85rem;
}

.hero h1{
  font-size:5.5rem;
  line-height:0.95;
  margin-bottom:25px;
}

.hero-text{
  max-width:550px;
  margin-bottom:40px;
  font-size:1.1rem;
}

.btn{
  background:#d7bc9b;
  color:#3f3329;
  padding:15px 32px;
  border-radius:50px;
  text-decoration:none;
  transition:0.3s;
}

.btn:hover{
  background:#c6a885;
}

section{
  padding:120px 8%;
}

.intro{
  background:#ede2d4;
  text-align:center;
}

.intro-text{
  max-width:900px;
  margin:auto;
  font-size:1.5rem;
  font-family:'Cormorant Garamond', serif;
}

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.about-image{
  height:650px;

  background:
  url('https://images.unsplash.com/photo-1519834785169-98be25ec3f84?q=80&w=1200');

  background-size:cover;
  background-position:center;

  border-radius:24px;
}

.section-tag{
  text-transform:uppercase;
  letter-spacing:3px;
  color:#a07f62;
  margin-bottom:15px;
  font-size:0.8rem;
}

.about h2,
.healing h2,
.prices h2,
.group-session h2,
.contact h2{
  font-size:3.5rem;
  margin-bottom:30px;
  line-height:1;
}

.about p{
  margin-bottom:20px;
}

.healing{
  background:#efe5d9;
}

.healing-header{
  text-align:center;
  margin-bottom:60px;
}

.session-info{
  max-width:900px;
  margin:auto;
}

.session-block{
  background:white;
  padding:50px;
  border-radius:24px;
}

.session-block h3{
  font-size:2.3rem;
  margin-bottom:20px;
}

.session-block p{
  margin-bottom:18px;
}

.prices{
  background:#f8f4ef;
}

.prices-header{
  text-align:center;
  margin-bottom:60px;
}

.price-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
}

.price-card{
  background:white;
  border-radius:24px;
  padding:45px 30px;
  text-align:center;
}

.featured{
  background:#d8c0a3;
}

.price-card h3{
  font-size:2rem;
  margin-bottom:10px;
}

.price{
  font-size:3rem;
  font-family:'Cormorant Garamond', serif;
  margin-bottom:10px;
}

.group-session{
  background:#e9ddd0;
}

.group-content{
  max-width:850px;
  margin:auto;
  text-align:center;
}

.group-content p{
  margin-bottom:20px;
}

.practical{
  margin-top:40px;
  background:white;
  padding:40px;
  border-radius:24px;
}

.practical h3{
  margin-bottom:20px;
  font-size:2rem;
}

.practical ul{
  list-style:none;
}

.practical li{
  margin-bottom:12px;
}

.quote{
  background:#786352;
  color:white;
  text-align:center;
}

.quote h2{
  font-size:3rem;
  max-width:850px;
  margin:auto;
}

.contact{
  background:#f4ece2;
}

.contact-content{
  max-width:700px;
  margin:auto;
  text-align:center;
}

.whatsapp-button{
  display:inline-flex;
  align-items:center;
  gap:14px;

  margin-top:35px;

  background:#8a6e57;
  color:white;

  padding:18px 34px;

  border-radius:60px;
  text-decoration:none;

  font-size:1rem;

  transition:0.3s;
}

.whatsapp-button i{
  font-size:1.4rem;
}

.whatsapp-button:hover{
  background:#6d5645;
}

footer{
  background:#4c4035;
  color:white;
  text-align:center;
  padding:30px;
}

@media(max-width:900px){

  .about{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:3.7rem;
  }

  nav{
    flex-direction:column;
    gap:20px;
  }

  nav ul{
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
  }

  section{
    padding:90px 8%;
  }

}