/* ============================================================
   HIVE PARC RATINGEN — Landingpage Stylesheet
   Corporate Identity:
     - Neon-Grün (Akzent)         #00FF47
     - Dunkles Forest-Grün (BG)   #0F2A1E
     - Tiefes Forest-Grün (Text)  #1B4332
     - Creme (Body BG)            #F2EBDE
     - Off-White                  #FAF7F1
     - Schwarz                    #0A1614
     - Bronze/Sekundär            #8C7355
   Typografie: DIN Office (Light + Bold) — selbst gehostet
   ============================================================ */

@font-face {
  font-family: 'DIN Office';
  src: url('fonts/DINOffc-Light.woff2') format('woff2'),
       url('fonts/DINOffc-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN Office';
  src: url('fonts/DINOffc-Bold.woff2') format('woff2'),
       url('fonts/DINOffc-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green-neon:   #00FF47;
  --green-neon-2: #2BFF60;
  --green-dark:   #0F2A1E;
  --green-darker: #0A1F16;
  --green-deep:   #1B4332;
  --cream:        #F2EBDE;
  --cream-light:  #FAF7F1;
  --ink:          #0A1614;
  --ink-soft:     #2A3B36;
  --bronze:       #8C7355;
  --line:         rgba(15, 42, 30, 0.15);
  --line-light:   rgba(255, 255, 255, 0.18);

  --font-display: 'DIN Office', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:    'DIN Office', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --container:    1320px;
  --gutter:       clamp(20px, 4vw, 56px);
  --radius:       2px;

  --shadow-soft:  0 1px 2px rgba(10, 22, 20, 0.08), 0 8px 24px rgba(10, 22, 20, 0.06);
  --shadow-card:  0 1px 3px rgba(10, 22, 20, 0.06), 0 12px 32px rgba(10, 22, 20, 0.08);

  --transition:   240ms cubic-bezier(.2, .8, .2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   TYPO-PRIMITIVE
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 28px;
}
.eyebrow-light { color: var(--green-neon); }

.display-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin: 0 0 32px;
}
.display-title-light { color: var(--cream-light); }

.lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-arrow { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--green-neon);
  color: var(--green-darker);
  box-shadow: 0 0 0 1px var(--green-neon);
}
.btn-primary:hover {
  background: var(--green-neon-2);
  box-shadow: 0 0 0 1px var(--green-neon-2), 0 10px 30px rgba(0, 255, 71, 0.25);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream-light);
  box-shadow: inset 0 0 0 1.5px var(--cream-light);
}
.btn-outline-light:hover {
  background: var(--cream-light);
  color: var(--green-darker);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  box-shadow: inset 0 0 0 1.5px var(--green-deep);
}
.btn-outline:hover {
  background: var(--green-deep);
  color: var(--cream-light);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-dark);
  color: var(--cream-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px var(--gutter);
  max-width: 1600px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream-light);
  flex-shrink: 0;
}
.brand-mark { width: 42px; height: 42px; color: var(--green-neon); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.brand-sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.32em;
  margin-top: 4px;
  opacity: 0.72;
}

.primary-nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.primary-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-light);
  opacity: 0.9;
  position: relative;
  padding: 8px 0;
  transition: opacity var(--transition);
}
.primary-nav a:hover { opacity: 1; }
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--green-neon);
  transition: right var(--transition);
}
.primary-nav a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  gap: 2px;
  align-items: center;
}
.lang-btn {
  background: transparent;
  border: 0;
  color: var(--cream-light);
  opacity: 0.55;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity var(--transition), color var(--transition);
}
.lang-btn:hover { opacity: 1; }
.lang-btn.is-active { opacity: 1; color: var(--green-neon); }

/* Mobile Sprach-Trigger (auf Desktop UNSICHTBAR, nur Mobile zeigt ihn) */
.lang-trigger {
  display: none !important;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--cream-light);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  gap: 6px;
  transition: border-color var(--transition), background var(--transition);
}
.lang-trigger:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.45); }

