/**
 * CONTENTS............You’re reading it!
 * NORMALIZE...........HOLY SHIT NO NORMALIZER!
 * FONT-FACE...........Font family names
 * MIXINS..............LESS mixins
 * ELEMENTS............Basic tag styles
 * LAYOUT..............Template layout/structure
 * CONTENT.............Styles for shared & inside content
 * RESPONSIVE..........Built mobile-first; any necessary responsive styles appear
 * 					   directly after the element they affect, instead of all at the bottom
 */
/*------------------------------------*\
    #FONT-FACE
    font-family: 'Oxygen', sans-serif;
    light: 300
    font-family: 'Noto Serif', serif;
\*------------------------------------*/
/*------------------------------------*\
    #MIXINS
\*------------------------------------*/
/*------------------------------------*\
    #ELEMENTS
\*------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body,
html {
  color: #333333;
  font-family: "Noto Serif", serif;
  font-size: 16px;
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oxygen", sans-serif;
  font-weight: 300;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}
ul.list-unstyled,
ol.list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #178072;
}
a:visited {
  color: #cb9004;
}
p,
ul,
ol {
  line-height: 1.5;
}
/*------------------------------------*\
    #LAYOUT
\*------------------------------------*/
.home header {
  background: url(../images/home-billboard-vertical.jpg) center center / cover no-repeat;
  height: 100vh;
  position: relative;
  width: 100%;
}
@media screen and (min-aspect-ratio: 1/1) {
  .home header {
    background: url(../images/home-billboard.jpg) 0 0 / cover no-repeat;
  }
}
.home header h1 {
  color: #ffffff;
  display: inline-block;
  font-size: 1.75rem;
  left: 0;
  line-height: 1;
  margin: 0;
  padding: 1rem 0 0 1rem;
  position: relative;
  text-align: right;
  top: 0;
}
.home header h1.fixed {
  position: fixed;
  top: 52px;
  z-index: 2;
}
@media screen and (min-width: 1320px), screen and (min-width: 360px) and (max-width: 767px) {
  .home header h1.fixed {
    top: 10px;
  }
}
@media screen and (max-width: 359px) {
  .home header h1.fixed {
    top: 0;
  }
}
.home header h1.white {
  background: #ffffff;
  color: #000000;
}
.home header h1.white::after {
  background: #ffffff;
  content: "";
  height: 7rem;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) and (max-width: 1319px) {
  .home header h1.white::after {
    height: 10.5rem;
  }
}
.home header h1 small {
  display: block;
  font-size: 1.25rem;
}
.home header h1::before {
  background: #178072;
  bottom: 1px;
  content: "";
  display: block;
  height: 1rem;
  left: 0;
  position: absolute;
  width: 100px;
}
@media screen and (min-width: 360px) {
  .home header h1 {
    font-size: 2.25rem;
  }
  .home header h1 small {
    font-size: 1.5rem;
  }
  .home header h1::before {
    bottom: 3px;
    width: 135px;
  }
}
@media screen and (min-width: 768px) {
  .home header h1 {
    display: block;
    font-size: 3rem;
    left: 17.5%;
    padding: 0;
    position: absolute;
    top: 25%;
  }
  .home header h1 small {
    font-size: 2rem;
  }
  .home header h1::before {
    height: 1.5rem;
    left: auto;
    right: 57%;
    width: calc(100% + 17.5vw);
  }
}
.home header #trigger {
  position: absolute;
  top: 75%;
  width: 100%;
}
nav {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  nav {
    width: 100%;
  }
}
nav.white {
  background: #ffffff;
}
nav input {
  left: -9999px;
  opacity: 0;
  position: absolute;
}
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 1rem 2rem 0 0;
}
@media screen and (max-width: 767px) {
  nav ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #178072;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100vh;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    left: 0;
    padding: 25vh 0;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 300ms ease-out;
    transition: -webkit-transform 300ms ease-out;
    transition: transform 300ms ease-out;
    transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
    width: 100%;
  }
}
nav input:checked ~ ul {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
nav a {
  color: #ffffff;
  font-family: "Oxygen", sans-serif;
  font-size: 1.5rem;
  padding: 1rem;
  position: relative;
  text-decoration: none;
}
nav a::after {
  background: #178072;
  bottom: 12px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scaleX(0);
          transform: translateX(-50%) scaleX(0);
  -webkit-transform-origin: left 0;
          transform-origin: left 0;
  -webkit-transition: -webkit-transform 300ms ease-out;
  transition: -webkit-transform 300ms ease-out;
  transition: transform 300ms ease-out;
  transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
  width: calc(100% - 2rem);
}
nav a:hover::after {
  -webkit-transform: translateX(-50%) scaleX(1);
          transform: translateX(-50%) scaleX(1);
}
nav a:visited {
  color: #ffffff;
}
nav.white a {
  color: #000000;
}
nav .active a::after {
  background: #178072;
  bottom: 12px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 2rem);
}
nav label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: none;
  color: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0;
  height: 44px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0 10px;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 44px;
}
@media screen and (min-width: 768px) {
  nav label {
    display: none;
  }
}
nav label span {
  background: #fff;
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 3px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  width: 100%;
}
nav label span::before,
nav label span::after {
  background: #ffffff;
  content: "";
  display: block;
  height: 3px;
  position: relative;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  width: 100%;
}
nav label span::before {
  top: -9px;
}
nav label span::after {
  top: 6px;
}
nav.white label span,
nav.white label span::before,
nav.white label span::after {
  background: #000000;
}
nav input:checked ~ label span {
  background: transparent;
}
nav input:checked ~ label span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
nav input:checked ~ label span::after {
  top: -3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.inside header {
  background: #ffffff;
  padding-bottom: 1rem;
  position: fixed;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .inside header {
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 1320px) {
  .inside header {
    padding-bottom: 2rem;
  }
}
.inside header h1 {
  color: #000000;
  display: inline-block;
  font-size: 1.75rem;
  left: 0;
  line-height: 1;
  margin: 0;
  padding: 1rem 0 0 1rem;
  position: relative;
  text-align: right;
  top: 52px;
}
@media screen and (min-width: 1320px) {
  .inside header h1 {
    top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .inside header h1 {
    top: 0;
  }
}
.inside header h1 small {
  display: block;
  font-size: 1.25rem;
}
.inside header h1::before {
  background: #178072;
  bottom: 1px;
  content: "";
  display: block;
  height: 1rem;
  left: 0;
  position: absolute;
  width: 100px;
}
@media screen and (min-width: 360px) {
  .inside header h1 {
    font-size: 2.25rem;
  }
  .inside header h1 small {
    font-size: 1.5rem;
  }
  .inside header h1::before {
    bottom: 3px;
    width: 135px;
  }
}
@media screen and (min-width: 768px) {
  .inside header h1 {
    font-size: 3rem;
    left: 17.5%;
    padding: 0;
  }
  .inside header h1 small {
    font-size: 2rem;
  }
  .inside header h1::before {
    height: 1.5rem;
    left: auto;
    right: 57%;
    width: calc(100% + 17.5vw);
  }
}
.inside header nav a {
  color: #000000;
}
.inside header nav label span,
.inside header nav label span::before,
.inside header nav label span::after {
  background: #000000;
}
footer {
  font-family: "Oxygen", sans-serif;
  padding: 0 1rem 2rem;
  text-align: center;
}
/*------------------------------------*\
    #CONTENT
\*------------------------------------*/
.home header blockquote {
  color: #fff;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 2rem;
  margin: 0;
  max-width: 24rem;
  padding-right: 1rem;
  position: absolute;
  text-shadow: 1px 1px #000;
  -webkit-transition: all 800ms ease-out;
  transition: all 800ms ease-out;
  width: auto;
}
.home header blockquote.fade {
  opacity: 0;
}
@media screen and (min-width: 600px) {
  .home header blockquote {
    bottom: auto;
    top: 50vh;
  }
}
.home header blockquote span {
  font-size: 8em;
  line-height: 1rem;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
}
.gallery--item {
  cursor: pointer;
  margin: 0;
  overflow: hidden;
  padding: 0 0 1px 1px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .gallery--item {
    width: 33.333%;
  }
}
.gallery--item img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.gallery--item p {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(23, 128, 114, 0.8);
  bottom: 1px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Oxygen", sans-serif;
  font-size: 1.25rem;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 1px;
  margin: 0;
  padding: 0.5rem;
  position: absolute;
  text-align: center;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 450ms ease-out;
  transition: all 450ms ease-out;
  width: 100%;
}
.gallery--item p span {
  display: block;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .gallery--item p {
    font-size: 1.5rem;
  }
}
.gallery--item:hover p {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.gallery--item blockquote {
  -ms-flex-line-pack: start;
      align-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 2rem 1rem 6rem;
}
.gallery--item blockquote span {
  font-size: 8em;
  line-height: 1rem;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
}
.inside main {
  padding-top: 5rem;
  padding-bottom: 3rem;
  position: relative;
}
.inside main h2 {
  color: #ffffff;
  font-size: 2rem;
  left: 60%;
  line-height: 1;
  margin: 0;
  position: absolute;
  top: 6rem;
  z-index: 1;
}
.inside main h2.title--portfolio {
  color: #000;
}
.inside main h2 span {
  display: inline-block;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
}
.inside main h2::after {
  bottom: 4px;
  content: "";
  height: 1rem;
  left: 0;
  position: absolute;
  width: 50vw;
}
.inside main h2.title--bio::after,
.inside main h2.title--contact::after {
  background: #cb9004;
}
.inside main h2.title--press::after,
.inside main h2.title--portfolio::after,
.inside main h2.title--show::after {
  background: #cb220d;
}
.inside main h2.title--upcoming::after,
.inside main h2.title--coaching::after {
  background: #678200;
}
.inside main h2.title--experience::after {
  background: #380022;
}
.inside main h2.title--surtitles::after {
  background: #178072;
}
.inside main .cover-image {
  margin: 0;
  padding: 0;
}
.inside main .cover-image figcaption {
  font-size: 0.875rem;
  line-height: 2;
  padding: 0 1rem;
}
@media screen and (min-width: 1441px) {
  .inside main .cover-image figcaption {
    padding: 0;
  }
}
.inside main article {
  margin: 0 auto;
  max-width: 37rem;
  padding: 1rem;
}
.inside main.portfolio article {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: none;
  padding-left: 0;
}
@media screen and (min-width: 360px) {
  .inside main {
    padding-top: 6rem;
  }
  .inside main h2 {
    top: 7rem;
  }
}
@media screen and (min-width: 600px) {
  .inside main h2 {
    font-size: 2.5rem;
  }
  .inside main h2::after {
    height: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .inside main {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    max-width: 1440px;
    padding-top: 10rem;
  }
  .inside main h2 {
    left: 45%;
    top: 11rem;
  }
  .inside main h2::after {
    width: 55vw;
  }
  .inside main .cover-image {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    max-width: 50%;
    width: 50%;
  }
  .inside main article {
    padding-top: 4rem;
    padding-left: 3rem;
  }
}
@media screen and (min-width: 900px) {
  .inside main article {
    padding-top: 6rem;
    padding-left: 5rem;
  }
}
.inside main h3 {
  font-size: 1.5rem;
}
.inside main dl {
  margin: 0;
}
.inside main dt {
  margin-top: 1rem;
}
.inside main dd {
  margin: 0;
}
.show {
  margin: 0 auto;
  max-width: 1440px;
}
.show small {
  display: block;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.show--image {
  border: 3px solid #fff;
  cursor: nesw-resize;
  float: left;
  width: 33.333%;
}
.contact-options {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 1rem;
}
@media screen and (min-width: 769px) {
  .contact-options {
    padding-top: 3rem;
  }
}
.contact-options a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #178072;
  border-radius: 4px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Oxygen", sans-serif;
  font-size: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1rem 0;
  padding: 0.75rem 2rem;
  text-decoration: none;
  -webkit-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
}
.contact-options .icon {
  display: inline-block;
  fill: #ffffff;
  height: 1em;
  margin-right: 0.5rem;
  width: 1em;
}
.contact-options a:hover,
.contact-options a:visited {
  background-color: #cb9004;
}
