/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3690e7; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #3690e7; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3690e7; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .hero:after {
    position: absolute;
    content: "";
    width: 44%;
    background-image: linear-gradient(180deg, color-mix(in srgb, var(--background-color), transparent 15%), color-mix(in srgb, var(--background-color), transparent 15%) 100%), linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0) 100%);
    top: 0;
    bottom: 0;
    z-index: 2;
  }
}

.hero:before {
  position: absolute;
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  inset: 0;
  z-index: 2;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container,
.hero .container-fluid {
  z-index: 3;
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.hero blockquote {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding-left: 20px;
  border-left: 2px solid var(--accent-color);
  margin: 40px 0;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--default-color);
}

.hero .btn-watch-video:hover i {
  color: var(--default-color);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
  background: var(--background-color);
}

.about .about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

@media (max-width: 992px) {
  .about .about-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about .image-showcase {
  position: relative;
}

.about .main-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .main-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .about .main-image img {
    height: 360px;
  }
}

.about .main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, color-mix(in srgb, var(--accent-color), transparent 70%) 100%);
}

.about .experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  z-index: 2;
}

.about .experience-badge .years {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.about .experience-badge .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.about .floating-card {
  position: absolute;
  bottom: -32px;
  right: -24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface-color);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 16px 48px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  z-index: 3;
}

@media (max-width: 768px) {
  .about .floating-card {
    right: 16px;
    bottom: -24px;
    padding: 16px 20px;
  }
}

.about .floating-card .card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 12px;
}

.about .floating-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about .floating-card .card-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.about .floating-card .card-content span {
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content-block {
  padding-left: 16px;
}

@media (max-width: 992px) {
  .about .content-block {
    padding-left: 0;
    padding-top: 32px;
  }
}

.about .section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 48px;
}

.about .section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.about h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--heading-color);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 1.875rem;
  }
}

.about .intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

.about .feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.about .feature-item {
  display: flex;
  gap: 20px;
}

.about .feature-item .feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000000 20%) 100%);
  border-radius: 12px;
}

.about .feature-item .feature-icon i {
  font-size: 1.375rem;
  color: var(--contrast-color);
}

.about .feature-item .feature-content h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 6px 0;
}

.about .feature-item .feature-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about .action-area {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .about .action-area {
    gap: 24px;
  }
}

.about .btn-primary-action {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about .contact-info i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 1.125rem;
}

.about .contact-info .info-text span {
  display: block;
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 2px;
}

.about .contact-info .info-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.about .stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--accent-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
  .about .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about .stats-banner {
    grid-template-columns: 1fr;
  }
}

.about .stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px;
  position: relative;
  transition: background 0.3s ease;
}

.about .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

@media (max-width: 992px) {
  .about .stat-item:not(:last-child)::after {
    display: none;
  }
}

.about .stat-item:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 10%);
}

@media (max-width: 768px) {
  .about .stat-item {
    padding: 24px;
  }
}

