:root {
  --xxl: 64px;
  --xl: 48px;
  --l: 24px;
  --m: 21px;
  --s: 18px;
}

::selection {
  background: #000;
  color: #000001;
}

::-moz-selection {
  background: #000;
  color: #000001;
}

body {
	font-family: Gtamerica Regular, sans-serif, Arial;
	
	background-color: #ffffff;
	color: #000000;
  
  width: 100vw;
  height: 100vh;
  
  -webkit-font-smoothing: antialiased;
  
  -moz-font-feature-settings: 'ss03';
	-webkit-font-feature-settings: 'ss03';
	font-feature-settings: 'ss03' on;
}

.no-scroll {
  overflow-y: hidden;
}

.placeholder {
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: -1;
  background-image: url(jh-pierneef---brandberg-s.w.a..jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  padding: var(--xl);
}

footer {
  width: 100%;
  padding: var(--xl);
}

.page {
  min-height: 100%;
  padding: var(--xl);
  gap: var(--xl);
}

.page.home {
  height: 100%;
  margin-top: 0;
}

menu .page {
  padding: 36px var(--xl);
}

.no-min {
  min-height: unset;
}

.logo img {
  height: 90px;
}

/* Text */

.page-header {
  position: sticky;
	top: var(--xl);
  margin-bottom: 1em;
}

p, ul {
  line-height: 1.5;
  margin-bottom: 1em;
}

ul {
	list-style: disc;
	list-style-position: outside;
}

li ul {
  list-style: circle;
}

li {
  margin-left: 1.5em;
  padding-left: 0.5em;
}

.accordion .item .header h2 {
  position: sticky;
  top: 48px;
}

.indent p {
	text-indent: calc(14% + 48px);
}

.xxl {
	font-size: var(--xxl);
  letter-spacing: -0.05em;
}

.xl {
	font-size: var(--xl);
  letter-spacing: -0.05em;
}

.l {
  font-size: var(--l);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.m {
  font-size: var(--m);
  letter-spacing: -0.03em;
}

.s {
  font-size: var(--s);
}

em {
  font-family: Gtamerica Regularitalic;
}

/* Links */

a {
  text-decoration: none;
  cursor: pointer;
}

p a {
  text-decoration: underline;
  color: #000;
}

/* Menu */

menu {
  background-color: #fff;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 1000;
}

nav a {
  color: black;
  padding: 8px 8px 12px 0;
  line-height: 1;
  display: inline-block;
	width: fit-content;
}

.menu-button {
  z-index: 3;
}

.close-button {
  position: absolute;
  top: 36px;
  right: var(--xl);
}

.show {
  display: block;
}

/* Widths & Heights */

.w-100 {
  width: 100%;
}

.w-20 {
  min-width: 20%;
  max-width: 20%;
}

.h-100 {
  height: 100%;
}

.h-33 {
  height: 33%;
}

/* Blocks */

.blocks {
  gap: var(--xl);
}

.block {
  padding: var(--l);
}

.white-bg {
  background-color: #fff;
}

.black-bg {
  background-color: #000;
}

.w-7 {
  width: 100%;
}

.w-5 {
  width: calc(71% - var(--l));
}

.w-4 {
  width: calc(57% - var(--l));
}

.w-3 {
  width: calc(43% - var(--l));
}

/* Flexbox */

.flex {
  display: flex;
}

.col {
  flex-direction: column;
}

.flex.justify {
  justify-content: space-between;
}

.flex.start {
  justify-content: flex-start;
}

.flex.end {
  justify-content: flex-end;
}

.flex.items-end {
  align-items: flex-end;
}

.flex.center {
  align-items: center;
}

.gap-l {
  gap: var(--xl);
}

/* Content */

.text {
  margin-top: 33vh;
}

/* Accordion */

.accordion {
  z-index: 2;
}

.item {
  padding: 24px 0;
  border-top: solid 1px #000;
}

.description {
  display: none;
}

/* Hover Effects */

@media (min-width: 768px) {
  
  nav a:hover, p a:hover {
    background-color: #000;
  }
  
  nav a:active {
    background-color: #000;    
  }
  
}

/* Mobile */

@media (max-width: 768px) {
    
  :root {
    --xxl: 48px;
    --xl: 32px;
    --l: 24px;
    --m: 21px;
    --s: 18px;
	}
  
  .page {
    margin-top: 25vh;
  }
  
  menu .page {
  	padding: 24px var(--xl);
    margin-top: 0;
	}
  
  .text {
    margin-top: var(--xxl);
  }
    
  .w-5 {
    width: calc(71% - 16px);
  }

  .w-4 {
    width: calc(57% - 16px);
  }

  .w-3 {
    width: calc(43% - 16px);
  }
  
  .s-w-100 {
    min-width: 100%;
    max-width: 100%;
  }
  
  .s-col {
    flex-direction: column;
  }
  
  .close-button {
    top: var(--s);
	}
  
  .accordion .item .header {
    min-width: 100%;
    max-width: 100%;
  }
  
  .item {
    flex-direction: column;
  }
  
}





