:root {
  --ink: #08090b;
  --ink-2: #12151a;
  --ink-3: #1b2129;
  --paper: #f4f1ea;
  --paper-2: #ebe6db;
  --line: #d8d1c3;
  --line-dark: #2a313b;
  --muted: #5d6670;
  --muted-dark: #b7bfc8;
  --text: #1a1d21;
  --text-soft: #3d4450;
  --yellow: #e6c200;
  --yellow-deep: #c9a600;
  --header-h: 4.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Atkinson Hyperlegible", "Segoe UI", sans-serif;
  font-size: 1.03rem;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--yellow); color: var(--ink); padding: .6rem 1rem; font-weight: 700; }
.skip-link:focus { top: 1rem; }
.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; color: var(--yellow); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--dark { color: #7a5d00; }
.eyebrow::before { content: ""; width: 1.4rem; height: 1px; background: currentColor; }
h1, h2, h3, .display { font-family: Oswald, "Arial Narrow", sans-serif; letter-spacing: -.02em; line-height: 1.08; font-weight: 600; margin: 0; }
.card { background: #fffdf8; border: 1px solid var(--line); box-shadow: 0 1px 0 rgba(12,14,16,.04), 0 12px 32px rgba(12,14,16,.06); }
.grid-noise {
  background-color: var(--ink);
  background-image: linear-gradient(rgba(230,194,0,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(230,194,0,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  color: #fff;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 1.25rem; text-decoration: none; font-weight: 700; border: 1px solid transparent;
}
.btn-primary { background: var(--yellow); color: var(--ink); }
.btn-primary:hover { background: var(--yellow-deep); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(8,9,11,.15); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.site-header { position: sticky; top: 0; z-index: 50; background: var(--ink); color: #fff; border-bottom: 1px solid var(--line-dark); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: #fff; }
.brand img { height: 44px; width: auto; }
.brand-name { font-family: Oswald, sans-serif; color: var(--yellow); letter-spacing: .08em; font-size: 1.15rem; }
.brand-sub { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-dark); font-weight: 700; }
.nav-desktop { display: none; align-items: center; flex-wrap: nowrap; gap: .15rem; }
.nav-desktop > a,
.nav-desktop > .dropdown { flex: 0 0 auto; display: flex; align-items: center; }
.nav-desktop a, .nav-desktop button {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1 !important;
  color: rgba(255,255,255,.88);
  background: none;
  border: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  min-height: 44px;
  padding: 0 .7rem;
  font: inherit;
  font-size: inherit;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
}
.nav-desktop a:hover, .nav-desktop button:hover, .nav-desktop .current-menu-item > a, .nav-desktop a[aria-current="page"] { color: var(--yellow); }
.nav-desktop [data-dropdown-trigger]::after {
  content: "";
  width: 0.38em;
  height: 0.38em;
  margin-left: .4em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.12em) rotate(45deg);
  flex: 0 0 auto;
}
.dropdown { position: relative; }
.dropdown-panel { display: none; position: absolute; top: 100%; left: 0; min-width: 14rem; background: var(--ink-2); border: 1px solid var(--line-dark); padding: .5rem 0; }
.dropdown.open .dropdown-panel { display: block; }
.dropdown-panel a { display: block; padding: .5rem 1rem; }
.header-cta { display: none; align-items: center; white-space: nowrap; background: var(--yellow); color: var(--ink); min-height: 44px; padding: 0 1rem; text-decoration: none; font-weight: 700; font-size: .84rem; }
.menu-toggle { min-height: 44px; min-width: 44px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: #fff; }
.nav-mobile { display: none; border-top: 1px solid var(--line-dark); background: var(--ink-2); }
.nav-mobile.open { display: block; }
.nav-mobile a { display: flex; min-height: 48px; align-items: center; padding: 0 1rem; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero { padding: 4rem 0; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); max-width: 16ch; }
.hero p { max-width: 36rem; color: var(--muted-dark); font-size: 1.1rem; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.value-strip { background: var(--paper-2); border-block: 1px solid var(--line); }
.value-grid, .cat-grid, .card-grid, .service-grid, .steps { display: grid; gap: 1.25rem; }
.value-grid { grid-template-columns: 1fr; padding: 2rem 0; }
.section { padding: 4rem 0; }
.section h2 { font-size: clamp(2rem, 4vw, 3rem); }
.course-card, .service-card, .step-card { padding: 1.4rem; display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.meta { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #7a5d00; }
.course-card h3, .service-card h3 { margin-top: .75rem; font-size: 1.55rem; }
.course-card p, .service-card p { margin: .75rem 0 0; color: var(--text-soft); flex: 1; }
.more { margin-top: 1.2rem; font-weight: 700; font-size: .88rem; }
.split { display: grid; gap: 1.25rem; }
.dark-panel { background: var(--ink); color: #fff; padding: 2rem; }
.site-footer { margin-top: auto; background: var(--ink); color: #fff; }
.footer-grid { display: grid; gap: 2rem; padding: 3.5rem 0; }
.footer-grid a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-grid a:hover { color: var(--yellow); }
.footer-grid h2 { font-family: inherit; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li + li { margin-top: .45rem; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; color: var(--muted-dark); font-size: .82rem; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; }
.page-hero { padding: 3.5rem 0; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); max-width: 18ch; }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0 1rem; }
.filter-btn { min-height: 40px; padding: 0 .8rem; border: 1px solid var(--line); background: #fff; cursor: pointer; font-weight: 700; font-size: .84rem; }
.filter-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.search-label { display: block; font-weight: 700; margin: 1rem 0 .4rem; }
.search-input, .wpforms-field input, .wpforms-field select, .wpforms-field textarea { width: 100%; min-height: 44px; padding: .6rem .75rem; border: 1px solid var(--line); background: #fff; font: inherit; }
.prose { max-width: 46rem; }
.prose p + p, .prose ul { margin-top: 1rem; }
.aside-card { padding: 1.5rem; }
.wpforms-container { background: #fffdf8; border: 1px solid var(--line); padding: 1.5rem; }
.wpforms-submit { background: var(--ink) !important; color: #fff !important; border: 0 !important; min-height: 44px !important; font-weight: 700 !important; }
@media (min-width: 700px) {
  .value-grid, .card-grid, .split, .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}
@media (min-width: 1100px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}
@media (min-width: 1024px) {
  .cat-grid, .card-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid, .steps { grid-template-columns: repeat(4, 1fr); }
  .hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
}
.elementor-location-header,
.elementor-location-footer,
#isg-page-loading,
#isg-loading-gif,
#isg-loading-image {
  display: none !important;
}
.screen-reader-text { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