.about .stat-item>i {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 12px;
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.about .stat-item .stat-content .stat-number,
.about .stat-item .stat-content .stat-suffix {
  font-size: 2rem;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
}

.about .stat-item .stat-content .stat-text {
  display: block;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  margin-top: 4px;
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
.schedule .schedule-tabs.nav-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  border-bottom: none;
}

.schedule .schedule-tabs.nav-tabs .nav-item {
  margin-bottom: 0;
}

.schedule .tab-btn.nav-link {
  padding: 16px 32px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 160px;
}

.schedule .tab-btn.nav-link .day-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.schedule .tab-btn.nav-link .day-date {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 4px;
  font-weight: 400;
}

.schedule .tab-btn.nav-link:hover {
  border-color: var(--accent-color);
}

.schedule .tab-btn.nav-link:focus {
  outline: none;
  box-shadow: none;
}

.schedule .tab-btn.nav-link.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.schedule .tab-btn.nav-link.active .day-label,
.schedule .tab-btn.nav-link.active .day-date {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.schedule .tab-content .tab-pane {
  padding-top: 8px;
}

.schedule .schedule-item {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.schedule .schedule-item:hover {
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.schedule .schedule-item:last-child {
  margin-bottom: 0;
}

.schedule .schedule-item .time-slot {
  flex-shrink: 0;
  min-width: 120px;
  text-align: center;
  padding-right: 24px;
  border-right: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.schedule .schedule-item .time-slot .time {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.schedule .schedule-item .time-slot .duration {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.schedule .schedule-item .item-content {
  flex-grow: 1;
}

.schedule .schedule-item .item-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.schedule .schedule-item .item-content h4 a {
  color: var(--heading-color);
}

.schedule .schedule-item .item-content h4 a:hover {
  color: var(--accent-color);
}

.schedule .schedule-item .item-content .location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 12px;
}

.schedule .schedule-item .item-content .location i {
  color: var(--accent-color);
}

.schedule .schedule-item .item-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.schedule .schedule-item .speaker-info {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.schedule .schedule-item .speaker-info img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.schedule .schedule-item .speaker-info .speaker-details .name {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 15px;
}

.schedule .schedule-item .speaker-info .speaker-details .role {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .schedule .schedule-item {
    flex-direction: column;
    gap: 16px;
  }

  .schedule .schedule-item .time-slot {
    border-right: none;
    border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    padding-right: 0;
    padding-bottom: 16px;
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .schedule .schedule-item .speaker-info {
    padding-top: 16px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

@media (max-width: 576px) {
  .schedule .schedule-tabs.nav-tabs {
    gap: 8px;
  }

  .schedule .tab-btn.nav-link {
    padding: 12px 20px;
    min-width: 100px;
    font-size: 14px;
  }

  .schedule .schedule-item {
    padding: 24px;
  }

  .schedule .schedule-item .item-content h4 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.speakers .speaker-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px 0 color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.speakers .speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px 0 color-mix(in srgb, var(--default-color), transparent 80%);
}

.speakers .speaker-card.featured {
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.speakers .speaker-card.featured .speaker-image {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.speakers .speaker-card.featured .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.speakers .speaker-card.featured .speaker-image .speaker-social {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.speakers .speaker-card.featured .speaker-image .speaker-social a {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.speakers .speaker-card.featured .speaker-image .speaker-social a:hover {
  background: var(--heading-color);
  transform: translateY(-3px);
}

.speakers .speaker-card.featured .speaker-image .speaker-social a i {
  font-size: 16px;
}

.speakers .speaker-card.featured .speaker-content {
  padding: 30px;
}

.speakers .speaker-card.featured .speaker-content .speaker-category {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.speakers .speaker-card.featured .speaker-content .speaker-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.speakers .speaker-card.featured .speaker-content .speaker-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.speakers .speaker-card.featured .speaker-content .speaker-company {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.speakers .speaker-card.featured .speaker-content .speaker-session {
  margin-bottom: 25px;
}

.speakers .speaker-card.featured .speaker-content .speaker-session h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.speakers .speaker-card.featured .speaker-content .speaker-session p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.speakers .speaker-card.featured .speaker-content .btn-speaker {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.speakers .speaker-card.featured .speaker-content .btn-speaker:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .speakers .speaker-card.featured .speaker-image {
    height: 250px;
  }

  .speakers .speaker-card.featured .speaker-content {
    padding: 20px;
  }

  .speakers .speaker-card.featured .speaker-content .speaker-name {
    font-size: 20px;
  }
}

.speakers .speaker-card.compact {
  text-align: center;
  transition: all 0.3s ease;
}

.speakers .speaker-card.compact .speaker-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.speakers .speaker-card.compact .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.speakers .speaker-card.compact .speaker-image .speaker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--default-color), transparent 30%) 100%);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social {
  display: flex;
  gap: 10px;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a {
  width: 36px;
  height: 36px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a i {
  font-size: 14px;
}

.speakers .speaker-card.compact .speaker-image:hover .speaker-overlay {
  opacity: 1;
}

.speakers .speaker-card.compact .speaker-image:hover .speaker-overlay .speaker-social {
  transform: translateY(0);
}

.speakers .speaker-card.compact .speaker-image:hover img {
  transform: scale(1.05);
}

.speakers .speaker-card.compact .speaker-content {
  padding: 25px 20px;
}

.speakers .speaker-card.compact .speaker-content .speaker-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.speakers .speaker-card.compact .speaker-content .speaker-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.speakers .speaker-card.compact .speaker-content .speaker-company {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.speakers .speaker-card.compact .speaker-content .speaker-topic {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
}

@media (max-width: 768px) {
  .speakers .speaker-card.compact .speaker-image {
    height: 250px;
  }

  .speakers .speaker-card.compact .speaker-content {
    padding: 20px 15px;
  }

  .speakers .speaker-card.compact .speaker-content .speaker-name {
    font-size: 16px;
  }
}

.speakers .speaker-quote {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
}

.speakers .speaker-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  color: var(--accent-color);
  font-family: serif;
  line-height: 1;
  opacity: 0.3;
}

.speakers .speaker-quote blockquote {
  margin: 0;
  position: relative;
  z-index: 1;
}

.speakers .speaker-quote blockquote p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--default-color);
  font-style: italic;
  margin-bottom: 25px;
}

.speakers .speaker-quote .quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.speakers .speaker-quote .quote-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.speakers .speaker-quote .quote-author .author-info {
  text-align: left;
}

.speakers .speaker-quote .quote-author .author-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
}

.speakers .speaker-quote .quote-author .author-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .speakers .speaker-quote {
    padding: 30px 20px;
  }

  .speakers .speaker-quote::before {
    font-size: 60px;
    top: -5px;
  }

  .speakers .speaker-quote blockquote p {
    font-size: 16px;
  }

  .speakers .speaker-quote .quote-author {
    flex-direction: column;
    text-align: center;
  }

  .speakers .speaker-quote .quote-author .author-info {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Stranddienst custom layer
--------------------------------------------------------------*/
:root {
  --midnight-violet: #160f29ff;
  --stormy-teal: #246a73ff;
  --dark-cyan: #368f8bff;
  --champagne-mist: #f3dfc1ff;
  --desert-sand: #ddbea8ff;
  --default-font: "Bricolage Grotesque", system-ui, sans-serif;
  --heading-font: "Bricolage Grotesque", system-ui, sans-serif;
  --nav-font: "Bricolage Grotesque", system-ui, sans-serif;
  --background-color: #fffaf1;
  --default-color: var(--midnight-violet);
  --heading-color: var(--midnight-violet);
  --accent-color: var(--dark-cyan);
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: var(--midnight-violet);
  --nav-hover-color: var(--stormy-teal);
}

.dark-background {
  --background-color: var(--midnight-violet);
  --default-color: #fffaf1;
  --heading-color: #fffaf1;
  --surface-color: var(--stormy-teal);
  --contrast-color: #fffaf1;
}

.light-background {
  --background-color: var(--champagne-mist);
  --surface-color: #fffaf1;
}

body.stranddienst-page {
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--dark-cyan), transparent 82%), transparent 34rem),
    var(--background-color);
}

.stranddienst-page h1,
.stranddienst-page h2,
.stranddienst-page h3,
.stranddienst-page h4 {
  letter-spacing: 0;
}

.header {
  background: rgba(255, 250, 241, .94);
  backdrop-filter: blur(14px);
}

.header .logo img {
  max-height: 54px;
  width: 216px;
  object-fit: contain;
}

.navmenu a,
.navmenu a:focus {
  font-weight: 700;
}

.hero {
  min-height: 86vh;
}

.hero:after,
.hero:before {
  display: none;
}

.hero img {
  filter: saturate(.96) contrast(1.02);
  object-position: center center;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .col-xl-6 {
  max-width: 760px;
  padding: clamp(24px, 4vw, 46px);
  background: rgba(255, 250, 241, .88);
  box-shadow: 0 22px 60px rgba(22, 15, 41, .18);
  backdrop-filter: blur(8px);
}

.hero h1 {
  color: var(--midnight-violet);
  font-size: clamp(4rem, 11vw, 8.8rem);
  line-height: .84;
  margin-bottom: 24px;
  text-shadow: 0 2px 0 rgba(255, 255, 255, .5);
}

.hero blockquote {
  border-left-color: var(--stormy-teal);
  color: var(--midnight-violet);
}

.hero-label,
.section-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--stormy-teal);
  font-weight: 800;
  text-transform: uppercase;
}

.section-tag {
  color: var(--stormy-teal);
}

.btn-get-started {
  background: var(--dark-cyan);
  color: #fffaf1;
  border-radius: 0;
  font-weight: 800;
}

.btn-get-started:hover {
  background: var(--stormy-teal);
  color: #fffaf1;
}

.btn-watch-video {
  color: var(--midnight-violet);
  font-weight: 800;
}

.about .experience-badge {
  background: var(--stormy-teal);
}

.about .experience-badge .years {
  color: var(--champagne-mist);
  font-size: 34px;
}

.about .floating-card .card-icon,
.about .feature-item .feature-icon {
  background: color-mix(in srgb, var(--dark-cyan), transparent 86%);
  color: var(--stormy-teal);
}

.stats-banner {
  background:
    linear-gradient(135deg, var(--midnight-violet), color-mix(in srgb, var(--stormy-teal), #000 16%));
}

.stats-banner .stat-item i,
.stats-banner .stat-number {
  color: var(--champagne-mist);
}

.schedule .schedule-tabs .tab-btn.active {
  background: var(--stormy-teal);
  border-color: var(--stormy-teal);
}

.schedule .schedule-item {
  border-left: 4px solid var(--dark-cyan);
}

.schedule .schedule-item .time-slot .time {
  color: var(--stormy-teal);
}

.info-card {
  min-height: 250px;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  background: #fffaf1;
  border: 1px solid color-mix(in srgb, var(--midnight-violet), transparent 88%);
}

.info-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #fffaf1;
  background: var(--stormy-teal);
  border-radius: 50%;
  font-size: 24px;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.partners {
  background:
    linear-gradient(180deg, #fffaf1, color-mix(in srgb, var(--champagne-mist), #fff 30%));
}

.partner-logo {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: var(--midnight-violet);
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--midnight-violet), transparent 86%);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(22, 15, 41, .06);
}

.stranddienst-map {
  min-height: 420px;
  overflow: hidden;
  color: var(--midnight-violet);
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(22, 15, 41, .12);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.map-card-content {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: #fffaf1;
}

.map-card-content strong {
  font-size: 22px;
}

.map-card-content span {
  color: color-mix(in srgb, var(--midnight-violet), transparent 28%);
}

.map-card-content a {
  width: fit-content;
  margin-top: 8px;
  color: var(--stormy-teal);
  font-weight: 800;
}

.contact .contact-card .icon-box {
  background: color-mix(in srgb, var(--dark-cyan), transparent 86%);
  color: var(--stormy-teal);
}

.footer {
  background: var(--midnight-violet);
}

.footer .logo img {
  width: 220px;
  max-height: none;
  filter: none;
  background: #fffaf1;
  padding: 8px 10px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list .accordion-item {
  margin-bottom: 14px;
  border: 1px solid color-mix(in srgb, var(--midnight-violet), transparent 86%);
  background: #ffffff;
}

.faq-list .accordion-button {
  color: var(--midnight-violet);
  background: #ffffff;
  box-shadow: none;
  font-weight: 800;
}

.faq-list .accordion-button:not(.collapsed) {
  color: var(--stormy-teal);
  background: #fffaf1;
}

.faq-list .accordion-body {
  color: color-mix(in srgb, var(--midnight-violet), transparent 22%);
}

.credits-line {
  margin-top: 18px;
  color: rgba(255, 250, 241, .76);
}

.credits-line a {
  color: var(--champagne-mist);
  font-weight: 800;
}

.schedule-list {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.schedule-list .schedule-item {
  margin: 0;
}

#practical.light-background {
  background: var(--midnight-violet);
}

#practical .section-title h2,
#practical .section-title p {
  color: #fffaf1;
}

#practical .info-card {
  color: #fffaf1;
  background: color-mix(in srgb, var(--stormy-teal), #000 10%);
  border: 1px solid rgba(255, 250, 241, .18);
}

#practical .info-card h3,
#practical .info-card p {
  color: #fffaf1;
}

#practical .info-card i {
  color: var(--midnight-violet);
  background: var(--champagne-mist);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-column {
  display: grid;
  gap: 22px;
}

.faq-column {
  padding: 30px;
  background: #fffaf1;
  border: 1px solid color-mix(in srgb, var(--midnight-violet), transparent 86%);
}

.faq-column h3 {
  margin-bottom: 22px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.map-card,
.stranddienst-map {
  box-shadow: none;
}

.footer,
.footer h4,
.footer p,
.footer .footer-contact p,
.footer .footer-links ul a {
  color: #fffaf1;
}

.footer .footer-links ul a:hover,
.footer a {
  color: var(--champagne-mist);
}

.footer .footer-top {
  border-top-color: rgba(255, 250, 241, .18);
}

.footer .logo img {
  width: min(320px, 100%);
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  padding: 0;
}

.footer-credit-bottom {
  width: min(1140px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 241, .16);
  color: rgba(255, 250, 241, .76);
  text-align: center;
}

.footer-credit-bottom a {
  color: var(--champagne-mist);
  font-weight: 800;
}

@media (min-width: 1200px) {
  .hero .row {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(22, 15, 41, .96);
  }

  .mobile-nav-active .navmenu>ul {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 88px 28px 40px;
    border-radius: 0;
    background: #fffaf1;
    box-shadow: none;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--midnight-violet);
    position: fixed;
  }

  .navmenu a,
  .navmenu a:focus {
    white-space: normal;
    font-size: 24px;
    font-weight: 800;
  }
}

@media (max-width: 991px) {
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }
}

.hero img {
  object-position: center bottom;
}

.hero .col-xl-6 {
  width: min(100%, 680px);
}

.hero h1 {
  max-width: 100%;
  overflow-wrap: normal;
  font-size: clamp(3rem, 8vw, 6.4rem);
}

@media (max-width: 768px) {
  .hero .col-xl-6 {
    padding: 22px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.3rem);
  }
}

@media (max-width: 1199px) {
  .navmenu a,
  .navmenu a:focus {
    color: var(--midnight-violet);
  }
}

@media (max-width: 768px) {
  .header .logo img {
    width: 170px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.5rem);
  }
}

/* Final mobile and readability fixes */
.hero .btn-watch-video,
.hero .btn-watch-video span,
.hero .btn-watch-video i {
  color: var(--midnight-violet);
}

.hero .btn-watch-video {
  padding: 12px 18px;
  background: transparent;
}

.hero .btn-watch-video:hover,
.hero .btn-watch-video:hover i {
  color: var(--stormy-teal);
}

.hero .btn-get-started,
.hero .btn-watch-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  line-height: 1;
  text-align: center;
}

@media (max-width: 1199px) {
  body.mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 10001;
  }

  .mobile-nav-active .navmenu {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000;
    width: 100vw;
    height: 100vh;
    background: rgba(22, 15, 41, .96);
  }

  .mobile-nav-active .navmenu > ul {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw;
    height: 100vh;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    padding: 96px 28px 42px;
    margin: 0;
    border-radius: 0;
    background: #fffaf1;
    box-shadow: none;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed !important;
    top: 28px;
    right: 28px;
    color: var(--midnight-violet);
    z-index: 10002;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    align-items: end;
    padding: 92px 0 0;
  }

  .hero img {
    object-position: center bottom;
  }

  .hero .container {
    width: 100%;
    padding: 0;
  }

  .hero .row {
    width: 100%;
    margin: 0;
  }

  .hero .col-xl-6 {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 22px 20px 26px;
    background: rgba(255, 250, 241, .94);
  }

  .hero h1 {
    font-size: clamp(2.75rem, 16vw, 4.8rem);
    line-height: .86;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hero blockquote {
    margin-bottom: 18px;
  }
}

.footer {
  overflow: hidden;
}

.footer-wave {
  position: relative;
  height: 104px;
  overflow: hidden;
  margin-top: -1px;
  background:
    linear-gradient(180deg, #fffaf1, color-mix(in srgb, var(--champagne-mist), #fff 30%));
}

.footer-wave .waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.footer-wave .parallax > use {
  animation: footer-move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.footer-wave .parallax > use:nth-child(1) {
  fill: rgba(22, 15, 41, .18);
  animation-delay: -2s;
  animation-duration: 7s;
}

.footer-wave .parallax > use:nth-child(2) {
  fill: rgba(22, 15, 41, .32);
  animation-delay: -3s;
  animation-duration: 10s;
}

.footer-wave .parallax > use:nth-child(3) {
  fill: rgba(22, 15, 41, .48);
  animation-delay: -4s;
  animation-duration: 13s;
}

.footer-wave .parallax > use:nth-child(4) {
  fill: var(--midnight-violet);
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes footer-move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.partners {
  padding-bottom: 104px;
  margin-bottom: -96px;
}

.partner-logo {
  box-shadow: 0 10px 22px rgba(22, 15, 41, .045);
}

.footer-wave {
  z-index: 1;
}

@media (max-width: 768px) {
  .footer-wave {
    height: 72px;
  }

  .partners {
    padding-bottom: 78px;
    margin-bottom: -72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-wave .parallax > use {
    animation: none;
  }
}

/*--------------------------------------------------------------
# Stranddienst PDF-inspired poster version
--------------------------------------------------------------*/
.stranddienst-poster-page {
  --midnight-violet: #160f29ff;
  --stormy-teal: #246a73ff;
  --dark-cyan: #368f8bff;
  --champagne-mist: #f3dfc1ff;
  --desert-sand: #ddbea8ff;
  --poster-paper: #fffaf1;
  --poster-blue: #246a73;
  --poster-line: #160f29;
  color: var(--midnight-violet);
  background:
    radial-gradient(circle at 18% 12%, rgba(54, 143, 139, .16), transparent 26rem),
    var(--poster-paper);
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
}

.stranddienst-poster-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100000;
  opacity: .18;
  background:
    repeating-linear-gradient(0deg, rgba(22, 15, 41, .024) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .42), transparent 1px);
  mix-blend-mode: multiply;
}

.stranddienst-poster-page .header {
  background: rgba(255, 250, 241, .94);
  border-bottom: 2px solid rgba(22, 15, 41, .12);
  backdrop-filter: blur(12px);
}

.stranddienst-poster-page .header .logo img {
  width: min(230px, 48vw);
  max-height: 58px;
  object-fit: contain;
}

.stranddienst-poster-page .navmenu a,
.stranddienst-poster-page .navmenu a:focus {
  color: var(--midnight-violet);
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
}

.stranddienst-poster-page .navmenu a:hover,
.stranddienst-poster-page .navmenu .active {
  color: var(--stormy-teal);
}

.poster-hero,
.poster-section {
  position: relative;
  overflow: clip;
  background: transparent;
}

.poster-hero {
  min-height: 80vh;
  display: flex;
  align-items: end;
  padding: 0;
  margin-bottom: clamp(72px, 9vh, 104px);
  isolation: isolate;
  overflow: visible;
}

.poster-hero::before {
  display: none;
}

.poster-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(22, 15, 41, .02) 0%, rgba(22, 15, 41, .08) 48%, rgba(22, 15, 41, .46) 100%),
    linear-gradient(90deg, rgba(22, 15, 41, .08) 0%, transparent 54%, rgba(22, 15, 41, .18) 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.poster-paper {
  display: none;
}

.poster-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, .78fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  padding: clamp(18px, 2.4vw, 28px);
  border: 2px solid var(--midnight-violet);
  border-radius: 24px;
  background: rgba(255, 250, 241, .94);
  box-shadow: 0 28px 80px rgba(22, 15, 41, .26);
  backdrop-filter: blur(10px);
  transform: translateY(clamp(48px, 7vh, 72px));
}

.poster-hero .container {
  position: relative;
}

.poster-copy h1 {
  margin: 0 0 10px;
  color: var(--midnight-violet);
  font-size: clamp(3.1rem, 5.1vw, 5.15rem);
  font-weight: 800;
  line-height: .78;
  letter-spacing: 0;
}

.poster-copy {
  width: 100%;
  max-width: 560px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.poster-title-wave {
  width: min(420px, 100%);
  height: 24px;
  margin: -2px 0 12px;
  display: block;
}

.poster-title-wave path {
  fill: none;
  stroke: var(--stormy-teal);
  stroke-width: 6;
  stroke-linecap: round;
}

.poster-hero-info p {
  max-width: 560px;
  margin: 0 0 18px;
  color: rgba(22, 15, 41, .82);
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  line-height: 1.35;
}

.poster-hero-info {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 590px;
  justify-self: end;
  padding: 0 clamp(2px, 1vw, 14px);
}

.poster-pill,
.poster-section-head span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 9px 20px;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: var(--stormy-teal);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.poster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.poster-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 2px solid var(--midnight-violet);
  border-radius: 999px;
  color: var(--midnight-violet);
  font-weight: 800;
  line-height: 1;
}

.poster-btn.primary {
  color: var(--poster-paper);
  background: var(--midnight-violet);
}

.poster-btn:hover {
  color: var(--poster-paper);
  background: var(--stormy-teal);
  border-color: var(--stormy-teal);
}

.hero-info-teaser {
  display: none;
}

.hero-info-teaser:hover {
  color: var(--poster-paper);
  background: rgba(22, 15, 41, .9);
  box-shadow: 0 24px 54px rgba(22, 15, 41, .3);
  transform: translate(-50%, -10px);
}

.hero-info-teaser span {
  color: var(--champagne-mist);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-info-teaser strong {
  color: var(--poster-paper);
  font-size: clamp(.95rem, 1.05vw, 1.08rem);
  line-height: 1.15;
}

.hero-info-teaser i {
  grid-row: 1 / span 2;
  grid-column: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--midnight-violet);
  background: var(--champagne-mist);
  font-size: 24px;
}

.poster-arch {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 4px solid var(--midnight-violet);
  border-radius: 999px 999px 28px 28px;
  background: var(--champagne-mist);
}

.poster-arch img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.hero-photo img {
  object-position: center bottom;
}

.poster-arch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(22, 15, 41, .28));
}

.side-note {
  position: absolute;
  left: 18px;
  top: 50%;
  z-index: 3;
  padding: 16px 10px;
  border-radius: 999px;
  color: var(--poster-paper);
  background: var(--stormy-teal);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.poster-section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.poster-section-head {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.poster-section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.poster-section-head h2 {
  margin: 0;
  color: var(--midnight-violet);
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: 0;
}

.poster-about-grid,
.poster-contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.about-photo {
  min-height: 620px;
  border-color: var(--stormy-teal);
}

.poster-photo-strip {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 18px;
  margin-top: clamp(36px, 6vw, 76px);
}

.poster-photo-strip img {
  width: 100%;
  height: clamp(210px, 24vw, 330px);
  display: block;
  object-fit: cover;
  border: 3px solid var(--midnight-violet);
  background: var(--poster-paper);
}

.poster-photo-strip img:first-child {
  border-radius: 999px 999px 28px 28px;
}

.poster-photo-strip img:nth-child(2) {
  border-radius: 28px;
}

.poster-photo-strip img:nth-child(3) {
  border-radius: 28px 28px 999px 999px;
}

.poster-info-panel {
  padding: clamp(28px, 5vw, 56px);
  border: 3px solid var(--midnight-violet);
  background: var(--champagne-mist);
}

.poster-info-panel .lead {
  margin: 0 0 30px;
  color: var(--midnight-violet);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
}

.lineup-poster {
  background: var(--poster-paper);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 42px);
  align-items: stretch;
}

.lineup-card {
  display: grid;
  grid-template-columns: minmax(180px, .46fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 2px solid var(--midnight-violet);
  border-radius: 28px;
  background: rgba(255, 250, 241, .92);
}

.lineup-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  border: 2px solid rgba(22, 15, 41, .16);
}

.lineup-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 14px;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: var(--stormy-teal);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.lineup-card h3 {
  margin: 0 0 10px;
  color: var(--midnight-violet);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: .95;
}

.lineup-card p {
  margin: 0;
  color: rgba(22, 15, 41, .76);
  font-size: 1.05rem;
  line-height: 1.42;
}

.poster-checks {
  display: grid;
  gap: 16px;
}

.poster-checks div,
.poster-facts div,
.poster-timeline article {
  border: 2px solid var(--midnight-violet);
  background: var(--poster-paper);
}

.poster-checks div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  padding: 18px;
}

.poster-checks i {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--poster-paper);
  background: var(--stormy-teal);
  font-size: 24px;
}

.poster-checks strong,
.poster-facts strong {
  color: var(--midnight-violet);
  font-size: 1.18rem;
}

.poster-checks span,
.poster-facts span {
  color: rgba(22, 15, 41, .72);
}

.schedule-poster {
  background: var(--midnight-violet);
}

.schedule-poster .poster-section-head h2,
.schedule-poster .poster-section-head span {
  color: var(--poster-paper);
}

.poster-timeline {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.poster-timeline article {
  display: grid;
  grid-template-columns: minmax(130px, .28fr) 1fr;
  gap: clamp(16px, 4vw, 40px);
  padding: clamp(20px, 3vw, 34px);
  border-color: rgba(255, 250, 241, .55);
  color: var(--poster-paper);
  background: rgba(255, 250, 241, .08);
}

.poster-timeline time {
  color: var(--champagne-mist);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.poster-timeline h3 {
  margin: 0 0 8px;
  color: var(--poster-paper);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
}

.poster-timeline p {
  margin: 0;
  color: rgba(255, 250, 241, .82);
}

.timeline-body {
  min-width: 0;
}

.practical-poster {
  background: var(--champagne-mist);
}

.poster-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.poster-facts div {
  flex: 0 1 calc((100% - 60px) / 4);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 22px;
  border-color: rgba(22, 15, 41, .18);
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 18px 34px rgba(22, 15, 41, .07);
}

.poster-facts i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--poster-paper);
  background: var(--stormy-teal);
  font-size: 25px;
}

.poster-facts strong {
  font-size: 1.35rem;
}

.poster-facts span {
  max-width: 220px;
  line-height: 1.35;
}

.poster-map-card {
  overflow: hidden;
  border: 3px solid var(--midnight-violet);
  background: var(--poster-paper);
}

.poster-map-card iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.poster-map-card div {
  padding: 24px;
}

.poster-map-card h3 {
  margin-bottom: 8px;
  color: var(--midnight-violet);
  font-size: 1.6rem;
}

.poster-map-card p {
  color: rgba(22, 15, 41, .76);
}

.poster-map-card a {
  color: var(--stormy-teal);
  font-weight: 800;
}

.poster-faq .accordion-item {
  margin-bottom: 14px;
  border: 2px solid var(--midnight-violet);
  border-radius: 0;
  background: var(--poster-paper);
}

.poster-faq .accordion-button {
  color: var(--midnight-violet);
  background: var(--poster-paper);
  box-shadow: none;
  font-weight: 800;
}

.poster-faq .accordion-button:not(.collapsed) {
  color: var(--poster-paper);
  background: var(--stormy-teal);
}

.poster-faq .accordion-body {
  color: rgba(22, 15, 41, .76);
}

.faq-contact-note {
  display: grid;
  gap: 4px;
  margin-top: 20px;
  padding: 20px 22px;
  border: 2px solid rgba(22, 15, 41, .16);
  border-radius: 18px;
  color: var(--midnight-violet);
  background: var(--champagne-mist);
}

.faq-contact-note strong {
  font-size: 1.2rem;
}

.faq-contact-note a {
  color: var(--stormy-teal);
  font-weight: 800;
}

.partners-poster {
  padding-bottom: 150px;
  margin-bottom: -118px;
  background: var(--poster-paper);
}

.poster-partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1040px;
  margin: 0 auto;
  gap: 16px;
  align-items: center;
}

.poster-partner-grid div {
  flex: 0 1 160px;
  width: 160px;
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(22, 15, 41, .1);
  border-radius: 14px;
  color: var(--midnight-violet);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, .9), rgba(243, 223, 193, .42));
  font-weight: 800;
  box-shadow: none;
}

.poster-partner-grid .partner-image-logo {
  background: rgba(255, 250, 241, .9);
}

.partner-image-logo img {
  width: 100%;
  max-width: 138px;
  height: 68px;
  max-height: 68px;
  object-fit: contain;
  display: block;
}

.partner-image-logo.partner-on-dark {
  background: var(--midnight-violet);
}

.partner-image-logo:first-child img {
  max-width: 118px;
  height: 68px;
  max-height: 68px;
}
.partner-with-label {
  gap: 4px;
  align-content: center;
}

.partner-with-label span {
  color: var(--midnight-violet);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.partner-with-label img {
  height: 40px;
  max-height: 40px;
}

.poster-footer-wave {
  position: relative;
  height: 122px;
  overflow: hidden;
  background: var(--poster-paper);
}

.poster-footer-wave .waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.poster-footer-wave .parallax > use {
  animation: poster-wave 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.poster-footer-wave .parallax > use:nth-child(1) {
  fill: rgba(22, 15, 41, .2);
  animation-delay: -2s;
  animation-duration: 7s;
}

.poster-footer-wave .parallax > use:nth-child(2) {
  fill: rgba(22, 15, 41, .36);
  animation-delay: -3s;
  animation-duration: 10s;
}

.poster-footer-wave .parallax > use:nth-child(3) {
  fill: rgba(22, 15, 41, .58);
  animation-delay: -4s;
  animation-duration: 13s;
}

.poster-footer-wave .parallax > use:nth-child(4) {
  fill: var(--midnight-violet);
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes poster-wave {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.poster-footer {
  position: relative;
  padding: 62px 0 30px;
  color: var(--poster-paper);
  background: var(--midnight-violet);
}

.poster-footer .footer-logo img {
  width: min(320px, 100%);
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
}

.poster-footer p,
.poster-footer li,
.poster-footer a {
  color: rgba(255, 250, 241, .78);
}

.poster-footer h4 {
  color: var(--poster-paper);
  margin-bottom: 14px;
}

.poster-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.poster-footer li {
  margin-bottom: 10px;
}

.poster-footer a:hover,
.poster-credit a {
  color: var(--champagne-mist);
}

.poster-credit {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 250, 241, .15);
  color: rgba(255, 250, 241, .72);
  text-align: center;
}

.footer-made-by {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 250, 241, .15);
  color: rgba(255, 250, 241, .72);
  text-align: center;
}

.volunteer-hero {
  position: relative;
  padding: clamp(78px, 10vw, 132px) 0 clamp(54px, 8vw, 94px);
  background:
    linear-gradient(180deg, rgba(243, 223, 193, .82), rgba(255, 250, 241, .96)),
    url("../img/stranddienst-sfeer-3.jpeg") center / cover;
}

.volunteer-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.volunteer-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--midnight-violet);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 800;
  line-height: .85;
  letter-spacing: 0;
}

.volunteer-hero p {
  max-width: 690px;
  margin: 0 0 26px;
  color: rgba(22, 15, 41, .78);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.42;
}

.volunteer-callout {
  display: grid;
  gap: 10px;
  padding: clamp(24px, 4vw, 36px);
  border: 2px solid var(--midnight-violet);
  border-radius: 28px;
  color: var(--poster-paper);
  background: var(--midnight-violet);
}

.volunteer-callout strong {
  color: var(--poster-paper);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: .96;
}

.volunteer-callout span {
  color: rgba(255, 250, 241, .82);
}

.volunteer-tasks {
  background: var(--poster-paper);
}

.volunteer-task-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.volunteer-task-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 26px;
  border: 2px solid rgba(22, 15, 41, .16);
  border-radius: 28px;
  background: rgba(255, 250, 241, .92);
}

