@charset "UTF-8";

/* Reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
figcaption,
footer,
header,
menu,
nav,
section,
time,
mark {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Base */

body {
  margin: 0;
  padding: 0;
  padding-top: 44px;
  background-color: black;
}

body,
input,
textarea,
select {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75em;
  letter-spacing: 0;
  color: #161616;
}

a.phone {
  color: #fff;
}

h1 {
  font-weight: 300;
  font-size: 3em;
  color: #777;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  line-height: 1em;
  font-size: 1.5em;
  color: #777;
}

h1,
h2 {
  letter-spacing: -0.025em;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
}

strong,
b {
  font-weight: 500;
  color: #000000;
}

em,
i {
  font-style: italic;
}

a {
  text-decoration: none;
  color: #80ba8e;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.toggle:focus-visible {
  outline: 3px solid #80ba8e;
  outline-offset: 2px;
}

sub {
  position: relative;
  top: 0.5em;
  font-size: 0.8em;
}

sup {
  position: relative;
  top: -0.5em;
  font-size: 0.8em;
}

hr {
  border: 0;
  border-top: solid 1px #ddd;
  margin: 3em 0 0 0;
  padding: 3em 0 0 0;
}

blockquote {
  border-left: solid 0.5em #ddd;
  padding: 1em 0 1em 2em;
  font-style: italic;
}

p,
ul,
ol,
dl,
table {
  margin-bottom: 1em;
}

header {
  margin-bottom: 1.6em;
}

header h2 {
  font-size: 2em;
}

header h3 {
  font-size: 2em;
  margin: 0.5em 0 2em 0;
}

header .byline {
  display: block;
  margin: 1.5em 0 0 0;
  padding: 0 0 0.5em 0;
  font-size: 1.2em;
}

footer {
  margin-top: 1em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

section,
article {
  clear: both;
  margin: 2em 0;
}

section:first-child,
article:first-child {
  margin-top: 0;
}

section > :last-child,
article > :last-child {
  margin-bottom: 0;
}

.row > section,
.row > article {
  margin: 0;
}

.left {
  text-align: left;
}

.spacer {
  width: 100%;
  height: 4em;
}

/* Images */

.image {
  display: inline-block;
}

.image img {
  width: 100%;
}

.image.featured,
.image.full {
  display: block;
  width: 100%;
}

ul.list li {
  margin-left: 2em;
}

/* Buttons */

.button {
  position: relative;
  display: block;
  width: 100%;
  background: #80ba8e;
  padding: 0.8em 2em;
  text-decoration: none !important;
  font-size: 1.2em;
  font-weight: 300;
  color: #fff !important;
  transition:
    color 0.35s ease-in-out,
    background-color 0.35s ease-in-out;
  text-align: center;
  border-radius: 0.25em;
}

.button:hover {
  background: #70aa7e;
  color: #fff !important;
}

/* Layout grid (12-column, replaces the old JS-generated Skel grid) */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}

.container.small {
  max-width: 900px;
}

.container.big {
  max-width: 1500px;
}

.row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.row + .row {
  margin-top: 10px;
}

.row.flush {
  gap: 0;
}

/* Mobile title bar + slide-out nav */

#titleBar {
  background: #161616;
  display: block;
  height: 44px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
}

#titleBar .title {
  display: block;
  line-height: 44px;
  text-align: center;
}

#titleBar .title a {
  display: block;
  color: #fff;
  text-align: center;
  line-height: 44px;
  font-weight: 300;
  text-decoration: none;
}

#titleBar .tag {
  display: none;
}

#titleBar .toggle {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 60px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

#titleBar .toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 12px;
  position: absolute;
  left: 10px;
  top: 15px;
  background: url("/inc/img/toggle.svg") 0 0 no-repeat;
  opacity: 0.5;
}

#titleBar .toggle:active::after {
  opacity: 0.75;
}

