:root{
  --orea-bg:#f7f3ee;
  --orea-white:#ffffff;
  --orea-ink:#111111;
  --orea-gold:#b48a57;
  --orea-line:#eeeeee;
}

.orea-site-header{
  height:92px;
  background:var(--orea-white);
  display:grid;
  grid-template-columns:260px 1fr 70px;
  align-items:center;
  padding:0 36px;
  border-bottom:1px solid var(--orea-line);
  position:sticky;
  top:0;
  z-index:1000;
}

.orea-brand{
  color:var(--orea-ink);
  text-decoration:none;
  display:inline-block;
  width:max-content;
}

.orea-brand-main{
  font-family:Georgia,"Times New Roman",serif;
  font-size:52px;
  letter-spacing:14px;
  line-height:.85;
  font-weight:400;
}

.orea-brand-sub{
  font-family:Arial,Helvetica,sans-serif;
  font-size:11px;
  letter-spacing:5px;
  margin-left:37px;
  margin-top:7px;
  white-space:nowrap;
}

.orea-site-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:58px;
  font-family:Arial,Helvetica,sans-serif;
  font-size:13px;
  letter-spacing:3px;
  text-transform:uppercase;
}

.orea-site-nav a{
  color:var(--orea-ink);
  text-decoration:none;
  padding-bottom:9px;
  border-bottom:1px solid transparent;
  white-space:nowrap;
}

.orea-site-nav a:hover,
.orea-site-nav a.active{
  color:var(--orea-gold);
  border-bottom-color:var(--orea-gold);
}

.orea-menu-button{
  justify-self:end;
  width:31px;
  height:22px;
  border:0;
  padding:0;
  background:transparent;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
}

.orea-menu-button span{
  width:100%;
  height:1px;
  background:var(--orea-ink);
  display:block;
}

.orea-mobile-nav{
  display:none;
  position:fixed;
  top:74px;
  left:0;
  right:0;
  z-index:999;
  padding:26px 22px;
  background:var(--orea-white);
  border-bottom:1px solid var(--orea-line);
}

.orea-mobile-nav.open{
  display:grid;
  gap:20px;
}

.orea-mobile-nav a{
  color:var(--orea-ink);
  text-decoration:none;
  font-family:Arial,Helvetica,sans-serif;
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
}

.orea-site-footer{
  background:var(--orea-white);
  border-top:1px solid var(--orea-line);
}

.orea-footer-primary{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  padding:48px 8%;
  border-bottom:1px solid var(--orea-line);
}

.orea-footer-item{
  min-height:78px;
  padding:0 18px;
  text-align:center;
  border-right:1px solid #d8c4aa;
}

.orea-footer-item:last-child{
  border-right:0;
}

.orea-footer-item h4{
  margin:0 0 12px;
  font-family:Arial,Helvetica,sans-serif;
  font-size:13px;
  font-weight:400;
  letter-spacing:4px;
  text-transform:uppercase;
}

.orea-footer-item a{
  color:var(--orea-ink);
  text-decoration:none;
  font-family:Arial,Helvetica,sans-serif;
  font-size:13px;
}

.orea-footer-legal{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px 28px;
  padding:22px 24px;
  border-bottom:1px solid var(--orea-line);
  font-family:Arial,Helvetica,sans-serif;
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.orea-footer-legal a{
  color:#5f5a54;
  text-decoration:none;
}


.orea-footer-social{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px 24px;
  border-bottom:1px solid var(--orea-line);
}

.orea-instagram-link{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--orea-ink);
  text-decoration:none;
  transition:color .18s ease, transform .18s ease;
}

.orea-instagram-link:hover{
  color:#b78a4a;
  transform:translateY(-1px);
}

.orea-instagram-link svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
}

.orea-footer-copyright{
  padding:28px 20px;
  text-align:center;
  color:#777;
  font-family:Arial,Helvetica,sans-serif;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
}

@media(max-width:1180px){
  .orea-site-nav{
    gap:30px;
    font-size:11px;
  }
}

@media(max-width:900px){
  .orea-site-header{
    height:74px;
    grid-template-columns:1fr 40px;
    padding:0 22px;
  }

  .orea-brand-main{
    font-size:38px;
    letter-spacing:10px;
  }

  .orea-brand-sub{
    font-size:8px;
    margin-left:28px;
    letter-spacing:3px;
  }

  .orea-site-nav{
    display:none;
  }

  .orea-footer-primary{
    grid-template-columns:1fr;
    padding:28px;
  }

  .orea-footer-item{
    min-height:auto;
    padding:24px 0;
    border-right:0;
    border-bottom:1px solid var(--orea-line);
  }

  .orea-footer-item:last-child{
    border-bottom:0;
  }
}