* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  min-width: 375px;
  max-width: 100%;
  font-family: 'Lato', sans-serif;
  background: #1E1E24;
  color: #EEF0F2;
  overflow-x: hidden;
  --footer-opacity: 0;
}

body::after {
  content: "";
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100px;
  background: linear-gradient(to bottom, rgba(30,30,36,0) 0%, #1E1E24 100%);
  pointer-events: none;
  z-index: 100;
  opacity: var(--footer-opacity);
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #1E1E24;
}

#loading-screen svg {
  width: 300px;
  height: auto;
}

.stage-mask {
  fill: none;
  stroke: #ffffff;
  stroke-miterlimit: 10;
  stroke-width: 20px;
}

.fill-white {
  fill: #eef0f2;
}

.fill-red {
  fill: #f21905;
}

.loading-message {
  color: #EEF0F2;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(10px, 4vw, 50px) clamp(10px, 4vw, 50px);
  z-index: 1000;
}

.logo {
  height: clamp(20px, 5vw, 30px);
  width: auto;
}

.contact-btn {
  position: relative;
  border: none;
  padding: clamp(6px, 1vw, 12px) clamp(12px, 2vw, 24px);
  color: rgb(238,240,242);
  cursor: pointer;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 900;
  background-color: transparent;
  outline: none;
  filter: blur(.01em);
  text-shadow: 0 0 2em rgba(238,240,242,0.7);
  transition: all .5s;
}

@supports not (-webkit-touch-callout: none) {
  .contact-btn {
      filter: blur(0.05em);
  }
}

@media (hover: hover) {
  .contact-btn:hover {
      filter: blur(0);
      text-shadow: 0 0 1em rgba(238,240,242,1);
  }  
}

#hero {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  z-index: 1;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  width: clamp(290px, 80vw, 950px);
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 2rem;
  margin-left: clamp(0.5rem, 5vw, 10rem);
}

.hero-content h1 {
  font-family: 'Vollkorn', serif;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: .8em;
  font-weight: bold;
  margin: 0 0 1rem 0;
}

.hero-content h1 span {
  opacity: 0;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 2.5rem);
  opacity: 0;
}

.down-arrow {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  animation: bounce 1.5s infinite;
  cursor: pointer;
}

.down-arrow svg {
  width: 50px;
  height: 50px;
  fill: #EEF0F2;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

#content {
  position: relative;
  top: 100vh;
  min-height: calc(100vh + 200px);
  width: 100vw;
  padding: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(30, 30, 36, 0.5);
  backdrop-filter: blur(20px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 1) 200px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 1) 200px);
}

#content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  padding: 200px 0 0 0;
}

.services-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
}

.services-container {
  max-width: 1200px;
  width: 100%;
  text-align: left;
}

.services-headline {
  font-family: 'Vollkorn', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: #f21905;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
  text-decoration-skip-ink: auto;
}

.services-subheadline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}

.service-item {
  display: grid;
  grid-template-rows: 40% 60%;
  min-height: 200px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  border-radius: 10px;
}

.service-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  display: flex;
  align-items: center;
  text-align: left;
  margin: 1rem 0 0.5rem 0;
}

.service-description {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
  display: flex;
  align-items: first baseline;
  justify-content: flex-start;
  text-align: left;
  margin-top: .5rem;
}


.how-we-work {
  margin-top: 3rem;
}

.how-we-work h3 {
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: #f21905;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-skip-ink: auto;
}

.how-we-work-title {
  font-family: 'Vollkorn', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.how-we-work-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}


.how-we-work-card {
  font-size: 1rem;
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.how-we-work-card h4 {
  color: #F2B705;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  text-shadow: 0 0 .5rem rgba(30,30,36,.5);
}

.how-we-work-card p {
  font-weight: 300;
}

@media (max-width: 768px) {
  .how-we-work-cards-container {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 1024px) {
  .services-headline {
    font-size: 2.5rem;
  }

  .services-subheadline {
    font-size: 1rem;
  }

  .service-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-list {
    grid-template-columns: 1fr;
  }

  .services-subheadline {
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .services-headline {
    font-size: 1.5rem;
  }

  .services-subheadline {
    font-size: 0.8rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-description {
    font-size: 0.9rem;
  }

  .how-we-work-title {
    font-size: 1.5rem;
  }
}

.value-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
}

.value-container {
  max-width: 1200px;
  width: 100%;
}

.value-container input[type="radio"] {
  display: none;
}

.tabs-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
}

.tab-wrapper {
  position: relative;
}

.tabs-header .tab {
  display: inline-block;
  font-family: 'Vollkorn', serif;
  font-weight: 700;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
  filter: blur(1px);
  transition: opacity 0.3s, filter 0.3s;
  text-align: left;
}

.tab-left {
  margin-right: 1rem;
}

.tabs-header .tab:hover {
  opacity: 1;
  filter: blur(0);
}

#tab1:checked ~ .tabs-header label[for="tab1"],
#tab2:checked ~ .tabs-header label[for="tab2"] {
  display: inline-block;
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: #f21905;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-skip-ink: auto;
  filter: blur(0);
}

.tabs-content {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.tab-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  filter: blur(10px);
  transform: translateY(5px);
}

.tab-panel.active {
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
  transform: translateY(0);
}

#tab1:checked ~ .tabs-content #panel1,
#tab2:checked ~ .tabs-content #panel2 {
  pointer-events: auto;
}

