/* ==========================================================================
   AIVY CONSULT — DESIGN: "NATURAL TONES" ( Mehmet Yaman — IHK KI-Manager )
   Direct Vanilla CSS for Hostinger Host-Panel ( Zero compilation needed )
   ========================================================================== */

/* Theme Color Variables */
:root {
  --color-marine: #0F2849;
  --color-gold: #C9A961;
  --color-creme: #FAF6EE;
  --color-bordeaux: #6B1F2C;
  --color-white: #ffffff;
  --color-marine-light: rgba(15, 40, 73, 0.03);
  --color-marine-hover: rgba(15, 40, 73, 0.05);
  --font-serif: "Georgia", "Times New Roman", Times, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles & Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--color-creme);
  color: var(--color-marine);
  font-family: var(--font-serif);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* Base Utility Classes */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 800px;
}

.container-medium {
  max-width: 950px;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--color-gold);
}

.text-creme {
  color: var(--color-creme);
}

.text-bordeaux {
  color: var(--color-bordeaux);
}

.font-mono {
  font-family: monospace, Courier, monospace;
}

.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

.uppercase {
  text-transform: uppercase;
}

.font-bold {
  font-weight: bold;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

.relative {
  position: relative;
}

.border-t {
  border-top: 1px solid rgba(15, 40, 73, 0.1);
}

.border-b {
  border-b: 1px solid rgba(15, 40, 73, 0.1);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-creme);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-marine);
}

/* Layout Page Content */
.page-content {
  display: block;
}

/* Announcement Bar */
.top-banner {
  background-color: rgba(201, 169, 97, 0.15);
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
  padding: 0.6rem 1rem;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--color-marine);
  font-weight: bold;
}

/* Sticky Header Navigation */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-marine);
  color: var(--color-creme);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  padding: 1.1rem 0;
  box-shadow: 0 4px 20px rgba(15, 40, 73, 0.08);
}

.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-creme);
  transition: var(--transition-smooth);
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  font-family: var(--font-sans);
}

.logo-slogan {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  font-family: var(--font-sans);
  margin-top: 0.2rem;
  font-weight: bold;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-link {
  color: rgba(250, 246, 238, 0.85);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-left: 2.2rem;
  transition: var(--transition-smooth);
  font-family: var(--font-sans);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold);
}

/* Mobile Side Drawer and Hamburger */
.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  color: var(--color-creme);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-marine);
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  padding: 1.5rem 0;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
}

.mobile-nav-link {
  color: rgba(250, 246, 238, 0.85);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(250, 246, 238, 0.05);
}

/* Standard Buttons system */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 0.95rem 1.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-align: center;
}

.btn-header {
  margin-left: 2.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 11px;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-marine);
}

.btn-gold:hover {
  background-color: #dfbe75;
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.25);
  transform: translateY(-1px);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  border: 1px solid rgba(250, 246, 238, 0.35);
  color: var(--color-creme);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--color-creme);
  background-color: rgba(250, 246, 238, 0.04);
}

.btn-small {
  padding: 0.65rem 1rem;
  font-size: 10px;
  border: 1px solid var(--color-marine);
  color: var(--color-marine);
  background: transparent;
}

.btn-small:hover {
  background-color: var(--color-marine);
  color: var(--color-creme);
}

.btn-full {
  width: 100%;
}

/* Sections Global Structure */
.section {
  padding: 6rem 0;
}

.bg-alt {
  background-color: rgba(15, 40, 73, 0.02);
  border-top: 1px solid rgba(15, 40, 73, 0.05);
  border-bottom: 1px solid rgba(15, 40, 73, 0.05);
}

/* Page Headers style */
.page-header-section {
  background-color: var(--color-marine);
  color: var(--color-creme);
  padding: 4.5rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}

.page-meta-tag {
  letter-spacing: 0.2em;
  font-size: 10px;
  display: block;
  margin-bottom: 0.5rem;
}

.headline-subtext {
  opacity: 0.85;
  margin-top: 0.5rem;
}

/* ==========================================================================
   PAGE 1: HOME ( STARTSEITE )
   ========================================================================== */

/* Block 1 — Hero Section */
.section-hero {
  background-color: var(--color-marine);
  color: var(--color-creme);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

/* Decorative Orbs in background */
.section-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,97,0.06) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.container-hero {
  max-width: 820px;
  z-index: 10;
}

.tag {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  border: 1px solid rgba(201, 169, 97, 0.3);
  background-color: rgba(201, 169, 97, 0.05);
  padding: 0.35rem 0.8rem;
  margin-bottom: 2rem;
}

.headline {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 2rem;
}

.subheadline {
  font-size: 1.25rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 2.5rem;
}