/* Sprach-Modal */
.modal-box-compact {
  max-width: 360px !important;
  padding: 1.75rem !important;
}
.lang-modal-title {
  margin: 0 0 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.lang-modal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lang-modal-list button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), border-color var(--transition);
}
.lang-modal-list button:hover {
  background: var(--cream);
  border-color: var(--line);
}
.lang-modal-list button.is-active {
  background: var(--green-deep);
  color: var(--cream-light);
}
.lang-modal-list button.is-active .lang-code { color: var(--green-neon); }
.lang-code {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  min-width: 32px;
}
.lang-name {
  font-size: 15px;
  font-weight: 500;
}

.header-cta { padding: 14px 22px; font-size: 12px; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream-light);
  margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--green-dark);
  color: var(--cream-light);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 0;
  min-height: 640px;
}

.hero-left {
  padding: clamp(48px, 6vw, 96px) var(--gutter) clamp(56px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-left::before {
  content: '';
  position: absolute;
  left: 0; top: 18%;
  width: 4px; height: 64%;
  background: var(--green-neon);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
}

.hero-lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  max-width: 32ch;
  margin: 0 0 44px;
  opacity: 0.88;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-right {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}
.hero-insert {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: clamp(220px, 26%, 320px);
  aspect-ratio: 16 / 11;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--cream-light);
}
.hero-insert img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.insert-label {
  position: absolute;
  left: 16px; bottom: 12px;
  color: var(--cream-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

/* ============================================================
   KEY FACTS STRIP
   ============================================================ */
.keyfacts {
  background: var(--cream-light);
  border-bottom: 1px solid var(--line);
}
.keyfacts-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1600px;
  margin: 0 auto;
}
.keyfacts-list li {
  padding: 28px var(--gutter);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.keyfacts-list li:last-child { border-right: 0; }
.kf-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.kf-lbl {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions {
  padding: clamp(80px, 9vw, 140px) 0 clamp(80px, 9vw, 140px);
}
.section-head { margin-bottom: 64px; }
.solutions-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.solutions-head .display-title { margin-bottom: 0; }
.solutions-head-left .eyebrow { margin-bottom: 22px; }
.solutions-head .lead { padding-bottom: 18px; }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.solutions-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.solution-card {
  background: var(--cream-light);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--line);
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.solution-media {
  position: relative;
  aspect-ratio: 21 / 10;
  overflow: hidden;
  background: var(--green-darker);
}
.solution-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
/* --wide ist jetzt synonym mit dem Default; bleibt für Abwärtskompatibilität */
.solution-media--wide { aspect-ratio: 21 / 10; }
.solution-card:hover .solution-media img { transform: scale(1.05); }
.solution-num {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  color: var(--green-neon);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.solution-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.solution-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--green-deep);
  text-transform: uppercase;
}
.solution-tags {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 14px;
}

.solution-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  padding: 6px 0;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  position: relative;
}
.solution-link svg { width: 18px; height: 18px; transition: transform var(--transition); }
.solution-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--green-deep);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform var(--transition);
}
.solution-link:hover svg { transform: translateX(4px); }
.solution-link:hover::after { transform: scaleX(1); }

/* ============================================================
   HOSPITALITY
   ============================================================ */
.hospitality {
  background: var(--green-dark);
  color: var(--cream-light);
}
.hospitality-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 0;
  min-height: 620px;
}
.hospitality-media {
  position: relative;
  overflow: hidden;
}
.hosp-img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hosp-img-single { object-position: 25% center; }

.hospitality-content {
  padding: clamp(56px, 7vw, 110px) clamp(40px, 5vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hospitality-content .display-title { color: var(--cream-light); margin-bottom: 40px; }

.hosp-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin-top: 8px;
}
.hosp-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hosp-list li::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--green-neon);
  flex-shrink: 0;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background: var(--cream);
  padding-top: 0;
}
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 0;
  min-height: 580px;
}
.location-info {
  padding: clamp(64px, 7vw, 110px) clamp(40px, 5vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info .display-title { font-size: clamp(36px, 4.4vw, 68px); }

.location-address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.location-address strong {
  color: var(--green-deep);
  font-weight: 700;
}

.location-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.location-meta li {
  padding-left: 18px;
  position: relative;
}
.location-meta li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1.5px;
  background: var(--green-deep);
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--green-deep);
  transition: color var(--transition), border-color var(--transition);
}
.link-cta svg { width: 18px; height: 18px; }
.link-cta:hover { color: var(--green-neon); border-color: var(--green-neon); }

