/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 02 2026 | 11:08:29 */


.lev-features{
  background:#FCFAF4;                 /* warm card tone */
  border-bottom:1px solid #E2DBC9;
}
.lev-features__wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 18px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
}
.lev-feat{
  padding:42px 30px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  border-right:1px solid #E2DBC9;      /* vertical dividers */
}
.lev-feat:last-child{ border-right:none; }

.lev-feat__icon{ color:#A07C3B; margin-bottom:16px; display:block; }  /* gold icons */

.lev-feat__title{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:20px;
  letter-spacing:.06em;
  text-transform:uppercase;
  line-height:1.15;
  color:#2B2722;                        /* ink */
  margin-bottom:8px;
}
.lev-feat__text{
  font-family:"EB Garamond", serif;
  font-size:15.5px;
  line-height:1.55;
  color:#6E665A;                        /* muted */
  margin:0;
}

/* Tablet — 2 across */
@media (max-width:900px){
  .lev-features__wrap{ grid-template-columns:repeat(2, 1fr); }
  .lev-feat:nth-child(2){ border-right:none; }
  .lev-feat:nth-child(1),
  .lev-feat:nth-child(2){ border-bottom:1px solid #E2DBC9; }
}

/* Mobile — stacked */
@media (max-width:560px){
  .lev-features__wrap{ grid-template-columns:1fr; }
  .lev-feat{ border-right:none; border-bottom:1px solid #E2DBC9; }
  .lev-feat:last-child{ border-bottom:none; }
}


.lev-areas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.lev-areas__tag{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:15px;
  letter-spacing:.05em;
  color:#2B2722;                 /* ink */
  background:#FCFAF4;            /* warm card */
  border:1px solid #E2DBC9;      /* hairline */
  padding:8px 18px;
  white-space:nowrap;
  transition:.2s;
}
/* optional: make them feel clickable if you link each to its area page */
.lev-areas__tag:hover{
  border-color:#B89456;
  color:#A07C3B;
}