#navPanel {
  background: #1f1f1f;
  display: block;
  height: calc(100% - 44px);
  left: -80%;
  overflow-y: auto;
  position: fixed;
  top: 44px;
  transition: left 0.25s ease-in-out;
  width: 80%;
  z-index: 10000;
}

body.nav-open #navPanel {
  left: 0;
}

body.nav-open {
  overflow: hidden;
}

#navPanel .link {
  display: block;
  color: #fff;
  text-decoration: none;
  height: 44px;
  line-height: 44px;
  border-top: solid 1px;
  border-color: rgba(255, 255, 255, 0.05);
  padding: 0 1em;
  letter-spacing: 1px;
}

#navPanel .link:first-child {
  border-top: 0;
}

/* Header / nav (desktop) */

#logo,
#nav {
  display: none;
}

#header {
  position: relative;
  height: 10em;
  padding: 0;
  background: url("/inc/img/bg-main.jpg") no-repeat center center;
  background-attachment: scroll;
  background-size: cover;
  text-align: center;
}

#header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(64, 64, 64, 0.125);
}

#logo {
  position: relative;
  z-index: 1;
}

#logo .logo-text {
  line-height: 1em;
  font-family: "Calligraffitti", cursive;
  font-size: 4em;
  color: #fff;
  text-shadow: 5px 5px 5px #000000;
  margin: 0 0 0.125em 0;
}

#logo span {
  font-size: 1.6em;
  line-height: 2.5em;
  color: #fff;
  text-shadow: 3px 3px 1px #000000;
}

#nav-wrapper {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#nav > ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

#nav > ul > li {
  display: inline-block;
  border-right: 1px solid;
  border-color: rgba(255, 255, 255, 0.4);
  font-size: 1.2em;
  text-shadow: 2px 2px 2px black;
}

#nav > ul > li:last-child {
  border-right: none;
}

#nav > ul > li > a {
  display: inline-block;
  padding: 1em;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  outline: 0;
  color: #fff;
}

#nav li a:hover {
  text-shadow: 0 0 8px white;
}

/* Main content areas */

#main {
  position: relative;
  background: #fff;
  padding: 4em 0 2em 0;
}

.content {
  text-align: center;
}

.content header h2 {
  padding: 0.7em 0;
  font-size: 1.4em;
  color: #888888;
}

.content header .byline {
  color: #3c3c3c;
}

.sidebar h2 {
  display: block;
  padding-bottom: 0.5em;
  font-size: 1.8em;
}

.home_header {
  font-size: 3em;
  font-weight: 300;
  color: #777;
  text-align: center;
  letter-spacing: -0.025em;
}

#featuredLine {
  background: #f2f2f2;
  text-align: center;
  padding: 2em 1em;
}

#featured {
  position: relative;
  background: #f2f2f2;
  text-align: center;
  padding: 4em 0 3em 0;
}

#DesktopHeader {
  display: none;
}

#MobileHeader {
  display: block;
  margin-bottom: 2em;
}

#featured h3 {
  display: block;
  font-weight: 300;
  padding: 1.5em 0;
  font-size: 1.4em;
}

#tweet {
  position: relative;
  text-align: center;
  background: url("/inc/img/bg-main.jpg") no-repeat center center;
  background-attachment: scroll;
  background-size: cover;
  padding: 3em 0 1em 0;
}

#tweet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(64, 64, 64, 0.5);
}

#tweet h2 {
  position: relative;
  border: none;
  margin: 0;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 2em;
}

/* Footer */

#footer {
  position: relative;
  text-align: center;
  background-color: black;
  padding: 4em 0 2em 0;
}

#footer header h2 {
  color: #fff !important;
}

#footer header .byline {
  color: rgba(255, 255, 255, 0.2);
}

#footer header .address {
  background-color: black;
  margin: 2em 0;
  color: #e5e5e5;
  font-size: 1.5em;
}