.hero-quote {
  border-left: 3px solid var(--color-gold);
  padding-left: 1.8rem;
  font-size: 1.05rem;
  color: rgba(250, 246, 238, 0.9);
  line-height: 1.6;
  margin-bottom: 3.2rem;
  max-width: 680px;
}

.btn-group {
  display: flex;
  gap: 1.2rem;
}

/* Block 2 — Differenzierung (Der Unterschied) */
.section-diff {
  padding: 5.5rem 0;
}

.diff-block {
  background: rgba(15, 40, 73, 0.03);
  border: 1px solid rgba(15, 40, 73, 0.08);
  padding: 3rem;
  position: relative;
}

.diff-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-marine);
}

.block-tag {
  display: block;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: 1.85rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.body-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(15, 40, 73, 0.9);
}

/* Block 3 — Die drei Wege (Teaser grid) */
.section-heading {
  margin-bottom: 4rem;
}

.badge {
  display: inline-block;
  background-color: var(--color-marine);
  color: var(--color-creme);
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.25em;
  padding: 0.4rem 1rem;
  text-transform: uppercase;
}

.divider {
  width: 70px;
  height: 1.5px;
  background-color: var(--color-gold);
  margin: 1.5rem auto 0 auto;
}

/* Grid Matrix */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Premium Natural Tones Card */
.card-natural {
  background-color: rgba(15, 40, 73, 0.025);
  border: 1px solid rgba(15, 40, 73, 0.1);
  padding: 2.22rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.card-natural:hover {
  background-color: var(--color-white);
  border-color: rgba(201, 169, 97, 0.4);
  box-shadow: 0 10px 30px rgba(15, 40, 73, 0.04);
}

.feature-card {
  min-height: 480px;
}

.card-natural.relative {
  position: relative;
}

.card-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background-color: var(--color-gold);
}

.card-step {
  font-size: 10px;
  letter-spacing: 0.15em;
  opacity: 0.6;
  display: block;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.45rem;
  font-weight: bold;
  color: var(--color-marine);
  margin-bottom: 0.5rem;
}

.card-sub-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: rgba(15, 40, 73, 0.5);
}

.card-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(15, 40, 73, 0.85);
}

.card-price {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
  color: var(--color-marine);
}

.price-sub {
  font-size: 10px;
  font-weight: normal;
  opacity: 0.7;
}

.card-duration {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.card-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
}

/* Block 4 — Über mich (Intro layout) */
.section-about-intro {
  padding: 6.5rem 0;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--color-marine);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.12em;
  transition: var(--transition-smooth);
}

.link-arrow:hover {
  color: var(--color-gold);
}

.arrow-symbol {
  margin-left: 0.5rem;
  font-size: 14px;
}

/* Portrait avatar styling constraints */
.avatar-frame {
  position: relative;
  border: 2px solid rgba(201, 169, 97, 0.35);
  background-color: var(--color-creme);
  padding: 0.7rem;
  box-shadow: 0 10px 40px rgba(15, 40, 73, 0.06);
  width: 280px;
  height: 280px;
}

.inner-border {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(15, 40, 73, 0.12);
  pointer-events: none;
}

.avatar-placeholder-svg {
  width: 100%;
  height: 100%;
  background-color: var(--color-marine);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.image-footnote {
  margin-top: 0.8rem;
  font-size: 11px;
  color: rgba(15, 40, 73, 0.6);
  font-style: italic;
}

/* Block 5 — Quick-Audit als sicherer Einstieg */
.bg-dark {
  background-color: var(--color-marine);
}

.body-text-lg {
  font-size: 1.15rem;
  line-height: 1.75;
  opacity: 0.9;
  max-width: 820px;
  margin: 0 auto 3rem auto;
}

.bg-cards-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 3.5rem 0;
}

.bullet-card {
  background-color: rgba(250, 246, 238, 0.05);
  border: 1px solid rgba(201, 169, 97, 0.2);
  padding: 2.2rem;
}

.text-creme-muted {
  color: rgba(250, 246, 238, 0.75);
  font-size: 13.5px;
}

.risk-notice {
  border-left: 4px solid var(--color-gold);
  background-color: rgba(201, 169, 97, 0.06);
  padding: 1.8rem 2.5rem;
  margin-top: 3.5rem;
  text-align: center;
}

/* Block 6 — CTA-Block */
.section-cta-footer {
  padding: 7rem 0;
  border-top: 1px solid rgba(15, 40, 73, 0.1);
}

.cta-direct-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  margin-top: 2.5rem;
  color: rgba(15, 40, 73, 0.75);
}

.cta-field {
  display: flex;
  gap: 0.5rem;
}

