:root {
  --bg: #f3efe6;
  --bg-deep: #e8e2d4;
  --paper: #fffdf8;
  --ink: #161410;
  --ink-soft: #3c352c;
  --muted: #6e665a;
  --faint: #9a9184;
  --line: #ddd4c4;
  --line-strong: #c9bfad;
  --accent: #d14a16;
  --accent-hover: #b33d10;
  --accent-soft: #f8e3d6;
  --teal: #1a5f4a;
  --teal-soft: #dceae3;
  --navy: #1b2740;
  --gold: #c9a227;
  --rose: #a33b4a;
  --shadow: 0 1px 2px rgba(22, 20, 16, 0.04), 0 18px 40px rgba(22, 20, 16, 0.07);
  --shadow-sm: 0 1px 2px rgba(22, 20, 16, 0.05);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --max: 1180px;
  --nav-h: 72px;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-ui: "Outfit", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  background-image:
    radial-gradient(1200px 500px at 10% -10%, rgba(209, 74, 22, 0.06), transparent 50%),
    radial-gradient(900px 400px at 100% 0%, rgba(26, 95, 74, 0.06), transparent 46%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus { left: 8px; }

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(243, 239, 230, 0.86);
  border-bottom: 1px solid rgba(22, 20, 16, 0.08);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img, .brand svg { width: 36px; height: 36px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}
.brand-name span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: background 0.2s var(--ease), color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--paper);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.search-btn, .icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.search-btn:hover, .icon-btn:hover { border-color: var(--ink); color: var(--ink); }
.search-btn kbd {
  font-size: 11px;
  border: 1px solid var(--line);
  padding: 1px 6px;
  border-radius: 5px;
  font-family: inherit;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
}

/* ——— Layout ——— */
#app { min-height: calc(100vh - var(--nav-h) - 280px); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.page { padding: 36px 0 80px; animation: rise 0.45s var(--ease); }

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--accent);
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ——— Hero ——— */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 28px 0 20px;
}
.hero-copy h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 28px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.pill i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 560;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--paper); }
.btn-sm { height: 38px; padding: 0 14px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.hero-visual {
  position: relative;
}
.hero-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 5/4;
  background: var(--bg-deep);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
}
.float-card strong { display: block; font-size: 0.95rem; }
.float-card span { color: var(--muted); font-size: 0.78rem; }
.float-1 { left: -18px; bottom: 28px; }
.float-2 { right: -10px; top: 24px; }
.dot {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; color: #fff; font-size: 16px;
}
.dot-orange { background: var(--accent); }
.dot-teal { background: var(--teal); }

/* ——— Sections ——— */
.section { padding: 56px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head p { color: var(--muted); margin: 8px 0 0; max-width: 46ch; }

/* ——— Cards ——— */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 196px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.cat-card .icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
}
.cat-card h3 { font-size: 1.15rem; }
.cat-card p { margin: 0; color: var(--muted); font-size: 0.9rem; flex: 1; }
.cat-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--faint);
}
.cat-meta .go { color: var(--accent); font-weight: 600; }

.featured-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.feature-tile {
  background: var(--navy);
  color: #f4efe4;
  border-radius: 24px;
  padding: 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.feature-tile.light {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}
.feature-tile.teal { background: var(--teal); color: #f3faf6; }
.feature-tile.accent { background: var(--accent); color: #fff8f3; }
.feature-tile h3 { font-size: 1.7rem; max-width: 14ch; }
.feature-tile p { color: inherit; opacity: 0.82; margin: 8px 0 18px; max-width: 34ch; }
.feature-tile .tag {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ——— Tools grid ——— */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tool-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
}
.tool-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
}
.tool-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.tool-ico {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 18px;
}
.rating {
  font-size: 0.78rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rating .star { color: #c9a227; }
.tool-card h3 { font-size: 1.05rem; font-family: var(--font-ui); font-weight: 600; letter-spacing: -0.02em; }
.tool-card p { margin: 0; color: var(--muted); font-size: 0.88rem; flex: 1; }
.tool-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--faint);
  padding-top: 6px;
  border-top: 1px dashed var(--line);
}
.chip {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  color: var(--muted);
}

/* ——— How it works ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  font-style: italic;
}
.step h3 { margin: 8px 0 6px; }
.step p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* ——— FAQ ——— */
.faq-list { display: grid; gap: 10px; max-width: 820px; }
.faq {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 560;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--muted); font-size: 1.2rem; }
.faq[open] summary::after { content: "–"; }
.faq p { margin: 0; padding: 0 18px 16px; color: var(--muted); }

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--line);
  background: #161410;
  color: #efe8da;
  padding: 48px 0 28px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
