/*
Theme Name: Jentech
Theme URI: https://jentechmarketing.com
Author: Jentech
Author URI: https://jentechmarketing.com
Description: Custom one-page theme for Jentech Marketing - WordPress & Shopify design, build, and ongoing care.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jentech
*/

/* ============ TOKENS ============ */
  :root {
    /* warm paper ground, low chroma, biased toward the verdigris accent */
    --paper: #f4f2ec;
    --surface: #fbfaf6;
    --surface-2: #efece3;
    --ink: #24221c;
    --ink-soft: #55524a;
    --ink-faint: #8a8578;
    --line: #e0dcd0;
    --line-strong: #cdc7b8;
    /* boldness spent in one place: verdigris (patina = care, upkeep, craft) */
    --verd: #1f6f63;
    --verd-deep: #185b51;
    --verd-tint: #dcece8;
    /* one warm pop, used sparingly: desert marigold */
    --sun: #d1941a;
    --sun-tint: #f3e6c6;
    --good: #2f8f5b;

    --shadow-sm: 0 1px 2px rgba(36,34,28,.06), 0 1px 3px rgba(36,34,28,.05);
    --shadow-md: 0 6px 20px rgba(36,34,28,.09), 0 2px 6px rgba(36,34,28,.06);
    --shadow-lg: 0 24px 60px rgba(36,34,28,.14), 0 6px 16px rgba(36,34,28,.08);

    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Cambria, Georgia, "Times New Roman", serif;
    --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --mono: ui-monospace, "SF Mono", "Cascadia Mono", "Segoe UI Mono", Menlo, Consolas, monospace;

    --maxw: 1120px;
    --gutter: clamp(20px, 5vw, 56px);
    --radius: 14px;
    --radius-sm: 9px;
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --paper: #17160f;
      --surface: #201e16;
      --surface-2: #262319;
      --ink: #f0ece0;
      --ink-soft: #bdb8a8;
      --ink-faint: #8c8778;
      --line: #322f24;
      --line-strong: #423e2f;
      --verd: #48ab99;
      --verd-deep: #3c9a89;
      --verd-tint: #14322d;
      --sun: #edb648;
      --sun-tint: #362b12;
      --good: #4bb37a;
      --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
      --shadow-md: 0 8px 26px rgba(0,0,0,.45);
      --shadow-lg: 0 28px 66px rgba(0,0,0,.55);
    }
  }
  /* explicit toggle overrides win in both directions */
  :root[data-theme="light"] {
    --paper:#f4f2ec; --surface:#fbfaf6; --surface-2:#efece3; --ink:#24221c;
    --ink-soft:#55524a; --ink-faint:#8a8578; --line:#e0dcd0; --line-strong:#cdc7b8;
    --verd:#1f6f63; --verd-deep:#185b51; --verd-tint:#dcece8; --sun:#d1941a;
    --sun-tint:#f3e6c6; --good:#2f8f5b;
    --shadow-sm:0 1px 2px rgba(36,34,28,.06),0 1px 3px rgba(36,34,28,.05);
    --shadow-md:0 6px 20px rgba(36,34,28,.09),0 2px 6px rgba(36,34,28,.06);
    --shadow-lg:0 24px 60px rgba(36,34,28,.14),0 6px 16px rgba(36,34,28,.08);
  }
  :root[data-theme="dark"] {
    --paper:#17160f; --surface:#201e16; --surface-2:#262319; --ink:#f0ece0;
    --ink-soft:#bdb8a8; --ink-faint:#8c8778; --line:#322f24; --line-strong:#423e2f;
    --verd:#48ab99; --verd-deep:#3c9a89; --verd-tint:#14322d; --sun:#edb648;
    --sun-tint:#362b12; --good:#4bb37a;
    --shadow-sm:0 1px 2px rgba(0,0,0,.4);
    --shadow-md:0 8px 26px rgba(0,0,0,.45);
    --shadow-lg:0 28px 66px rgba(0,0,0,.55);
  }

  /* ============ BASE ============ */
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; text-wrap: balance; letter-spacing: -0.01em; }
  p { margin: 0; }
  a { color: inherit; }
  img { max-width: 100%; display: block; }

  .wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

  .eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--verd);
    margin: 0 0 18px;
    display: flex; align-items: center; gap: 10px;
  }
  .eyebrow::before { content:""; width: 26px; height: 1px; background: var(--verd); opacity:.6; }

  .btn {
    font-family: var(--sans); font-size: 15px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px; border-radius: 100px;
    text-decoration: none; cursor: pointer; border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  }
  .btn-primary { background: var(--verd); color: #fff; box-shadow: var(--shadow-sm); }
  .btn-primary:hover { background: var(--verd-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
  .btn-ghost:hover { border-color: var(--verd); color: var(--verd); transform: translateY(-2px); }
  .btn .arrow { transition: transform .18s ease; }
  .btn:hover .arrow { transform: translateX(3px); }
  .btn-primary, .btn-primary:hover,
  .nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: #fff; }

  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--verd); outline-offset: 3px; border-radius: 4px;
  }

  /* ============ HEADER ============ */
  header {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in srgb, var(--paper) 82%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, background .3s ease;
  }
  header.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--paper) 92%, transparent); }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .brand { display: flex; align-items: baseline; gap: 3px; text-decoration: none; font-family: var(--serif); font-weight: 700; font-size: 22px; letter-spacing: -.02em; color: var(--ink); }
  .brand b { color: var(--verd); font-weight: 700; }
  .brand .dot { color: var(--sun); }
  .brand-logo { height: 30px; width: auto; display: block; }
  .brand-dark { display: none; }
  @media (prefers-color-scheme: dark) { .brand-light { display: none; } .brand-dark { display: block; } }
  :root[data-theme="light"] .brand-light { display: block; }
  :root[data-theme="light"] .brand-dark { display: none; }
  :root[data-theme="dark"] .brand-light { display: none; }
  :root[data-theme="dark"] .brand-dark { display: block; }
  .brand { align-items: center; }
  .nav-links { display: flex; align-items: center; gap: 30px; }
  .nav-links a { text-decoration: none; color: var(--ink-soft); font-size: 15px; font-weight: 500; transition: color .15s ease; }
  .nav-links a:hover { color: var(--ink); }
  .nav-links .btn { padding: 9px 18px; }
  .menu-btn { display: none; }

  @media (max-width: 760px) {
    .nav-links a:not(.btn) { display: none; }
  }

  /* ============ HERO ============ */
  .hero { padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); }
  .hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
  .hero h1 { font-size: clamp(38px, 6vw, 66px); margin: 0 0 22px; }
  .hero h1 .accent { color: var(--verd); font-style: italic; }
  .hero .lead { font-size: clamp(17px, 2.1vw, 20px); color: var(--ink-soft); max-width: 34ch; margin: 0 0 30px; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
  .hero-trust { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-faint); font-family: var(--mono); letter-spacing: .02em; }
  .hero-trust .pin { color: var(--sun); }

  /* care-plan panel = subject-specific hero visual (maintenance is the differentiator) */
  .panel {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden;
  }
  .panel-top { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
  .panel-top .label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
  .live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; color: var(--good); letter-spacing: .06em; }
  .live .blip { width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 0 color-mix(in srgb, var(--good) 60%, transparent); animation: pulse 2.4s ease-out infinite; }
  @keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--good) 55%, transparent);} 70% { box-shadow: 0 0 0 9px transparent;} 100% { box-shadow: 0 0 0 0 transparent; } }
  @media (prefers-reduced-motion: reduce) { .live .blip { animation: none; } }
  .panel-rows { padding: 6px 18px 12px; }
  .prow { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .prow:last-child { border-bottom: 0; }
  .prow .k { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--ink-soft); }
  .prow .k .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--verd-tint); color: var(--verd); display: grid; place-items: center; flex: none; }
  .prow .v { font-family: var(--mono); font-size: 13px; color: var(--ink); font-variant-numeric: tabular-nums; }
  .prow .v.ok { color: var(--good); }
  .panel-foot { padding: 13px 18px; background: var(--surface-2); border-top: 1px solid var(--line); font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); text-align: center; letter-spacing: .04em; }

  /* ============ SECTION SHELL ============ */
  section { padding: clamp(56px, 8vw, 104px) 0; }
  .sec-head { max-width: 60ch; margin-bottom: clamp(34px, 5vw, 54px); }
  .sec-head h2 { font-size: clamp(28px, 4vw, 42px); margin: 0 0 14px; }
  .sec-head p { color: var(--ink-soft); font-size: clamp(16px, 2vw, 18px); max-width: 52ch; }

  .band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

  /* ============ SERVICES ============ */
  .svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  @media (max-width: 720px) { .svc-grid { grid-template-columns: 1fr; } }
  .svc {
    position: relative; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 30px 28px 28px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
  .svc .num { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); letter-spacing: .1em; }
  .svc h3 { font-size: 22px; margin: 14px 0 10px; }
  .svc p { color: var(--ink-soft); font-size: 15.5px; }
  .svc.feature { border-color: color-mix(in srgb, var(--verd) 40%, var(--line)); background: linear-gradient(180deg, var(--verd-tint), var(--surface) 60%); }
  .svc .tag { position: absolute; top: 22px; right: 22px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--verd); background: color-mix(in srgb, var(--verd) 12%, transparent); padding: 4px 9px; border-radius: 100px; }
  .svc .ic-lg { width: 42px; height: 42px; border-radius: 10px; background: var(--verd-tint); color: var(--verd); display: grid; place-items: center; }
  .svc.feature .ic-lg { background: var(--verd); color: #fff; }

  /* ============ WORK (manual horizontal scroll) ============ */
  .work-scroller {
    display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x proximity;
    padding: 8px var(--gutter) 20px; scroll-padding-left: var(--gutter);
    scrollbar-width: thin; scrollbar-color: var(--line-strong) var(--surface-2);
  }
  .work-scroller::-webkit-scrollbar { height: 10px; }
  .work-scroller::-webkit-scrollbar-track { background: var(--surface-2); border-radius: 100px; margin-inline: var(--gutter); }
  .work-scroller::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 100px; }
  .work-scroller::-webkit-scrollbar-thumb:hover { background: var(--ink-faint); }
  .work-scroller .card {
    flex: 0 0 clamp(300px, 84vw, 480px); width: clamp(300px, 84vw, 480px);
    scroll-snap-align: start;
  }
  .work-scroller .card .thumb { aspect-ratio: auto; border-bottom: none; background: none; overflow: visible; }
  .win-bar { display: flex; align-items: center; gap: 7px; height: 30px; padding: 0 13px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
  .win-bar .tl { width: 11px; height: 11px; border-radius: 50%; display: block; }
  .win-bar .tl.r { background: #ff5f57; }
  .win-bar .tl.y { background: #febc2e; }
  .win-bar .tl.g { background: #28c840; }
  .win-body { height: 300px; background: #fff; overflow: hidden; }
  .win-body .shot { width: 100%; height: 300px; object-fit: cover; object-position: 50% 0%; }
  .work-scroller .card h3 { font-size: 21px; }
  .card { display: block; width: 100%; padding: 0; margin: 0; font: inherit; text-align: left; -webkit-appearance: none; appearance: none; cursor: pointer; text-decoration: none; color: inherit; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); transition: transform .2s ease, box-shadow .2s ease; }
  .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--surface-2); border-bottom: 1px solid var(--line); }
  .thumb .shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .5s ease; }
  .card:hover .shot { transform: scale(1.05); }
  .card-body { padding: 18px 20px 20px; }
  .card-body .kind { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--verd); }
  .card-body h3 { font-size: 19px; margin: 8px 0 6px; }
  .card-body p { color: var(--ink-soft); font-size: 14.5px; }
  .card-body .go { margin-top: 12px; font-size: 13px; font-family: var(--mono); color: var(--ink-faint); display: flex; align-items: center; gap: 7px; }
  .card:hover .go { color: var(--verd); }

  /* ============ ABOUT ============ */
  .about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
  @media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
  .portrait { aspect-ratio: 4/5; border-radius: var(--radius); background: linear-gradient(160deg, var(--verd-tint), var(--surface-2)); border: 1px solid var(--line); overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
  .portrait-img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; display: block; }
  .about-body h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 20px; }
  .about-body p { color: var(--ink-soft); margin-bottom: 16px; max-width: 60ch; }
  .about-body p .hl { color: var(--ink); font-weight: 600; }
  .stats { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--line); }
  .stat .n { font-family: var(--serif); font-size: 34px; color: var(--verd); line-height: 1; }
  .stat .l { font-size: 13px; color: var(--ink-faint); margin-top: 6px; }

  /* ============ CARE STRIP ============ */
  .care { text-align: center; }
  .care h2 { font-size: clamp(26px, 4vw, 40px); max-width: 22ch; margin: 0 auto 16px; }
  .care p { color: var(--ink-soft); max-width: 54ch; margin: 0 auto 30px; font-size: 17px; }
  .care-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 720px; margin: 0 auto; }
  .chip { font-family: var(--mono); font-size: 13px; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line); padding: 9px 15px; border-radius: 100px; display: inline-flex; align-items: center; gap: 8px; }
  .chip .d { width: 6px; height: 6px; border-radius: 50%; background: var(--verd); }

  /* ============ CONTACT ============ */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 68px); }
  @media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-body h2 { font-size: clamp(28px, 4vw, 44px); margin: 0 0 16px; }
  .contact-body p { color: var(--ink-soft); margin-bottom: 22px; max-width: 42ch; }
  .contact-meta { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
  .cmeta { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--ink); font-size: 15.5px; }
  .cmeta .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--verd-tint); color: var(--verd); display: grid; place-items: center; flex: none; }
  .cmeta small { display:block; color: var(--ink-faint); font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
  .cmeta:hover .ic { background: var(--verd); color: #fff; }

  .form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
  .field { margin-bottom: 16px; }
  .field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
  .field label .req { color: var(--sun); }
  .field input, .field textarea {
    width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
    background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
    padding: 12px 14px; transition: border-color .15s ease, box-shadow .15s ease;
  }
  .field input:focus, .field textarea:focus { border-color: var(--verd); box-shadow: 0 0 0 3px var(--verd-tint); outline: none; }
  .field textarea { resize: vertical; min-height: 120px; }
  form .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
  .form-note { font-size: 12px; color: var(--ink-faint); text-align: center; margin-top: 14px; font-family: var(--mono); }

  /* ============ FOOTER ============ */
  footer { border-top: 1px solid var(--line); padding: 44px 0 40px; }
  .foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
  .foot .brand { font-size: 19px; }
  .foot-links { display: flex; gap: 22px; }
  .foot-links a { text-decoration: none; color: var(--ink-soft); font-size: 14px; }
  .foot-links a:hover { color: var(--verd); }
  .foot .copy { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); }

  /* ============ REVEAL ============ */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

  /* ============ DESIGN POPUP ============ */
  .jt-overlay {
    position: fixed; inset: 0; z-index: 100; display: none;
    align-items: center; justify-content: center; padding: 22px;
    background: color-mix(in srgb, #0c0b07 64%, transparent);
    backdrop-filter: blur(5px); opacity: 0; transition: opacity .2s ease;
  }
  .jt-overlay.open { display: flex; opacity: 1; }
  .jt-dialog {
    position: relative; width: min(700px, 100%); max-height: 90vh; overflow: auto;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    transform: translateY(12px) scale(.985); transition: transform .24s ease;
  }
  .jt-overlay.open .jt-dialog { transform: none; }
  .jt-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
    width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(0,0,0,.5); color: #fff; font-size: 30px; line-height: 1;
    display: grid; place-items: center; padding: 0 0 4px;
    transition: background .15s ease, transform .15s ease;
  }
  .jt-nav:hover { background: rgba(0,0,0,.75); transform: translateY(-50%) scale(1.06); }
  .jt-prev { left: clamp(10px, 4vw, 44px); }
  .jt-next { right: clamp(10px, 4vw, 44px); }
  .jt-count { display: block; margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 12px; color: var(--ink-faint); }
  @media (max-width: 560px) { .jt-nav { width: 40px; height: 40px; font-size: 24px; } }
  .jt-dialog-close {
    position: absolute; top: 12px; right: 12px; z-index: 5;
    width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(0,0,0,.42); color: #fff; font-size: 21px; line-height: 1;
    display: grid; place-items: center; transition: background .15s ease, transform .15s ease;
  }
  .jt-dialog-close:hover { background: rgba(0,0,0,.68); transform: scale(1.06); }
  .jt-winbar { display: flex; align-items: center; gap: 9px; padding: 11px 14px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
  .jt-winbar .dots { display: flex; gap: 6px; }
  .jt-winbar .dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-strong); display: block; }
  .jt-winbar .dots i:nth-child(1) { background: #ff5f57; }
  .jt-winbar .dots i:nth-child(2) { background: #febc2e; }
  .jt-winbar .dots i:nth-child(3) { background: #28c840; }
  .jt-winbar .addr { flex: 1; text-align: center; font-family: var(--mono); font-size: 12px; color: var(--ink-faint); background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 5px 12px; max-width: 320px; margin-inline: auto; }
  .jt-winshot { max-height: 66vh; overflow-y: auto; background: var(--surface-2); }
  .jt-winshot img { width: 100%; display: block; }
  .jt-dialog-body { padding: 22px 26px 26px; }
  .jt-dialog-body .kind { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--verd); }
  .jt-dialog-body h3 { font-size: 24px; margin: 8px 0 10px; }
  .jt-dialog-body > p { color: var(--ink-soft); font-size: 15.5px; max-width: 58ch; }
  .jt-dialog-note { margin-top: 16px !important; padding-top: 15px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 12px; color: var(--ink-faint) !important; }

  svg { display: block; }

/* ===== Ninja Forms, styled to match the site ===== */
#contact .form-card .nf-form-cont, #contact .form-card .nf-form-content { max-width: none; width: 100%; }
#contact .form-card .nf-field-container { margin-bottom: 16px; }
#contact .form-card .nf-field-label label, #contact .form-card .field-wrap label { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
#contact .form-card .nf-field-element input:not([type=button]):not([type=submit]),
#contact .form-card .nf-field-element textarea {
  width: 100%; box-sizing: border-box; font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 12px 14px; box-shadow: none; height: auto;
}
#contact .form-card .nf-field-element input:focus, #contact .form-card .nf-field-element textarea:focus {
  border-color: var(--verd); box-shadow: 0 0 0 3px var(--verd-tint); outline: none;
}
#contact .form-card .nf-field-element textarea { min-height: 120px; resize: vertical; }
#contact .form-card input[type=button], #contact .form-card input[type=submit] {
  width: 100%; background: var(--verd); color: #fff; border: none; border-radius: 100px;
  padding: 14px 22px; font-family: var(--sans); font-size: 15px; font-weight: 600; cursor: pointer; height: auto;
}
#contact .form-card input[type=button]:hover, #contact .form-card input[type=submit]:hover { background: var(--verd-deep); }
#contact .form-card .nf-error-msg, #contact .form-card .nf-error .nf-error-msg { color: #c0392b; font-family: var(--sans); font-size: 13px; }

