/**
 * Design Kit — Global layer
 * Minimal global styling only. Section-level and component-level
 * styling is intentionally NOT here yet — it is added per-section
 * in later build phases.
 */

body {
  font-family: var(--dk-font);
  color: var(--dk-ink-soft);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dk-ink);
  font-weight: 800;
  line-height: 1.2;
}

/* Buttons
 * ---------------------------------------------------------------
 * .dk-btn-primary / .dk-btn-secondary work two ways:
 * 1) Applied directly to a plain <a>/<button> (non-builder markup).
 * 2) Applied to an Elementor Button widget's CSS Classes field —
 *    Elementor puts the class on the widget's outer wrapper div,
 *    while the actual clickable link is a nested .elementor-button
 *    inside it. The rules below target both shapes: the bare class
 *    styles case (1), and "<class>.elementor-widget-button
 *    .elementor-button" styles case (2) while neutralizing the
 *    wrapper div so the button isn't double-painted.
 * --------------------------------------------------------------- */

.dk-btn-primary:not(.elementor-widget-button),
.dk-btn-primary.elementor-widget-button .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  background-color: var(--dk-brand);
  color: #FFFFFF;
  border: none;
  border-radius: var(--dk-radius-pill);
  font-family: var(--dk-font);
  font-weight: 700;
  box-shadow: var(--dk-shadow-btn);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.dk-btn-primary:not(.elementor-widget-button):hover,
.dk-btn-primary.elementor-widget-button .elementor-button:hover {
  background-color: var(--dk-brand-hover);
  transform: translateY(-2px);
}

.dk-btn-secondary:not(.elementor-widget-button),
.dk-btn-secondary.elementor-widget-button .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  background-color: var(--dk-bg);
  color: var(--dk-ink);
  border: 2px solid var(--dk-border);
  border-radius: var(--dk-radius-pill);
  font-family: var(--dk-font);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.dk-btn-secondary:not(.elementor-widget-button):hover,
.dk-btn-secondary.elementor-widget-button .elementor-button:hover {
  border-color: var(--dk-brand);
  color: var(--dk-brand);
}

/* Neutralize the Elementor wrapper div itself so it doesn't also
   paint a second box around the styled .elementor-button above. */
.dk-btn-primary.elementor-widget-button,
.dk-btn-secondary.elementor-widget-button {
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

/* Eyebrow label */

.dk-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dk-brand);
}

/* Accessible focus style on all interactive elements */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--dk-brand) 40%, transparent);
  outline-offset: 2px;
}