/* Hundeschule Anett Lorenz – Hauptstylesheet */

:root {
  --color-primary: #2d5a3d;
  --color-primary-dark: #1e3d29;
  --color-primary-light: #3d7a52;
  --color-accent: #c47a2c;
  --color-accent-hover: #a8651f;
  --color-bg: #faf8f5;
  --color-bg-alt: #f0ebe3;
  --color-surface: #ffffff;
  --color-text: #2c2c2c;
  --color-text-muted: #5a5a5a;
  --color-border: #d4cfc6;
  --color-focus: #2563eb;
  --font-family: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  --max-width: 72rem;
  --header-height: 4.5rem;
  --header-height-expanded: 6rem;
  --radius: 0.5rem;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    linear-gradient(rgba(250, 248, 245, 0.7), rgba(250, 248, 245, 0.7)),
    url("../img/gb.jpg");
  background-repeat: repeat;
  background-position: top left;
  background-attachment: fixed;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-primary-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  --current-header-height: var(--header-height-expanded);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(212, 207, 198, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  --current-header-height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: var(--current-header-height);
  gap: 1rem;
  transition: min-height 0.3s ease;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 1.00rem;
  text-decoration: none;
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}

.site-logo:hover {
  color: var(--color-primary);
}

.site-logo__mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: var(--color-primary);
  overflow: hidden;
  transition: width 0.3s ease, height 0.3s ease;
}

.site-logo__mark--image {
  background: transparent;
}

.site-logo__img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  object-position: center;
}

.site-logo__mark--image .site-logo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.site-header.is-scrolled .site-logo__mark {
  width: 2.75rem;
  height: 2.75rem;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(30, 61, 41, 0.35);
  cursor: pointer;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  color: var(--color-text);
  z-index: 110;
}

.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="false"] .icon-close,
.nav-toggle:not([aria-expanded="true"]) .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  display: flex;
  align-items: center;
}

.main-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 0.85rem;
  line-height: 1;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.main-nav a:hover {
  background: rgba(45, 90, 61, 0.1);
  color: var(--color-primary-dark);
}

.main-nav a[aria-current="page"] {
  background: rgba(45, 90, 61, 0.14);
  color: var(--color-primary-dark);
}

.main-nav .nav-item--cta a {
  background: var(--color-accent);
  color: #fff;
}

.main-nav .nav-item--cta a:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

.main-nav .nav-item--cta a[aria-current="page"] {
  background: var(--color-accent-hover);
  color: #fff;
}

@media (max-width: 59.99rem) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--current-header-height);
    right: 0;
    left: 0;
    z-index: 105;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .main-nav.is-open {
    max-height: 32rem;
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    padding: 0.75rem 1rem 1.25rem;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    width: 100%;
    height: auto;
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
  }

  .main-nav li + li {
    margin-top: 0.35rem;
  }

  .main-nav .nav-item--cta {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--color-border);
  }
}

@media (min-width: 60rem) {
  .nav-toggle,
  .nav-backdrop {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .main-nav a {
    padding: 0 0.85rem;
    height: 2.5rem;
  }

  .main-nav .nav-item--cta {
    margin-left: 0.35rem;
  }
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

main {
  padding: 2rem 0 3rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(30, 61, 41, 0.92) 0%, rgba(45, 90, 61, 0.88) 45%, rgba(61, 122, 82, 0.85) 100%);
  color: #fff;
  padding: 3.5rem 0;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--color-accent);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(196, 122, 44, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero p {
  margin: 0;
  font-size: 1.2rem;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

body.is-loaded .hero h1 {
  animation: fadeInUp 0.7s ease 0.1s both;
}

body.is-loaded .hero p {
  animation: fadeInUp 0.7s ease 0.25s both;
}

/* Typography */
h1, h2, h3, h4 {
  color: #1a4d2e;
  line-height: 1.3;
}

h1 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); }
h2 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); margin-top: 2rem; }
h3 { font-size: 1.25rem; margin-top: 1.5rem; }

p {
  margin: 0 0 1rem;
}

ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

li + li {
  margin-top: 0.35rem;
}

.main-nav li + li {
  margin-top: 0;
}