.location-map {
  position: relative;
  min-height: 420px;
  background: var(--green-deep);
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.trusted {
  background: var(--green-darker);
  color: var(--cream-light);
  padding: 56px var(--gutter) 64px;
}
.trusted .eyebrow {
  margin-bottom: 36px;
}

.trusted-logos {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* Einzelne Logo-Card */
.logo-tile {
  background: var(--cream-light);
  border-radius: var(--radius);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}
.logo-tile img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ============================================================
   BOOKING / FORMS
   ============================================================ */
.booking {
  background: var(--cream-light);
  padding: clamp(80px, 9vw, 140px) 0;
}
.booking-head .display-title { max-width: 14ch; }
.booking-head .display-title span:nth-child(3) { color: var(--green-neon); }

.booking-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 56px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.booking-tab {
  background: transparent;
  border: 0;
  padding: 28px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background var(--transition);
}
.booking-tab:last-child { border-right: 0; }
.booking-tab:hover { background: var(--cream); }
.booking-tab::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 3px;
  background: var(--green-neon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.booking-tab.is-active { background: var(--cream); }
.booking-tab.is-active::before { transform: scaleX(1); }
.tab-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
}
.tab-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.booking-tab.is-active .tab-label { color: var(--green-deep); }

.booking-form-wrap {
  background: var(--cream);
  padding: clamp(36px, 4vw, 64px);
}

.booking-form { display: none; }
.booking-form.is-active { display: block; }

.form-intro {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 0 0 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field-full { grid-column: 1 / -1; margin-top: 16px; }

.form-field > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(0, 255, 71, 0.18);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  padding: 12px 18px;
  background: var(--cream-light);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}
.avail-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bronze);
  animation: pulse 1.6s ease-in-out infinite;
}
.availability.is-available .avail-dot { background: var(--green-neon); animation: none; }
.availability.is-unavailable .avail-dot { background: #d64545; animation: none; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.form-consent {
  display: flex;
  gap: 10px;
  margin: 28px 0 24px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  cursor: pointer;
}
.form-consent input { margin-top: 3px; flex-shrink: 0; }

.btn-submit {
  padding: 20px 32px;
  font-size: 13px;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  color: var(--green-deep);
}
.success-icon { width: 72px; height: 72px; margin: 0 auto 24px; color: var(--green-deep); }
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 36px);
  margin-bottom: 12px;
}
.form-success p { color: var(--ink-soft); max-width: 48ch; margin: 0 auto 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-darker);
  color: var(--cream-light);
  padding: 44px var(--gutter) 16px;
}
.footer-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .brand-mark { width: 56px; height: 56px; color: var(--green-neon); margin-bottom: 16px; }
.footer-tag { font-size: 14px; line-height: 1.55; opacity: 0.78; max-width: 30ch; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-neon);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { opacity: 0.82; transition: opacity var(--transition), color var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--green-neon); }
.footer-col li { font-size: 14px; }

