:root {
  --accent: #1abc9c;
  --text: #444;
  --text-dark: #2d2d2d;
  --muted: #767676;
  --border: #e1e1e3;
  --panel: #f1f1f1;
  --dark: #1d1d1d;
  --dark-light: #262626;
}

* {
  box-sizing: border-box;
}

html,
body {
  border: 0;
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
}

img {
  height: auto;
  max-width: 100%;
}

main {
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .1s ease-in-out;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-weight: 700;
  line-height: 1.2;
  margin: 50px 0 25px;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1.1em;
}

h6 {
  font-size: .9em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

p {
  line-height: 1.5;
  margin: 0 0 20px;
}

ul,
ol {
  margin: 0 0 30px 30px;
}

li {
  line-height: 1.5;
  margin: 5px 0 0 20px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  font-size: .9em;
  margin: 30px 0;
  width: 100%;
}

tbody {
  border-top: 1px solid #ddd;
}

thead + tbody {
  border-top: 0;
}

th,
td {
  border-bottom: 1px solid #ddd;
  line-height: 1.2;
  padding: 2%;
}

thead {
  vertical-align: bottom;
  white-space: nowrap;
}

th {
  color: var(--text);
  font-weight: 700;
}

figure {
  margin: 0;
}

button {
  appearance: none;
  background-color: var(--dark);
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  margin: 0;
  padding: 16px 18px;
  text-align: center;
  transition: background-color .1s linear, color .1s linear;
}

button:hover {
  background-color: var(--accent);
}

.hidden {
  display: none;
}

.group::after,
.post-content::after {
  clear: both;
  content: "";
  display: block;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.screen-reader-text:focus {
  background-color: var(--panel);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: .875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.section {
  padding: 10% 0;
  position: relative;
}

.section.large-padding {
  padding: 7.5% 0;
}

.section.no-padding {
  padding: 0;
}

.section.bg-dark {
  background: var(--dark);
}

.section.bg-dark-light {
  background: var(--dark-light);
}

.section-inner {
  margin: 0 auto;
  max-width: 86%;
  width: 1040px;
}

.big-wrapper {
  overflow: hidden;
}

.wrapper {
  margin-top: 100px;
}

.content {
  width: 65%;
}

.content.center {
  margin-left: auto;
  margin-right: auto;
}

.header-cover {
  overflow-y: hidden;
}

.header {
  background: no-repeat center;
  background-size: cover;
  padding: 100px 0;
}

.header-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}

.blog-info {
  background: var(--dark);
  display: inline-block;
  max-width: calc(100vw - 32px);
  padding: 30px;
}

.blog-title {
  font-size: 1.75em;
  line-height: 1;
  margin: 0;
  text-align: center;
  width: 100%;
}

.blog-title a {
  color: #fff;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.blog-title a:hover {
  color: var(--accent);
  text-decoration: none;
}

.blog-description {
  color: rgba(255, 255, 255, .5);
  line-height: 1.25;
  margin: 0;
  text-align: center;
}

.blog-description::before {
  background: rgba(255, 255, 255, .1);
  content: "";
  display: block;
  height: 2px;
  margin: 20px auto;
  width: 100px;
}

.blog-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 0 -14px;
}

.blog-menu li {
  line-height: 1;
  margin: 0;
  position: relative;
}

.blog-menu > li + li::before {
  color: var(--text);
  content: "/";
  display: block;
  font-size: 16px;
  line-height: 1;
  margin: -9px 0 0 -3px;
  position: absolute;
  left: 0;
  top: 50%;
}

.blog-menu a {
  color: rgba(255, 255, 255, .5);
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 27px 14px;
  text-transform: uppercase;
  transition: color .2s ease-in-out;
}

.blog-menu a:hover,
.blog-menu .current-menu-item a {
  color: #fff;
  text-decoration: none;
}

.mobile-menu {
  display: none;
}

.post,
.page {
  border-bottom: 4px solid #eee;
  margin-bottom: 10%;
  padding-bottom: 10%;
}

.page .post,
.post:last-of-type,
.page:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.post-header {
  margin-bottom: 6%;
}

.post-title {
  color: var(--text-dark);
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px;
  word-break: break-word;
}

.post-content {
  font-size: 19px;
}

.post-content > *:first-child {
  margin-top: 0 !important;
}

.post-content > *:last-child {
  margin-bottom: 0 !important;
}

.line-list {
  line-height: 1.5;
  margin: 0 0 20px;
}

.line-list p {
  margin: 0;
}

.lead-image {
  margin: 0 0 30px;
  text-align: center;
}

.lead-image img {
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}

.collection-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 0 0 30px;
}

