:root {
  --bg: #f7f8f5;
  --surface: #ffffff;
  --surface-strong: #eef3ef;
  --text: #17201c;
  --muted: #5b6862;
  --border: #d8ded8;
  --accent: #0f766e;
  --accent-strong: #115e59;
  --accent-soft: #d8f3ee;
  --warning: #fff2b8;
  --warning-border: #b08800;
  --hero-image: url("Einstiegsbild.png");
  /* Future assets: switch --hero-image to AVIF/WebP only after those files exist. */
  --shadow: 0 24px 60px rgba(23, 32, 28, 0.12);
  color-scheme: light;
}

body.theme-dark {
  --bg: #111512;
  --surface: #1b211e;
  --surface-strong: #25302b;
  --text: #edf3ef;
  --muted: #a4b9b3;
  --border: #39453f;
  --accent-soft: rgba(15, 118, 110, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  color-scheme: dark;
}

body.accent-blue {
  --accent: #2b2c7c;
  --accent-strong: #1f205f;
  --accent-soft: #dcdcf0;
}

body.accent-blue.theme-dark {
  --accent-soft: rgba(43, 44, 124, 0.26);
}

body.accent-amber {
  --accent: #746643;
  --accent-strong: #5c5033;
  --accent-soft: #ece6d8;
}

body.accent-amber.theme-dark {
  --accent-soft: rgba(116, 102, 67, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0;
}

.main-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 18px;
}

.main-nav a,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.section,
.section-band {
  padding: 84px clamp(18px, 5vw, 72px);
}

.section-band {
  background: var(--surface-strong);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  min-height: calc(100vh - 68px);
  padding-top: clamp(36px, 5vh, 60px);
  padding-bottom: clamp(32px, 4vh, 52px);
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 0.96) 0%, rgba(247, 248, 245, 0.9) 42%, rgba(247, 248, 245, 0.62) 100%),
    var(--hero-image) center / cover no-repeat;
}

