/* Gebäudeverwaltung Hellenschmidt – Design an Logo angepasst */
:root {
  --purple-dark: #3d1f5c;
  --purple-mid: #6b2d8e;
  --purple-light: #9b4dca;
  --purple-accent: #b855c9;
  --gradient-brand: linear-gradient(135deg, #3d1f5c 0%, #6b2d8e 45%, #b855c9 100%);
  --gradient-soft: linear-gradient(180deg, #f8f5fc 0%, #ffffff 100%);
  --text-primary: #1e1e2e;
  --text-secondary: #5c5c72;
  --text-muted: #8888a0;
  --bg-page: #faf9fc;
  --bg-white: #ffffff;
  --border: #e8e4f0;
  --shadow-sm: 0 2px 8px rgba(61, 31, 92, 0.06);
  --shadow-md: 0 8px 32px rgba(61, 31, 92, 0.1);
  --shadow-lg: 0 16px 48px rgba(61, 31, 92, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --header-h: 80px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--purple-mid);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--purple-accent);
}

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-link img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--text-primary);
}

.logo-text span {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

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

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-desktop a:hover {
  color: var(--purple-mid);
}

.nav-desktop a.btn-primary {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.nav-desktop a.btn-primary:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 16px rgba(107, 45, 142, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 45, 142, 0.45);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--purple-mid);
  border: 2px solid var(--purple-mid);
}

.btn-outline:hover {
  background: var(--purple-mid);
  color: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.5rem 0;
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  max-width: 600px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(155, 77, 202, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(107, 45, 142, 0.1);
  color: var(--purple-mid);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.hero h1 .highlight {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid rgba(107, 45, 142, 0.2);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-mid);
  margin-bottom: 0.5rem;
}

/* Services */
.services {
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(107, 45, 142, 0.25);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--purple-mid);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

.about-content h2 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.about-role {
  color: var(--purple-mid);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(107, 45, 142, 0.08);
  border: 1px solid rgba(107, 45, 142, 0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--purple-dark);
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.value-item {
  padding: 1.25rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.value-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--purple-mid);
  margin-bottom: 0.25rem;
}

.value-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Contact */
.contact {
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--purple-mid);
}

.contact-item a {
  font-weight: 500;
}

.contact-form {
  background: var(--bg-page);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.form-group label .required {
  color: var(--purple-accent);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(107, 45, 142, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 0;
  cursor: pointer;
}

.form-checkbox input {
  width: auto;
  flex-shrink: 0;
  margin-top: 0.25rem;
  accent-color: var(--purple-mid);
  cursor: pointer;
}

.form-checkbox span {
  flex: 1;
  line-height: 1.5;
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Footer */
.site-footer {
  background: var(--purple-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.25rem 1rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-copyright {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.footer-credit {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
}

.footer-social {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0.75rem;
}

.footer-location {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  text-align: right;
}

.visitor-counter {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  text-align: right;
  font-size: inherit;
  color: inherit;
  opacity: 0.85;
}

.footer-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-credit a:hover {
  color: #fff;
  opacity: 1;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  opacity: 1;
  transition: background var(--transition), transform var(--transition);
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
}

.footer-legal {
  grid-column: 1 / -1;
  grid-row: 3;
  justify-self: center;
  text-align: center;
}

.footer-bottom:has(.footer-legal) {
  grid-template-rows: auto auto auto;
}

/* Legal pages */
.legal-page {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--purple-dark);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content a {
  text-decoration: underline;
}

/* Cookie banner */
body.cookie-consent-pending {
  overflow: hidden;
}

.cookie-blocker {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: rgba(26, 16, 38, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cookie-blocker.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  width: min(1140px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cookie-text a {
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-cookie-accept {
  background: var(--gradient-brand);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.btn-cookie-decline {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.btn-cookie-decline:hover {
  border-color: var(--purple-mid);
  color: var(--purple-mid);
}

body.cookie-consent-pending .sound-fab,
body.cookie-consent-pending .contact-fabs {
  visibility: hidden;
  pointer-events: none;
}

/* Sound-Steuerung unten links */
.sound-fab {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2100;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  color: var(--purple-mid);
  border: 2px solid rgba(107, 45, 142, 0.25);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.sound-fab:hover {
  transform: scale(1.06);
  border-color: var(--purple-mid);
  background: #faf9fc;
}

.sound-fab.is-playing {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}

.sound-fab.has-error {
  border-color: #c62828;
  color: #c62828;
}

.sound-fab svg {
  width: 24px;
  height: 24px;
}

.sound-fab .icon-pause {
  display: none;
}

.sound-fab.is-playing .icon-play {
  display: none;
}

.sound-fab.is-playing .icon-pause {
  display: block;
}

/* Kontakt-Buttons unten rechts */
.contact-fabs {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.whatsapp-fab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem 0.85rem 0.85rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.whatsapp-fab-icon svg {
  width: 24px;
  height: 24px;
}

.whatsapp-fab-label {
  font-size: 0.95rem;
  font-weight: 600;
  padding-right: 0.25rem;
  white-space: nowrap;
}

/* Anruf-Button unten rechts */
.call-fab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem 0.85rem 0.85rem;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(107, 45, 142, 0.45);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: callFabBounce 2.5s ease-in-out infinite;
}

.call-fab:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(107, 45, 142, 0.55);
  animation: none;
}

.call-fab-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(107, 45, 142, 0.55);
  animation: callFabPulse 2s ease-out infinite;
  pointer-events: none;
}

.call-fab-ring--delay {
  animation-delay: 1s;
}

.call-fab-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: callFabWiggle 2.5s ease-in-out infinite;
}

.call-fab-icon svg {
  width: 24px;
  height: 24px;
}

.call-fab-label {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  font-weight: 600;
  padding-right: 0.25rem;
  white-space: nowrap;
}

@keyframes callFabPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@keyframes callFabBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes callFabWiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-12deg);
  }
  20% {
    transform: rotate(12deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .call-fab,
  .call-fab-icon,
  .call-fab-ring {
    animation: none;
  }
}

@media (max-width: 600px) {
  .sound-fab {
    left: 1rem;
    bottom: 1rem;
    width: 48px;
    height: 48px;
  }

  .contact-fabs {
    right: 1rem;
    bottom: 1rem;
    gap: 0.65rem;
  }

  .whatsapp-fab,
  .call-fab {
    padding: 0.75rem;
  }

  .whatsapp-fab-label,
  .call-fab-label {
    display: none;
  }

  .whatsapp-fab-icon,
  .call-fab-icon {
    width: 48px;
    height: 48px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .about-grid {
    gap: 0.5rem;
  }

  .about-image {
    max-width: 200px;
    margin-inline: auto;
    justify-self: center;
  }

  .about-image img {
    aspect-ratio: 4/5;
  }

  .about-content h2,
  .about-role {
    text-align: center;
  }

  .about-content h2 {
    margin-top: 0;
    font-size: 1.35rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-copyright,
  .footer-social,
  .footer-location,
  .footer-legal,
  .footer-credit,
  .visitor-counter {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    align-self: center;
    text-align: center;
    width: 100%;
  }

  .footer-social {
    width: auto;
  }

  .footer-location {
    display: none;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.5rem 0;
  }

  .about-image {
    max-width: 140px;
  }

  .about-content h2 {
    font-size: 1.15rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

.footer-col button.cookie-link {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-col button.cookie-link:hover {
  color: #fff;
}