.collection-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
}

.collection-item:hover {
  border-color: var(--accent);
  text-decoration: none;
}

.collection-item img {
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  width: 100%;
}

.collection-item span {
  font-weight: 700;
  line-height: 1.3;
  padding: 12px;
}

.image-gallery {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 30px 0;
}

.image-gallery img {
  background: var(--panel);
  border-radius: 4px;
  display: block;
  height: auto;
  width: 100%;
}

.product-gallery img {
  aspect-ratio: 1;
  object-fit: cover;
}

.image-gallery figcaption {
  color: #666;
  font-size: .9em;
  line-height: 1.3;
  margin-top: 8px;
  text-align: center;
}

.size-options {
  min-width: 520px;
}

.footer {
  font-size: .9em;
  margin-top: 7.5%;
}

.credits.no-padding {
  font-size: .8rem;
}

.credits {
  color: #858585;
}

.credits a,
.credits a:hover {
  color: inherit;
}

.credits-inner {
  border-top: 2px solid rgba(255, 255, 255, .1);
  letter-spacing: 1px;
  padding: 25px 0 4%;
  text-transform: uppercase;
}

.credits-left {
  float: left;
}

.credits-right {
  float: right;
}

.tothetop {
  transition: color .3s ease-in-out;
}

.tothetop:hover {
  cursor: pointer;
}

@media (max-width: 1040px) {
  body {
    font-size: 16px;
  }

  .wrapper {
    margin-top: 7.5%;
  }

  .post-content {
    font-size: 17px;
  }
}

@media (max-width: 800px) {
  body {
    font-size: 18px;
  }

  .content {
    width: 100%;
  }

  .section.large-padding {
    padding: 40px 0;
  }

  .footer {
    margin-top: 60px;
  }

  .navigation-inner {
    max-width: 100%;
  }

  .blog-menu {
    display: none;
  }

  .toggle-container {
    background: var(--dark);
    display: flex;
    justify-content: space-between;
  }

  .toggle {
    background: none;
    border-radius: 0;
    box-shadow: none;
    display: inline-block;
    height: 57px;
    padding: 20px 0;
    position: relative;
    width: 32px;
  }

  .toggle:hover {
    background-color: transparent;
  }

  .nav-toggle .bar {
    background: #666;
    display: block;
    height: 3px;
    margin-top: 4px;
    transition: background-color .2s ease-in-out;
    width: 24px;
  }

  .nav-toggle .bar:first-child {
    margin-top: 0;
  }

  .nav-toggle.active .bar {
    background-color: #fff;
  }

  .navigation {
    background-color: #282828;
  }

  .mobile-menu,
  .mobile-menu li {
    list-style: none;
    margin: 0;
  }

  .mobile-menu a {
    background-color: #282828;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .4);
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 24px;
    text-transform: uppercase;
  }

  .mobile-menu a:hover,
  .mobile-menu .current-menu-item a {
    color: #fff;
    text-decoration: none;
  }

  .post-content {
    font-size: 19px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .post-content h1,
  .post-content h2,
  .post-content h3,
  .post-content h4,
  .post-content h5,
  .post-content h6 {
    margin-bottom: 10px;
    margin-top: 30px;
  }

  .header.section {
    padding: 60px 0;
  }

  .blog-info {
    padding: 20px;
  }

  .blog-title {
    font-size: 1.35em;
  }

  .blog-title a {
    letter-spacing: 3px;
  }

  .blog-description::before {
    margin: 15px auto;
  }

  .post {
    margin-bottom: 35px;
    padding-bottom: 35px;
  }

  .post:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .post-header {
    margin-bottom: 25px;
  }

  .post-title {
    margin-bottom: 12px;
  }

  .post-content {
    font-size: 17px;
  }

  .credits.section {
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .credits-inner {
    border-top: 0;
    padding: 30px 0;
    text-align: center;
  }

  .credits p {
    display: inline;
    float: none;
  }
}

@media (max-width: 500px) {
  body {
    font-size: 15px;
  }

  .header.section {
    padding: 30px 0;
  }

  .post-title {
    font-size: 1.75em;
  }

  .blog-title {
    font-size: 1.2em;
  }

  .blog-title a {
    letter-spacing: 2px;
  }

  .post-content {
    font-size: 16px;
  }

  .size-options {
    min-width: 0;
  }

  .credits-right {
    display: none;
  }
}
