/* @LastCodex Modified 2026-03-18 09:41:02 CET */
/**
 * @Author: Andrea Dittler | webspezi.com
 * @Date:   2026-03-18 07:25:42
 * @Last Modified by:   Andrea Dittler | webspezi.com
 * @Last Modified time: 2026-03-18 09:39:33
 * @LastCodex Modified 2026-03-18 09:40:26 CET
 */
:root {
  --sand: #f3eee5;
  --paper: #fffdf8;
  --ink: #1b252c;
  --ink-soft: #54616b;
  --petrol: #1f5a6b;
  --teal: #2b8a8e;
  --orange: #e3802f;
  --line: #d8cec0;
  --radius: 16px;
  --shadow: 0 14px 34px rgba(19, 31, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: #1b252c;
  background: linear-gradient(180deg, #faf6ef 0%, #f3eee5 45%, #f7f2ea 100%);
  line-height: 1.55;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.noemode h1,
.noemode h2,
.noemode h3 {
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
}
.noemode h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.7rem);
  line-height: 0.95;
  margin-top: 10px;
  max-width: 14ch;
  color: #f4fbfb;
}
.noemode h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  color: #163540;
}
.noemode header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 32, 41, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.noemode .nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.noemode .logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.noemode .logo-wrap img {
  display: block;
  height: 40px;
  width: auto;
}
.noemode .tagline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #d7eff1;
}
.noemode nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.noemode nav a {
  text-decoration: none;
  color: #eaf6f7;
  font-weight: 700;
  font-size: 0.95rem;
}
.noemode .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.noemode .btn:hover {
  transform: translateY(-2px);
}
.noemode .btn.btn-primary {
  background: #e3802f;
  color: #fff;
  box-shadow: 0 8px 18px rgba(227, 128, 47, 0.3);
}
.noemode .btn.btn-secondary {
  border-color: #1f5a6b;
  color: #1f5a6b;
  background: transparent;
}
.noemode .hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 62px;
  background-image: linear-gradient(180deg, rgba(8, 25, 34, 0.18), rgba(10, 33, 44, 0.24)), url("/images/hero-top-bg.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.noemode .hero::before, .noemode .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.noemode .hero::before {
  top: -120px;
  right: -90px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(43, 138, 142, 0.25), transparent 65%);
}
.noemode .hero::after {
  bottom: -210px;
  left: -130px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(227, 128, 47, 0.2), transparent 66%);
}
.noemode .hero p {
  color: #d8ebed;
  font-size: 1.1rem;
  max-width: 58ch;
  margin-top: 16px;
}
.noemode .hero .pill {
  background: rgba(223, 248, 249, 0.13);
  border-color: rgba(223, 248, 249, 0.45);
  color: #e5f9fa;
}
.noemode .hero .btn.btn-secondary {
  border-color: rgba(245, 251, 251, 0.85);
  color: #f3fcfc;
  background: rgba(243, 252, 252, 0.04);
}
.noemode .hero .box {
  background: rgba(8, 28, 38, 0.64);
  border-color: rgba(227, 245, 247, 0.24);
  color: #eff8f9;
  height: 100%;
}
.noemode .hero .box h3 {
  color: #f2fbfb;
}
.noemode .hero .muted,
.noemode .hero .meta {
  color: #cee5e7;
}
.noemode .hero .meta strong {
  color: #f7fcfc;
}
.noemode .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: stretch;
  gap: 26px;
}
.noemode .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.noemode .pill {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid color-mix(in srgb, #2b8a8e 34%, white);
  border-radius: 999px;
  background: color-mix(in srgb, #2b8a8e 16%, white);
  color: #1f5a6b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}
.noemode .box {
  background: #fffdf8;
  border: 1px solid #d8cec0;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(19, 31, 38, 0.12);
  padding: 22px;
}
.noemode .box h3 {
  font-size: 1.3rem;
  color: #1f5a6b;
  margin-bottom: 8px;
}
.noemode .meta,
.noemode .list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #54616b;
  display: grid;
  gap: 7px;
}
.noemode .meta {
  list-style: none;
  padding-left: 0;
  gap: 8px;
}
.noemode .meta strong {
  color: #1b252c;
}
.noemode .muted {
  color: #54616b;
  margin: 0;
}
.noemode section {
  padding: 56px 0;
}
.noemode .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 20px;
}
.noemode .timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.noemode .day {
  background: #fffdf8;
  border: 1px solid #d8cec0;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(19, 31, 38, 0.12);
  position: relative;
  overflow: hidden;
  padding: 18px;
  height: 100%;
}
.noemode .day::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #e3802f, #2b8a8e);
}
.noemode .day small {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #54616b;
}
.noemode .day h3 {
  margin: 8px 0;
  font-size: 1.1rem;
  color: #1f5a6b;
}
.noemode .day ul {
  margin: 0;
  padding-left: 18px;
  color: #54616b;
  font-size: 0.95rem;
  display: grid;
  gap: 5px;
}
.noemode .grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 18px;
}
.noemode .price {
  margin: 6px 0 8px;
  color: #e3802f;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}
.noemode form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.noemode label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #54616b;
}
.noemode input,
.noemode textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d8cec0;
  border-radius: 12px;
  background: #fff;
  font: inherit;
}
.noemode textarea {
  min-height: 100px;
  resize: vertical;
}
.noemode footer {
  padding: 24px 0 36px;
  border-top: 1px solid #d8cec0;
  color: #54616b;
  font-size: 0.9rem;
}
.noemode footer a {
  color: #000;
  text-decoration: none;
}
.noemode footer a:hover, .noemode footer a:active {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-two {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .timeline {
    grid-template-columns: 1fr;
  }
  nav {
    gap: 10px;
  }
  .logo-wrap img {
    height: 34px;
  }
  section {
    padding: 44px 0;
  }
}
