/*
 * VARS
 */
:root {
  --font-family: 'Lato', sans-serif;
  --font-size-md: 2.1rem;
  --font-size-sm: 1.6rem;
  --font-size-xsm: 1.6rem;
  --color-darkest: #000;
  --color-lightest: #fff;
  --color-bg: #d19106;
  --site-max-width: 128rem;
}
/*760*/
@media screen and (min-width: 47.5em) {
  :root {
    --site-max-width: 68rem;
  }
}
/*1024*/
@media screen and (min-width: 64em) {
  :root {
    --font-size-md: 1.8rem;
    --font-size-sm: 1.8rem;
    --font-size-xsm: 1.4rem;
    --site-max-width: 128rem;
  }
}
/*
 * RESET
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  list-style-type: none;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
strong {
  font-weight: 900;
}
/*
 * LAYOUT
 */
html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family);
  font-size: var(--font-size-md);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  color: var(--color-darkest);
  background-color: var(--color-bg);
  background-image: url(img/bg.svg?v=2);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  line-height: 1.6;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site {
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem;
  width: 100%;
  max-width: var(--site-max-width);
}
.site__logo {
  display: block;
  width: 21rem;
  margin: 0 auto 4rem;
}
.site__title {
  color: var(--color-lightest);
  font-size: var(--font-size-xsm);
  font-weight: 400;
  text-transform: lowercase;
  text-align: center;
  margin-bottom: 4rem;
}
.site__title::before,
.site__title::after {
  content: '|';
  display: inline-block;
}
.site__title::before {
  margin-right: 1rem;
}
.site__title::after {
  margin-left: 1rem;
}
.site__text {
  margin-bottom: 4rem;
}
.site__text p:not(:last-child) {
  margin-bottom: 1.5em;
}
.site__social {
  display: flex;
  margin-bottom: 4rem;
}
.site__social a {
  font-size: var(--font-size-sm);
  color: var(--color-lightest);
  text-decoration: underline;
  transition: color 0.2s linear;
}
.site__social a:hover {
  color: var(--color-darkest);
}
.site__social a:not(:first-child)::before {
  color: var(--color-lightest);
}
.site__social a:not(:first-child)::before,
.site__address-item::before {
  content: '|';
  display: inline-block;
  margin-left: 1rem;
  margin-right: 1rem;
}
.site__address {
  font-size: var(--font-size-xsm);
}

/*
 * RESPONS
 */
/* 760 */

/* 1024 */
@media screen and (min-width: 64em) {
  .site {
    flex-direction: row;
    column-gap: 6rem;
    padding: 4rem 8rem;
  }
  .site__logo {
    margin-bottom: 0;
  }
  .site__title {
    text-align: left;
    margin-top: 2rem;
  }
  .site__social a:not(:first-child)::before {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