.site-footer a { color: #cfc6b4; }
.site-footer a:hover { color: #fff; }
.site-footer h4 {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9c9486;
  margin: 0 0 12px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.foot-brand strong { font-family: var(--font-display); font-size: 1.2rem; }
.site-footer p { color: #b7ae9e; font-size: 0.92rem; }
.copyright {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid #2c281f;
  color: #8c8476;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ——— Category / listing pages ——— */
.page-hero { padding-bottom: 8px; }
.page-hero h1 { max-width: 16ch; }
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 16px;
}
.crumbs a:hover { color: var(--ink); }
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 22px 0 18px;
}
.search-field {
  flex: 1;
  min-width: 220px;
  position: relative;
}
.search-field input, .field input, .field textarea, .field select, .plain-input {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-field input { padding-left: 40px; }
.search-field svg {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--faint);
}
.field input:focus, .field textarea:focus, .field select:focus,
.search-field input:focus, .plain-input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(22, 20, 16, 0.08);
}
.filter-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-pills button {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  color: var(--muted);
}
.filter-pills button.on, .filter-pills button:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ——— Tool page ——— */
.tool-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}
.tool-main { min-width: 0; }
.tool-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}
.tool-title-row h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.tool-actions { display: flex; gap: 8px; }
.workspace {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin: 18px 0 28px;
}
.ws-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 10px;
}
.ws-head h2 { font-size: 1.05rem; font-family: var(--font-ui); letter-spacing: 0; font-weight: 600; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.stat {
  background: var(--bg);
  border-radius: 12px;
  padding: 10px 12px;
}
.stat b { display: block; font-size: 1.15rem; }
.stat span { font-size: 0.75rem; color: var(--muted); }

.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 0.82rem; font-weight: 560; color: var(--ink-soft); }
.field textarea { min-height: 160px; resize: vertical; line-height: 1.5; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.modes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 14px;
}
.modes button {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
}
.modes button.on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.result-box {
  background: #161410;
  color: #f3eadb;
  border-radius: 14px;
  padding: 14px;
  min-height: 120px;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.88rem;
  line-height: 1.5;
}
.result-box.light {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
}
.output-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.help-block { margin-top: 8px; }
.help-block h3 { margin: 22px 0 8px; }
.help-block p, .help-block li { color: var(--ink-soft); }
.help-block ol, .help-block ul { padding-left: 18px; }

.side-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}
.side-card h3 { font-size: 0.95rem; font-family: var(--font-ui); margin-bottom: 10px; }
.related a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.related a:last-child { border-bottom: 0; }
.related a span { display: block; color: var(--muted); font-size: 0.78rem; }

/* ——— Search overlay ——— */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 20, 16, 0.45);
  z-index: 80;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 20px 20px;
}
.search-overlay.open { display: flex; }
.search-modal {
  width: min(680px, 100%);
  background: var(--paper);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: rise 0.25s var(--ease);
}
.search-modal input {
  width: 100%;
  border: 0;
  outline: none;
  padding: 18px 20px;
  font-size: 1.05rem;
  background: transparent;
  border-bottom: 1px solid var(--line);
}
.search-results { max-height: 420px; overflow: auto; }
.search-hit {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 18px;
  cursor: pointer;
}
.search-hit:hover { background: var(--bg); }
.search-hit b { display: block; }
.search-hit span { color: var(--muted); font-size: 0.82rem; }

/* ——— Misc ——— */
.empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--muted);
}
.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s var(--ease);
  z-index: 90;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.color-swatch {
  width: 100%;
  height: 88px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.preview-img {
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.dropzone {
  border: 1.5px dashed var(--line-strong);
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
  color: var(--muted);
  background: var(--bg);
  cursor: pointer;
}
.dropzone.over { border-color: var(--accent); background: var(--accent-soft); }
.table-wrap { overflow: auto; }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
table.data th, table.data td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
}
table.data th { color: var(--muted); font-weight: 560; }

.contrast-demo {
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 8px;
}

.qr-wrap { display: grid; place-items: center; padding: 12px; background: #fff; border-radius: 12px; }

/* mobile nav */
@media (max-width: 980px) {
  .hero, .featured-row, .tool-layout, .footer-grid { grid-template-columns: 1fr; }
  .cat-grid, .tools-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px;
    align-items: stretch;
  }
  .menu-toggle { display: inline-grid; place-items: center; }
  .search-btn span, .search-btn kbd { display: none; }
  .float-1, .float-2 { display: none; }
  .stats, .field-row, .field-row-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .cat-grid, .tools-grid, .steps, .stats, .field-row, .field-row-3 { grid-template-columns: 1fr; }
  .header-inner { width: calc(100% - 24px); }
  .wrap { width: calc(100% - 24px); }
  h1 { font-size: 2.1rem; }
  .hero-frame { aspect-ratio: 4/3; }
}

/* ——— WordPress / Elementor ——— */
.site-main { min-height: 50vh; }
.custom-logo-link img { width: 36px; height: 36px; object-fit: contain; }
.nav-links,
.site-nav .nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { margin: 0; }
.site-header { position: relative; }
.site-header .site-nav { flex: 1; }

.toolory-fullwidth .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1180px;
}
body.elementor-page,
body.toolory-theme.elementor-page {
  background: var(--bg);
}
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}
.entry-content > .cat-grid,
.entry-content > .tools-grid,
.elementor-widget-shortcode .cat-grid,
.elementor-widget-shortcode .tools-grid,
.elementor-widget-toolory-categories .cat-grid,
.elementor-widget-toolory-grid .tools-grid {
  margin: 8px 0 24px;
}
.search-hit { text-decoration: none; color: inherit; }

.wp-block-button__link,
.elementor-button {
  border-radius: 999px !important;
}

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

.alignwide { width: min(1180px, 100%); margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; }

.page .entry-content h1,
.page .entry-content h2 { margin: 0.6em 0 0.35em; }
.page .entry-content p { color: var(--ink-soft); max-width: 62ch; }