#footer header .facebook {
  display: none;
}

.facebook img {
  opacity: 0.7;
}

.facebook img:hover {
  opacity: 1;
}

.clear {
  clear: both;
}

.hidden {
  display: none;
}

/* Contact page map */

#MapOuter {
  position: relative;
  text-align: right;
  width: 100%;
  max-width: 750px;
  height: 300px;
  margin: 0 0 2em auto;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 100%;
}

.gmap_canvas iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact h2 {
  font-size: 1.5em;
  color: black;
}

.contact h3 {
  font-size: 1.2em;
  color: #494949;
}

/* Medium and up (≥481px): desktop nav, multi-column grid */

@media (min-width: 481px) {
  body {
    padding-top: 0;
  }

  p {
    font-size: 1.2em;
    line-height: 2em;
  }

  #titleBar,
  #navPanel {
    display: none;
  }

  #logo,
  #nav {
    display: block;
  }

  #DesktopHeader {
    display: block;
  }

  #MobileHeader {
    display: none;
  }

  .home_header {
    font-size: 3.4em;
    margin-bottom: 1em;
  }

  .row {
    grid-template-columns: repeat(12, 1fr);
    gap: 50px;
  }

  .row + .row {
    margin-top: 0;
  }

  .row.flush {
    gap: 0;
  }

  .row > [class~="12u"] {
    grid-column: span 12;
  }
  .row > [class~="11u"] {
    grid-column: span 11;
  }
  .row > [class~="10u"] {
    grid-column: span 10;
  }
  .row > [class~="9u"] {
    grid-column: span 9;
  }
  .row > [class~="8u"] {
    grid-column: span 8;
  }
  .row > [class~="7u"] {
    grid-column: span 7;
  }
  .row > [class~="6u"] {
    grid-column: span 6;
  }
  .row > [class~="5u"] {
    grid-column: span 5;
  }
  .row > [class~="4u"] {
    grid-column: span 4;
  }
  .row > [class~="3u"] {
    grid-column: span 3;
  }
  .row > [class~="2u"] {
    grid-column: span 2;
  }
  .row > [class~="1u"] {
    grid-column: span 1;
  }

  header h1,
  header h2 {
    font-size: 3.4em;
  }

  header .byline {
    font-size: 1.7em;
  }

  #header {
    height: auto;
    padding: 10em 0 6em 0;
    background-attachment: fixed;
    background-position: bottom center;
  }

  .mainpage #header {
    padding: 12em 0 8em 0;
  }

  #logo .logo-text {
    font-size: 7em;
  }

  #logo span {
    font-size: 2.5em;
  }

  #main {
    padding: 6em 0;
  }

  .content header h2 {
    padding: 0.7em 0;
    font-size: 2.2em;
  }

  .sidebar h2 {
    font-size: 2.4em;
  }

  .spacer {
    height: 10em;
  }

  #footer {
    padding: 3em 0;
  }

  #footer header .address {
    margin: 2em 0 2em 2em;
    float: left;
  }

  #footer header .facebook {
    display: block;
    margin: 2.5em 2em 0 0;
    float: right;
  }

  #featured {
    padding: 4em 0;
  }

  #featured h3 {
    font-size: 1.6em;
  }

  #tweet {
    background-attachment: fixed;
    background-position: center center;
  }

  #tweet h2 {
    font-size: 2.5em;
  }

  #MapOuter {
    height: 450px;
  }
}

/* Medium band only (481–1200px): narrower container overrides desktop above */

@media (min-width: 481px) and (max-width: 1200px) {
  .container {
    max-width: 960px;
    padding: 0;
  }

  header h2 {
    font-size: 2.8em;
  }

  header .byline {
    font-size: 1.2em;
  }

  .content header h2 {
    font-size: 1.8em;
  }
}

/* Desktop (>1200px) */

@media (min-width: 1201px) {
  .container {
    padding: 0;
  }
}
