
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}


:root{
  --bg:#D4E0C9;
  --surface:#FFFFFF;
  --card:#F5F1ED;
  --text:#2C2C2C;
  --muted:#6B6B6B;
  --border:#E5E0DC;
  --accent:#D4E0C9;
}


body{
  background: var(--bg);
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
}



.topbar{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(212,224,201,.92 );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.5px;
  text-decoration:none;
  color: inherit;
}
.brand__dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(59,130,246,.15);
}
.brand__name{ font-size: 14px; }
.topbar__actions{ display:flex; gap:10px; }
.icon-btn{
  width:38px; height:38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  display:grid; place-items:center;
  cursor:pointer;
  transition: var(--transition);
  color: var(--text);
  text-decoration:none;
}


.about{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
}

.about__container{
  max-width:1100px;
  width:100%;
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:50px;
  align-items:center;
}


.about__text h1{
  font-size:48px;
  font-style:italic;
  margin-bottom:14px;
}

.subtitle{
  font-size:14px;
  color:var(--muted);
  margin-bottom:22px;
  font-style:italic;
}

.about__text p{
  font-size:14px;
  line-height:1.9;
  color:var(--muted);
}

.about__text p + p{
  margin-top:16px;
}


.about__image{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.about__image img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
  filter:grayscale(100%) brightness(.98) contrast(1.05);
}


@media(max-width:900px){
  .about__container{
    grid-template-columns:1fr;
    gap:28px;
  }

  .about__image img{
    height:300px;
  }

  .about__text h1{
    font-size:38px;
  }
}