:root {
  --dsf-shadow: 0 18px 48px rgba(24, 21, 17, 0.12);
  --dsf-border: 1px solid rgba(24, 21, 17, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
}

.skip-link:focus {
  clip: auto !important;
  clip-path: none;
  height: auto;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 1rem;
  width: auto;
  z-index: 9999;
  background: #181511;
  color: #fffaf2;
  border-radius: 8px;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid #d9912b;
  outline-offset: 3px;
}

.dsf-hero {
  position: relative;
  overflow: hidden;
  border-bottom: var(--dsf-border);
}

.dsf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(217, 145, 43, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(31, 111, 104, 0.16), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #f4eadb 100%);
  z-index: -1;
}

.dsf-kicker {
  font-weight: 750;
  color: #1f6f68;
  text-transform: uppercase;
  letter-spacing: 0;
}

.dsf-card {
  border: var(--dsf-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--dsf-shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.dsf-band {
  background: #181511;
  color: #fffaf2;
}

.dsf-band a {
  color: #f4eadb;
}

.dsf-muted {
  color: rgba(24, 21, 17, 0.72);
}

.wp-block-button__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
}

.is-style-outline .wp-block-button__link {
  border-width: 1.5px;
}

.wp-block-navigation__responsive-container.is-menu-open {
  padding: 1.5rem;
}

@media (max-width: 781px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    gap: 1rem;
  }

  .dsf-card {
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