.volunteer-task-grid i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--poster-paper);
  background: var(--stormy-teal);
  font-size: 24px;
}

.volunteer-task-grid time {
  color: var(--stormy-teal);
  font-weight: 800;
}

.volunteer-task-grid h3 {
  margin: 0;
  color: var(--midnight-violet);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.volunteer-task-grid p {
  margin: 0;
  color: rgba(22, 15, 41, .72);
  line-height: 1.36;
}

.volunteer-form-strip {
  background: var(--champagne-mist);
}

.volunteer-form-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 5vw, 48px);
  border: 2px solid var(--midnight-violet);
  border-radius: 28px;
  background: var(--poster-paper);
}

.volunteer-form-card h2 {
  margin: 0 0 10px;
  color: var(--midnight-violet);
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  font-weight: 800;
  line-height: .92;
}

.volunteer-form-card p {
  margin: 0;
  color: rgba(22, 15, 41, .72);
}

.legal-hero {
  padding: clamp(72px, 10vw, 128px) 0 clamp(44px, 7vw, 78px);
  background:
    linear-gradient(180deg, rgba(243, 223, 193, .86), rgba(255, 250, 241, .96)),
    url("../img/stranddienst-sfeer-2.jpeg") center / cover;
}

.legal-hero h1 {
  max-width: 980px;
  margin: 0 0 18px;
  color: var(--midnight-violet);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 800;
  line-height: .88;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(22, 15, 41, .78);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.42;
}