.cta-field a {
  color: var(--color-marine);
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 97, 0.4);
}

.cta-field a:hover {
  color: var(--color-gold);
}

.separator {
  color: rgba(201, 169, 97, 0.5);
  font-size: 16px;
}

/* ==========================================================================
   PAGE 2: LEISTUNGEN
   ========================================================================== */

.card-premium-border {
  background-color: var(--color-creme);
  border: 2px solid rgba(201, 169, 97, 0.35);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.card-badge {
  position: absolute;
  top: 0;
  right: 2.5rem;
  transform: translateY(-50%);
  background-color: var(--color-gold);
  color: var(--color-marine);
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.15em;
  padding: 0.45rem 1.1rem;
  text-transform: uppercase;
}

.card-interior {
  padding: 2.8rem;
}

.card-h2 {
  font-size: 1.85rem;
  font-weight: bold;
  color: var(--color-marine);
  margin-bottom: 0.5rem;
}

.card-tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(15, 40, 73, 0.7);
  border-bottom: 1px solid rgba(15, 40, 73, 0.08);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.layout-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  margin: 2.5rem 0;
}

.content-col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-weight: bold;
}

.body-text-sm {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(15, 40, 73, 0.85);
}

.bg-inside-card {
  background-color: rgba(15, 40, 73, 0.03);
  border-left: 2px solid var(--color-gold);
  padding: 1.8rem;
}

.quote-inside {
  font-size: 15px;
  color: var(--color-marine);
  line-height: 1.6;
}

.clean-list {
  list-style: none;
}

.clean-list li {
  line-height: 1.8;
  margin-top: 0.5rem;
}

.list-check {
  font-weight: bold;
  margin-right: 0.35rem;
}

.price-action-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(15, 40, 73, 0.08);
  padding-top: 2rem;
  margin-top: 1.5rem;
}

.price-val {
  font-size: 1.65rem;
  font-weight: bold;
  color: var(--color-marine);
}

.price-meta {
  color: rgba(15, 40, 73, 0.6);
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.25rem;
}

.card-standard-border {
  background-color: var(--color-creme);
  border: 1px solid rgba(15, 40, 73, 0.15);
}

/* Dashed Future card workshop placeholder */
.card-future-dashed {
  border: 2px dashed rgba(201, 169, 97, 0.45);
  background-color: rgba(201, 169, 97, 0.03);
  padding: 3rem;
  position: relative;
}

