body, html {
    font-family: monospace;
    margin: 0;
    color: #332822;
    overflow-x: hidden;
    font-size: 110%;
    background-color:#f9fafa;
}
a {
    font-weight: bold;
    text-decoration: none;
    color: #332822;
}
ul {
    list-style-type: none;
}
strong {
    font-weight:bold;
}

.push-down {
    padding-bottom: 1rem;
}

header {
    z-index: 999;
    width: 100%;
    background-color: rgba(254, 255, 255, 0.85);
    height: 70px;
    border-bottom: 1px solid #999999;

    display: block;
    position: fixed;
    top: 0;

    /*position: absolute;*/
}
header img {
    float: left;
    height: 35px;
    padding-left:2rem;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
header a {
    transition: color ease 200ms;
}
header a:hover {
    color: #76685a;
    transition: color ease 200ms;
}
header span.header-right {
    float: right;
    font-size:large;

    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
header span.header-right a {
    padding:1rem;
}

#hero {
    position: relative;
}
#hero img {
    width: 100%;
    z-index: -999;
    border-bottom: 1px solid #7C7D7D;
}
#hero .hero-image-conatiner {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}
#hero p {
    position: absolute;
    bottom: 1.5em;
    left: 1em;
    font-size: 4.5vw;
}
#hero p span.hero-text {
    color: #f9fafa;
    background-color: #332822;
    padding: .3em;
}
#hero p span.hero-spacer {
    margin-bottom: .3em;  /* same as above padding */
    display: block;
}

#mission {
    padding: 1em 0;
}
#mission p {
    font-size: xx-large;
    text-align: center;
    padding: 1.5em 25%;
    line-height: 1.6em;
}

#price .button-container {
    width: 30%;
    min-width: 200px;
    margin: 0 auto;
    padding: 2rem 0;
}
#price p.button {
    padding: 1.4rem;
    border: 1px solid black;
    background-color: #f9fafa;
    font-size: large;

    transition: background-color ease 200ms;
}
#price p.button:hover {
    background-color: #e6e7e7;

    transition: background-color ease 200ms;
}
#mission a {
    color: #332822;
}

#coffee {
    overflow: hidden;
    margin: 0 auto 3em auto;
    max-width: 960px;
}
#coffee .story-box-wrap {
    width: 33.33%;
    float: left;
}
#coffee .story-box {
    border-top: 1px solid #f9fafa;
    border-right: 1px solid #f9fafa;
    border-bottom: 1px solid #f9fafa;
    border-left: 1px solid #f9fafa;
    text-align: center;

    background-color: #E5CDAE;  /* #F7DCBB, #E6CDAE */
    -o-transition:.35s;
    -ms-transition:.35s;
    -moz-transition:.35s;
    -webkit-transition:.35s;
    transition:.35s;
}
#coffee .story-box:hover {
    /* background: #FCE1BF; */
}
#coffee .story-box-title-wrap {
    position: relative;
    top: 45%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
#coffee .story-box.opened {
    background-color: #F2D8B7;
}
#coffee .story-box .story-box-title-text {
    padding: 0 .5rem;
    font-size: 110%;

    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
#coffee .story-box .story-box-title {
    font-size: 125%;
    position: relative;
}
#coffee .story-box .story-box-title:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #332822;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
}
#coffee .story-box:hover .story-box-title:before, #coffee .story-box.opened .story-box-title:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

#coffee .story-box-content {
    height: 0;
    width: 300%;
    overflow: hidden;
    transition: height 200ms;
}
#coffee .story-box-content-inside {
    width: 80%;
    padding: 5% 10%;
    text-align:center;
}
#coffee .coffee-tags {
    color: #7C7D7D;
    font-size: smaller;
    padding-top: 1em;
    display: inline-block;
    font-weight: 100;
}
#coffee .coffee-tags-inner {
    display: none;
}
#coffee .coffee-price {
    font-weight: bold;
}