.legal-section {
  background: var(--poster-paper);
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  border: 2px solid rgba(22, 15, 41, .14);
  border-radius: 28px;
  background: rgba(255, 250, 241, .94);
}

.legal-content h2 {
  margin: 42px 0 14px;
  color: var(--midnight-violet);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
}

.legal-content h2:first-of-type {
  margin-top: 22px;
}

.legal-content p,
.legal-content li {
  color: rgba(22, 15, 41, .76);
  line-height: 1.62;
}

.legal-content ul {
  margin: 0 0 22px;
  padding-left: 1.3rem;
}

.legal-content a {
  color: var(--stormy-teal);
  font-weight: 800;
}

@media (max-width: 1199px) {
  .stranddienst-poster-page.mobile-nav-active {
    overflow: hidden;
  }

  .stranddienst-poster-page .mobile-nav-toggle {
    position: relative;
    z-index: 10002;
    color: var(--midnight-violet);
  }

  .stranddienst-poster-page.mobile-nav-active .navmenu {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000;
    width: 100vw;
    height: 100vh;
    background: rgba(22, 15, 41, .96);
  }

  .stranddienst-poster-page.mobile-nav-active .navmenu > ul {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw;
    height: 100vh;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    padding: 96px 28px 42px;
    margin: 0;
    border-radius: 0;
    background: var(--poster-paper);
    box-shadow: none;
  }

  .stranddienst-poster-page.mobile-nav-active .mobile-nav-toggle {
    position: fixed !important;
    top: 28px;
    right: 28px;
  }
}