.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-cred { letter-spacing: 0.32em; color: var(--green-neon); opacity: 1; font-weight: 700; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .keyfacts-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .keyfacts-list li:nth-child(3n) { border-right: 0; }
  .keyfacts-list li:nth-child(-n+3) { border-bottom: 1px solid var(--line); }

  .solutions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solutions-grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

  .solutions-head { grid-template-columns: 1fr; gap: 28px; }

  .booking-tabs { grid-template-columns: repeat(3, 1fr); }
  .booking-tabs .booking-tab { border-right: 1px solid var(--line); }
  .booking-tabs .booking-tab:nth-child(3n) { border-right: 0; }
  .booking-tabs .booking-tab:nth-child(-n+3) { border-bottom: 1px solid var(--line); }

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

@media (max-width: 860px) {
  /* Header: NICHT mehr sticky auf Mobile, scrollt mit dem Inhalt weg */
  .site-header { position: static !important; }

  /* Logo kompakter, damit alles in EINE Zeile passt */
  .brand-logo-img { height: 40px !important; }
  .header-inner {
    padding: 10px var(--gutter) !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  /* Header-Inner: Logo links, ALLES andere kompakt direkt rechtsbündig */
  .header-inner .brand { margin-right: auto !important; }

  /* Primary Nav: rechtsbündig, direkt vor den Actions */
  .primary-nav {
    display: flex !important;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
    flex-direction: row !important;
    gap: 14px !important;
    flex: 0 0 auto !important;
    justify-content: flex-end !important;
    margin: 0 !important;
  }
  .primary-nav a {
    font-size: 12px !important;
    padding: 4px 0 !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap;
  }

  /* Header-Actions direkt nach Nav (kein margin-left auto, sonst entsteht Lücke) */
  .header-actions {
    gap: 8px !important;
    flex-shrink: 0;
    margin-left: 0 !important;
  }

  /* Hamburger ausblenden auf Mobile (Nav ist direkt sichtbar, Sprache hat eigenen Trigger) */
  .menu-toggle { display: none !important; }

  /* Desktop-Sprachen-Switch ausblenden, mobiler Trigger zeigt sich */
  .lang-switch { display: none !important; }
  .lang-trigger {
    display: inline-flex !important;
    padding: 5px 8px !important;
    font-size: 11px !important;
  }

  /* CTA-Button: voller Text "Jetzt anfragen" sichtbar */
  .header-cta {
    padding: 8px 12px !important;
    font-size: 11px !important;
    letter-spacing: 0.06em !important;
    white-space: nowrap;
  }
  .header-cta span:not(.btn-arrow) { display: inline !important; }
  .header-cta .btn-arrow { width: 14px; height: 14px; }

  /* Hero Mobile: Bild oben mit Shortcuts im Himmel, Text in eigenem Block darunter */
  .hero {
    min-height: 0 !important;
    align-items: stretch !important;
    display: block !important;
    position: relative !important;
  }
  /* Bild-Bereich: feste Höhe (zeigt Aufsteller) */
  .hero-bg {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 58vh !important;
    min-height: 420px !important;
    background-size: cover !important;
    background-position: 17% center !important;
  }
  /* Slides erben Mobile-Position; Slide 4 (Nacht) weiter nach rechts, damit Aufsteller sichtbar */
  .hero-slide { background-position: 17% center !important; }
  .hero-slide:nth-child(4) { background-position: 12% center !important; }
  /* Neue Porträt-Motive (Eingang & Empfang) mittig zeigen */
  .hero-slide:nth-child(2) { background-position: center center !important; }
  .hero-slide:nth-child(3) { background-position: center 42% !important; }
  /* Gradient: leichter Dunkelgrad NUR im oberen Bildbereich für bessere Lesbarkeit der Shortcuts */
  .hero-bg::after {
    background: linear-gradient(to bottom, rgba(0,30,15,0.55) 0%, rgba(0,30,15,0.15) 18%, rgba(0,30,15,0) 35%) !important;
  }

  /* Hero-Grid: Text-Block UNTER dem Bild auf dunkelgrünem Hintergrund */
  .hero-grid {
    position: relative !important;
    background: var(--green-dark) !important;
    padding: 2.25rem 1.25rem 2.25rem !important;
    justify-content: center !important;
    align-items: stretch !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    height: auto !important;
    text-align: left !important;
  }
  .hero-left {
    max-width: 100% !important;
    padding: 0 0 0 1rem !important;
    margin: 0 !important;
    border-left: 0 !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: left !important;
    min-height: 100% !important;
  }
  /* Grüner Balken zurück: vertikal über die ganze Texthöhe */
  .hero-left::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 3px !important;
    background: var(--green-neon) !important;
  }
  .hero-left .eyebrow {
    margin: 0 0 0.6rem 0 !important;
    font-size: 0.78rem !important;
  }
  .hero-title {
    font-size: clamp(2.2rem, 9.5vw, 3.6rem) !important;
    line-height: 0.96 !important;
    margin: 0 0 0.6rem 0 !important;
    text-align: left !important;
  }
  .hero-lead {
    font-size: 0.95rem !important;
    max-width: 100% !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }

  /* Shortcuts: Desktop-Variante (in .hero-left) auf Mobile AUSBLENDEN */
  .solutions-shortcuts-desktop { display: none !important; }

  /* Mobile-Variante (in .hero-bg) UNTEN im Bild auf der Wiese */
  .solutions-shortcuts-mobile {
    position: absolute !important;
    bottom: 1rem !important;
    left: 0.9rem !important;
    right: 0.9rem !important;
    top: auto !important;
    z-index: 10 !important;
    display: grid !important;
    gap: 0.5rem !important;
    margin: 0 !important;
    flex-wrap: unset !important;
    justify-items: stretch !important;
    grid-template-columns: 1fr 1fr !important;
  }
  /* Alle Buttons exakt gleich groß; der 5. mittig unter den beiden Spalten */
  .solutions-shortcuts-mobile a:nth-child(5) {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    width: calc(50% - 0.25rem) !important;
  }
  .solutions-shortcuts-mobile a {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0.62rem 0.5rem !important;
    font-size: 0.72rem !important;
    background: #ffffff !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border: 0 !important;
    color: var(--green-deep) !important;
    border-radius: 2rem !important;
    white-space: nowrap !important;
    letter-spacing: 0.01em !important;
    text-align: center !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
  }
  .solutions-shortcuts-mobile a:hover,
  .solutions-shortcuts-mobile a:active {
    background: var(--green-neon) !important;
    color: var(--green-darker) !important;
  }

  /* "Flexible Lösungen" — Solutions-Header 70% größer */
  .solutions-head .eyebrow { font-size: 1.05rem !important; }
  .solutions-head .display-title {
    font-size: clamp(2.6rem, 9vw, 4rem) !important;
    line-height: 1.05 !important;
  }

  /* Solution Cards: einheitlich panoramisch wie Desktop, Schriften größer */
  .solution-media,
  .solution-media--wide { aspect-ratio: 21 / 10 !important; }
  .solution-body { padding: 22px 22px 26px !important; gap: 14px !important; }
  .solution-body h3 { font-size: 1.4rem !important; }
  .solution-tags { font-size: 1rem !important; gap: 6px !important; }
  .solution-link { font-size: 13px !important; }
  .solution-num { font-size: 52px !important; top: 16px !important; left: 18px !important; }

  /* Hospitality Mobile: Bild komplett entfernen, nur Text + Banner */
  .hospitality-grid { grid-template-columns: 1fr; }
  .hospitality-media { display: none !important; }
  .hosp-list { grid-template-columns: 1fr; }

  /* Kantine */
  .kantine-section { min-height: 380px !important; }
  .kantine-content { padding: 3rem 1.25rem !important; }
  .kantine-text h2 { font-size: clamp(1.7rem, 6.5vw, 2.4rem) !important; }
  .kantine-text p { font-size: 1.05rem !important; }
  .kantine-chip { font-size: 0.9rem !important; padding: 0.5rem 1rem !important; }

  /* Location */
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 260px; }
  .location-map img.map-image { min-height: 240px; }

  /* Booking */
  .booking-tabs { grid-template-columns: repeat(2, 1fr); }
  .booking-tabs .booking-tab:nth-child(odd) { border-right: 1px solid var(--line); }
  .booking-tabs .booking-tab:nth-child(2n) { border-right: 0; }
  .booking-tabs .booking-tab { border-bottom: 1px solid var(--line); }
  .booking-tabs .booking-tab:last-child { border-bottom: 0; }

  .plan-cards {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

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

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; }

  /* Modal */
  .modal-box { padding: 1.5rem !important; max-height: 92vh !important; }
  .modal-form-grid { grid-template-columns: 1fr !important; }

  /* Hospitality Banner */
  .hosp-banner-item { font-size: 0.92rem !important; padding: 0.6rem 1.1rem !important; }
}

