@charset "UTF-8";

/* ———————————————————————————— */

*,
*::before,
*::after {
  box-sizing: border-box;
  /* transition: all 0.5s ease-in-out; */
}

body {
  background-color: #dfd7c9;
  font-family: freight-big-pro, serif;
  font-size: 24px;
  margin: 0;
  position: relative;
  min-height: 700px;
}

a {
  text-decoration: none;
  color: #333b40;
  /* border-bottom: 1px solid transparent; */
  /* transition: border-bottom-color 0.4s ease; */
}

a:hover {
  /* border-bottom: 1px solid #333b40; */
  text-decoration: none;
}

/* ———————————————————————————— */

header {
  position: relative;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: end;
  height: 100px;
}

@media (min-width: 800px){
  header {
    display: none;
  }
}

/* ———————————————————————————— */


header div {
  text-align: center;
  letter-spacing: 1.25px;
  font-size: 10px;
  font-weight: 400;
  color: #1a1919;
  padding: 0px 0 18px;
}

section {
  text-align: center;
  position: relative;
  padding: 0 30px 40px;
  /* flex-direction: column; */
  /* justify-content: center; */
  /* align-items: center; */
}

/* ———————————————————————————— */

.title {
  max-width: 420px;
  margin: 20px auto 0;
}

@media (min-width: 800px){
  .title {
    margin: 0;
    max-width: none;
  }
}

/* ———————————————————————————— */

h1 {
  color: #333b40;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 0.9;
  margin: 0 0 20px;
}

@media (min-width: 480px){
  h1 {
    letter-spacing: 2px;
    margin: 0 0 34px;
    font-size: 84px;
  }
}

@media (min-width: 800px){
  h1 {
    letter-spacing: 3px;
    margin: 25px 0;
    font-size: 100px;
  }
}

/* ———————————————————————————— */

.loc {
  color: #333b40;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9.8px;
  font-weight: 300;
  letter-spacing: 1.3px;
  margin: 0;
  text-transform: uppercase;
}

@media (min-width: 480px){
  .loc {
    font-size: 14.5px;
    letter-spacing: 2px;
  }
}

@media (min-width: 800px){
  .loc {
    font-size: 23px;
    letter-spacing: 3px;
  }
}

/* ———————————————————————————— */

.loc span:first-of-type {
  margin-right: 12px;
}

@media (min-width: 800px){
  .loc span:first-of-type {
    margin-right: 30px;
  }
}

/* ———————————————————————————— */

.note {
  color: #968470;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 50px 0 55px;
}

@media (min-width: 480px){
  .note {
    font-size: 44px;
    letter-spacing: 1px;
    margin: 80px 0 100px;
  }
}

@media (min-width: 800px){
  .note {
    font-size: 72px;
    letter-spacing: 3px;
    margin: 100px 0 130px;
  }
}

/* ———————————————————————————— */

.about {
  color: #333b40;
  font-family: freight-big-pro, serif;
  letter-spacing: 0;
  font-size: 8.5px;
}

@media (min-width: 800px){
  .about {
    font-size: 21.1px;
  }
}

/* ———————————————————————————— */

nav {
  overflow: hidden;
  padding: 33px 0 100px 15px;
  width: 100%;
}

@media (min-width: 800px){
  nav {
    padding: 100px 0 170px 65px;
  }
}

/* ———————————————————————————— */

nav ul {
  text-align: left;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  list-style: none;
  font-size: 7px;
  margin: 0;
  padding: 0;
  line-height: 2;
  letter-spacing: 1.75px;
  color: #333b40;
  position: relative;
}

@media (min-width: 800px){
  nav ul {
    letter-spacing: 3px;
    font-size: 13.5px;
  }
}

/* ———————————————————————————— */

nav ul:before,
nav ul:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
}

/* ———————————————————————————— */

nav ul:before {
  top: -71px;
  border-bottom: 70px solid #d1c7bb;
  border-left: 5px solid transparent; 
}

@media (min-width: 800px){
  nav ul:before {
    left: 4px;
    top: -176px;
    border-bottom: 170px solid #d1c7bb;
    border-left: 12px solid transparent;
  }
}

/* ———————————————————————————— */

nav ul:after {
  bottom: -71px;
  border-top: 70px solid #d1c7bb;
  border-left: 5px solid transparent;
  
}

@media (min-width: 800px){
  nav ul:after {
    left: 4px;
    bottom: -176px;
    border-top: 170px solid #d1c7bb;
    border-left: 12px solid transparent;
  }
}

/* ———————————————————————————— */