#panel2 {
  display: grid;
  grid-template-columns: 40% 60%;
}

.section-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: 500;
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.difference-list li {
  font-size: 1rem;
  font-weight: 300;
}

.difference-list li strong {
  color: #F252BA;
  text-shadow: 0 0 .5rem rgba(30,30,36,.5);
}

@media (max-width: 768px) {
  .difference-list {
    grid-template-columns: 1fr;
  }
}

#panel2 {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

#panel2 .tab-image {
  flex: 0 0 25%;
  position: relative;
  min-height: 300px;
  overflow: visible;
  margin: 20px;
  border: 1px solid rgba(238,240,242,.4);
  border-radius: 2px;
}

#panel2 .tab-image::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: rgba(238,240,242,.3);
  filter: blur(9px);
  border-radius: 2px; 
  z-index: -1;
}

#panel2 .tab-image .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2px; 
}

@media (max-width: 768px) {
  #panel2 .tab-image .image {
    background-position: top center;
  }
}

#panel2 .tab-image .image1 {
  background-image: url('images/mother-earth.png');
  opacity: 1;
  filter: blur(0px);
  border-radius: 2px; 
}

#panel2 .tab-image .image2 {
  background-image: url('images/on-stage.png'); 
  opacity: 0;
  filter: blur(10px);
  border-radius: 2px; 
}

#panel2 .panel-text {
  flex: 1;
}

@media (max-width: 768px) {
  #panel2 {
    flex-direction: column;
  }
  
  #panel2 .panel-text {
    order: 1;
  }
  
  #panel2 .tab-image {
    order: 2;
    width: 90%;
    height: 475px;
  }
}

.edge-list {
  list-style: none;
  padding: 0;
}

.edge-list li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
}

.edge-list li strong {
  color: #F252BA;
  text-shadow: 0 0 .5rem rgba(30,30,36,.5);
}

@media (max-width: 1024px) {
  .tabs-header .tab {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .tabs-header .tab {
    font-size: 1.8rem;
  }
}

@media (max-width: 375px) {
  .tabs-header .tab {
    font-size: 1.5rem;
  }
  .section-description,
  .difference-list li,
  .edge-list li {
    font-size: 0.9rem;
  }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.modal-content {
    background: #EEF0F2;
    padding: 20px;
    border-radius: 5px;
    width: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    filter: blur(0px);
    transition: filter 0.5s ease;
    will-change: filter;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 10;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

.modal-overlay h1 {
    font-family: 'Vollkorn', serif;
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    color: #f21905;
    text-shadow: 1px 1px 2px #EEF0F2;
    display: block;
    margin: 0;
}

.modal-overlay p {
    font-family: 'Lato', sans-serif;
    color: #1E1E24;
    text-shadow: 1px 1px 2px #EEF0F2;
    font-size: 20px;
    font-weight: 400;
    display: block;
    width: 300px;
    margin-top: 5px;
}

#contact-failure {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    will-change: opacity;
}

#contact-success {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    will-change: opacity;
}


.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #1E1E24;
}
  
.title {
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  color: #1E1E24;
  font-family: 'Vollkorn', serif;
}
  
.form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
  
.group {
  position: relative;
}
  
.form .group label {
  font-size: 14px;
  color: #1E1E24;
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #EEF0F2;
  transition: all .3s ease;
}

.form .group input,
.form .group textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgba(30, 30, 36, 0.2);
  margin-bottom: 20px;
  outline: 0;
  width: 100%;
  background-color: transparent;
}

.form .group input:placeholder-shown+ label, 
.form .group textarea:placeholder-shown +label {
  top: 10px;
  background-color: transparent;
}

.form .group input:focus,
.form .group textarea:focus {
  border-color: #F21905;
}

.form .group input:focus+ label, .form .group textarea:focus +label {
  top: -10px;
  left: 10px;
  background-color: #EEF0F2;
  color: #F21905;
  font-weight: 600;
  font-size: 14px;
}

.form .group textarea {
  resize: none;
  height: 100px;
}
  
.form button {
  width: 110px;
  font-family: inherit;
  font-size: 20px;
  background: #F21905;
  color: #EEF0F2;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.form button span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.form button svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.form button:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.form button:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.form button:hover span {
  transform: translateX(5em);
}

.form button:active {
  transform: scale(0.95);
}
  
  @keyframes fly-1 {
    from {
      transform: translateY(0.1em);
    }
  
    to {
      transform: translateY(-0.1em);
    }
  }
  
.legal {
  color: #1E1E24;
  font-size: 10px;
  font-weight: 300;
  margin-top: 20px;
}


@media screen and (min-width: 600px)  {
    .mobile-break { display: none; }
}