@media (max-width: 991px) {
  .poster-hero-grid,
  .poster-about-grid,
  .poster-contact-grid {
    grid-template-columns: 1fr;
  }

  .poster-hero {
    display: block;
    min-height: 0;
    margin-bottom: 0;
    padding: calc(56vh - 34px) 0 58px;
    overflow: visible;
  }

  .poster-hero::before {
    display: none;
  }

  .poster-hero::after {
    height: 56vh;
    bottom: auto;
    background:
      linear-gradient(180deg, rgba(22, 15, 41, .1) 0%, rgba(22, 15, 41, .18) 55%, rgba(22, 15, 41, .44) 100%);
  }

  .hero-video {
    height: 56vh;
    bottom: auto;
    object-position: center center;
  }

  .poster-paper {
    display: none;
  }

  .poster-hero-grid {
    gap: 0;
    align-items: start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .poster-copy {
    order: 1;
    width: min(72%, 360px);
    margin: 0 auto;
    padding: 18px 18px 16px;
    border: 2px solid var(--midnight-violet);
    background: rgba(255, 250, 241, .96);
    transform: translateY(-34px);
    backdrop-filter: none;
  }

  .poster-copy h1 {
    margin-bottom: 0;
    font-size: clamp(2.9rem, 15vw, 4.7rem);
    line-height: .82;
  }

  .poster-title-wave {
    display: none;
  }

  .poster-pill {
    margin-bottom: 12px;
    padding: 7px 12px;
    font-size: .72rem;
  }

  .poster-arch {
    min-height: 46vh;
  }

  .hero-photo {
    order: 1;
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .poster-hero-info {
    order: 2;
    transform: none;
    justify-self: stretch;
    width: min(calc(100% - 28px), 560px);
    margin: 22px auto 0;
    gap: 10px;
    padding: 24px;
    border-radius: 28px;
    background: var(--midnight-violet);
    box-shadow: 0 14px 30px rgba(22, 15, 41, .14);
  }

  .hero-info-teaser {
    display: none;
  }

  .poster-hero-info p {
    color: rgba(255, 250, 241, .86);
    font-size: 1rem;
  }

  .poster-hero-info .poster-btn {
    border-color: var(--champagne-mist);
    color: var(--champagne-mist);
  }

  .poster-hero-info .poster-btn.primary {
    border-color: var(--champagne-mist);
    color: var(--midnight-violet);
    background: var(--champagne-mist);
  }

  .poster-partner-grid {
    gap: 14px;
  }

  .poster-partner-grid div {
    flex-basis: calc((100% - 14px) / 2);
    width: calc((100% - 14px) / 2);
  }

  .poster-facts div {
    flex-basis: calc((100% - 20px) / 2);
  }

  .poster-photo-strip {
    grid-template-columns: 1fr;
  }

  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .volunteer-hero-grid,
  .volunteer-task-grid {
    grid-template-columns: 1fr 1fr;
  }

  .volunteer-form-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .poster-copy h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .poster-copy p {
    font-size: 1.05rem;
  }

  .poster-section-head h2 {
    font-size: clamp(2.3rem, 13vw, 3.8rem);
  }

  .poster-timeline article {
    grid-template-columns: 1fr;
  }

  .lineup-card {
    grid-template-columns: 1fr;
  }

  .lineup-card img {
    aspect-ratio: 16 / 11;
  }

  .volunteer-hero-grid,
  .volunteer-task-grid {
    grid-template-columns: 1fr;
  }

  .volunteer-hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .poster-partner-grid {
    gap: 12px;
  }

  .poster-partner-grid div {
    flex-basis: 100%;
    width: 100%;
  }

  .poster-facts div {
    flex-basis: 100%;
    min-height: 180px;
  }

  .poster-arch,
  .about-photo {
    min-height: 420px;
  }

  .poster-footer-wave {
    height: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .poster-footer-wave .parallax > use {
    animation: none;
  }
}