/* Cards & Sections */
.section {
  margin-bottom: 2.5rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 36rem) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 60rem) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(30, 61, 41, 0.15);
  border-color: rgba(45, 90, 61, 0.35);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card-grid .animate-in:nth-child(2) { transition-delay: 0.08s; }
.card-grid .animate-in:nth-child(3) { transition-delay: 0.16s; }
.card-grid .animate-in:nth-child(4) { transition-delay: 0.24s; }
.card-grid .animate-in:nth-child(5) { transition-delay: 0.32s; }
.card-grid .animate-in:nth-child(6) { transition-delay: 0.4s; }

body.is-loaded .site-header {
  animation: fadeIn 0.5s ease both;
}

body.is-loaded main {
  animation: fadeIn 0.6s ease 0.15s both;
}

.card h3 {
  margin-top: 0;
  color: var(--color-primary);
}

.card--highlight {
  border-color: var(--color-accent);
  border-top: 4px solid var(--color-accent);
}

/* Course details */
.course-block {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-primary);
}

.course-block h2 {
  margin-top: 0;
}

.course-meta {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* Team cards */
.team-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.team-card__details {
  margin: 0;
}

.team-card__summary {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  list-style: none;
}

.team-card__summary::-webkit-details-marker {
  display: none;
}

.team-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.team-card__summary-row::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
  color: var(--color-accent);
}

.team-card__details[open] .team-card__summary-row::after {
  content: "−";
}

.team-card__summary:hover .team-card__summary-row {
  background: rgba(45, 90, 61, 0.06);
}

.team-card__summary:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: -3px;
}

.team-card__summary-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.team-card__name {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
  line-height: 1.3;
}

.team-card__breed {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.team-card__content {
  border-top: 1px solid var(--color-border);
}

.team-card__body {
  padding: 1rem 1.5rem 1.5rem;
}

.team-card dl {
  margin: 0;
}

.team-card dt {
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.team-card dt:first-of-type {
  margin-top: 0;
}

.team-card dd {
  margin: 0.15rem 0 0;
}

.team-card--memorial {
  opacity: 0.9;
  border-style: dashed;
}

.team-card--memorial .team-card__media img {
  filter: grayscale(35%);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 48rem) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .contact-panel,
  .map-panel {
    height: 100%;
  }
}

.contact-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.map-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.map-panel h2 {
  margin-top: 0;
}

.map-panel__address {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.map-consent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-height: 16rem;
  padding: 1.5rem;
  text-align: center;
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
}

.map-consent p {
  margin-bottom: 1rem;
}

.map-consent p:last-child {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.map-container {
  flex: 1;
  min-height: 0;
  display: none;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 14rem;
  border: 0;
  border-radius: var(--radius);
}

.map-panel.is-map-loaded .map-consent {
  display: none;
}

.map-panel.is-map-loaded .map-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.map-panel.is-map-loaded .map-container iframe {
  flex: 1;
  width: 100%;
  min-height: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-list svg {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.2rem;
  color: var(--color-primary);
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-surface);
  margin-bottom: 1rem;
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form .form-hint {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.form-status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-status--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

.btn-secondary {
  background: var(--color-primary);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

/* CTA box */
.cta-box {
  background: rgba(240, 235, 227, 0.92);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-box h2 {
  margin-top: 0;
}

/* Legal pages */
.legal-content {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin-top: 2rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul {
  margin-bottom: 1.5rem;
}

/* Preise */
.price-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 48rem) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.price-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-primary);
}

.price-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.price-card__price {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(196, 122, 44, 0.12);
  color: var(--color-accent-hover);
  font-weight: 700;
  border-radius: var(--radius);
}

.price-card__meta {
  font-weight: 600;
  color: var(--color-primary);
  margin: 1.1rem 0 0.35rem !important;
  font-size: 1.125rem;
}

.price-card p {
  margin: 0;
}

.price-note {
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(240, 235, 227, 0.92);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  background: rgba(45, 90, 61, 0.06);
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: -3px;
}

.faq-item__answer {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--color-border);
}

.faq-item__answer p {
  margin: 1rem 0 0;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background: var(--color-primary-dark);
  color: #e8ebe9;
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}

.site-footer a {
  color: #c8e6d0;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 48rem) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 20rem;
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.95rem;
}

/* Utility */
.text-muted {
  color: var(--color-text-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .animate-in {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .cookie-banner,
  .nav-toggle {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
