:root{
  --green:#253414;
  --cream:#fbf6ec;
  --soft:#efe4d1;
  --gold:#b99a5b;
  --brown:#282014;
}
*{box-sizing:border-box}
body{
  margin:0;
  background:var(--cream);
  color:var(--brown);
  font-family:Georgia, "Times New Roman", serif;
}
.topbar{
  background:var(--green);
  color:white;
  text-align:center;
  padding:10px;
  font-size:14px;
  letter-spacing:1.5px;
}
.nav{
  background:#fffaf1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:25px;
  padding:14px 18px;
  text-transform:uppercase;
  letter-spacing:1px;
  position:sticky;
  top:0;
  z-index:10;
  box-shadow:0 2px 12px rgba(0,0,0,.08);
}
.nav a{
  color:var(--brown);
  text-decoration:none;
  font-size:14px;
}
.logo{
  width:110px;
  height:110px;
  object-fit:contain;
  border-radius:50%;
}
.hero{
  min-height:620px;
  display:grid;
  grid-template-columns:1fr 1.15fr;
  background:linear-gradient(90deg,#f8f0e2,#efe1ca);
}
.hero-copy{
  padding:80px 7vw;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:14px;
}
.center{text-align:center}
h1{
  font-size:64px;
  line-height:1.02;
  font-weight:400;
  margin:8px 0 20px;
}
h1 span{
  color:var(--green);
  font-family:cursive;
  font-size:.85em;
}
.hero-copy p{
  font-size:19px;
  max-width:520px;
}
.hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.main-btn, .gallery button{
  background:var(--green);
  color:white;
  border:0;
  padding:14px 26px;
  text-transform:uppercase;
  letter-spacing:1.3px;
  margin-top:15px;
  cursor:pointer;
  font-family:inherit;
  font-size:14px;
}
.main-btn.light{background:#fffaf1;color:var(--green)}
.quick{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
  background:#fffaf1;
  padding:24px 5vw;
  border-bottom:1px solid #dfd0b9;
}
.quick div{
  border-right:1px solid #d8c8ae;
  font-weight:bold;
  text-transform:uppercase;
  letter-spacing:1px;
}
.quick div:last-child{border-right:0}
.quick span{
  font-weight:normal;
  text-transform:none;
  font-size:14px;
}
.section{
  padding:55px 5vw;
}
h2{
  font-weight:400;
  font-size:40px;
  text-align:center;
  margin:0 0 12px;
}
.sub{
  text-align:center;
  margin:0 0 30px;
  font-size:17px;
}
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.gallery article{
  background:#fffaf1;
  border:1px solid #e2d4bd;
  padding-bottom:20px;
  text-align:center;
  box-shadow:0 4px 16px rgba(0,0,0,.08);
}
.gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
}
.gallery h3{
  font-size:19px;
  font-weight:400;
  padding:0 12px;
  min-height:48px;
}
.price-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  align-items:center;
  background:#efe1ca;
  padding:60px 7vw;
}
.price-card{
  background:#fffaf1;
  padding:35px;
  border:1px solid #d4c1a2;
}
.line{
  display:flex;
  justify-content:space-between;
  border-bottom:1px dotted #8d8067;
  padding:14px 0;
  font-size:30px;
  text-transform:uppercase;
  letter-spacing:2px;
}
.price-card p{
  font-size:16px;
}
.price-section img{
  width:100%;
  max-height:650px;
  object-fit:contain;
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
  padding:60px 7vw;
  background:#fffaf1;
}
.split.reverse{background:var(--cream)}
.split img{
  width:100%;
  max-height:520px;
  object-fit:cover;
}
.split p{
  font-size:18px;
  line-height:1.5;
}
.contact{
  background:var(--green);
  color:white;
  text-align:center;
  padding:55px 20px;
}
.contact img{
  width:160px;
  border-radius:50%;
  background:white;
}
.contact a{color:white}
footer{
  background:#17240d;
  color:white;
  text-align:center;
  padding:18px;
}
.modal{
  display:none;
  position:fixed;
  z-index:100;
  inset:0;
  background:rgba(0,0,0,.65);
  align-items:center;
  justify-content:center;
  padding:20px;
}
.modal-box{
  background:#fffaf1;
  max-width:420px;
  width:100%;
  text-align:center;
  padding:28px;
  border-radius:18px;
  position:relative;
  box-shadow:0 10px 35px rgba(0,0,0,.35);
}
.modal-box img{
  width:120px;
  height:120px;
  object-fit:contain;
  border-radius:50%;
}
.close{
  position:absolute;
  top:10px;
  right:15px;
  background:none;
  border:0;
  font-size:34px;
  cursor:pointer;
}
.modal-btn{
  display:block;
  background:var(--green);
  color:white;
  text-decoration:none;
  padding:14px;
  margin:12px 0;
  text-transform:uppercase;
  letter-spacing:1px;
}
.modal-btn.outline{
  background:white;
  color:var(--green);
  border:1px solid var(--green);
}
@media(max-width:900px){
  .nav{gap:12px;flex-wrap:wrap;position:static}
  .nav a{font-size:12px}
  .logo{width:95px;height:95px;order:-1}
  .hero,.price-section,.split{grid-template-columns:1fr}
  h1{font-size:43px}
  .hero-copy{padding:45px 25px}
  .quick{grid-template-columns:1fr}
  .quick div{border-right:0;border-bottom:1px solid #ddd;padding:10px}
  .gallery{grid-template-columns:1fr}
  .gallery img{height:330px}
  .line{font-size:24px}
}