body.theme-dark .hero {
  background:
    linear-gradient(90deg, rgba(17, 21, 18, 0.96) 0%, rgba(17, 21, 18, 0.9) 42%, rgba(17, 21, 18, 0.7) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero-copy,
.section-heading {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.lead {
  margin: 20px 0 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
}

.hero-problems {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-problems li {
  padding: 10px 0 10px 14px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
}

.hero-problems strong {
  display: block;
  color: var(--text);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button,
.preview-action,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
}

.button.primary,
.preview-action {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.button.secondary,
.text-button {
  background: var(--surface);
  color: var(--text);
}

.launch-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 20px;
}

.launch-note-consultation {
  display: inline-block;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 16px;
}

.launch-note-label {
  display: inline-block;
  margin: 0 8px 4px 0;
  color: var(--accent-strong);
  font-weight: 800;
}

.launch-note-mail {
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 2px;
}

.launch-note-mail:hover {
  color: var(--accent);
}

.contact-link-email {
  display: inline-block;
  max-width: 100%;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-link-email {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-side {
  display: grid;
  gap: 14px;
  align-self: start;
}

.quick-contact-panel {
  padding: 18px;
}

.quick-contact-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 30px);
}

.quick-contact-form {
  display: grid;
  gap: 10px;
}

.quick-contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.quick-contact-form input,
.quick-contact-form select,
.quick-contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
}

.quick-contact-form textarea {
  resize: vertical;
}

.quick-contact-form .button {
  width: 100%;
}

.booking-slot-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-slot-fieldset legend {
  margin: 0 0 6px;
  color: var(--muted);
  font-weight: 800;
}

.booking-slot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.booking-slot-option {
  min-width: 0;
}

.booking-slot-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-slot-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--text);
  font-weight: 800;
}

.booking-slot-option input:checked + span {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.booking-slot-option input:focus-visible + span {
  outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
  outline-offset: 2px;
}

.booking-status,
.booking-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.booking-status[data-tone="success"] {
  color: #216738;
  font-weight: 800;
}

.booking-status[data-tone="error"] {
  color: #9f2f2f;
  font-weight: 800;
}

.booking-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quick-mail-link {
  display: inline-flex;
  max-width: 100%;
  margin-top: 12px;
  color: var(--accent-strong);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-color: var(--accent);
  text-underline-offset: 2px;
}

.capacity-panel,
.quick-contact-panel,
.demo-preview,
.control-panel,
.service-card,
.legal-grid article {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.capacity-panel {
  padding: 14px;
}

.capacity-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.capacity-kicker {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capacity-header h2 {
  margin: 0;
  font-size: 22px;
}

.capacity-total {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.capacity-copy {
  margin: 18px 0 0;
  max-width: 58ch;
  color: var(--muted);
}

.capacity-charts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.capacity-download {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  background: var(--bg);
}

.capacity-download::before {
  content: "\2193";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  font-weight: 900;
}

.capacity-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.capacity-chart {
  --chart-value: 0%;
  position: relative;
  display: flex;
  width: 104px;
  height: 30px;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 8px;
  border-radius: 8px;
  background: var(--surface-strong);
}

.capacity-chart::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--chart-value);
  background: var(--chart-color);
  content: "";
}

.capacity-chart.open {
  --chart-color: #34a853;
}

.capacity-chart.working {
  --chart-color: #e7b416;
}

.capacity-chart span {
  position: relative;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.capacity-text strong {
  display: block;
  margin: 2px 0 0;
  font-size: 20px;
}

.capacity-text p:last-child {
  margin: 0;
  color: var(--muted);
}

.panel-title,
.preview-kicker {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

body.theme-dark .pill {
  color: #fff;
}

.section-heading p {
  margin: 0;
  max-width: 740px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-card {
  padding: 22px;
  box-shadow: none;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 210px;
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  color: var(--muted);
}

.process-list span,
.process-list strong {
  display: block;
}

.process-list span {
  color: var(--accent);
  font-weight: 900;
}

.process-list strong {
  margin: 18px 0 8px;
  color: var(--text);
  font-size: 19px;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.control-panel {
  align-self: start;
  padding: 20px;
  box-shadow: none;
}

fieldset {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

fieldset:last-child {
  margin-bottom: 0;
}

legend {
  margin-bottom: 10px;
  font-weight: 900;
}

.swatch-row,
.segmented {
  display: flex;
  gap: 8px;
}

.swatch {
  width: 42px;
  height: 42px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #0f766e;
  cursor: pointer;
}

.swatch.blue {
  background: #2b2c7c;
}

.swatch.amber {
  background: #746643;
}

.swatch.is-active {
  border-color: var(--text);
  outline: 3px solid var(--accent-soft);
}

.toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  color: var(--muted);
  cursor: pointer;
}

.toggle input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.segmented {
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-strong);
}

.segmented button {
  flex: 1;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.segmented button.is-active {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.demo-preview {
  min-height: 420px;
  padding: 24px;
}

.demo-preview[data-font="default"] {
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
}

.demo-preview[data-font="serif"] {
  font-family: Georgia, "Times New Roman", serif;
}

.demo-preview[data-font="mono"] {
  font-family: Consolas, "Courier New", monospace;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.preview-header h3 {
  margin: 4px 0 0;
}

.preview-table {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.8fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--border);
}

.table-filters {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.mode-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-table div {
  min-width: 0;
  padding: 14px;
  background: var(--surface);
  overflow-wrap: anywhere;
}

.table-cell[hidden] {
  display: none;
}

.table-head {
  color: var(--muted);
  font-weight: 900;
}

.pill {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.pill.done {
  background: #dcfce7;
  color: #166534;
}

.pill.wait {
  background: #fef3c7;
  color: #92400e;
}

.checkbox-list {
  display: grid;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
}

.checkbox-item input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}

.mode-option {
  min-width: 150px;
}

.summary-card {
  min-height: 140px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--muted);
}

.summary-note {
  margin: 0;
  color: var(--muted);
}

.demo-stack {
  display: grid;
  gap: 24px;
}

.demo-variant {
  display: grid;
  gap: 18px;
}

.demo-variant + .demo-variant {
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.variant-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.variant-header > div {
  display: grid;
  gap: 8px;
}

.variant-header h4 {
  margin: 0;
  color: var(--accent-strong);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.05;
}

.variant-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.variant-copy {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  text-align: right;
}

.advanced-filter-shell {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.advanced-filter-controls,
.advanced-table-shell {
  display: grid;
  gap: 12px;
}

.filter-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.filter-select {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-toolbar button {
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.filter-toolbar button:hover,
.filter-toolbar button:focus-visible {
  border-color: var(--accent);
}

.filter-checkbox-list {
  max-height: 228px;
  overflow: auto;
  padding-right: 4px;
}

.advanced-table-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.advanced-table-note {
  margin: 0;
  color: var(--muted);
}

.advanced-table-count {
  font-weight: 800;
}

.filter-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--muted);
}

.advanced-preview-table {
  grid-template-columns: 0.9fr 1.1fr 1.2fr 0.8fr;
}

.table-empty {
  grid-column: 1 / -1;
  color: var(--muted);
}

body.compact .demo-preview,
body.compact .control-panel,
body.compact .service-card,
body.compact .legal-grid article {
  padding: 14px;
}

body.compact .preview-table div {
  padding: 8px;
}

body.compact .demo-preview {
  min-height: 330px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 28px;
  align-items: center;
  background: var(--accent);
  color: #fff;
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-link {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}

.contact-link span {
  font-weight: 900;
}

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

.legal-grid article {
  padding: 22px;
  border-left: 3px solid var(--accent);
  box-shadow: inset 8px 0 0 var(--accent-soft);
}

.legal-grid #agb {
  grid-column: 1 / -1;
}

.legal-grid h2 {
  font-size: 28px;
}

.legal-grid h3 {
  margin: 28px 0 10px;
  font-size: 20px;
}

.legal-grid p {
  color: var(--muted);
}

.legal-address,
.legal-contact {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  color: var(--muted);
  font-style: normal;
}

.legal-address strong {
  color: var(--text);
}

.legal-contact a {
  color: var(--accent-strong);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-color: var(--accent);
  text-underline-offset: 2px;
}

.legal-read-more {
  width: fit-content;
  margin-top: 16px;
}

.legal-page {
  background: var(--surface-strong);
}

.legal-page-heading {
  max-width: 860px;
  margin: 0 auto 28px;
}

.legal-page-heading h1 {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
}

.legal-page-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-page-card h2 {
  margin: 32px 0 10px;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.16;
}

.legal-page-card h2:first-child {
  margin-top: 0;
}

.legal-page-card p {
  max-width: 72ch;
  margin: 10px 0 0;
}

.legal-page-card p,
.legal-page-card li {
  color: var(--muted);
}

.legal-page-card ul {
  max-width: 72ch;
  margin: 10px 0 0;
  padding-left: 22px;
}

.legal-page-card li + li {
  margin-top: 4px;
}

.legal-page-card a,
.legal-address a {
  color: var(--accent-strong);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-color: var(--accent);
  text-underline-offset: 2px;
}

.legal-grid .legal-note {
  padding: 12px 14px;
  border: 1px solid var(--warning-border);
  border-left: 4px solid var(--warning-border);
  border-radius: 8px;
  background: var(--warning);
  color: #2d2500;
}

.legal-download {
  display: inline-flex;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--border);
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .demo-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .advanced-filter-shell {
    grid-template-columns: 1fr;
  }

  .variant-header {
    flex-direction: column;
  }

  .variant-copy {
    max-width: none;
    text-align: left;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .process-list,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    gap: 10px;
  }

  .main-nav a {
    padding: 6px 0;
  }

  .section,
  .section-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero {
    background:
      linear-gradient(rgba(247, 248, 245, 0.96), rgba(247, 248, 245, 0.9)),
      var(--hero-image) center / cover no-repeat;
  }

  body.theme-dark .hero {
    background:
      linear-gradient(rgba(17, 21, 18, 0.96), rgba(17, 21, 18, 0.9)),
      var(--hero-image) center / cover no-repeat;
  }

  .hero-actions,
  .preview-header,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .preview-action,
  .text-button,
  .legal-read-more {
    width: 100%;
  }

  .service-grid,
  .process-list,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .preview-table {
    grid-template-columns: 1fr;
  }

  .table-head {
    display: none;
  }

  .capacity-header {
    flex-direction: column;
  }

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

  .capacity-charts {
    grid-template-columns: 1fr;
  }

  .capacity-total {
    white-space: normal;
  }

  .booking-slot-list {
    grid-template-columns: 1fr;
  }
}
