body {
  font-family: Inter, Arial, sans-serif;
  margin: 0;
  background: #f8f5f1;
  color: #1a1512;
  font-size: 100%;
}
img {
	max-width: 100%;
	height: auto;
	border:0;
}
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px
}
header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e9e0d8
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px
}
.brand img {
  height: 42px;
  border-radius: 10px
}
a {
  text-decoration: none;
  color: #2b211c;
  font-weight: 600
}
.hero {
  background: linear-gradient(180deg, #2b211c, #3a2d26);
  color: #fff
}
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #2b211c;
  color: #fff;
  border: 2px solid #2b211c
}
.btn.alt {
  background: #fff;
  color: #2b211c;
  border-color: #fff
}
.section {
  padding: 32px 0;
  border-top: 4px solid rgba(198, 161, 91, .18)
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  padding: 18px
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}
.title {
    font-family: Playfair Display,serif;
}
h1 {
    font-size: 180%;
}
h2 {
    font-size: 125%;
}
.intro {
    font-family: Playfair Display,serif;
    font-size: 112.50%;
    font-style: italic;
}
.header-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.header-column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}
.header-double-column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 2;
}
/** Keep the image from stretching in flex column**/
.nostretch {
	align-self: center;
}
.home-grid {
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:24px;
    align-items:center;
}
.about-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}
.container {
  padding: 2%;
  max-width: 900px;
  margin: auto;
}
.image-wrapper {
  position: relative;
 /*max-width: 400px;*/
  color: white;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block; 
}

.image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35); /* Adjust opacity as needed */
}
.centerit {
    text-align: center;
}
@media(max-width:900px) {
  .grid-3 {
    grid-template-columns: 1fr
  }
}
@media screen and (max-width:480px) {
    .header-row {
	display: block;
  }
    .home-grid {
        display: block;
    }
    .about-grid {
        display: block;
    }
    .card {
        margin-top: 1%;
    }
}