#price {
    background-color: #332822;
    clear:both;
    color: #f9fafa;  /* off-white... */
    padding: 5%;
    width: 90%;
    font-size: 110%;
    line-height:150%;
}

.gallery-row {
    padding: 0 0 0 2%;
    overflow: hidden;
    clear: both;
}
.gallery-img-wrap {
    overflow: hidden;
    display: block;
    float: left;
    margin: 2% 2% 0 0;
}
.gallery-img-wrap.narrow {
    width: 37%;
}
.gallery-img-wrap.wide {
    width: 59%; /* NOTE: 65%, minus 2% from row-padding, minus 2% per photo */
}
.gallery-img-wrap img {
    display: block;
    width:100%;
    height: 450px;  /* NOTE: object-fit, for centering the images, won't work without hard-coding the height here. */
    object-fit: cover;
}

#all-coffees {
    padding:2rem 15%;
    width: 70%;
    font-size:large;
    line-height:150%;
}

#about {
    background-color: #332822;
    overflow: hidden;
    color: #f9fafa;  /* off-white... */
    padding-top: 1em;
    width: 100%;
}

.about-info {
    width: 40%;
    float: left;
    padding-left: 4%;
    font-size: 110%;
}
.about-info p {
    padding-bottom: 0;
    padding-top: .55em;
}
.about-info ul {
    padding-left: 0;
    font-size: 85%;
    margin-bottom: 0;
}
.about-info ul li {
    padding-bottom: .25em;
}
.about-info ul li a {
    font-weight: normal;
    color: #f9fafa;
}

.about-map {
    width: 40%;
    float: right;
    padding: 1em 2% 0px 1%
}

.social-icons a i {
    width: 2rem;
    margin: 2rem 0;
}

.footer {
    width: 100%;
    clear: both;
    padding: 3.5em 0 2em 0;
}
.footer .logo-center {
    width: auto;
    max-width: 110px;
    margin: 0 auto;
}
.footer .logo-center img {
    width: 100%;
    height: auto;
}
.footer .slogan {
    text-align: center;
    width: auto;
    margin: 0 auto;
    font-size: 80%;
    padding-top: 1em;
}
.invisible {
    width: 0px;
}

/*@media (min-width: 1280px) {*/
#hero p {
    font-size: 3.75vw;
}
/*    #coffee .story-box-wrap {
        width: 16.66%;
    }*/
#coffee .coffee-tags {
    display: none;
}
#coffee .coffee-tags-inner {
    color: #7C7D7D;
    font-size: smaller;
    display: inline-block;
    font-weight: 100;
}
.invisible {
    width: 1px;
}
#price table {
    margin-top: 1em;
    border-collapse: collapse;
}
#price table td {
    padding: 0.75em;
}
#price table tr {
    border-bottom: 1px solid #f9fafa;
}
#price table tr:last-child {
    border-bottom: none;
}
#price table td:nth-child(1) {
    width: 4em;
}
#price table td:nth-child(2) {
    font-weight: bold;
}

/*}*/
@media (max-width: 600px) {
    header {
        display: block;
        position: fixed;
        top: 0;
    }
    #hero p {
        font-size: 5.5vw;
    }
    #hero img {
        width: 100%;
    }
    #hero .hero-image-conatiner {
        width: 150%;
    }
    #mission p {
        padding: 0 10%;
    }
    #price .button-container {
        width: 80%;
    }
    #coffee .story-box-wrap {
        width: 50%;
    }
    #coffee .story-box .story-box-title {
        font-size: 105%;
    }
    #coffee .story-box-content {
        width: 200%;
    }
    .gallery-img-wrap img {
        height: 350px;
    }
    .invisible {
        width: 2px;
    }
}
@media (max-width: 525px) {
    #hero p {
        font-size: 7.5vw;
    }
    .about-info {
        width: 90%;
        padding-left: 5%;
    }
    .about-map {
        width: 90%;
        float: left;
        padding-left: 5%;
        padding-top: 1em;
    }

    .gallery-img-wrap.wide, .gallery-img-wrap.narrow {
        width: 98%;
    }
}