@media (max-width: 560px) {
  /* KeyFacts: 1 Spalte, Schrift größer */
  .keyfacts-list { grid-template-columns: 1fr; }
  .keyfacts-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px var(--gutter);
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
  }
  .keyfacts-list li:last-child { border-bottom: 0; }
  .kf-num { font-size: 32px !important; flex-shrink: 0; min-width: 96px; }
  .kf-lbl { font-size: 16px !important; }

  /* Solutions: 1 Spalte, Bilder einheitlich panoramisch und etwas kleiner */
  .solutions-grid,
  .solutions-grid-5 { grid-template-columns: 1fr; gap: 18px !important; }
  .solution-media,
  .solution-media--wide { aspect-ratio: 21 / 9 !important; }

  /* Header: noch kompakter aber CTA-Text "Jetzt anfragen" BLEIBT sichtbar */
  .header-cta span:not(.btn-arrow) { display: inline !important; }
  .header-cta {
    padding: 7px 10px !important;
    font-size: 10px !important;
    letter-spacing: 0.04em !important;
  }
  .header-cta .btn-arrow { width: 12px; height: 12px; }
  .brand-logo-img { height: 36px !important; }
  .primary-nav { gap: 10px !important; }
  .primary-nav a { font-size: 10px !important; letter-spacing: 0.06em !important; }
  .lang-trigger { font-size: 10px !important; padding: 5px 7px !important; }
  .header-actions { gap: 6px !important; }

  /* Trust-Logos kompakt */
  .trusted-logos { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .logo-tile { height: 72px; padding: 14px 18px; }

  /* Plan Cards */
  .plan-card { padding: 1.2rem !important; }
  .plan-card h4 { font-size: 1.1rem !important; }
  .plan-price { font-size: 1.3rem !important; }
  .plan-card ul { font-size: 0.95rem !important; }
}

