
:root {
  --primary: #121210;
  --secondary: #f6f5f0; 
  --gold: #9a8566;
  --light: #E8E5DE;
  --white: #FFFFFF; 
  --black: #000000; 
}


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

body{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  color:var(--primary);
  background-color: var(--white); 
}



img{
  border: 0;
  max-width:100%;
}

a{
  text-decoration: none;
  cursor:pointer;
  transition:.7s color, .7s background-color, .3s opacity;
  color:var(--primary);
}
a:focus{
  outline: none;
}
a:hover, .button:hover{
  color: var(--primary); 
  transition:.3s color, .3s background-color, .3s opacity;
}

h1, h2, h3, h4{
  font-family: "Cormorant Garamond", serif;
  font-weight: 700; 
  font-style: normal;
  line-height: 1;
  margin-bottom: 25px; 
  text-transform: uppercase; 
}

h1{
  font-size: 3.5rem;
  line-height:1;
}

h2,h3{
  font-size: 2.75rem; 
  font-weight: 500; 
}

h4{
  font-size: 1.4rem;
  margin-bottom: 15px; 
}


h3:first-child, h4:first-child{
  margin-top:0;
}

p{
  margin-bottom: 15px;
}
p:last-child{
  margin-bottom:0;
}

ul, ol{
  margin: 0 0 15px 30px;
}

.large{
  font-size: 1.2rem;
}
.small{
  font-size: 0.8rem;
}

.light{
  font-weight:300;
}
.semi{
  font-weight: 600;
}

.clear{ clear: both; }

.container{
  margin: 0 auto;
  width: 90%;
  max-width: 1250px;
  position:relative;
}
.container.narrow{
  max-width: 850px;
}

.flex{
  display:flex;
}
.flex.wrap{
  flex-wrap:wrap;
}
.flex.end{
  align-items:flex-end;
}
.vert{
  align-items:center;
}
.flex .full{
  width: 100%;
}
.flex .half{
  width: 47%;
  margin-right: 6%;
}
.flex .half:nth-child(2n+2){
  margin-right:0;
}

.flex .third{
  width: 32%;
  margin-right: 2%;
}
.flex .third:nth-child(3n+3){
  margin-right:0;
}

.flex.swap{
  flex-direction: row-reverse;
}

.flex.swap .half{
  margin-right:0;
  margin-left:6%;
}
.flex.swap .half:nth-child(2n+2){
  margin-left:0;
}



