:root {
  --ab-bg: #ffffff;
  --ab-surface: #f7f5f2;
  --ab-surface-strong: #eeeae5;
  --ab-text: #1c1c1a;
  --ab-muted: #686660;
  --ab-border: #e3ded8;
  --ab-accent: #e36837;
  --ab-accent-hover: #cf582c;
  --ab-accent-soft: #fbede6;
  --ab-dark: #20211f;
  --ab-radius-sm: .65rem;
  --ab-radius: 1rem;
  --ab-radius-lg: 1.5rem;
  --ab-shadow: 0 12px 38px rgba(25, 24, 21, .08);
  --ab-container: 1180px;
  --ab-article: 780px;
  --ab-wide: 1060px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ab-bg);
  color: var(--ab-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
html.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1 0 auto; }
.site-container { width: min(100% - 2rem, var(--ab-container)); margin-inline: auto; }
.site-container--article { width: min(100% - 2rem, var(--ab-article)); }
.site-container--wide { width: min(100% - 2rem, var(--ab-wide)); }

.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 9999; background: #fff; padding: .75rem 1rem; border: 2px solid var(--ab-text); }
.skip-link:focus { top: 1rem; }

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2rem, 8vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 5vw, 2.65rem); }
h3 { font-size: 1.2rem; }

.eyebrow { margin: 0 0 .55rem; color: var(--ab-muted); font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.text-link { font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: .18em; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .75rem 1.05rem;
  border: 1px solid transparent;
  border-radius: .8rem;
  text-decoration: none;
  font-weight: 760;
  line-height: 1;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--ab-accent); border-color: var(--ab-accent); color: #fff; }
.button--primary:hover { background: var(--ab-accent-hover); border-color: var(--ab-accent-hover); color: #fff; }
.button--secondary { background: #fff; border-color: var(--ab-border); color: var(--ab-text); }
.button--secondary:hover { border-color: #bdb7b0; background: var(--ab-surface); }
.button--soft { background: var(--ab-surface); border-color: var(--ab-border); }
.button--ghost { background: transparent; border-color: var(--ab-border); }
.button--block { width: 100%; }

.page-main, .front-page-main { width: 100%; }
.page-content__body > .elementor, .front-page-content > .elementor { width: 100%; }

.article-content { font-size: clamp(1.05rem, 2.2vw, 1.14rem); }
.article-content p { margin: 0 0 1.35em; }
.article-content h2 { margin: 2.1em 0 .65em; }
.article-content h3 { margin: 1.8em 0 .55em; }
.article-content a { text-decoration-thickness: .08em; text-underline-offset: .14em; }
.article-content ul, .article-content ol { padding-left: 1.25em; margin-bottom: 1.4em; }
.article-content blockquote { margin: 2rem 0; padding: 1rem 1.25rem; border-left: 4px solid var(--ab-accent); background: var(--ab-surface); }

@media (min-width: 760px) {
  .site-container { width: min(100% - 3rem, var(--ab-container)); }
  .site-container--article { width: min(100% - 3rem, var(--ab-article)); }
  .site-container--wide { width: min(100% - 3rem, var(--ab-wide)); }
}