/* Schmale iPhones: Header passt nicht in eine Zeile -> Navigation in zweite
   Zeile, Logo + Sprache + CTA bleiben oben. Verhindert das Abschneiden von
   "Jetzt anfragen" (u. a. auf iOS Safari). */
@media (max-width: 480px) {
  .header-inner {
    flex-wrap: wrap !important;
    row-gap: 10px !important;
    column-gap: 8px !important;
  }
  .primary-nav {
    order: 3 !important;
    flex-basis: 100% !important;
    width: 100% !important;
    justify-content: center !important;
    gap: 26px !important;
    margin: 0 !important;
  }
  .primary-nav a { font-size: 12px !important; padding: 2px 0 !important; letter-spacing: 0.06em !important; }
  .header-actions { margin-left: 0 !important; gap: 8px !important; }
  /* Genug Platz -> CTA wieder komfortabel und vollständig sichtbar */
  .header-cta {
    padding: 9px 15px !important;
    font-size: 11px !important;
    letter-spacing: 0.05em !important;
  }
  .header-cta .btn-arrow { display: inline !important; width: 13px; height: 13px; }
  .brand-logo-img { height: 38px !important; }
}

/* Mobile-Menü overlay (wenn menu-toggle aktiv) */
.site-header.is-menu-open {
  position: sticky;
}
.site-header.is-menu-open .primary-nav {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  flex-direction: column;
  background: var(--green-darker);
  padding: 24px var(--gutter) 28px;
  gap: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  z-index: 200;
}
.site-header.is-menu-open .lang-switch {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  padding: 18px var(--gutter) 22px;
  background: var(--green-darker);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  /* unter dem Nav-Menu positionieren */
  transform: translateY(140px);
  flex-wrap: wrap;
  z-index: 199;
}
.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