.g1{ display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; }
.g2{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.g3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.g4{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.g5{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.g6{ display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.g7{ display: grid; grid-template-columns: repeat(7, 1fr); gap: 20px; }
.g8{ display: grid; grid-template-columns: repeat(8, 1fr); gap: 20px; }
.g9{ display: grid; grid-template-columns: repeat(9, 1fr); gap: 20px; }
.g11{ display: grid; grid-template-columns: repeat(10, 1fr); gap: 20px; }
.g11{ display: grid; grid-template-columns: repeat(11, 1fr); gap: 20px; }
.g12{ display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }

.s1{ grid-column: span 1; }
.s2{ grid-column: span 2; }
.s3{ grid-column: span 3; }
.s4{ grid-column: span 4; }
.s5{ grid-column: span 5; }
.s6{ grid-column: span 6; }
.s7{ grid-column: span 7; }
.s8{ grid-column: span 8; }
.s9{ grid-column: span 9; }
.s10{ grid-column: span 10; }
.s11{ grid-column: span 11; }
.s12{ grid-column: span 12; }


.grid-gap{
  gap: 50px !important;
}
.grid-tight{
  gap: 10px !important; 
}

.grid-swap div:first-child{
  order: 2;
}
.grid-swap div:last-child{
  order:1;
}


.margined{
  margin: 100px auto;
}
.margined-med{
  margin: 50px auto;
}
.margined-small{
  margin: 25px auto;
}
.margined-tiny{
  margin: 6px auto; 
}

.topmargin{
  margin-top: 75px;
}
.topmargin-med{
  margin-top: 50px;
}
.topmargin-small{
  margin-top: 25px;
}
.topmargin-tiny{
  margin-top: 7px; 
}

.bottommargin{
  margin-bottom: 75px;
}
.bottommargin-med{
  margin-bottom: 50px;
}
.bottommargin-small{
  margin-bottom: 25px;
}


.padded{
  padding: 50px;
}
.padded-small{
  padding: 25px; 
}
.padded-tiny{
  padding: 10px; 
}
.vpadded{
  padding: 100px 0; 
}
.vpadded-tiny{
  padding: 10px 0; 
}

.left{
  text-align:left;
}
.center{
  text-align:center;
}
.right{
  text-align:right;
}

.relative{
  position:relative;
}

.label{
  display:block;
  margin-top: 15px; 
  color: var(--secondary); 
  font-size: 0.8rem; 
}
.input{
  display:block;
  width:100%;
  padding: 10px; 
  font-family: "Inter", sans-serif;
  font-size: 1rem; 
  border: 1px solid #CCC;
  background-color: #FFF; 
}

.buttons{
  display:flex;
  flex-wrap:wrap;
  gap: 25px;
}

.button{
  display: inline-block;
  background: none; 
  border: 2px solid var(--gold);
  color:var(--primary);
  padding: 8px 25px;
  cursor:pointer; 
  transition: .7s transform;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  font-size: 1.2rem; 
  font-weight: 700; 
}
.button:hover{
  color:var(--primary);
  transform: scale(1.05);
  transition: .3s transform;
  text-decoration: none !important; 
}
.bg-primary .button, .bg-primary .button:hover{
  color: var(--secondary); 
}
.bg-gold .button, .bg-gold .button:hover{
  color: var(--primary); 
  border-color: var(--primary);
}


.inline{
  display:inline;
}

.inlineblock{
  display:inline-block;
}

.block{
  display:block;
}
img.block{
  width:100%;
}

.bgcover{
  background-size:cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.v50{ height: 50vh; }
.v80{ height: 80vh; }
.v100{ height: 100vh; }

img.aspect{ object-fit: cover; }
.aspect-square{ aspect-ratio: 1/1; }
.aspect-video{ aspect-ratio: 16/9; }
.aspect-photo{ aspect-ratio: 4/3; }

.bg-primary{ background-color: var(--primary); }
.bg-secondary{ background-color: var(--secondary); }
.bg-white{ background-color: var(--white); } 
.bg-gold{ background-color: var(--gold); } 
.bg-light{ background-color: var(--light); } 

.text-primary{ color: var(--primary); }
.text-secondary{ color: var(--secondary); }
.text-black{ color: var(--black); }
.text-white{ color: var(--white); }
.text-gold{ color: var(--gold); }
.text-light{ color: var(--light); }

.text-feature{
  font-family: "Cormorant Garamond", serif;
}
.uppercase{
  text-transform:uppercase; 
}

.dev-error{
  border: 2px solid #BF312F;
  background-color: #FCDFDF;
  padding: 10px;
  margin: 20px auto;
  font-size: 13px; 
  line-height: 15px; 
}


nav a{
  display: inline-block; 
  margin-left: 15px; 
  font-family: "Cormorant Garamond", serif;
  color: var(--primary); 
  text-transform:uppercase; 
  border-bottom: 2px solid transparent; 
  transition:.7s border-color, .7s color;
}
nav a:first-child{
  margin-left:0;
}
nav a:hover{
  color: var(--primary); 
  border-color: var(--gold); 
  transition:.3s border-color, .3s color;
}
nav a.current{
  border-color:var(--primary); 
}

nav a .cart-icon{
  width: 20px; 
  vertical-align:middle; 
}

.hover-zoom{
  transition: .7s transform, .7s background-color;
}
.hover-zoom:hover{
  transform: scale(1.03) rotate(-0.4deg);
  transition: .5s transform, .3s background-color;
}


.xscroll{
  width: 100%;
  overflow-x:auto;
}


header .logo{
  width: 100%; 
}
footer .logo{
  width: 300px; 
}


.overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,.4);
  color: var(--light); 
}


.faq{
  margin-bottom: 15px; 
  overflow: hidden; 
}
.faq .q{
  background-color: var(--gold);
  color: var(--light); 
  font-size: 1.1rem; 
  padding: 10px 25px; 
  cursor: pointer; 
  transition: .3s background-color;
}
.faq .a-wrap{
  display: grid;
  grid-template-rows: 0fr;
  background-color: var(--white);
  transition: grid-template-rows .3s ease;
}
.faq .a-wrap .a{
  overflow: hidden;
  padding: 0 20px;
}
.faq.open .a-wrap{
  grid-template-rows: 1fr;
}
.faq.open .a-wrap .a{
  padding: 25px;
}