.dashed-badge {
  position: absolute;
  top: 0;
  left: 2rem;
  transform: translateY(-50%);
  border: 1px solid rgba(201, 169, 97, 0.3);
  padding: 0.25rem 0.8rem;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.icon-box-dashed {
  background-color: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.2);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-dashed-text {
  color: rgba(201, 169, 97, 0.8);
  margin-top: 1.2rem;
}


/* ==========================================================================
   PAGE 3: ÜBER MICH ( BIO )
   ========================================================================== */

.grid-about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

.large-avatar {
  width: 320px;
  height: 384px;
}

.paragraph-space p {
  margin-bottom: 1.5rem;
}

.values-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.value-icon {
  background-color: rgba(201, 169, 97, 0.15);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-weight: bold;
  border-radius: 4px;
}

.value-footer {
  border-top: 1px solid rgba(15, 40, 73, 0.08);
  padding-top: 1rem;
}

.small-line {
  width: 50px;
  height: 3px;
  background-color: var(--color-gold);
}


/* ==========================================================================
   PAGE 4: KONTAKT
   ========================================================================== */

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-box {
  background: rgba(15, 40, 73, 0.03);
  border: 1px solid rgba(15, 40, 73, 0.1);
  padding: 2rem;
}

.shadow-box {
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.bg-gold-muted {
  background-color: rgba(201, 169, 97, 0.05);
  border: 1px solid rgba(201, 169, 97, 0.3);
}

.card-dark-contact {
  background-color: var(--color-marine);
  padding: 2.2rem;
}

.direct-lines {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.direct-item {
  display: flex;
  flex-direction: column;
}

.direct-key {
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 0.15rem;
}

.direct-val {
  font-size: 13.5px;
}

/* Active Contact Form Elements */
.contact-form-container {
  width: 100%;
}

.pure-form {
  background-color: var(--color-white);
  border: 1px solid rgba(15, 40, 73, 0.15);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-title {
  font-size: 1.45rem;
  font-weight: bold;
  color: var(--color-marine);
  border-bottom: 1px solid rgba(15, 40, 73, 0.08);
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
}

.error-alert {
  background-color: rgba(107, 31, 44, 0.05);
  border: 1px solid rgba(107, 31, 44, 0.25);
  color: var(--color-bordeaux);
  padding: 1rem;
  font-size: 13px;
  font-weight: bold;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.control-label {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: rgba(15, 40, 73, 0.8);
  margin-bottom: 0.4rem;
}

.helper-label {
  color: rgba(15, 40, 73, 0.5);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.input-control {
  border: 1px solid rgba(15, 40, 73, 0.18);
  background-color: rgba(15, 40, 73, 0.01);
  padding: 0.95rem 1.1rem;
  font-size: 14px;
  color: var(--color-marine);
  font-family: var(--font-sans);
  width: 100%;
  transition: var(--transition-smooth);
}

.input-control:focus {
  border-color: var(--color-gold);
  background-color: var(--color-white);
  outline: none;
  box-shadow: 0 0 0 1px var(--color-gold);
}

.textarea-control {
  min-height: 120px;
  resize: vertical;
}

.form-submit-row {
  margin-top: 1rem;
}

.gdpr-disclaimer {
  font-size: 10.5px;
  text-align: center;
  color: rgba(15, 40, 73, 0.5);
  line-height: 1.4;
}

/* Success State Screen */
.success-screen {
  background-color: rgba(201, 169, 97, 0.1);
  border: 2px solid rgba(201, 169, 97, 0.5);
  padding: 4rem 2rem;
  text-align: center;
}

.check-container {
  display: inline-flex;
  width: 64px;
  height: 64px;
  background-color: var(--color-gold);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}


/* ==========================================================================
   PAGE 5: RECHTLICHES ( LEGAL )
   ========================================================================== */

.section-tabs {
  padding: 2.5rem 0;
  background-color: rgba(15, 40, 73, 0.03);
  border-bottom: 1px solid rgba(15, 40, 73, 0.08);
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(15, 40, 73, 0.2);
  color: var(--color-marine);
  padding: 0.65rem 1.6rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  font-weight: bold;
  cursor: pointer;
  margin: 0 0.25rem;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  background-color: rgba(15, 40, 73, 0.05);
}

.tab-btn.active {
  background-color: var(--color-marine);
  border-color: var(--color-marine);
  color: var(--color-creme);
}

.legal-paper-card {
  background-color: var(--color-white);
  border: 1px solid rgba(15, 40, 73, 0.12);
  padding: 3.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.legal-block {
  margin-bottom: 2.2rem;
}

.legal-block-title {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.text-link {
  color: var(--color-marine);
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 97, 0.3);
}

.text-link:hover {
  color: var(--color-gold);
}

.bg-bordeaux-box {
  background-color: rgba(107, 31, 44, 0.04);
  padding: 1.5rem;
  border-left: 2px solid var(--color-bordeaux);
}

.address-box {
  background-color: rgba(15, 40, 73, 0.03);
  padding: 1.2rem;
  border-left: 2px solid var(--color-gold);
}


/* ==========================================================================
   FOOTER ( FUSSZEILE )
   ========================================================================== */

.main-footer {
  background-color: var(--color-marine);
  color: var(--color-creme);
  padding: 5rem 0 3rem 0;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-italics {
  font-size: 13px;
  opacity: 0.75;
  max-width: 320px;
}

.footer-badge {
  display: inline-block;
  background-color: rgba(201,169,97,0.05);
  border: 1px solid rgba(201, 169, 97, 0.15);
  padding: 0.3rem 0.8rem;
  font-size: 10px;
  letter-spacing: 0.12em;
  align-self: flex-start;
}

.footer-title {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.15em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: rgba(250, 246, 238, 0.75);
  text-decoration: none;
  font-size: 13.5px;
  transition: var(--transition-smooth);
}

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

.footer-direct-lines {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-direct-lines a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-direct-lines a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.65;
}

.footer-legal-links a {
  color: var(--color-creme);
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 97, 0.35);
  margin-left: 1.5rem;
  transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
  color: var(--color-gold);
  text-decoration-color: var(--color-gold);
}


/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container-fade {
  animation: fadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


/* ==========================================================================
   RESPONSIVE LAYOUTS ( MEDIA QUERIES )
   ========================================================================== */

@media (max-width: 900px) {
  .headline {
    font-size: 2.6rem;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .grid-about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-trigger {
    display: block;
  }
  
  .grid-2, .bg-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .btn-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .layout-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .price-action-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .price-action-strip .btn {
    width: 100%;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .pure-form {
    padding: 1.8rem;
  }
  
  .legal-paper-card {
    padding: 1.8rem;
  }
  
  .cta-direct-box {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .separator {
    display: none;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal-links {
    margin-top: 0.5rem;
  }
  
  .footer-legal-links a {
    margin: 0 0.75rem;
  }
}
